 /* =========================================
           LOCAL FONTS
           ========================================= */
        @font-face {
            font-family: 'Monument Extended';
            src: url('MonumentExtended-Regular.otf') format('opentype');
            font-weight: normal; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'Suisse Intl';
            src: url('fonnts.com-Suisse_Intl_Book.ttf') format('truetype');
            font-weight: 300; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'Suisse Intl';
            src: url('fonnts.com-Suisse_Intl_Regular.ttf') format('truetype');
            font-weight: 400; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'Suisse Intl';
            src: url('fonnts.com-Suisse_Intl_Medium.ttf') format('truetype');
            font-weight: 500; font-style: normal; font-display: swap;
        }

        /* =========================================
           DESIGN TOKENS
           ========================================= */
        :root {
            --red:        #8D0D14;
            --red-dark:   #8D0D14;
            --red-glow:   rgba(179,0,0,0.35);
            --black:      #0e0e0e;
            --surface:    #161616;
            --surface-2:  #1c1c1c;
            --white:      #f6f0e7;
            --white-60:   rgba(255,255,255,0.6);
            --white-15:   rgba(255,255,255,0.15);
            --white-08:   rgba(255,255,255,0.08);

            --font-head:  'Monument Extended', 'Arial Black', system-ui, sans-serif;
            --font-body:  'Suisse Intl', system-ui, -apple-system, sans-serif;

            --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
            --ease-spring:   cubic-bezier(0.34,1.56,0.64,1);

            --r-pill: 999px;
            --r-card: 20px;
            --r-sm:   12px;

            --glass-bg:    rgba(255,255,255,0.06);
            --glass-bd:    rgba(255,255,255,0.14);
            --glass-blur:  blur(18px);

            --nav-h: 76px;
        }

        /* =========================================
           RESET & BASE
           ========================================= */
        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* =========================================
           CUSTOM CURSOR
           ========================================= */
        .cursor {
            position: fixed; top:0; left:0; z-index:9999;
            pointer-events: none; mix-blend-mode: difference;
        }
        .cursor__dot {
            width:8px; height:8px; border-radius:50%;
            background:var(--white);
            transform: translate(-50%,-50%);
            transition: transform 0.15s var(--ease-out-expo);
        }
        .cursor__ring {
            position:fixed; top:0; left:0;
            width:36px; height:36px; border-radius:50%;
            border:1.5px solid var(--white);
            transform: translate(-50%,-50%);
            pointer-events: none; z-index:9998;
            transition: width 0.3s var(--ease-out-expo),
                        height 0.3s var(--ease-out-expo),
                        border-color 0.3s;
        }
        body:has(a:hover) .cursor__ring,
        body:has(button:hover) .cursor__ring {
            width:56px; height:56px; border-color:var(--red);
        }
