/* =========================================
   AEO/SEO PAGE — SELF-CONTAINED CSS
   Includes all needed styles from styles.css
   so this page runs without that file.
   ========================================= */

/* ── RESET & BASE ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    letter-spacing: -0.01em;
}

/* Dark mode — applied when light-mode class is absent */
body:not(.light-mode) {
    background-color: #000000;
    color: #FFFFFF;
}

body.light-mode {
    background-color: #FFFFFF;
    color: #000000;
}

/* ── NAVBAR ── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: transparent;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.navbar .logo img {
    height: 50px;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.hamburger span:nth-child(1) {
    background-color: #F46B2F;
}

.hamburger span:nth-child(2) {
    background-color: #000000;
}

body:not(.light-mode) .hamburger span:nth-child(2) {
    background-color: #FFFFFF;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ── NAVBAR SCROLLED ── */
.navbar.scrolled-nav {
    top: 20px;
    width: 80%;
    left: 10%;
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled-nav::before {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body:not(.light-mode) .navbar.scrolled-nav {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body:not(.light-mode) .navbar.scrolled-nav::before {
    background-color: rgba(20, 20, 20, 0.85);
}

.navbar.scrolled-nav .logo img {
    height: 35px;
}

/* ── DUAL LOGO ── */
.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo .logo-full {
    height: 50px;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.45s ease, transform 0.45s ease, height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.logo .logo-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    height: 38px;
    width: 38px;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.navbar.scrolled-nav .logo .logo-full {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

.navbar.scrolled-nav .logo .logo-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

body.light-mode .navbar.scrolled-nav .logo .logo-icon {
    content: url('img/MVMLogoBlack.png');
}

body.light-mode .navbar.scrolled-nav {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .navbar.scrolled-nav::before {
    background-color: rgba(255, 255, 255, 0.85);
}

/* ── NAV LINKS ── */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    transition: opacity 0.3s ease;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .nav-links a {
    color: #FFFFFF;
}

body.light-mode .nav-links a {
    color: #000000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F46B2F;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    bottom: 0;
    opacity: 1;
}

/* ── BTN OUTLINE (nav CTA) ── */
.btn-outline {
    background-color: transparent;
    color: #000000;
    border: 1px solid #F46B2F;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

body:not(.light-mode) .btn-outline {
    color: #FFFFFF;
}

body.light-mode .btn-outline {
    color: #000000;
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #F46B2F;
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    height: 100%;
}

.btn-outline:hover {
    color: #FFFFFF;
}

body:not(.light-mode) .btn-outline {
    color: #FFFFFF;
}

body.light-mode .btn-outline {
    color: #000000;
}

body.light-mode .btn-outline:hover {
    color: #FFFFFF;
}

.navbar.scrolled-nav .btn-outline {
    background-color: #F46B2F;
    color: #FFFFFF;
}

body.light-mode .navbar.scrolled-nav .btn-outline {
    color: #FFFFFF;
}

/* ── THEME BUTTON ── */
.theme-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: transparent;
    color: #000000;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    z-index: 1000;
    padding: 0;
}

body:not(.light-mode) .theme-btn {
    color: #FFFFFF;
}

body.light-mode .theme-btn {
    color: #000000;
}

.theme-btn:hover {
    transform: scale(1.1);
}


.hidden-top {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hidden-bottom {
    transform: translateY(40px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.show-nav {
    transform: none;
    opacity: 1;
}

.show-element {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

/* ── NAV ACTIVE LINK ── */
.nav-active {
    color: #f46b2f !important;
}

.nav-active::after {
    opacity: 1 !important;
    bottom: 0 !important;
}


/* =========================================
   FOOTER STYLES
   ========================================= */
.site-footer {
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 100px 80px 0;
    color: #000000;
    width: calc(100% - 40px);
    max-width: none;
    margin: -70px auto 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

body.light-mode .site-footer {
    background-color: #000000;
    color: #FFFFFF;
}

.footer-content-wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-logo-row {
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.3s ease;
}

.footer-tagline {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.footer-main-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-links-container {
    display: flex;
    gap: 120px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    margin-bottom: 5px;
}

.footer-col a,
.footer-contact p,
.footer-contact-link,
.footer-copyright p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

body.light-mode .footer-col a,
body.light-mode .footer-contact p,
body.light-mode .footer-contact-link,
body.light-mode .footer-copyright p {
    color: #FFFFFF;
}

.footer-col a:hover,
.footer-contact-link:hover {
    color: #F46B2F;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.newsletter-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.newsletter-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background-color: #000000;
    border-radius: 50px;
    padding: 6px;
    width: 100%;
    transition: background-color 0.3s ease;
}

body.light-mode .newsletter-form {
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    flex-grow: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

body.light-mode .newsletter-form button {
    background-color: #F46B2F;
    color: #FFFFFF;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 60px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* =========================================
   AEO/SEO PAGE — SECTION STYLES
   (copied from styles.css AEO block)
   ========================================= */

/* ── HERO ── */
.aeo-hero {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 100px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

body:not(.light-mode) .aeo-hero {
    background-color: #000;
}

body:not(.light-mode) .aeo-hero {
    background-color: #000;
}

/* Subtle radial glow behind content — toned down */
.aeo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%,
            rgba(244, 107, 47, 0.04) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* =========================================
   HERO BG SYSTEM — 4 DISTINCT DESIGNS
   Brand palette only:
   #F46B2F, #EAB557, #91E88E, #49483C, #000, #FFF
   ========================================= */

/* Design 2 is the only active design — always visible */
.aeo-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.bg-wave {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   DESIGN 2 — MORPHING WAVELENGTH (only design)
   5 SVG sine waves in brand palette
   (#F46B2F, #EAB557, #91E88E). The path `d`
   attribute is JS-animated so the wave shape
   undulates continuously.
   Works in both dark and light mode.
   ========================================= */

/* Wrapper — no forced bg; ambient layer paints theme-aware backdrop */
.bg-wave {
    background: transparent;
}

.bg-wave .wave-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    animation: waveAmbientBreathe 9s ease-in-out infinite;
}

/* Dark mode ambient — very subtle brand glows */
body:not(.light-mode) .bg-wave .wave-ambient {
    background:
        radial-gradient(ellipse 70% 55% at 28% 50%, rgba(244, 107, 47, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 75% 55%, rgba(145, 232, 142, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 80% 70% at 50% 50%, rgba(234, 181, 87, 0.03) 0%, transparent 70%),
        linear-gradient(180deg, #05070d 0%, #0a0803 60%, #05070d 100%);
}

/* Light mode ambient — barely-there tinted washes */
body.light-mode .bg-wave .wave-ambient {
    background:
        radial-gradient(ellipse 70% 55% at 28% 50%, rgba(244, 107, 47, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 75% 55%, rgba(145, 232, 142, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 80% 70% at 50% 50%, rgba(234, 181, 87, 0.02) 0%, transparent 70%),
        linear-gradient(180deg, #FFFDF8 0%, #FFF7EC 60%, #FFFDF8 100%);
}

@keyframes waveAmbientBreathe {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.75;
        transform: scale(1.04);
    }
}

/* Motion is driven 100% by SMIL <animate> on the path `d` — every vertex's
   Y value actually animates up/down, creating a real traveling wave.
   No CSS transforms — they would fight the SMIL and look wrong. */
.bg-wave .wave-group {
    will-change: auto;
}

/* ── TRUE NEON LIGHT STREAK CSS ── */
.bg-wave .wave-svg {
    position: absolute;
    /* Wide enough to always span the full viewport without squishing wave shapes */
    width: max(100vw, 1100px);
    min-width: 1100px;
    height: 600px;
    /* Dead-center pin via transform — single source of truth, no mobile conflicts */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    overflow: visible;
    /* Contain repaints to the SVG layer only */
    will-change: transform;
}

/* Screen blending makes overlapping light layers burn bright white */
body:not(.light-mode) .bg-wave .wave-svg {
    mix-blend-mode: screen;
}

body.light-mode .bg-wave .wave-svg {
    mix-blend-mode: multiply;
}

.bg-wave .wave-path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateZ(0);
    will-change: d;
}

/* ── THE PHOTOREALISTIC BLOOM (toned down) ── */
.bg-wave .wp-a {
    stroke: url(#waveGradA);
    stroke-width: 30;
    filter: blur(12px);
    opacity: 0.15;
}

.bg-wave .wp-b {
    stroke: url(#waveGradB);
    stroke-width: 12;
    filter: blur(5px);
    opacity: 0.35;
}

.bg-wave .wp-c {
    stroke: url(#waveGradC);
    stroke-width: 5;
    filter: blur(2px);
    opacity: 0.60;
}

.bg-wave .wp-d {
    stroke: url(#waveGradA);
    stroke-width: 10;
    filter: blur(4px);
    opacity: 0.28;
}

.bg-wave .wp-e {
    stroke: #FFFFFF;
    stroke-width: 1.5;
    filter: none;
    opacity: 0.75;
}

/* Light mode adaptations */
body.light-mode .bg-wave .wp-a {
    opacity: 0.10;
}

body.light-mode .bg-wave .wp-b {
    opacity: 0.22;
}

body.light-mode .bg-wave .wp-c {
    opacity: 0.45;
}

body.light-mode .bg-wave .wp-d {
    opacity: 0.18;
}

body.light-mode .bg-wave .wp-e {
    stroke: #F46B2F;
    opacity: 0.65;
}


.bg-wave .wave-shimmer {
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    animation: waveShimmer 6s linear infinite;
    pointer-events: none;
}

body:not(.light-mode) .bg-wave .wave-shimmer {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 100%);
}

body.light-mode .bg-wave .wave-shimmer {
    mix-blend-mode: multiply;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(244, 107, 47, 0.02) 45%,
            rgba(244, 107, 47, 0.04) 50%,
            rgba(244, 107, 47, 0.02) 55%,
            transparent 100%);
}

@keyframes waveShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.bg-wave .wave-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body:not(.light-mode) .bg-wave .wave-vignette {
    background:
        radial-gradient(ellipse 120% 80% at 50% 50%, transparent 60%, rgba(0, 0, 0, 0.20) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.10) 100%);
}

body.light-mode .bg-wave .wave-vignette {
    background:
        radial-gradient(ellipse 120% 80% at 50% 50%, transparent 60%, rgba(73, 72, 60, 0.04) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, transparent 15%, transparent 85%, rgba(255, 255, 255, 0.12) 100%);
}

/* Design 3 aurora removed — only Design 2 wave is used */

/* Reduced-motion — pause all motion, keep a gentle static state */
@media (prefers-reduced-motion: reduce) {

    .bg-wave .wave-ambient,
    .bg-wave .wave-shimmer {
        animation: none !important;
    }

    /* Freeze wave paths so users see a static sine wave */
    .bg-wave .wave-path animate {
        display: none;
    }
}


/* bg-toggle button removed — Design 2 is fixed */

@keyframes letter-pop {
    0% {
        transform: scale(0.3) translateY(20px);
        opacity: 0;
    }

    55% {
        transform: scale(1.25) translateY(-6px);
        opacity: 1;
    }

    75% {
        transform: scale(0.92) translateY(2px);
    }

    90% {
        transform: scale(1.06) translateY(-1px);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.answers-word {
    display: inline-block;
}

.answers-word .aletter {
    display: inline-block;
    opacity: 0;
    transform-origin: center bottom;
    animation: letter-pop 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.aeo-hero-inner {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.aeo-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f46b2f;
    text-transform: uppercase;
    margin-bottom: 32px;
    display: block;
}

.aeo-hero-title {
    font-family: "Epilogue", sans-serif;
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 0.95;
    margin: 0 0 40px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-hero-title {
    color: #fff;
}

.aeo-hero-title span {
    color: #f46b2f;
    font-style: italic;
}

.aeo-stat-callout {
    font-family: "Inter", sans-serif;
    font-size: clamp(15px, 1.8vw, 19px);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 48px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-stat-callout {
    color: rgba(255, 255, 255, 0.6);
}

.aeo-stat-callout strong {
    color: #111;
    font-weight: 800;
    background: rgba(244, 107, 47, 0.15);
    border: 1px solid rgba(244, 107, 47, 0.4);
    border-radius: 4px;
    padding: 2px 8px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-stat-callout strong {
    color: #fff;
}

.aeo-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── AEO BUTTONS ── */
.aeo-btn-primary {
    background: #f46b2f;
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.aeo-btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.aeo-btn-ghost {
    background: transparent;
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 16px 36px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s ease, color 0.3s ease;
}

body:not(.light-mode) .aeo-btn-ghost {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.25);
}

.aeo-btn-ghost:hover {
    border-color: #f46b2f;
    color: #f46b2f;
}

/* ── SIMULATION SECTION ── */
.aeo-simulation-section {
    padding: 120px 60px;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    transition: background-color 0.3s ease;
}

body:not(.light-mode) .aeo-simulation-section {
    background: #050505;
}

body:not(.light-mode) .aeo-simulation-section {
    background: #050505;
}

.aeo-sim-inner {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.aeo-sim-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aeo-sim-tag {
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #f46b2f;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.aeo-sim-targets {
    font-family: "Sora", sans-serif;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    margin-top: -10px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-sim-targets {
    color: rgba(255, 255, 255, 0.45);
}

.aeo-sim-title {
    font-family: "Epilogue", sans-serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-sim-title {
    color: #fff;
}

.aeo-sim-title .synthesis {
    color: #91E88E;
    font-style: italic;
}

.aeo-sim-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
    max-width: 440px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-sim-desc {
    color: rgba(255, 255, 255, 0.55);
}

.aeo-sim-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.aeo-sim-divider-line {
    width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

body:not(.light-mode) .aeo-sim-divider-line {
    background: rgba(255, 255, 255, 0.2);
}

.aeo-sim-divider span {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-sim-divider span {
    color: rgba(255, 255, 255, 0.3);
}

/* Orange targets label inside divider */
.aeo-sim-targets-label {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: #F46B2F;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* ── VIDEO PANEL ── */
.aeo-video-panel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-panel-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body:not(.light-mode) .video-panel-placeholder {
    background-color: #0c0c0c;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.aeo-synthesis-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.video-overlay-text {
    position: relative;
    z-index: 2;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

body:not(.light-mode) .video-overlay-text {
    color: #555;
}

/* ── SEO vs AEO COMPARISON ── */
.aeo-compare-section {
    padding: 120px 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    transition: background-color 0.3s ease;
}

body:not(.light-mode) .aeo-compare-section {
    background: #000;
}

.aeo-compare-inner {
    max-width: 1200px;
    width: 100%;
}

.aeo-compare-header {
    text-align: center;
    margin-bottom: 72px;
}

.aeo-compare-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f46b2f;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.aeo-compare-title {
    font-family: "Epilogue", sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 0.95;
    margin: 0 0 16px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-compare-title {
    color: #fff;
}

.aeo-compare-title .vs {
    font-style: italic;
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.7em;
}

body:not(.light-mode) .aeo-compare-title .vs {
    color: rgba(255, 255, 255, 0.25);
}

.aeo-compare-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-compare-subtitle {
    color: rgba(255, 255, 255, 0.4);
}

.aeo-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.compare-col {
    border-radius: 12px;
    padding: 40px;
}

.compare-col.traditional {
    background: #fffdf0;
    border: 1px solid rgba(234, 179, 8, 0.25);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body:not(.light-mode) .compare-col.traditional {
    background: #0f0e00;
    border-color: rgba(234, 179, 8, 0.15);
}

.compare-col.modern {
    background: #f0fff4;
    border: 1px solid rgba(145, 232, 142, 0.35);
    transition: background-color 0.3s ease;
}

body:not(.light-mode) .compare-col.modern {
    background: #0d1a0d;
    border-color: rgba(145, 232, 142, 0.15);
}

.compare-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.compare-col-icon {
    font-size: 20px;
    opacity: 1;
}

/* Traditional col icon — caramel gold both themes */
.compare-col.traditional .compare-col-icon {
    color: #EAB557;
}

/* Modern col icon — brand light green both themes */
.compare-col.modern .compare-col-icon {
    color: #91E88E;
}

/* New circular glow icon wrapper — matches screenshot */
.compare-col-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.compare-col-icon-wrap.traditional-icon {
    background: rgba(244, 107, 47, 0.12);
    color: #F46B2F;
    border: 1px solid rgba(244, 107, 47, 0.35);
    box-shadow: 0 0 18px rgba(244, 107, 47, 0.15);
}

body:not(.light-mode) .compare-col-icon-wrap.traditional-icon {
    background: rgba(244, 107, 47, 0.15);
    box-shadow: 0 0 22px rgba(244, 107, 47, 0.22);
}

.compare-col-icon-wrap.modern-icon {
    background: rgba(244, 107, 47, 0.12);
    color: #F46B2F;
    border: 1px solid rgba(244, 107, 47, 0.35);
    box-shadow: 0 0 18px rgba(244, 107, 47, 0.15);
}

body:not(.light-mode) .compare-col-icon-wrap.modern-icon {
    background: rgba(244, 107, 47, 0.15);
    box-shadow: 0 0 22px rgba(244, 107, 47, 0.22);
}

.compare-col-title {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .compare-col-title {
    color: rgba(255, 255, 255, 0.5);
}

/* Traditional col title — neutral, not gold */
.compare-col.traditional .compare-col-title {
    color: rgba(0, 0, 0, 0.55);
}

body:not(.light-mode) .compare-col.traditional .compare-col-title {
    color: rgba(255, 255, 255, 0.5);
}

.compare-col.modern .compare-col-title {
    color: rgba(0, 0, 0, 0.85);
}

body:not(.light-mode) .compare-col.modern .compare-col-title {
    color: rgba(255, 255, 255, 0.85);
}

.compare-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.compare-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.compare-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* X icons — muted/dimmed, de-emphasised */
.compare-item-icon.cross {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

body:not(.light-mode) .compare-item-icon.cross {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Check icons = brand orange — matching photo */
.compare-item-icon.check {
    background: rgba(244, 107, 47, 0.12);
    color: #F46B2F;
    border: 1px solid rgba(244, 107, 47, 0.35);
}

body:not(.light-mode) .compare-item-icon.check {
    background: rgba(244, 107, 47, 0.15);
    color: #F46B2F;
    border-color: rgba(244, 107, 47, 0.3);
}

.compare-item-text h4 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .compare-item-text h4 {
    color: rgba(255, 255, 255, 0.8);
}

/* Traditional col — neutral text, light mode */
body.light-mode .compare-col.traditional .compare-item-text h4 {
    color: rgba(0, 0, 0, 0.85);
}

.compare-col.modern .compare-item-text h4 {
    color: rgba(0, 0, 0, 0.9);
}

body:not(.light-mode) .compare-col.modern .compare-item-text h4 {
    color: rgba(255, 255, 255, 0.95);
}

.compare-item-text p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

body.light-mode .compare-col.traditional .compare-item-text p {
    color: rgba(0, 0, 0, 0.6);
}

body:not(.light-mode) .compare-item-text p {
    color: rgba(255, 255, 255, 0.45);
}

.aeo-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.aeo-summary-box {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

body:not(.light-mode) .aeo-summary-box {
    background: #0a0a0a;
    border-color: rgba(255, 255, 255, 0.07);
}

.aeo-summary-box:hover {
    border-color: rgba(244, 107, 47, 0.3);
}

.aeo-summary-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(244, 107, 47, 0.12);
    border: 1px solid rgba(244, 107, 47, 0.35);
    box-shadow: 0 0 20px rgba(244, 107, 47, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #F46B2F;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
}

body:not(.light-mode) .aeo-summary-icon-wrap {
    background: rgba(244, 107, 47, 0.1);
    box-shadow: 0 0 24px rgba(244, 107, 47, 0.22);
}

.aeo-summary-box:hover .aeo-summary-icon-wrap {
    box-shadow: 0 0 32px rgba(244, 107, 47, 0.35);
}

.aeo-summary-box h4 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-summary-box h4 {
    color: #fff;
}

.aeo-summary-box p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-summary-box p {
    color: rgba(255, 255, 255, 0.45);
}

/* ── EXCLUSIVITY SECTION ── */
.aeo-exclusivity-section {
    padding: 140px 60px;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

body:not(.light-mode) .aeo-exclusivity-section {
    background: #050505;
}

.globe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

body:not(.light-mode) .globe-canvas {
    opacity: 0.8;
}

.aeo-exclusivity-inner {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.aeo-excl-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    display: block;
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-excl-eyebrow {
    color: rgba(255, 255, 255, 0.3);
}

.aeo-excl-title {
    font-family: "Epilogue", sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-excl-title {
    color: #fff;
}

.aeo-excl-title .currency {
    color: #f46b2f;
    font-style: italic;
}

.aeo-excl-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 24px auto 0;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-excl-desc {
    color: rgba(255, 255, 255, 0.5);
}

.aeo-excl-desc strong {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-excl-desc strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ── CTA SECTION ── */
.aeo-cta-section {
    padding: 80px 40px 140px;
    min-height: 520px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background-color 0.3s ease;
}

body:not(.light-mode) .aeo-cta-section {
    background: #000;
}

.aeo-cta-section::before {
    content: "VISION";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    text-align: center;
    font-family: "Big Shoulders Display", "Bebas Neue", sans-serif;
    font-size: clamp(220px, 34vw, 500px);
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    -webkit-text-stroke: 0;
    letter-spacing: 10px;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    text-transform: uppercase;
}

body:not(.light-mode) .aeo-cta-section::before {
    color: rgba(255, 255, 255, 0.04);
    -webkit-text-stroke: 0;
}

.aeo-cta-inner {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.aeo-cta-title {
    font-family: "Epilogue", sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 0.92;
    margin: 0 0 24px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-cta-title {
    color: #fff;
}

.aeo-cta-title .answer {
    color: #f46b2f;
    font-style: italic;
    display: block;
    opacity: 1;
    transform: none;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.aeo-cta-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    margin: 0 auto 44px;
    max-width: 480px;
    transition: color 0.3s ease;
}

body:not(.light-mode) .aeo-cta-desc {
    color: rgba(255, 255, 255, 0.5);
}

.aeo-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   DARK MODE OVERRIDES (light is now default)
   ========================================= */
body:not(.light-mode) .aeo-sim-title,
body:not(.light-mode) .aeo-cta-title,
body:not(.light-mode) .aeo-excl-title,
body:not(.light-mode) .aeo-compare-title,
body:not(.light-mode) .aeo-hero-title {
    color: #ffffff !important;
}

body:not(.light-mode) .aeo-sim-desc,
body:not(.light-mode) .aeo-cta-desc,
body:not(.light-mode) .aeo-excl-desc,
body:not(.light-mode) .aeo-exclusivity-section p {
    color: rgba(255, 255, 255, 0.55) !important;
}

body:not(.light-mode) .video-panel-placeholder,
body:not(.light-mode) .aeo-query-panel {
    background-color: #0c0c0c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */
@media (min-width: 1440px) {
    .navbar {
        padding: 50px 120px;
    }

    .navbar.scrolled-nav {
        padding: 15px 60px;
        width: 70%;
        left: 15%;
    }
}

@media (max-width: 1366px) {
    .navbar {
        padding: 40px 60px;
    }

    .navbar.scrolled-nav {
        width: 85%;
        left: 7.5%;
    }
}

@media (max-width: 1024px) {
    .navbar {
        flex-direction: row;
        padding: 30px 40px;
    }

    .navbar.scrolled-nav {
        flex-direction: row;
        padding: 15px 30px;
        width: 90%;
        left: 5%;
    }

    .hamburger {
        display: flex;
    }

    .nav-content {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 50px 20px 80px;
        border-radius: 30px 30px 0 0;
        transform: translateY(100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, visibility 0.6s;
        z-index: -1;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-content.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    body.light-mode .nav-content {
        background-color: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 20px;
    }

    .aeo-sim-inner,
    .aeo-compare-grid,
    .aeo-summary-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aeo-sim-left {
        order: 1;
    }

    .aeo-video-panel {
        order: 2;
    }

    /* VISION stays large — handled per mobile breakpoint below */

    .footer-main-row {
        flex-direction: column;
        gap: 60px;
    }

    .footer-links-container {
        flex-wrap: wrap;
        gap: 50px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .site-footer {
        padding: 80px 40px 0;
        border-radius: 30px;
        width: calc(100% - 20px);
        margin: 0 auto 20px;
    }
}

@media (max-width: 900px) {
    .aeo-simulation-section {
        padding: 80px 30px;
    }

    .aeo-compare-section {
        padding: 80px 30px;
    }

    .aeo-exclusivity-section {
        padding: 100px 30px;
    }

    .aeo-cta-section {
        padding: 100px 30px;
    }

    .video-panel-placeholder {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
    }

    /* Tablet — keep the SVG just wide enough for the wave to breathe without zooming */
    .bg-wave .wave-svg {
        width: max(100vw, 700px);
        min-width: 700px;
        height: 420px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* ── Hero ── */
    .aeo-hero {
        padding: 130px 24px 60px;
    }

    .aeo-hero-title {
        font-size: clamp(36px, 9vw, 52px);
        letter-spacing: -1px;
        line-height: 1.08;
    }

    .aeo-stat-callout {
        font-size: 15px;
        padding: 0 8px;
    }

    /* ── Simulation ── */
    .aeo-simulation-section {
        padding: 70px 24px;
    }

    .aeo-sim-title {
        font-size: clamp(32px, 8vw, 46px);
    }

    .video-panel-placeholder {
        min-height: 260px;
    }

    /* ── Compare ── */
    .aeo-compare-section {
        padding: 70px 24px;
    }

    .aeo-compare-title {
        font-size: clamp(32px, 8vw, 46px);
        margin-bottom: 24px;
    }

    .compare-col {
        padding: 28px 18px;
    }

    .aeo-summary-box {
        padding: 22px 18px;
    }

    .aeo-exclusivity-section {
        padding: 80px 24px;
    }

    .aeo-excl-title {
        font-size: clamp(32px, 8vw, 46px);
    }

    .aeo-excl-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .aeo-cta-section {
        padding: 80px 24px 140px;
        min-height: 560px;
        overflow: hidden;
    }

    .aeo-cta-section::before {
        font-size: clamp(160px, 52vw, 300px);
        letter-spacing: 6px;
    }

    .aeo-cta-title {
        font-size: clamp(52px, 13vw, 80px);
        line-height: 1.0;
        letter-spacing: -2px;
    }

    .aeo-cta-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .aeo-btn-primary,
    .aeo-btn-ghost {
        width: 100%;
        text-align: center;
    }

    .footer-links-container {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 20px;
    }

    .navbar.scrolled-nav {
        padding: 15px 20px;
        top: 10px;
        width: 95%;
        left: 2.5%;
    }

    .aeo-exclusivity-section {
        padding: 60px 20px;
    }


    .aeo-simulation-section {
        padding: 60px 20px;
    }
}

@media (max-width: 425px) {
    .aeo-hero {
        padding: 120px 20px 50px;
    }

    .aeo-hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .aeo-sim-title,
    .aeo-compare-title,
    .aeo-excl-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .aeo-cta-title {
        font-size: 52px;
        letter-spacing: -2px;
        line-height: 0.95;
    }

    .aeo-cta-section::before {
        font-size: 190px;
        letter-spacing: 4px;
    }

    .compare-col-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .globe-canvas {
        opacity: 0.18;
    }

    body:not(.light-mode) .globe-canvas {
        opacity: 0.8;
    }
}

/* ══════════════════════
   320px — tiny phones
   ══════════════════════ */
@media (max-width: 360px) {

    /* CTA section */
    .aeo-cta-section {
        padding: 70px 20px 130px;
        min-height: 520px;
        overflow: hidden;
    }

    .aeo-cta-section::before {
        font-size: 170px;
        letter-spacing: 2px;
        top: 52%;
    }

    .aeo-cta-title {
        font-size: 48px;
        letter-spacing: -2px;
        line-height: 0.95;
        margin-bottom: 20px;
    }

    .aeo-cta-desc {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 32px;
    }

    .aeo-cta-btns {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 0 auto;
    }

    .aeo-btn-primary,
    .aeo-btn-ghost {
        width: 100%;
        text-align: center;
        font-size: 12px;
        padding: 14px 16px;
        letter-spacing: 1px;
    }
}

/* ══════════════════════════════════════════
   DESIGN 2 — MOBILE RESPONSIVE FIXES
   Ensures the liquid wave bg looks great on
   all phones from 360 px up to 768 px.
   ══════════════════════════════════════════ */

/* ── Phones ≤ 768px ── */
@media (max-width: 768px) {

    /* Lighten the bloom filter on mobile — heavy drop-shadows tank GPU perf on phones */
    .bg-wave {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.25));
    }

    body.light-mode .bg-wave {
        filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 12px rgba(0, 0, 0, 0.08));
    }

    /* Reduce ambient animation scale — keeps it subtle on smaller screens */
    @keyframes waveAmbientBreathe {

        0%,
        100% {
            opacity: 0.9;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.02);
        }
    }
}

/* ── Small phones ≤ 480px ── */
@media (max-width: 480px) {
    .bg-wave .wave-svg {
        width: max(100vw, 560px);
        min-width: 560px;
        height: 340px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Tighten bloom on very small screens */
    .bg-wave {
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    }

    body.light-mode .bg-wave {
        filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.12)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    }
}

/* ── Tiny phones ≤ 360px ── */
@media (max-width: 360px) {
    .bg-wave .wave-svg {
        width: max(100vw, 480px);
        min-width: 480px;
        height: 280px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* ── LIGHT STREAK GLOW FOR THE WAVES (toned down) ── */
.bg-wave {
    /* Softer bloom — subtle glow following the lines */
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

body.light-mode .bg-wave {
    /* Very subtle dark glow for light mode */
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.12)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.06));
}