/* Brand Colors */
:root {
    --obsidian-black: #1F1F1F;
    --soft-light: #ECECEC;
    --fluorescent-green: #00e091;
    --prompt-blue: #4C9DFF;
    --error-red: #ff7979;
    --neutral-gray: #868686;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--obsidian-black);
    color: var(--soft-light);
    font-family: 'Inter', 'Space Grotesk', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Space Grotesk', Arial, sans-serif;
    color: var(--soft-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Anchor Link Offset Fix for Fixed Header */
section[id] {
    scroll-margin-top: 120px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(31, 31, 31, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo img {
    height: 32px;
    vertical-align: middle;
}

/* Remove .nav-logo span styling */
.nav-logo span {
    display: none;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--soft-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--fluorescent-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-join-btn {
    background: var(--fluorescent-green);
    color: var(--obsidian-black);
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    margin-left: 2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 44px;
}



@media (max-width: 900px) {
    .nav-join-btn {
        margin-left: 1rem;
        padding: 10px 18px;
        font-size: 0.95rem;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
        margin-right: 0.3rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: none;
    }

    .nav-logo img {
        height: 30px;
    }
    
    .nav-join-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
        height: 36px;
        min-width: auto;
        margin-left: auto;
    }

}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #23272e 0%, #1F1F1F 100%);
    color: var(--soft-light);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: background-shift 8s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        transform: scale(1.1) rotate(1deg); 
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--fluorescent-green);
    font-family: 'Fira Code', monospace;
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-text {
    background: linear-gradient(45deg, var(--fluorescent-green), #00ff88, var(--fluorescent-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.cursor {
    color: var(--fluorescent-green);
    font-weight: 300;
    animation: blink 1s infinite;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--soft-light);
    font-family: 'Inter', 'Space Grotesk', Arial, sans-serif;
}

.ai-ops-highlight {
    background: linear-gradient(45deg, var(--fluorescent-green), #00ff88, #00d4ff, var(--fluorescent-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ai-ops-glow 4s ease-in-out infinite;
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
}

@keyframes ai-ops-glow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    25% { 
        background-position: 100% 50%; 
    }
    50% { 
        background-position: 100% 100%; 
    }
    75% { 
        background-position: 0% 100%; 
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    height: 48px;
    min-width: 140px;
    justify-content: center;
}

.btn-primary {
    background: var(--fluorescent-green);
    color: var(--obsidian-black) !important;
    font-family: 'Fira Code', monospace;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    background: var(--prompt-blue);
    color: var(--obsidian-black);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--fluorescent-green);
    color: var(--fluorescent-green);
    font-family: 'Fira Code', monospace;
}

.btn-secondary:hover {
    background: var(--fluorescent-green);
    color: var(--obsidian-black);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--fluorescent-green);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Code Editor Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-editor {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
}



.editor-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.editor-dots {
    display: flex;
    gap: 6px;
}

.editor-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.editor-dots span:nth-child(2) {
    background: #ffbd2e;
}

.editor-dots span:nth-child(3) {
    background: #27ca3f;
}

.editor-title {
    color: #ccc;
    font-size: 0.9rem;
}

.editor-content {
    display: flex;
    padding: 16px;
    align-items: flex-start;
}

.line-numbers {
    color: #666;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    margin-right: 16px;
    text-align: right;
}

.line-numbers span {
    display: block;
    line-height: 1.6;
    height: 1.6em;
    margin-bottom: 4px;
    vertical-align: baseline;
    padding-top: 0;
}

.code-lines {
    flex: 1;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 4px;
    height: 1.6em;
    vertical-align: baseline;
    padding-top: 0;
    white-space: normal;
    word-spacing: normal;
}

.keyword {
    color: var(--prompt-blue);
}

.string {
    color: var(--fluorescent-green);
}

.comment {
    color: var(--neutral-gray);
    font-style: italic;
}

.variable {
    color: var(--soft-light);
}

.function {
    color: var(--fluorescent-green);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #23272e;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ECECEC;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Better centering for 5 items using flexbox fallback */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    flex: 0 1 350px;
    max-width: 400px;
}

.feature-card {
    background: var(--obsidian-black);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    border: 1.5px solid var(--neutral-gray);
    color: var(--soft-light);
    font-family: 'Inter', 'Space Grotesk', Arial, sans-serif;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--obsidian-black);
    color: var(--fluorescent-green);
    border: 1.5px solid var(--neutral-gray);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--fluorescent-green);
    font-family: 'Fira Code', monospace;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* AI Capabilities Section */
.ai-capabilities {
    padding: 80px 0;
    background: #fff !important;
    color: #23272e;
}

.ai-capabilities .section-header h2,
.ai-capabilities .ai-text h2,
.ai-capabilities .ai-text p,
.ai-capabilities .ai-feature h4,
.ai-capabilities .ai-feature p {
    color: #23272e;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ECECEC;
}

.ai-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ai-feature i {
    font-size: 1.2rem;
    color: #2563eb;
    margin-top: 0.2rem;
}

.ai-feature h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ECECEC;
}

.ai-feature p {
    color: #64748b;
    font-size: 0.95rem;
}

/* AI Chat Visual */
.ai-chat {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chat-header {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-messages {
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
}

.message.user {
    text-align: right;
}

.message-content {
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
}

.message.user .message-content {
    background: #2563eb;
    color: white;
}

.message.ai .message-content {
    background: white;
    color: #333;
    border: 1px solid #e2e8f0;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #23272e;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--obsidian-black);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    border: 1.5px solid var(--neutral-gray);
    color: var(--soft-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid var(--fluorescent-green);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fluorescent-green);
    color: var(--obsidian-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ECECEC;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ECECEC;
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #10b981;
}

.btn-outline {
    background: transparent;
    color: var(--fluorescent-green);
    border: 2px solid var(--fluorescent-green);
    margin-top: auto;
}

.btn-outline:hover {
    background: var(--fluorescent-green);
    color: var(--obsidian-black);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--obsidian-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ECECEC;
}

.contact-info {
    text-align: left !important;
}

.contact-info * {
    text-align: left !important;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    color: #64748b;
    text-align: left !important;
    width: 100%;
}

.contact-item span {
    text-align: left !important;
}

.contact-item i {
    color: #2563eb;
    width: 20px;
}

.contact-form {
    background: #23272e;
    padding: 2rem;
    border-radius: 12px;
    border: 1.5px solid var(--neutral-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--obsidian-black);
    color: var(--soft-light);
    border: 1.5px solid var(--neutral-gray);
    font-family: 'Fira Code', monospace;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fluorescent-green);
}

/* Contact Form Validation Styles */
.contact-form input.field-valid,
.contact-form textarea.field-valid {
    border-color: var(--fluorescent-green);
    /* Keep original dark background */
}

.contact-form input.field-invalid,
.contact-form textarea.field-invalid {
    border-color: var(--error-red);
    /* Keep original dark background */
}

/* Toast Notification System */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

/* Toast Types */
.toast.success {
    border-color: var(--fluorescent-green);
    color: var(--fluorescent-green);
}

.toast.success::before {
    background: var(--fluorescent-green);
}

.toast.error {
    border-color: var(--error-red);
    color: var(--error-red);
}

.toast.error::before {
    background: var(--error-red);
}

.toast.warning {
    border-color: #f59e0b;
    color: #f59e0b;
}

.toast.warning::before {
    background: #f59e0b;
}

.toast.info {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.toast.info::before {
    background: var(--primary-color);
}

/* Toast Content */
.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toast-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-message {
    flex: 1;
    font-weight: 500;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.toast-description {
    font-size: 13px;
    opacity: 0.8;
    font-weight: 400;
}

/* Close Button */
.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: currentColor;
    opacity: 0.6;
    cursor: pointer;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.toast-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Progress Bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
    transform-origin: left;
    animation: toast-progress 4s linear forwards;
}

@keyframes toast-progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .toast-icon {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #181A1B;
    color: var(--soft-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.footer-logo span {
    color: var(--fluorescent-green);
    font-family: 'Fira Code', monospace;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
    background: #23272e;
    color: var(--fluorescent-green);
}

.social-links a:hover {
    background: var(--fluorescent-green);
    color: var(--obsidian-black);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--fluorescent-green);
    font-family: 'Fira Code', monospace;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--fluorescent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--soft-light);
}

/* Terminal-inspired chat bubbles */
.ai-chat .message.user .message-content {
    background: #23272e;
    color: var(--fluorescent-green);
    border: 1.5px solid var(--neutral-gray);
}

.ai-chat .message.ai .message-content {
    background: var(--obsidian-black);
    color: var(--soft-light);
    border: 1.5px solid var(--neutral-gray);
}

.ai-chat .message.ai .comment {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    opacity: 0.7;
}


@media (min-width: 769px) {
    .hero {
        min-height: 100vh;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        grid-template-areas: 
            "content"
            "visual";
    }
    
    .hero-content {
        grid-area: content;
        text-align: left;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: left;
        justify-content: flex-start;
        display: flex;
        align-items: flex-start;
        gap: 4px;
        flex-wrap: wrap;
        line-height: 1.1;
    }
    
    .typing-text {
        font-size: 3.5rem;
        display: inline;
        line-height: 1.1;
    }
    
    .cursor {
        font-size: 3.5rem;
        display: inline;
        line-height: 1.1;
        vertical-align: baseline;
        position: relative;
        top: 0;
    }
    
    .hero-visual {
        grid-area: visual;
        order: 2;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
    

    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .ai-ops-highlight {
        font-size: inherit;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn {
        height: 44px;
        min-width: 110px;
        max-width: 140px;
        font-size: 0.85rem;
        padding: 8px 16px;
        flex: 1;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
    }
    

    
    .code-editor {
        max-width: 100%;
        transform: none !important; /* Disable parallax on mobile */
    }

    .code-lines, .line-numbers {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    
    .editor-content {
        padding: 12px;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    /* Fix pricing buttons on mobile */
    .pricing-card .btn {
        width: 100%;
        max-width: 250px;
        margin: 0.5rem auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        min-height: 48px;
        height: auto;
        white-space: nowrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.ai-feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

.terminal-inspired {
    background: var(--obsidian-black) !important;
    border: 1.5px solid var(--neutral-gray);
    font-family: 'Fira Code', monospace;
    color: var(--soft-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.code-editor .editor-header, .ai-chat .chat-header {
    background: #23272e;
    color: var(--fluorescent-green);
    font-family: 'Fira Code', monospace;
}

.code-line, .ai-chat .message-content {
    font-family: 'Fira Code', monospace;
    color: var(--soft-light);
}

.prompt {
    color: var(--prompt-blue);
    font-weight: bold;
}

 

/* Ensure navbar stays dark on scroll */
.navbar {
    background: rgba(31, 31, 31, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    transition: none !important;
}

/* Remove or override any JS/CSS that changes navbar to white on scroll */ 

/* On light backgrounds, use a dark color for headings/text */
.features, .pricing, .ai-capabilities, .contact, .footer {
    /* These are dark backgrounds, keep text light */
}

/* For section headers and headings on light backgrounds only */
.features:not([style*='background: #23272e']),
.pricing:not([style*='background: #23272e']),
.ai-capabilities:not([style*='background: #23272e']),
.contact:not([style*='background: #23272e']),
footer:not([style*='background: #181A1B']) {
    /* fallback, in case any section is light */
}

/* Explicitly target headings on light backgrounds */
.section-header h2,
.feature-card h3,
.ai-text h2,
.contact-info h2,
.footer-section h4 {
    color: #ECECEC;
}

/* On white or very light backgrounds, use a dark color for headings/text */
.features[style*='background: #fff'] .section-header h2,
.pricing[style*='background: #fff'] .section-header h2,
.ai-capabilities[style*='background: #fff'] .section-header h2,
.contact[style*='background: #fff'] .section-header h2,
footer[style*='background: #fff'] .footer-section h4,
.features[style*='background: #ECECEC'] .section-header h2,
.pricing[style*='background: #ECECEC'] .section-header h2,
.ai-capabilities[style*='background: #ECECEC'] .section-header h2,
.contact[style*='background: #ECECEC'] .section-header h2,
footer[style*='background: #ECECEC'] .footer-section h4 {
    color: #23272e;
}

/* For feature cards and other headings on light backgrounds */
.feature-card[style*='background: #fff'] h3,
.feature-card[style*='background: #ECECEC'] h3 {
    color: #23272e;
} 

.beta {
    background: #fff;
    color: #23272e;
    padding: 64px 0 64px 0;
    border-bottom: 1.5px solid var(--neutral-gray);
}

.beta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.beta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #23272e;
}

.beta-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}



.beta-form {
    display: flex !important;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.beta-form .form-group {
    flex: 1 1 200px;
    min-width: 200px;
}

.beta-form .form-group:not(.checkbox-group) {
    flex: 1 1 200px;
}

.beta-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Fira Code', monospace;
    background: #f8fafc;
    color: #23272e;
    transition: border-color 0.3s;
    height: 48px;
    box-sizing: border-box;
    margin: 0;
    line-height: 1;
}

.beta-form input:focus {
    border-color: var(--prompt-blue);
    outline: none;
}

.beta-form input.field-valid {
    border-color: var(--fluorescent-green);
    background-color: #f0fdf4;
}

.beta-form input.field-invalid {
    border-color: var(--error-red);
    background-color: #fef2f2;
}

.beta-form .checkbox-group {
    flex: 0 0 100%;
    margin: 0.5rem 0;
    padding-left: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    accent-color: var(--fluorescent-green);
}

.checkbox-label:hover {
    color: #23272e;
}

.beta-form .btn-primary {
    min-width: 160px;
    margin: 0 auto;
    height: 48px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 0 0 auto;
    padding: 12px 16px;
    line-height: 1;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.beta-form .btn-primary:disabled {
    background: #64748b;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Force horizontal layout on larger screens */
@media (min-width: 769px) {
    .beta-form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
    }
    
    .beta-form .form-group:not(.checkbox-group) {
        flex: 1 1 200px !important;
        max-width: 250px !important;
    }
    
    .beta-form .checkbox-group {
        flex: 0 0 100% !important;
        order: 10 !important;
    }
    
    .beta-form .btn-primary {
        flex: 0 0 auto !important;
        order: 11 !important;
        align-self: center !important;
        margin-top: 0 !important;
    }
}

.beta-success {
    font-size: 1.1rem;
    color: var(--fluorescent-green);
    font-family: 'Fira Code', monospace;
}

.beta-admin-toggle a {
    color: var(--neutral-gray);
    font-size: 0.95rem;
    text-decoration: underline;
    cursor: pointer;
}

.beta-admin {
    background: #f8fafc;
    border: 1.5px solid var(--neutral-gray);
    border-radius: 12px;
    padding: 1.5rem;
    color: #23272e;
}

.beta-admin h3 {
    color: #23272e;
    font-family: 'Fira Code', monospace;
    margin-bottom: 1rem;
}

.beta-table th, .beta-table td {
    font-family: 'Fira Code', monospace;
    font-size: 1rem;
    padding: 8px;
    border-bottom: 1px solid var(--neutral-gray);
}

.beta-table th {
    background: #f3f6fa;
    color: #23272e;
}

.beta-table tr:last-child td {
    border-bottom: none;
}

.grecaptcha-badge {
    visibility: hidden;
}



/* Google reCAPTCHA v3 is completely invisible - no additional styles needed */

@media (max-width: 768px) {
    .beta-form {
        flex-direction: row;
        gap: 20px !important;
    }
    .beta-form .form-group {
        margin-bottom: 0.5rem;
    }
    .beta-form .form-group:last-child {
        margin-bottom: 0;
    }
    .beta-form .checkbox-group {
        margin: 0.5rem 0;
    }
    .beta-form .btn-primary {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.5rem;
        display: block;
        width: 100%;
        max-width: 200px;
    }
}

/* Legal Pages (Privacy Policy, Terms of Service, Cookie Policy) */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--obsidian-black);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--soft-light);
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--fluorescent-green);
    font-weight: 700;
}

.legal-content .last-updated {
    color: var(--neutral-gray);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--prompt-blue);
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--fluorescent-green);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--soft-light);
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--soft-light);
    font-size: 1rem;
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--soft-light);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--prompt-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--fluorescent-green);
    text-decoration: underline;
}

/* Cookie Categories */
.cookie-category {
    background: rgba(76, 157, 255, 0.05);
    border: 1px solid rgba(76, 157, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(76, 157, 255, 0.08);
    border-color: rgba(76, 157, 255, 0.3);
}

.cookie-category h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.cookie-category h3 i {
    color: var(--fluorescent-green);
    font-size: 1.2rem;
}

.cookie-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.cookie-details strong {
    color: var(--fluorescent-green);
    font-weight: 600;
}

.cookie-details ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

/* Cookie Management Section */
.cookie-management {
    background: rgba(0, 224, 145, 0.05);
    border: 1px solid rgba(0, 224, 145, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-management h3 {
    margin-top: 0;
}

.cookie-management h3 i {
    color: var(--fluorescent-green);
}

.browser-links {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.browser-links h4 {
    margin-bottom: 0.5rem;
    color: var(--prompt-blue);
}

.browser-links ul {
    margin: 0.5rem 0 0 1.5rem;
}

.browser-links a {
    color: var(--fluorescent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.browser-links a:hover {
    color: var(--prompt-blue);
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    background: rgba(76, 157, 255, 0.05);
    border: 1px solid rgba(76, 157, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin: 2rem 0;
}

.faq-category h2 {
    color: var(--fluorescent-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 224, 145, 0.3);
}

.faq-category h2 i {
    margin-right: 0.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 1rem 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 224, 145, 0.3);
}

.faq-item.active {
    border-color: var(--fluorescent-green);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 224, 145, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--soft-light);
}

.faq-question i {
    color: var(--fluorescent-green);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-content {
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: var(--soft-light);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin: 0.5rem 0;
    color: var(--soft-light);
}

.faq-answer strong {
    color: var(--fluorescent-green);
}

/* FAQ Contact Section */
.faq-contact {
    background: linear-gradient(135deg, rgba(0, 224, 145, 0.1) 0%, rgba(76, 157, 255, 0.1) 100%);
    border: 1px solid rgba(0, 224, 145, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
}

.faq-contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-contact-header h2 {
    color: var(--fluorescent-green);
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
}

.faq-contact-header h2 i {
    margin-right: 0.5rem;
}

.faq-contact-header p {
    color: var(--soft-light);
    font-size: 1.1rem;
    opacity: 0.9;
}

.faq-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
    place-items: center;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fluorescent-green), var(--prompt-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    border-color: rgba(0, 224, 145, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 224, 145, 0.1);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 224, 145, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 224, 145, 0.2);
}

.contact-method-icon i {
    font-size: 1.8rem;
    color: var(--fluorescent-green);
}

.contact-method-icon.discord-icon {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
}

.contact-method-icon.discord-icon i {
    color: #5865f2;
}

.contact-method-card h3 {
    color: var(--soft-light);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}

.contact-details {
    margin-bottom: 1rem;
    text-align: left;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid var(--fluorescent-green);
    text-align: left;
    width: 100% !important;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--neutral-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--fluorescent-green);
    font-weight: 600;
    font-family: 'Fira Code', monospace;
}

.contact-description {
    color: var(--soft-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 0.9;
    text-align: left;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #5865f2;
    color: #ffffff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.discord-btn i {
    font-size: 1.1rem;
    color: #ffffff !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.discord-btn span {
    font-size: 0.95rem;
    color: #ffffff !important;
    font-weight: 700;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-content {
        padding: 1rem;
    }
    
    .faq-contact {
        padding: 2rem 1.5rem;
    }
    
    .faq-contact-header {
        margin-bottom: 2rem;
    }
    
    .faq-contact-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card {
        padding: 1.5rem;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .contact-method-icon i {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 0.6rem;
    }
    
    .discord-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Status Page Styles */
.status-container {
    max-width: 900px;
    margin: 0 auto;
}

.status-overview {
    margin: 2rem 0;
}

.status-card {
    background: linear-gradient(135deg, rgba(0, 224, 145, 0.1) 0%, rgba(76, 157, 255, 0.1) 100%);
    border: 2px solid var(--fluorescent-green);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.status-card.operational .status-icon i {
    color: var(--fluorescent-green);
    font-size: 3rem;
}

.status-card.degraded {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.status-card.degraded .status-icon i {
    color: #f59e0b;
}

.status-card.outage {
    border-color: var(--error-red);
    background: linear-gradient(135deg, rgba(255, 76, 76, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.status-card.outage .status-icon i {
    color: var(--error-red);
}

.status-info h2 {
    color: var(--soft-light);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.status-info p {
    color: var(--soft-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.status-timestamp {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-timestamp i {
    color: var(--fluorescent-green);
}

/* X Updates */
.status-updates {
    margin: 2rem 0;
}

.status-updates h2 {
    color: var(--fluorescent-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.x-card {
    background: rgba(29, 155, 240, 0.05);
    border: 1px solid rgba(29, 155, 240, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.x-icon {
    flex-shrink: 0;
}

.x-icon i {
    font-size: 2.5rem;
    color: #1da1f2;
}

.x-content h3 {
    color: var(--soft-light);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.x-content p {
    color: var(--soft-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.x-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--soft-light);
    font-size: 0.9rem;
}

.feature-item i {
    color: #1da1f2;
    width: 16px;
    text-align: center;
    line-height: 1;
    font-size: 0.9rem;
}

.x-btn {
    background: #1da1f2 !important;
    color: white !important;
    border: none;
    margin-top: 1rem;
}

.x-btn:hover {
    background: #1991db !important;
    transform: translateY(-2px);
}

/* Status Legend */
.status-legend {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.status-legend h3 {
    color: var(--prompt-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--soft-light);
    font-size: 0.9rem;
}

.legend-status i {
    font-size: 0.8rem;
}

.legend-status.operational i {
    color: var(--fluorescent-green);
}

.legend-status.degraded i {
    color: #f59e0b;
}

.legend-status.outage i {
    color: var(--error-red);
}

.legend-status.maintenance i {
    color: var(--prompt-blue);
}

/* Status Contact */
.status-contact {
    background: linear-gradient(135deg, rgba(76, 157, 255, 0.1) 0%, rgba(0, 224, 145, 0.1) 100%);
    border: 1px solid rgba(76, 157, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.status-contact h3 {
    color: var(--fluorescent-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-contact p {
    color: var(--soft-light);
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--soft-light);
}

.contact-method i {
    color: var(--fluorescent-green);
}

.contact-method strong {
    color: var(--fluorescent-green);
}

.contact-method a {
    color: var(--prompt-blue);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--fluorescent-green);
    text-decoration: underline;
}

/* Responsive Status Page */
@media (max-width: 768px) {
    .status-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .status-card .status-icon i {
        font-size: 2.5rem;
    }
    
        .x-card {
        flex-direction: column;
        text-align: center;
    }

    .x-features {
        grid-template-columns: 1fr;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .status-contact {
        padding: 1.5rem;
    }
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--fluorescent-green);
}

.contact-info a {
    color: var(--prompt-blue);
}

/* Back to Home Button */
.back-to-home {
    text-align: center;
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(134, 134, 134, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Blog Styles */
.blog-intro {
    background: rgba(76, 157, 255, 0.05);
    border: 1px solid rgba(76, 157, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.blog-posts {
    margin: 2rem 0;
}

.blog-post {
    background: rgba(0, 224, 145, 0.03);
    border: 1px solid rgba(0, 224, 145, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.blog-post:hover {
    background: rgba(0, 224, 145, 0.05);
    border-color: rgba(0, 224, 145, 0.25);
    transform: translateY(-2px);
}

.blog-post-header h2 {
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
}

.blog-post-header h2 a {
    color: var(--soft-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-header h2 a:hover {
    color: var(--fluorescent-green);
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-category {
    background: rgba(76, 157, 255, 0.2);
    color: var(--prompt-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-date, .blog-read-time {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.blog-excerpt {
    color: var(--soft-light);
    line-height: 1.6;
    margin: 0.5rem 0 1rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 224, 145, 0.2);
    color: var(--fluorescent-green);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-read-more {
    color: var(--prompt-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--fluorescent-green);
    transform: translateX(5px);
}

.blog-subscription {
    margin: 3rem 0 2rem;
}

.blog-subscribe-form {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.blog-email-input {
    flex: 1;
    min-width: 250px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(134, 134, 134, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--soft-light);
    font-size: 1rem;
}

.blog-email-input:focus {
    outline: none;
    border-color: var(--fluorescent-green);
    background: rgba(255, 255, 255, 0.08);
}

.blog-subscribe-btn {
    white-space: nowrap;
}

.blog-subscribe-note {
    font-size: 0.85rem;
    color: var(--neutral-gray);
    margin-top: 0.5rem;
}

/* Blog Post Page Styles */
.blog-post-page {
    min-height: 100vh;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(31, 31, 31, 1) 100%);
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(134, 134, 134, 0.2);
}

.blog-breadcrumb {
    margin-bottom: 2rem;
    text-align: left;
}

.blog-breadcrumb a {
    color: var(--prompt-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.blog-breadcrumb a:hover {
    color: var(--fluorescent-green);
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--soft-light);
    margin: 1rem 0;
    line-height: 1.2;
}

.blog-lead {
    font-size: 1.3rem;
    color: var(--neutral-gray);
    line-height: 1.5;
    margin: 1.5rem 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--prompt-blue) 0%, var(--fluorescent-green) 100%);
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content h2 {
    color: var(--fluorescent-green);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.blog-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--fluorescent-green);
    border-radius: 2px;
}

.blog-content h3 {
    color: var(--prompt-blue);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: rgba(236, 236, 236, 0.9);
}

.blog-content ul, .blog-content ol {
    margin: 1.5rem 0 2rem 2rem;
}

.blog-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(236, 236, 236, 0.9);
}

.blog-content li strong {
    color: var(--fluorescent-green);
    font-weight: 600;
}

.blog-content code {
    background: rgba(0, 224, 145, 0.1);
    border: 1px solid rgba(0, 224, 145, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--fluorescent-green);
    font-weight: 500;
}

.blog-highlight-box {
    background: linear-gradient(135deg, rgba(76, 157, 255, 0.1) 0%, rgba(0, 224, 145, 0.1) 100%);
    border: 1px solid rgba(76, 157, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.blog-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--prompt-blue) 0%, var(--fluorescent-green) 100%);
    border-radius: 12px 12px 0 0;
}

.blog-highlight-box h3 {
    margin-top: 0;
    color: var(--fluorescent-green);
}

.blog-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, rgba(76, 157, 255, 0.2) 0%, rgba(0, 224, 145, 0.2) 100%);
    border-radius: 12px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-light);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    gap: 0.4rem;
}

.blog-image i {
    font-size: 1.5rem;
    color: var(--fluorescent-green);
}

.blog-quote {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--fluorescent-green);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--soft-light);
}

.blog-cta-section {
    background: linear-gradient(135deg, rgba(0, 224, 145, 0.1) 0%, rgba(76, 157, 255, 0.1) 100%);
    border: 1px solid rgba(0, 224, 145, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-cta-section h3 {
    color: var(--fluorescent-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-author-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author-section h4 {
    color: var(--prompt-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-content {
        padding: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .cookie-category,
    .cookie-management,
    .contact-info {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .cookie-details,
    .browser-links {
        padding: 0.8rem;
    }
    
    /* Blog Responsive */
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-subscribe-form {
        flex-direction: column;
    }
    
    .blog-email-input {
        min-width: auto;
    }
    
    .blog-post-header h2 {
        font-size: 1.3rem;
    }
    
    /* Blog Post Page Responsive */
    .blog-post-container {
        padding: 0 15px;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-lead {
        font-size: 1.1rem;
    }
    
    .blog-hero-image {
        height: 200px;
        font-size: 1rem;
    }
    
    .blog-image {
        height: 80px;
        font-size: 0.8rem;
        margin: 1rem 0;
    }
    
    .blog-image i {
        font-size: 1.2rem;
    }
    
    .blog-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-cta-section,
    .blog-author-section {
        padding: 1.5rem;
    }
    
    .back-to-home {
        gap: 0.8rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .back-to-home .btn {
        width: auto;
        min-width: 120px;
        text-align: center;
    }
} 