/* ==========================================================================
   1. CSS Custom Properties & Design Tokens
   ========================================================================== */
:root {
    /* Color Palette */
    --ink: #002E44;           /* Primary deep teal */
    --ink-dark: #001A27;      /* Darker shade for depth */
    --teal: #1AA4B6;          /* Secondary accent */
    --cyan: #4FD1E0;          /* Highlight/Gradient end */
    --accent: #F4C811;        /* Minimal yellow accents */

    /* Light Theme Neutrals */
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #001A27;     /* Deep navy for headings */
    --text-dark-muted: #335C6E; /* Muted teal-navy for body */

    /* Glass / Surface */
    --surface-light: rgba(255, 255, 255, 0.9);
    --border-light: rgba(0, 46, 68, 0.08);

    /* Typography */
    --font-display: 'Instrument Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --max-w: 1240px;
    --section-py: clamp(4rem, 10vw, 8rem);
    --container-px: clamp(1.25rem, 4vw, 2.5rem);
}

/* ==========================================================================
   2. Resets & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive Body Font Size: 16px mobile, 14px desktop/tablet */
body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark-muted);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
    body {
        font-size: 14px;
    }
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

a { color: inherit; text-decoration: none; transition: 0.2s ease; }
ul { list-style: none; }
img, svg, iframe { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   3. Textures & Background Gradients
   ========================================================================== */
.texture-dots {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(26, 164, 182, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.texture-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.3;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   4. Utility Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* Light mode text gradient */
.text-gradient {
    background: linear-gradient(120deg, var(--ink), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark mode text gradient for Hero & CTA */
.hero .text-gradient, .final-cta .text-gradient {
    background: linear-gradient(120deg, var(--cyan), #A5F3FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 99px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(120deg, var(--teal), var(--cyan));
    color: var(--ink-dark);
    box-shadow: 0 4px 14px rgba(26, 164, 182, 0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(79, 209, 224, 0.5), inset 0 1px 0 rgba(255,255,255,0.5);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink-dark);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

/* Buttons on dark sections */
.hero .btn-secondary, .final-cta .btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.hero .btn-secondary:hover, .final-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.7);
    color: var(--ink);
}

/* Neumorphic Glass Card (Light Mode Default) */
.glass-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 1px solid #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 32px rgba(0, 46, 68, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 46, 68, 0.08), 0 0 40px rgba(26, 164, 182, 0.05);
    border-color: rgba(26, 164, 182, 0.3);
}

/* Dark Glass (For elements sitting on dark gradients like Hero) */
.dark-glass {
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.1) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    color: var(--white);
}
.dark-glass h3, .dark-glass span { color: var(--white); }
.dark-glass .img-placeholder { background: rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.15); color: var(--teal); }
.dark-glass .img-placeholder i { color: var(--white); }

/* Placeholders */
.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px dashed rgba(26, 164, 182, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-dark-muted);
    text-align: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.img-placeholder i { font-size: 2.5rem; opacity: 0.8; color: var(--teal); }

/* Scroll Reveal Motion */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ==========================================================================
   5. Layout & Sections
   ========================================================================== */

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    color: var(--white); /* Top default */
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.875rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    color: var(--ink); /* #002E44 for the scrolled logo & links */
}

.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: inherit; }
.logo svg { height: 28px; width: auto; color: inherit; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; color: inherit; opacity: 0.9; }
.nav-links a:hover { color: var(--teal); opacity: 1; }

.nav-actions { display: none; align-items: center; }
.mobile-toggle { display: block; font-size: 1.5rem; color: inherit; padding: 0.5rem; }

@media (min-width: 1024px) {
    .nav-links, .nav-actions { display: flex; }
    .mobile-toggle { display: none; }
}

/* Hero Section */
.hero {
    position: relative;
    padding: calc(var(--section-py) + 4rem) 0 var(--section-py);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ink-dark) 0%, var(--ink) 25%, var(--teal) 65%, var(--cyan) 85%, var(--bg-light) 100%);
    color: var(--white);
    width: 100%;
}

.hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
.hero p { color: var(--white); opacity: 0.9; margin-bottom: 2.5rem; max-width: 700px; margin-inline: auto; }

.hero-bg-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.3; }
.hero-line { position: absolute; background: linear-gradient(to bottom, transparent, var(--teal), transparent); opacity: 0.6; filter: drop-shadow(0 0 4px var(--teal)); }
.hero-line.h { background: linear-gradient(to right, transparent, var(--teal), transparent); height: 1px; }
.hero-line.v { width: 1px; }

.hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; text-align: center; width: 100%; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }

.hero .btn-primary { background: var(--white); color: var(--ink-dark); box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15); }
.hero .btn-primary:hover { background: var(--bg-light); box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3); transform: translateY(-2px); filter: brightness(1); }

/* Section: Solution */
.solution-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .solution-grid { grid-template-columns: repeat(2, 1fr); } }

.solution-card {
    display: flex; flex-direction: column; gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.solution-card:hover { background: #F4F7FB; border-color: rgba(26,164,182,0.2); transform: translateY(-2px); }
.solution-card i { font-size: 2.5rem; color: var(--teal); margin-bottom: 0.5rem; }
.solution-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.solution-card p { color: var(--text-dark-muted); line-height: 1.5; }

/* Section: Why Wideout X Feature Cards */
.feature-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .feature-bento { grid-template-columns: repeat(2, 1fr); }
    .fc-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .fc-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .fc-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .fc-4 { grid-column: 2 / 3; grid-row: 2 / 3; }
}

@media (min-width: 1024px) {
    .feature-bento {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    .fc-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .fc-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .fc-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
    .fc-4 { grid-column: 3 / 4; grid-row: 1 / 3; }
}

/* Unified rules for perfect alignment across all Feature Cards */
.feature-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    height: 100%;
}
.feature-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-dark-muted); margin-bottom: 0; }

.fc-content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.feature-img {
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
    margin-top: auto;
}

/* Dark Emphasis Card ($0 Until You Sign) */
.dark-emphasis {
    background: linear-gradient(160deg, var(--teal) 0%, var(--ink) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white);
}
.dark-emphasis:hover {
    box-shadow: 0 20px 48px rgba(0, 46, 68, 0.4), 0 0 40px rgba(26, 164, 182, 0.2) !important;
    border-color: rgba(26, 164, 182, 0.4) !important;
}
.dark-emphasis h3, .dark-emphasis p, .dark-emphasis span { color: var(--white) !important; }
.dark-emphasis p { opacity: 0.9; }

/* The comparison band */
.comparison-band {
    margin-top: 6rem;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 32px rgba(0, 46, 68, 0.04);
    display: grid; grid-template-columns: 1fr;
}

.comp-texture {
    position: absolute; inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(26,164,182,0.04) 45%, rgba(79,209,224,0.08) 50%, rgba(26,164,182,0.04) 55%, transparent 70%);
    background-size: 200% 200%; pointer-events: none;
}

@media (min-width: 768px) { .comparison-band { grid-template-columns: 1fr 1fr; } }

.comp-col { padding: 3rem 2rem; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.comp-col.typical { background: var(--bg-light); border-right: 1px solid var(--border-light); }
.comp-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 2rem; color: var(--text-dark-muted); }

.steps-stack { display: flex; flex-direction: column; gap: 1rem; position: relative; }
.steps-stack::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 1px; border-left: 2px dashed rgba(0,0,0,0.1); z-index: -1; }
.step-item { display: flex; align-items: center; gap: 1rem; background: var(--white); padding: 1rem; border-radius: 12px; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.step-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-dark-muted); }
.step-item p { margin: 0; color: var(--text-dark); }

.comp-col.wideout { position: relative; overflow: hidden; }
.comp-col.wideout .comp-title { color: var(--text-dark); }
.streamlined-path {
    background: linear-gradient(135deg, rgba(26,164,182,0.05), transparent);
    border: 1px solid rgba(26,164,182,0.2);
    border-radius: 16px;
    padding: 2.5rem; text-align: center;
    box-shadow: 0 12px 40px rgba(26,164,182,0.05);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; height: 100%;
}
.stream-metric { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--teal); line-height: 1; }