@media (pointer: coarse) {
    .cursor, 
    .cursor__ring { 
        display: none !important; 
    }
}

        /* =========================================
           SCROLL PROGRESS BAR
           ========================================= */
        #progress-bar {
            position: fixed; top:0; left:0; z-index:9997;
            height:3px; width:0%; background:var(--white);
            transition: width 0.1s linear;
        }

        /* =========================================
           NAV
           ========================================= */
        .navbar {
            position: fixed; top:0; left:0; right:0; z-index:200;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 4%;
            height: var(--nav-h);
            background: rgba(14,14,14,0.12);
               backdrop-filter: blur(20px);
            backdrop-filter: blur(0px);
            transition: background 0.5s ease, backdrop-filter 0.5s ease,
                        border-bottom 0.5s ease;
            border-bottom: 1px solid transparent;
        }
        .navbar.scrolled {
            background: rgba(14,14,14,0.25);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--white-15);
        }

        .nav__logo {
            display:flex; align-items:center; height:80px;
            text-decoration:none;
        }
        .nav__logo img { height:100%; width:auto; object-fit:contain; }

        /* hamburger */
        .nav__hamburger {
            display:none; flex-direction:column; gap:5px;
            cursor:pointer; padding:8px; border:none; background:transparent;
            border-radius:8px;
        }
        .nav__hamburger span {
            display:block; width:24px; height:2px;
            background:var(--white); border-radius:2px;
            transition: transform 0.4s var(--ease-out-expo),
                        opacity 0.3s ease;
        }
        .nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav__hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
        .nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .nav__links {

            position: absolute;
    left: 50%;
    transform: translateX(-50%);
            display:flex; gap:0.4rem;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-bd);
            padding: 0.4rem;
            border-radius: var(--r-pill);
        }

        /* mobile drawer */
        .nav__drawer {
            display:none; position:fixed;
            top: var(--nav-h); left:0; right:0; bottom:0;
            background:rgba(14,14,14,0.97);
            backdrop-filter:blur(20px);
            z-index:190;
            flex-direction:column; align-items:center; justify-content:center;
            gap:2rem;
            opacity:0; transform:translateY(-20px);
            pointer-events:none;
            transition: opacity 0.4s var(--ease-out-expo),
                        transform 0.4s var(--ease-out-expo);
        }
        .nav__drawer.open {
            opacity:1; transform:translateY(0); pointer-events:all;
        }
        .nav__drawer a {
            font-family:var(--font-head); font-size:clamp(1.4rem,5vw,2.2rem);
            text-decoration:none; color:var(--white);
            text-transform:uppercase; letter-spacing:1px;
            transition: color 0.3s ease;
        }
        .nav__drawer a:hover { color:var(--red); }

        /* Buttons */
        .btn {
            font-family: var(--font-head);
            font-size: clamp(0.7rem, 1.1vw, 0.85rem);
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 400;
            padding: 0.7rem 1.5rem;
            border-radius: var(--r-pill);
            border: none;
            cursor: pointer;
            display: inline-flex; align-items:center; gap:0.4rem;
            transition: transform 0.35s var(--ease-spring),
                        box-shadow 0.35s ease,
                        background 0.3s ease;
            white-space: nowrap;
            position: relative; overflow: hidden;
        }
        .btn::after {
            content:''; position:absolute; inset:0;
            background: rgba(255,255,255,0.1);
            opacity:0;
            transition: opacity 0.3s ease;
        }
        .btn:hover::after { opacity:1; }
        .btn:active { transform: scale(0.96) !important; }

        .btn--solid {
            background: var(--white); color: var(--black);
        }
        .btn--solid:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 24px rgba(255,255,255,0.2);
        }
        .btn--ghost {
            background: transparent;
            color: var(--white);
            font-family: var(--font-body);
            text-transform: none;
            font-size: 0.9rem;
            border: 1px solid transparent;
        }
        .btn--ghost:hover {
            background: var(--white-08);
            border-color: var(--white-15);
        }
        .btn--red {
            background: var(--red); color: var(--white);
        }
        .btn--red:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 28px var(--red-glow);
        }

        /* =========================================
           HERO
           ========================================= */
        .hero {
            position: relative;
            min-height: 100svh;
            display: flex; flex-direction:column;
            justify-content: space-between;
            padding: calc(var(--nav-h) + 2rem) 4% 3rem;
            overflow: hidden;
        }

        .hero__bg {
            position:absolute; inset:0; z-index:-2; overflow:hidden;
        }
        .hero__video {
            width:100%; height:100%; object-fit:cover;
            transform: scale(1.08);
            will-change: transform;
        }
        .hero__overlay {
            position:absolute; inset:0; z-index:-1;
            background: linear-gradient(
                160deg,
                rgba(14,14,14,0.72) 0%,
                rgba(14,14,14,0.15) 50%,
                rgba(14,14,14,0.92) 100%
            );
        }
        /* subtle noise grain */
        .hero__overlay::after {
            content:''; position:absolute; inset:0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            opacity:0.4; pointer-events:none;
        }

        /* Badge chip */
        .hero__badge {
            display:inline-flex; align-items:center; gap:0.5rem;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-bd);
            padding: 0.45rem 1rem 0.45rem 0.5rem;
            border-radius: var(--r-pill);
            font-size: 0.8rem; color: var(--white-60);
            width: fit-content;
            opacity:0; transform:translateY(12px);
        }
        .hero__badge .badge-dot {
            width:8px; height:8px; border-radius:50%;
            background: #22c55e;
            box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
            50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
        }

        .hero__content {
            display: flex; flex-direction:column; gap:1.4rem;
            max-width: 1000px;
            z-index:2;
        }

        .hero__title {
            font-family: var(--font-head);
            font-size: clamp(2rem, 4.5vw, 4.5rem);
            line-height: 1.06;
   
            letter-spacing: -0.02em;
        }
        /* Red accent on second line */
        .hero__title .accent { color: var(--red); }
        .text-mask { overflow: hidden; display: block; }
        .title-line { display:block; transform: translateY(105%); }

        .hero__sub {
            font-weight: 300;
            font-size: clamp(0.95rem, 1.4vw, 1.15rem);
            line-height: 1.65;
            color: var(--white-60);
            max-width: 600px;
            opacity:0;
        }

        .hero__actions {
            display:flex; align-items:center; gap:1rem;
            flex-wrap: wrap;
            opacity:0;
        }
        .hero__actions .btn--solid { padding: 0.9rem 2.2rem; font-size:0.85rem;  margin-bottom: 4vh;}
        .hero__play {
            display:inline-flex; align-items:center; gap:0.6rem;
            color:var(--white); text-decoration:none;
            font-size:0.9rem; font-weight:300;
            opacity:0.85;
            transition: opacity 0.3s, gap 0.3s var(--ease-spring);
        }
        .hero__play:hover { opacity:1; gap:0.9rem; }
        .play-icon {
            width:42px; height:42px; border-radius:50%;
            border:1.5px solid var(--white-15);
            display:flex; align-items:center; justify-content:center;
            font-size:1.1rem;
            transition: border-color 0.3s ease, background 0.3s ease;
        }
        .hero__play:hover .play-icon {
            background: var(--white-08);
            border-color: var(--white-60);
        }

        /* =========================================
           HERO STAT CARDS
           ========================================= */
        .hero__cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            z-index:2;
        }

        .stat-card {
            border-radius: var(--r-card);
            padding: 1.8rem 1.5rem;
            display:flex; flex-direction:column; justify-content:space-between;
            min-height: 190px;
            opacity:0; transform: translateY(28px);
            transition: transform 0.4s var(--ease-spring),
                        box-shadow 0.4s ease;
            cursor: default;
        }
        .stat-card:hover { transform: translateY(-6px) !important; }

        .stat-card--white { background:var(--white); color:var(--black); }
        .stat-card--white:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

        .stat-card--glass {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-bd);
        }
        .stat-card--glass:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

        .stat-card--red { background: var(--red); }
        .stat-card--red:hover { box-shadow: 0 20px 40px var(--red-glow); }

        .stat-card__num {
            font-family: var(--font-head);
            font-size: clamp(2.2rem, 3.5vw, 3.2rem);
            line-height:1;
        }
        .stat-card__label {
            font-size: 0.95rem; font-weight:500;
            margin-top: 0.3rem; margin-bottom:1.2rem;
        }
        .stat-card__desc {
            font-size: 0.82rem; line-height:1.5; opacity:0.7;
        }

        .hero__tagline {
            text-align:center;
            font-size: clamp(0.8rem, 1.1vw, 0.95rem);
            color: var(--white-60);
            letter-spacing:0.04em;
            opacity:0; transform:translateY(12px);
            margin-top: 4vh;
        }

        /* =========================================
           SECTION HEADERS
           ========================================= */
        .section-label {
            display:inline-flex; align-items:center; gap:0.5rem;
            font-size:0.75rem; letter-spacing:0.12em;
            text-transform:uppercase; color:var(--red);
            margin-bottom:0.8rem;
        }
        .section-label i { font-size:0.9rem; }

        .section-title {
            font-family: var(--font-head);
            font-size: clamp(1.8rem, 3.5vw, 3.2rem);
            text-transform: capitalize;
            line-height:1.1;
        }

        /* =========================================
           PATHWAY SECTION
           ========================================= */
        .pathway {
            padding: 6rem 4%;
            background: var(--black);
            position:relative; z-index:5;
        }
        .pathway__header {
            text-align:center; margin-bottom:3.5rem;
            opacity:0; transform:translateY(24px);
        }

        .pathway__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            max-width: 1440px; margin:0 auto;
        }

        .pcard {
            background: var(--surface);
            border-radius: var(--r-card);
            overflow:hidden;
            display:flex; flex-direction:column;
            min-height: 560px;
            opacity:0; transform:translateY(44px);
            border: 1px solid var(--white-08);
            transition: border-color 0.4s ease;
        }
        .pcard:hover { border-color: var(--white-15); }

        .pcard__head {
            background: var(--red);
            padding: 1.2rem 1.5rem;
            display:flex; align-items:center; justify-content:space-between;
        }
        .pcard__head-title {
            font-family: var(--font-head);
            font-size: 0.95rem; letter-spacing:0.06em;
            text-transform:uppercase;
        }
        .pcard__head i { font-size:1.2rem; opacity:0.7; }

        .pcard__body {
            position:relative; flex:1;
            display:flex; flex-direction:column; justify-content:flex-end;
            padding: 1.8rem 1.5rem;
            overflow:hidden;
        }
        .pcard__img {
            position:absolute; inset:0; z-index:0;
            width:100%; height:100%; object-fit:cover;
            transition: transform 0.8s var(--ease-out-expo);
        }
        .pcard:hover .pcard__img { transform: scale(1.06); }
        .pcard__scrim {
            position:absolute; bottom:0; left:0; right:0;
            height:85%;
            background: linear-gradient(to top,
                rgba(14,14,14,0.97) 0%,
                rgba(14,14,14,0.5) 55%,
                transparent 100%);
            z-index:1;
        }

        .pcard__content { position:relative; z-index:2; }

        .pcard__tags {
            list-style:none;
            display:flex; flex-direction:column; gap:0.6rem;
            margin-bottom:1.4rem;
        }
        .pcard__tag {
            display: inline-flex; align-items:center; gap:0.6rem;
            background: var(--white); color:var(--black);
            font-size: 0.82rem; font-weight:500;
            padding: 0.35rem 0.9rem 0.35rem 0.35rem;
            border-radius: var(--r-pill);
            width: 100%;
            transition: transform 0.3s var(--ease-spring),
                        box-shadow 0.3s ease;
        }
        .pcard:hover .pcard__tag { transform:translateX(4px); }
        .pcard:hover .pcard__tag:nth-child(2) { transition-delay:0.04s; }
        .pcard:hover .pcard__tag:nth-child(3) { transition-delay:0.08s; }
        .pcard:hover .pcard__tag:nth-child(4) { transition-delay:0.12s; }
        .tag-icon {
            width:26px; height:26px; border-radius:50%;
            background:var(--red);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
        }
        .tag-icon i { font-size:0.8rem; color:var(--white); }

        .pcard__cta {
            display:flex; align-items:center; justify-content:space-between;
            text-decoration:none; color:var(--white);
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: var(--r-pill);
            padding: 0.4rem 0.4rem 0.4rem 1.2rem;
            font-family: var(--font-head);
            font-size: 0.78rem; letter-spacing:0.04em;
            transition: background 0.3s ease, border-color 0.3s ease;
        }
        .pcard__cta:hover { background: rgba(255,255,255,0.18); border-color:rgba(255,255,255,0.5); }
        .cta-arrow {
            width:36px; height:36px; border-radius:50%;
            background:var(--white);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
            transition: transform 0.35s var(--ease-spring);
        }
        .pcard__cta:hover .cta-arrow { transform: rotate(45deg); }
        .cta-arrow i { font-size:1rem; color:var(--black); }

        /* =========================================
           SPLIT SECTIONS
           ========================================= */
        .split-section {
            padding: 0 4% 5rem;
            background: var(--black);
        }
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            max-width: 1440px; margin:0 auto;
        }
        .split-grid--reversed .split-content { order:2; }
        .split-grid--reversed .split-media  { order:1; }

        /* Content panel */
        .split-content {
            background: var(--red);
            border-radius: var(--r-card);
            padding: clamp(2rem,4vw,3.5rem);
            display:flex; flex-direction:column;
            align-items: flex-start;
        }

        .split-logo { width:100px; margin-bottom:1.8rem; }
        .split-logo img { width:100%; height:auto; }

        .split-content h2 {
            font-family: var(--font-head);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            line-height:1.1; margin-bottom:1.2rem;
        }
        .split-content p.desc {
            font-weight:300; font-size:clamp(0.88rem,1.1vw,1rem);
            line-height:1.7; color:rgba(255,255,255,0.9);
            margin-bottom:2rem;
        }

        .pill-label {
            width:100%;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--r-pill);
            padding: 0.85rem 1.5rem;
            font-family: var(--font-head);
            font-size: 0.85rem; letter-spacing:0.06em;
            text-align:center;
            margin-bottom:1.5rem;
        }
        .pill-label--outline {
            background: transparent;
            border-color: rgba(255,255,255,0.35);
        }

        .feat-list {
            list-style:none; width:100%;
            display:flex; flex-direction:column; gap:0.7rem;
            margin-bottom:1.8rem;
        }
        .feat-item {
            background: var(--white); color:var(--black);
            border-radius: var(--r-sm);
            padding: 0.9rem 1.2rem;
            display:flex; align-items:flex-start; gap:1rem;
            transition: transform 0.35s var(--ease-spring);
        }
        .feat-item:hover { transform: translateX(6px); }
        .feat-item i { font-size:1.1rem; color:var(--red); flex-shrink:0; margin-top:0.1rem; }
        .feat-item-text { font-size:0.88rem; line-height:1.5; }
        .feat-item-text strong { font-weight:600; }

        /* Tier list */
        .tier-list {
            list-style:none; width:100%;
            display:flex; flex-direction:column; gap:0.7rem;
            margin-bottom:1.5rem;
        }
        .tier-item {
            border-radius: var(--r-sm);
            padding: 1rem 1.2rem;
            display:flex; align-items:flex-start; gap:0.9rem;
            border: 1px solid rgba(255,255,255,0.3);
            transition: border-color 0.3s ease, background 0.3s ease;
        }
        .tier-item:hover { background: rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.5); }
        .tier-item--dark { background: rgba(0,0,0,0.3); border-color:rgba(255,255,255,0.15); }
        .tier-check {
            width:22px; height:22px; border-radius:50%;
            background:var(--white);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0; margin-top:0.15rem;
        }
        .tier-check i { font-size:0.7rem; color:var(--red); }
        .tier-text strong {
            display:block; font-family:var(--font-head);
            font-size:0.82rem; letter-spacing:0.04em;
            text-transform:uppercase; margin-bottom:0.3rem;
        }
        .tier-text p { font-size:0.8rem; font-weight:300; line-height:1.4; opacity:0.85; }

        .app-note {
            width:100%;
            background:var(--white); color:var(--black);
            border-radius:var(--r-sm); padding:1rem 1.2rem;
            text-align:center; margin-bottom:2rem;
        }
        .app-note strong { font-weight:600; display:block; margin-bottom:0.2rem; font-size:0.9rem; }
        .app-note span { font-size:0.82rem; opacity:0.7; }

        /* Arrow CTA */
        .arrow-cta {
            display:flex; align-items:center; justify-content:space-between;
            width:100%; text-decoration:none; color:var(--white);
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: var(--r-pill);
            padding: 0.5rem 0.5rem 0.5rem 1.5rem;
            font-family: var(--font-head);
            font-size: 0.78rem; letter-spacing:0.06em;
            transition: background 0.3s ease, border-color 0.3s ease;
            margin-top: auto;
        }
        .arrow-cta:hover { background: rgba(255,255,255,0.1); border-color:var(--white); }
        .arrow-cta-icon {
            width:44px; height:44px; border-radius:50%;
            background:var(--white);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
            transition: transform 0.4s var(--ease-spring);
        }
        .arrow-cta:hover .arrow-cta-icon { transform: rotate(45deg); }
        .arrow-cta-icon i { font-size:1.1rem; color:var(--red); }

        /* Media panel */
        .split-media {
            border-radius: var(--r-card);
            overflow:hidden; position:relative;
            min-height: 480px;
        }
        .split-media video,
        .split-media img {
            position:absolute; inset:0;
            width:100%; height:100%; object-fit:cover;
            transition: transform 0.8s var(--ease-out-expo);
        }
        .split-media:hover video,
        .split-media:hover img { transform: scale(1.03); }

        /* anim init */
        .anim-el {
            opacity:0; transform:translateY(18px);
        }

        /* =========================================
           LAB ENVIRONMENT
           ========================================= */
        .lab-env {
            padding: 0 4% 5rem;
            background: var(--black);
            max-width: 1440px; margin:0 auto;
            display:flex; flex-direction:column; gap:1rem;
        }

        .lab-card {
            background: var(--surface);
            border-radius: var(--r-card); overflow:hidden;
            display:flex; flex-direction:column;
            border: 1px solid var(--white-08);
            opacity:0; transform:translateY(24px);
        }
        .lab-video-wrap {
            width:100%; height:clamp(300px, 50vh, 520px);
            position:relative; overflow:hidden;
        }
        .lab-video-wrap video {
            width:100%; height:100%; object-fit:cover;
        }
        .lab-video-overlay {
            position:absolute; inset:0;
            background: linear-gradient(to bottom,
                transparent 40%, rgba(22,22,22,0.9) 100%);
        }
        .lab-text {
            padding: 2rem 2.5rem;
            display:flex; align-items:center;
            justify-content: space-between; gap:2rem;
            flex-wrap:wrap;
        }
        .lab-text h2 {
            font-family: var(--font-head);
            font-size: clamp(1.5rem, 2.8vw, 2.2rem);
            color: var(--red); text-transform:uppercase; line-height:1.1;
        }
        .lab-text p { font-size:0.95rem; color:rgba(255,255,255,0.6); margin-top:0.4rem; }

        /* =========================================
           INFINITE CAROUSEL (shared)
           ========================================= */
        .carousel-wrap {
            overflow:hidden; border-radius: var(--r-card);
            opacity:0; transform:translateY(24px);
        }
        .carousel-track {
            display:flex; width:max-content;
        }
        .carousel-group {
            display:flex; gap:1rem;
            padding-right:1rem;
            animation: marquee 28s linear infinite;
        }
        .carousel-track:hover .carousel-group { animation-play-state:paused; }
        @keyframes marquee {
            0%   { transform:translateX(0); }
            100% { transform:translateX(-100%); }
        }
        .carousel-slide {
            height:300px;
            width: clamp(220px, calc(30vw - 1rem), 420px);
            border-radius: var(--r-card);
            overflow:hidden; flex-shrink:0;
        }
        .carousel-slide img {
            width:100%; height:100%; object-fit:cover;
            transition: transform 0.5s var(--ease-out-expo);
        }
        .carousel-slide:hover img { transform:scale(1.07); }

        /* =========================================
           BIRTHDAY SECTION
           ========================================= */
        .birthday-header {
            background:var(--red);
            border-radius: var(--r-card);
            padding: clamp(2rem,4vw,3rem) clamp(1.5rem,3vw,2.5rem);
        }
        .birthday-header h2 {
            font-family: var(--font-head);
            font-size: clamp(2rem,4vw,3rem);
            text-transform:uppercase; line-height:1.05; margin-bottom:0.5rem;
        }
        .birthday-header h3 { font-size:1.1rem; font-weight:500; margin-bottom:0.8rem; }
        .birthday-header p { font-weight:300; font-size:0.9rem; line-height:1.6; opacity:0.9; }

        .bday-features {
            display:grid; grid-template-columns:1fr 1fr; gap:1rem;
        }
        .bday-feat {
            background:var(--red);
            border-radius: var(--r-card);
            padding: 2rem 1.5rem;
            display:flex; flex-direction:column; align-items:center;
            text-align:center; gap:0.8rem;
            transition: transform 0.35s var(--ease-spring),
                        box-shadow 0.35s ease;
        }
        .bday-feat:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px var(--red-glow);
        }
        .bday-icon {
            width:48px; height:48px;
            background:rgba(255,255,255,0.15);
            border-radius:50%;
            display:flex; align-items:center; justify-content:center;
        }
        .bday-icon i { font-size:1.4rem; color:var(--white); }
        .bday-feat h4 {
            font-family:var(--font-head); font-size:0.88rem;
            letter-spacing:0.04em; text-transform:uppercase;
        }
        .bday-feat p { font-size:0.8rem; font-weight:300; line-height:1.4; opacity:0.85; }

        .birthday-col {
            display:flex; flex-direction:column; gap:1rem;
        }

        /* =========================================
           FOOTER
           ========================================= */
        .footer {
            background: var(--red);
            padding: 5rem 4% 2.5rem;
            color: var(--white);
            position:relative; z-index:5;
        }
        /* subtle diagonal texture */
        .footer::before {
            content:''; position:absolute; inset:0; pointer-events:none;
            background: repeating-linear-gradient(
                -45deg,
                rgba(255,255,255,0.02) 0px,
                rgba(255,255,255,0.02) 1px,
                transparent 1px,
                transparent 8px
            );
        }

        .footer__top {
            display:grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 3.5rem;
            max-width:1440px; margin:0 auto 3.5rem;
            position:relative;
        }
        .footer__logo { max-width:120px; }
        .footer__logo img { width:100%; height:auto; filter:brightness(0) invert(1); }

        .footer__col h3 {
            font-family: var(--font-head);
            font-size: clamp(1rem,1.5vw,1.2rem);
            margin-bottom:1.2rem;
        }
        .footer__col p { font-weight:300; font-size:0.9rem; line-height:1.6; opacity:0.85; }
        .footer__contact-detail {
            display:flex; align-items:center; gap:0.6rem;
            margin-top:1rem; font-size:0.95rem;
        }
        .footer__contact-detail i { font-size:1.1rem; opacity:0.7; }

        .footer__nav-list { list-style:none; display:flex; flex-direction:column; gap:0.8rem; }
        .footer__nav-list a {
            color:var(--white); text-decoration:none;
            font-size:0.9rem; font-weight:300; opacity:0.85;
            display:flex; align-items:center; gap:0.4rem;
            transition: opacity 0.3s, gap 0.3s var(--ease-spring);
        }
        .footer__nav-list a:hover { opacity:1; gap:0.7rem; }
        .footer__nav-list a i { font-size:0.75rem; }

        .footer__divider {
            height:1px; background:rgba(255,255,255,0.2);
            max-width:1440px; margin:0 auto 3rem;
            position:relative;
        }

        .footer__bottom {
            display:flex; justify-content:space-between;
            align-items:flex-start; flex-wrap:wrap;
            gap:3rem; max-width:1440px; margin:0 auto;
            position:relative;
        }

        /* Subscribe */
        .subscribe-block { flex:1; min-width:280px; }
        .subscribe-block p { font-size:1.05rem; font-weight:300; margin-bottom:1.2rem; }
        .subscribe-form {
            display:flex;
            border: 1px solid rgba(255,255,255,0.35);
            border-radius: var(--r-pill);
            padding:0.3rem;
            max-width:420px;
            transition: border-color 0.3s ease;
        }
        .subscribe-form:focus-within { border-color:var(--white); }
        .subscribe-form input {
            flex:1; background:transparent; border:none;
            color:var(--white); padding:0.5rem 1rem;
            font-family:var(--font-body); font-size:0.88rem;
            outline:none; min-width:0;
        }
        .subscribe-form input::placeholder { color:rgba(255,255,255,0.5); }
        .subscribe-btn {
            background:var(--white); color:var(--black);
            border:none; border-radius: var(--r-pill);
            padding: 0.6rem 1.2rem;
            font-family: var(--font-head); font-size:0.78rem;
            cursor:pointer;
            transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
        }
        .subscribe-btn:hover {
            transform:scale(1.04);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }

        /* Socials */
        .socials-block { display:flex; flex-direction:column; gap:1rem; min-width:240px; }
        .social-link {
            display:flex; align-items:center; gap:1rem;
            text-decoration:none; color:var(--white);
            transition: transform 0.3s var(--ease-spring);
        }
        .social-link:hover { transform:translateX(6px); }
        .social-icon-wrap {
            width:42px; height:42px; border-radius:50%;
            background:var(--white);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0; transition: box-shadow 0.3s ease;
        }
        .social-link:hover .social-icon-wrap { box-shadow:0 4px 16px rgba(0,0,0,0.2); }
        .social-icon-wrap i { font-size:1.2rem; color:var(--red); }
        .social-txt { font-size:0.85rem; font-weight:300; line-height:1.4; opacity:0.9; }

        .footer__copy {
            text-align:center; margin-top:4rem;
            font-size:0.8rem; opacity:0.55; position:relative;
        }

        .footer-anim-el { opacity:0; transform:translateY(16px); }

        /* =========================================
           RESPONSIVE
           ========================================= */
        @media (max-width: 1100px) {
          
            .pathway__grid { grid-template-columns: repeat(2,1fr); }
            .pcard:last-child { grid-column: 1 / -1; min-height:400px; }
            .pcard:last-child .pcard__body { min-height:300px; }

            .split-grid { grid-template-columns: 1fr; }
            .split-grid--reversed .split-content { order:1; }
            .split-grid--reversed .split-media  { order:2; }
            .split-media { min-height:440px; }

            .footer__top { grid-template-columns: 1fr 1fr; }
            .footer__logo { grid-column: 1 / -1; }
        }

        @media (max-width: 768px) {
            :root { --nav-h: 64px; }

            .nav__links { display:none; }
            .nav__hamburger { display:flex; }
            .nav__drawer { display:flex; }

            .hero__cards { grid-template-columns: 1fr; }
            .stat-card { min-height:auto; }

            .pathway__grid { grid-template-columns: 1fr; }
            .pcard:last-child { grid-column:auto; }

            .split-content { padding: 2rem 1.5rem; }

            .bday-features { grid-template-columns: 1fr; }

            .footer__top { grid-template-columns: 1fr; gap:2rem; }
            .footer__logo { grid-column:auto; }
            .footer__bottom { flex-direction:column; }
            .subscribe-form { max-width:320px; }

            .lab-text { flex-direction:column; align-items:flex-start; }
        }

        @media (max-width: 480px) {
            .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
            .hero__actions { flex-direction:column; align-items:flex-start; }
            .hero__actions .btn--solid { width:100%; justify-content:center; }

            .pathway__grid { gap:0.75rem; }
            .pcard { min-height:460px; }
.subscribe-form { max-width:220px; }
            .carousel-slide {
                width: calc(80vw - 1rem);
                height: 240px;
            }

            .stat-card__num { font-size: 2rem; }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .carousel-group { animation:none !important; }
            * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
        }

        /* =========================================
   BUENAVISTA FC HERO
   ========================================= */
