[data-theme="dusk"] {
    --bg-primary: #0c1222;
    --bg-secondary: #131b2e;
    --bg-terminal: #172036;
    --text-primary: #e8e0d6;
    --text-dim: #8a8070;
    --text-accent: #f59e0b;
    --text-accent-green: #f97316;
    --text-accent-white: #fffaf0;
    --border-color: #2a3548;
}

[data-theme="dusk"] .hero,
[data-theme="dusk"] .content-toggle,
[data-theme="dusk"] [data-audience],
[data-theme="dusk"] section:not([data-theme-content]) {
    display: none !important;
}

[data-theme="dusk"] [data-theme-content~="pilot"] {
    display: block;
}

[data-theme="dusk"] nav,
[data-theme="dusk"] footer {
    display: flex !important;
}

[data-theme="dusk"] footer {
    display: block !important;
}

[data-theme="dusk"] nav a::before {
    content: '';
}

[data-theme="dusk"] h2::before {
    content: '';
}

[data-theme="dusk"] .container {
    max-width: 1000px;
}

[data-theme="dusk"] .pilot-hero {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
}

[data-theme="dusk"] .pilot-brand {
    position: fixed;
    top: 24px;
    left: 40px;
    font-size: 24px;
    font-weight: 700;
    color: #f59e0b;
    letter-spacing: -0.5px;
    z-index: 100;
}

[data-theme="dusk"] .pilot-tagline {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316 0%, #fffaf0 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -3px;
    margin: 0 0 48px 0;
    line-height: 1.15;
    padding-bottom: 4px;
}

[data-theme="dusk"] .pilot-explanation {
    font-size: 18px;
    color: #b0a090;
    line-height: 2;
    max-width: 720px;
    margin: 0 auto;
}

[data-theme="dusk"] .pilot-getstarted {
    padding: 40px 0 60px;
}

[data-theme="dusk"] .pilot-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #b0a090;
    text-align: center;
    margin-bottom: 40px;
}

[data-theme="dusk"] .pilot-section-title::before {
    content: '';
}

[data-theme="dusk"] .pilot-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

[data-theme="dusk"] .pilot-card {
    border: 1px solid #2a3548;
    border-radius: 16px;
    padding: 32px 24px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #e8e0d6;
    transition: all 0.2s ease;
    background: #131b2e;
}

[data-theme="dusk"] .pilot-card:hover {
    background: #172036;
    border-color: #f59e0b;
}

[data-theme="dusk"] .pilot-card-number {
    width: 40px;
    height: 40px;
    border: 2px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: auto;
    transition: all 0.2s ease;
}

[data-theme="dusk"] .pilot-card-content {
    margin-top: auto;
}

[data-theme="dusk"] .pilot-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e8e0d6;
}

[data-theme="dusk"] .pilot-card-content p {
    font-size: 14px;
    color: #8a8070;
    transition: color 0.2s ease;
}

[data-theme="dusk"] nav a {
    color: #e8e0d6;
}

[data-theme="dusk"] nav a:hover {
    color: #f59e0b;
}

[data-theme="dusk"] footer {
    color: #8a8070;
    border-top-color: #2a3548;
}

@media (max-width: 768px) {
    [data-theme="dusk"] .pilot-brand {
        position: static;
        text-align: center;
        margin-bottom: 24px;
    }

    [data-theme="dusk"] .pilot-tagline {
        font-size: 48px;
        letter-spacing: -2px;
    }

    [data-theme="dusk"] .pilot-explanation {
        font-size: 16px;
    }

    [data-theme="dusk"] .pilot-cards {
        grid-template-columns: 1fr;
    }

    [data-theme="dusk"] .pilot-card {
        aspect-ratio: auto;
        padding: 24px;
    }
}
