:root {
    --bg-main: #000000;
    --bg-elevated: #101010;

    --accent: #4ade80;
    --accent-soft: #22c55e33;
    --accent-2: #16a34a;

    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: #27272f;
}

* {
    box-sizing: border-box;
}

body.dark-theme {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top, #141414 0, #050505 45%, #000000 80%);
    color: var(--text-main);
}

/* Smooth theme color changes when --accent updates */
body.theme-animated .btn,
body.theme-animated .dot-live,
body.theme-animated .flow-badge,
body.theme-animated .hero-badge,
body.theme-animated .progress-fill {
    transition:
        color 1800ms ease,
        background-color 1800ms ease,
        border-color 1800ms ease,
        box-shadow 1800ms ease;
}

/* ---------- PAGE WRAPPER ---------- */

.page {
    min-height: 100vh;
}

/* ---------- NAVBAR ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: #020202dd;
    border-bottom: 1px solid var(--border-subtle);
}

.navbar {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-title {
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Nav right side: links + login button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.25rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 2px;
    transition: color 160ms ease, transform 160ms ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transition: width 180ms ease;
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        background 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        transform 120ms ease,
        box-shadow 160ms ease;
}

.btn.primary {
    background-color: var(--accent);
    color: #022c22;
    font-weight: 600;
}

.btn.secondary {
    background: transparent;
    border-color: var(--border-subtle);
    color: var(--text-main);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.nav-login {
    padding: 0.45rem 1.2rem;
    color: var(--accent);
    border: 1px solid var(--accent-soft);
    border-radius: 2rem;
    margin-left: 1rem;
    font-weight: 500;
    background: transparent;
    transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}

.nav-login:hover {
    background: var(--accent-soft);
    color: #000;
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 4rem 1.5rem 3rem;
    overflow: hidden;
}

/* Dark & accent overlay */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom right,
            rgba(0, 0, 0, 0.82) 30%,
            rgba(0, 0, 0, 0.9) 55%,
            color-mix(in srgb, var(--accent) 24%, rgba(0, 0, 0, 0.9)) 100%
        );
    backdrop-filter: blur(2px);
    z-index: -2;
    transition:
        background 900ms ease,
        background-color 900ms ease;
}

.hero-glow {
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 30%, #000 70%) 0, transparent 55%);
    opacity: 0.4; /* softer now that we have a photo */
    pointer-events: none;
    z-index: -1;
}

.hero-layout {
    position: relative;
    max-width: 1120px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    z-index: 1;
}

.hero-copy {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--accent-soft);
    background-color: #020202;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.dot-live {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    transition: background-color 900ms ease, box-shadow 900ms ease;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    margin: 1rem 0 0.5rem;
}