.bv-navbar {
    /* Overriding the default dark glass background for this specific page */
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.bv-navbar.scrolled {
    background: rgba(140, 140, 140, 0.9); /* Grey glass to match the hero */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-15);
}

.bv-hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    background: #8F8F8F; /* Solid grey matching the design */
    padding-top: var(--nav-h);
}

.bv-hero__top {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4% 4rem;
}

.bv-hero__content {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.bv-hero__emblem {
    width: 280px;
    max-width: 60vw;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.bv-hero__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.bv-hero__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.9rem, 1.4vw, 1.15rem);
    line-height: 1.6;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
}

.bv-hero__bottom {
    width: 100%;
    height: clamp(300px, 45vh, 600px);
    overflow: hidden;
    position: relative;
    opacity: 0;
}

.bv-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Keeps the faces in frame */
    transform: scale(1.05);
    will-change: transform;
}

/* =========================================
   BUENAVISTA PROGRAM OVERVIEW
   ========================================= */
:root {
    /* Local variables for the new UI colors */
    --bv-gold: #dfb755;
    --bv-beige: #f0ece1;
    --bv-text-dark: #1a1a1a;
}

.bv-overview {
    background: var(--black); 
    padding: 6rem 4%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.bv-overview__container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Pill */
.bv-overview__header {
    background: var(--bv-gold);
    border: 2px solid var(--white);
    border-radius: var(--r-pill);
    padding: 0.8rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px rgba(223, 183, 85, 0.15);
    opacity: 0; /* Handled by GSAP */
}

.bv-overview__title {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--white);
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
}