/* Stats Band */
.stats-band {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 4rem 0; text-align: center; margin: 4rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }

/* Unified font and smaller sizes for stats band */
.stat-item h4 { font-family: var(--font-display); font-size: 2.75rem; color: var(--teal); font-weight: 700; margin-bottom: 0.5rem; font-variant-numeric: tabular-nums; }
.stat-item span { font-family: inherit; font-weight: inherit; font-size: 2.75rem; }
.stat-item p { color: var(--text-dark-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* Use Cases - Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
.use-case-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.use-case-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(26,164,182,0.15));
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 4rem; }

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
    .pricing-card { padding: 1.5rem; }
}
@media (min-width: 1024px) {
    .pricing-card { padding: 2.5rem; }
}

.pricing-card { display: flex; flex-direction: column; height: 100%; gap: 1.5rem; }
.pc-phase { font-weight: 700; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; }
.pc-time { display: inline-block; padding: 0.25rem 0.75rem; background: var(--bg-light); border: 1px solid rgba(0,0,0,0.05); border-radius: 99px; color: var(--text-dark-muted); width: max-content;}
.pc-desc { color: var(--text-dark-muted); flex: 1; }
.pc-deliverable { padding: 1rem; background: var(--bg-light); border-radius: 8px; color: var(--text-dark); min-height: 90px; display: flex; flex-direction: column; justify-content: center; }
.pc-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink-dark); margin: 1rem 0; line-height: 1.2; text-align: center; }
.pc-note { color: var(--text-dark-muted); text-align: center; margin-top: 0.5rem; }

/* Final CTA Band */
.final-cta {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--teal) 50%, var(--ink-dark) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
}
.final-cta h2, .final-cta p { color: var(--white); }
.final-cta .text-muted { color: var(--white); opacity: 0.9; }

/* Footer */
.footer { padding: 4rem 0; background: var(--ink-dark); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h4 { color: var(--cyan); margin-bottom: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.6); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ==========================================================================
   6. Modal & Mobile Menu
   ========================================================================== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0, 26, 39, 0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-content {
    background: var(--bg-light);
    width: 95%; max-width: 1000px; height: 90vh;
    border-radius: 24px; border: 1px solid var(--border-light);
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    transform: scale(0.95) translateY(20px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column; overflow: hidden;
}
.modal-overlay.active .modal-content { transform: scale(1) translateY(0); }

.modal-header { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); background: var(--white); display: flex; justify-content: space-between; align-items: center; }
.modal-close { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; color: var(--ink-dark); transition: all 0.2s; }
.modal-close:hover { background: rgba(0,0,0,0.1); transform: rotate(90deg); }

.modal-body { flex: 1; width: 100%; position: relative; }
.modal-body iframe { width: 100%; height: 100%; border: none; background: #fff; }

.mobile-menu {
    position: fixed; inset: 0; z-index: 40; background: var(--ink-dark);
    padding: 6rem 2rem 2rem; display: flex; flex-direction: column; gap: 2rem;
    transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-weight: 500; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }

/* Utils */
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-8 { margin-top: 2rem; }
.text-center { text-align: center; } .mx-auto { margin-left: auto; margin-right: auto; }

/* ── Language Switch ─────────────────────────────────────── */
.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    overflow: hidden;
    opacity: 0.85;
    margin-right: 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: opacity 0.2s ease;
}
.lang-switch:hover { opacity: 1; }
.lang-opt {
    padding: 0.35rem 0.6rem;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.lang-opt + .lang-opt { border-left: 1px solid currentColor; }
.lang-opt[aria-pressed="true"] {
    background: var(--teal);
    color: var(--white);
}
/* Mobile menu is dark — keep the switch legible and left-aligned */
.mobile-menu .lang-switch {
    color: var(--white);
    margin-right: 0;
    align-self: flex-start;
    font-size: 0.85rem;
}