.hero-tagline {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-bullets {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-bullet {
    display: flex;
    gap: 0.75rem;
}

.hero-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0b;
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.hero-bullet h3 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
}

.hero-bullet p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ---------- HERO PANEL / MISSIONS ---------- */

.hero-panel {
    border-radius: 1.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    transform-origin: center;
    position: relative;
    overflow: hidden;
    min-height: 170px;
}

/* All cards default to absolute (off the layout) */
.mission-card {
    position: absolute;
    inset: 0;
    padding: 1.1rem 1.3rem 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 350ms ease, transform 350ms ease;
    z-index: 1;
}

/* Active card returns to normal flow and controls height */
.mission-card.active {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Glow ONLY near top-left inside the panel */
.mission-glow {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 12% 10%, var(--mission-glow, #16a34a33) 0, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.panel-title {
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Status pill – base style, colors come from inline preset */
.panel-status {
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    border-width: 1px;
    border-style: solid;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-body {
    display: grid;
    gap: 0.7rem;
    font-size: 0.85rem;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.panel-row .label {
    color: var(--text-muted);
}

.panel-row .value {
    font-weight: 500;
}

.panel-progress {
    margin-top: 0.6rem;
}

/* progress bar using CSS var */
.progress-bar {
    margin-top: 0.25rem;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #050505;
    overflow: hidden;
    border: 1px solid #1f2933;
}

.progress-fill {
    width: var(--progress);
    height: 100%;
    background-color: var(--mission-accent, var(--accent));
    transform-origin: left;
    transition: background-color 900ms ease;
}

.progress-text {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.panel-footer {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px dashed #27272f;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---------- STRIP / METRICS ---------- */

.strip {
    border-top: 1px solid #111111;
    border-bottom: 1px solid #111111;
    background: radial-gradient(circle at center, #111111 0, #050505 60%, #000 100%);
}

.strip-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.metric {
    min-width: 130px;
}

.metric-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- SECTION HEADER ---------- */

.section-header {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 0 1.5rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
}

/* ---------- SERVICES ---------- */

.services {
    max-width: 1120px;
    margin: 0 auto 3rem;
    padding: 3rem 1.5rem 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #0b0b0b;
    border-radius: 1rem;
    padding: 1.25rem 1.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform-origin: center top;
    transition:
        transform 140ms ease,
        box-shadow 140ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.service-card p {
    margin: 0 0 0.6rem;
    color: var(--text-muted);
}

.service-card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-card li + li {
    margin-top: 0.25rem;
}

.service-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    border-color: var(--accent-soft);
    background: #111111;
}

/* Service images */
.service-img {
    width: 100%;
    border-radius: 0.75rem;
    margin-bottom: 0.9rem;
    border: 1px solid #1f1f1f;
}

/* ---------- FLOW / HOW IT WORKS ---------- */

.flow {
    max-width: 1120px;
    margin: 0 auto 3rem;
    padding: 2.5rem 1.5rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #111111;
    background:
        linear-gradient(135deg, #050505 0, #020202 45%, #050505 100%);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.7);
}

.flow-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
}

.flow-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: flex-start;
}

.flow-badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #090909;
    border: 1px solid var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

.flow-content h3 {
    margin: 0 0 0.25rem;
}

.flow-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Flow image */
.flow-image img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #1f1f1f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ---------- CTA BAND ---------- */

.cta-band {
    background: radial-gradient(
        circle at bottom,
        color-mix(in srgb, var(--accent) 20%, #000 80%) 0,
        #000 55%
    );
    background-size: 200% 200%;
    animation: ctaDrift 26s ease-in-out infinite;
}

.cta-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.cta-inner h2 {
    margin: 0 0 0.4rem;
}

.cta-inner p {
    margin: 0;
    color: var(--text-muted);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

/* ---------- FOOTER ---------- */

.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 1rem 1.5rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ---------- ANIMATIONS ---------- */

.animate-fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 400ms ease, transform 400ms ease;
}

.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 80ms;
}
.delay-2 {
    transition-delay: 160ms;
}
.delay-3 {
    transition-delay: 240ms;
}
.delay-4 {
    transition-delay: 320ms;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-fade-up {
        opacity: 1;
        transform: none;
    }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-panel {
        max-width: 420px;
        margin-inline: auto;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-inline: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-login {
        padding-inline: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 3.2rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: -3;
    transition: opacity 600ms ease;
}

/* ---------- COMPANIES / TRUSTED BY ---------- */

.companies {
    max-width: 1120px;
    margin: 0 auto 3rem;
    padding: 1rem 1.5rem 0;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.company-card {
    position: relative;
    border-radius: 0.9rem;
    padding: 0.9rem 1.1rem;
    background: #050505ee;
    border: 1px solid #151515;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    overflow: hidden;
    transform-origin: center;
    transition:
        transform 140ms ease,
        box-shadow 160ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.company-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top, color-mix(in srgb, var(--company-accent, #4ade80) 20%, transparent) 0, transparent 55%);
    opacity: 0.25;
    pointer-events: none;
}

.company-logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    max-width: 160px;
    max-height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6));
}

.company-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e7eb;
    text-align: center;
}

.company-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7);
    border-color: color-mix(in srgb, var(--company-accent, #4ade80) 40%, #111 60%);
    background-color: #070707;
}

/* LIVE dot pulse */
@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 12px var(--accent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 18px var(--accent);
    }
}

.dot-live {
    animation: livePulse 2.4s ease-in-out infinite;
}

/* Mission panel inner glow breathing */
@keyframes missionGlow {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.75; }
}

.mission-glow {
    animation: missionGlow 14s ease-in-out infinite;
}

/* CTA background slow drift */
@keyframes ctaDrift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* flow badges subtle pulse */
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(0,0,0,0); }
    50% { box-shadow: 0 0 18px rgba(0,0,0,0.7); }
}

.flow-badge {
    /* keep existing styles, just add: */
    animation: badgePulse 10s ease-in-out infinite;
}

/* metrics: slight hover lift */
.metric {
    transition: transform 180ms ease, color 180ms ease;
}

.metric:hover {
    transform: translateY(-2px);
    color: var(--accent);
}

/* Button shine on hover */
.btn.primary {
    position: relative;
    overflow: hidden;
}

.btn.primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.18) 45%,
        transparent 80%
    );
    transform: translateX(-120%);
    pointer-events: none;
    transition: transform 500ms ease;
}

.btn.primary:hover::after {
    transform: translateX(120%);
}

/* ---------- AUTH PAGES ---------- */

.auth-page {
    display: flex;
    justify-content: center;
    padding: 4rem 1.5rem 3rem;
}

.auth-container {
    max-width: 420px;
    width: 100%;
    background: #050505;
    border-radius: 1.25rem;
    border: 1px solid #151515;
    padding: 2rem 2.2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.auth-title {
    margin: 0 0 0.25rem;
}

.auth-subtitle {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-form .field {
    margin-bottom: 1rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.auth-form input {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.5rem;
    border: 1px solid #27272f;
    background: #020202;
    color: var(--text-main);
}

.auth-error {
    margin-bottom: 1rem;
    padding: 0.6rem 0.8rem;
    border-radius: 0.6rem;
    background: #451a1a;
    color: #fecaca;
    font-size: 0.85rem;
}

.auth-footer {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
}

.auth-success {
    margin-bottom: 1rem;
    padding: 0.6rem 0.8rem;
    border-radius: 0.6rem;
    background: #052e16;
    color: #bbf7d0;
    font-size: 0.85rem;
}

/* to keep Dashboard looking like Home/Telecom/etc */
.nav-links li a {
    color: var(--text-main);
    padding: 0.5rem 0.7rem;
    transition: color 250ms ease;
}

.nav-links li a:hover {
    color: var(--accent);
}

/* pill-style Account button */
.nav-account {
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 0.45rem 1.2rem;
    border-radius: 2rem;
    margin-left: 1rem;
    backdrop-filter: blur(4px);
    transition: 
        border-color 300ms ease,
        color 300ms ease,
        background 300ms ease;
}

.nav-account:hover {
    border-color: var(--accent-soft);
    color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
}

/* ---------- USER MENU / AVATAR ---------- */

.user-menu {
    position: relative;
    margin-left: 1rem;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: #050505;
    color: var(--text-main);
    font-size: 0.85rem;
    cursor: pointer;
    transition:
        border-color 200ms ease,
        background-color 200ms ease,
        color 200ms ease;
}

.user-toggle:hover {
    border-color: var(--accent-soft);
    color: var(--accent);
    background-color: #0a0a0a;
}

.user-avatar {
    --avatar-color: var(--accent);
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, var(--avatar-color) 0, #0a0a0a 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f9fafb;
}
.user-avatar-img {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    object-fit: cover;
}
.account-avatar-preview {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--accent);
    margin-bottom: 0.75rem;
}

.user-caret {
    font-size: 0.65rem;
    opacity: 0.6;
}

.user-menu-panel {
    position: absolute;
    right: 0;
    top: 115%;
    min-width: 190px;
    border-radius: 0.9rem;
    background: #050505;
    border: 1px solid #171717;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    padding: 0.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 30;
}

.user-menu-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.user-menu-panel a,
.user-menu-panel button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.45rem 0.7rem;
    border-radius: 0.55rem;
    font-size: 0.86rem;
    border: none;
    background: transparent;
    color: #e5e7eb;
    cursor: pointer;
    text-decoration: none;
}

.user-menu-panel a:hover,
.user-menu-panel button:hover {
    background: #0a0a0a;
    color: var(--accent);
}

.user-menu-panel form {
    margin: 0;
}

/* ---------- HAMBURGER & MOBILE NAV ---------- */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.25rem;
    margin-left: auto;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 999px;
}

.nav-toggle span + span {
    margin-top: 4px;
}

/* Mobile behavior (updated so nav links show when menu is open) */
@media (max-width: 768px) {
    .navbar {
        padding-inline: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0.75rem 1.25rem 1rem;
        background: #020202f5;
        border-bottom: 1px solid #111111;
        display: none;
        flex-direction: column;
        gap: 0.75rem;
    }

    .site-header.nav-open .nav-right {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .nav-links li a {
        padding: 0.4rem 0;
    }

    .user-menu {
        align-self: flex-end;
    }
}