/* List Container */
.bv-overview__list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
}

/* List Items */
.bv-overview__item {
    background: var(--bv-beige);
    border-radius: var(--r-pill);
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.3s ease;
    opacity: 0; /* Handled by GSAP */
}

.bv-overview__item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

/* Checkmark Icon */
.bv-overview__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bv-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Subtle inner glow to match the high-end feel */
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25); 
}

.bv-overview__icon i {
    color: var(--white);
    font-size: 1.6rem;
}

/* Text Formatting */
.bv-overview__text {
    font-family: var(--font-body);
    color: var(--bv-text-dark);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.5;
    margin: 0;
}

.bv-overview__text strong {
    font-weight: 600;
    font-size: 1.05em;
    margin-right: 0.3rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .bv-overview__item {
        /* Swap from pill to standard card radius to prevent awkward text wrapping */
        border-radius: var(--r-card); 
        padding: 1.4rem 1.5rem;
        align-items: flex-start; /* Anchor icon to top */
        gap: 1.2rem;
    }

    .bv-overview__icon {
        width: 36px;
        height: 36px;
        margin-top: 0.15rem; /* Visually align icon with the first line of text */
    }

    .bv-overview__icon i {
        font-size: 1.3rem;
    }
}


/* =========================================
   BUENAVISTA INFO GRID
   ========================================= */
.bv-info {
    background: var(--black);
    padding: 2rem 4% 6rem;
    display: flex;
    flex-direction: column; /* ADDED */
    align-items: center;    /* ADDED */
    position: relative;
    z-index: 5;
}

.bv-info__cta-wrap {
    width: 100%;
    max-width: 380px; /* Constrains the width for a clean look */
    margin-top: 3.5rem;
    opacity: 0; /* Hidden initially for GSAP animation */
    transform: translateY(20px);
}

/* Optional: Override the arrow icon color to use the Buenavista Gold instead of standard Red */
.bv-info__cta-wrap .arrow-cta-icon i {
    color: var(--bv-gold);
}

.bv-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}

/* Base Card Styles */
.bv-card {
    border-radius: var(--r-card);
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
    opacity: 0; /* Handled by GSAP */
}

.bv-card:hover {
    transform: translateY(-6px);
}

.bv-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.bv-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.bv-card__text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Modifiers for Colors */
.bv-card--gold {
    background: var(--bv-gold);
    color: var(--white);
}

.bv-card--gold:hover {
    box-shadow: 0 16px 32px rgba(223, 183, 85, 0.2);
}

.bv-card--beige {
    background: var(--bv-beige);
    color: var(--bv-text-dark);
}

.bv-card--beige:hover {
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.08);
}

/* --- Responsive Adjustments --- */
@media (max-width: 850px) {
    
    .bv-info__grid {
        grid-template-columns: 1fr; /* Stack on mobile/small tablets */
        max-width: 500px; /* Constrain width when stacked so text doesn't stretch too far */
    }

    .bv-card {
        padding: 2.5rem 1.5rem;
    }
    
    .bv-card__text br {
        display: none; /* Remove forced line breaks on mobile for better text wrapping */
    }
}

/* =========================================
   BUENAVISTA GALLERY CONTAINER
   ========================================= */
.bv-gallery {
    background: var(--black);
    padding: 0 4% 6rem; /* Keeps spacing uniform with the layout blocks */
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* Ensure the slides maintain structural proportions inside this section */
.bv-gallery .carousel-wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* =========================================
   BUENAVISTA FOOTER OVERRIDE
   ========================================= */
.footer.footer--bv {
    background: #8F8E8C;
}

/* Changes the social media icons from red to the new grey */
.footer.footer--bv .social-icon-wrap i {
    color: #8F8E8C;
}