﻿ 
        /* ============ THEME ============ */
        :root {
            --tickerH:32px;
            --ink:#0e1722;
            --panel:#122033;
            --panel-2:#14263a;
            --glow:#25446c;
            --text:#f2f7fb;
            --muted:#b9c8d8;
            --line:rgba(255,255,255,.12);
            --accent:#FFD43B;
            --accent-2:#89d2ff;
            --maxw:1200px;
        }

            :root[data-theme="graphite"] {
                --ink:#0c0e13;
                --panel:#12151c;
                --panel-2:#151a22;
                --glow:#202531;
                --text:#f4f6f9;
                --muted:#c0c7d2;
                --line:rgba(255,255,255,.14);
                --accent:#FFD43B;
                --accent-2:#9cc2ff;
            }

        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            background: linear-gradient(180deg,var(--ink),#0f1b2a 60%,#0f1a27);
            color: var(--text);
            font-family: system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,Arial,sans-serif;
            line-height: 1.55;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============ NAV ============ */
        .navbar {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 1000;
            background: linear-gradient(180deg,rgba(20,36,56,.75),rgba(20,36,56,.45));
            backdrop-filter: saturate(160%) blur(10px);
            border-bottom: 1px solid var(--line);
            box-shadow: 0 4px 24px rgba(0,0,0,.25);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 10px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
        }

            .brand img {
                width: 200px;
                height: auto;
                filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
            }

        .menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

            .menu a {
                position: relative;
                font-weight: 850;
                letter-spacing: .14em;
                text-transform: uppercase;
                font-size: 13px;
                opacity: .96;
            }

                .menu a::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: -10px;
                    height: 2px;
                    background: linear-gradient(90deg,var(--accent),transparent);
                    transform: scaleX(0);
                    transform-origin: left;
                    transition: transform .25s ease;
                }

                .menu a:hover::after, .menu a.active::after {
                    transform: scaleX(1);
                }

        .cta {
            border: 2px solid #fff;
            padding: 11px 18px;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: .14em;
            transition: all .2s ease;
        }

            .cta:hover {
                background: var(--accent);
                color: #111;
                border-color: var(--accent);
                box-shadow: 0 10px 24px rgba(255,212,59,.25);
            }

        .toggle {
            display: none;
            border: 1px solid var(--line);
            padding: 8px 12px;
            border-radius: 6px;
        }

        @media (max-width:900px) {
            .menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(18,32,51,.97);
                flex-direction: column;
                padding: 18px 24px;
                border-bottom: 1px solid var(--line);
            }

                .menu.open {
                    display: flex;
                }

            .cta {
                display: none;
            }

            .toggle {
                display: block;
            }

            .brand img {
                width: 160px;
            }
        }

        /* ============ HERO ============ */
        .hero {
            margin-top: var(--navH,96px);
            height: calc(100vh - var(--navH));
            height: calc(100svh - var(--navH));
            position: relative;
            display: flex;
            align-items: center;
            isolation: isolate;
            border-bottom: 1px solid var(--line);
            clip-path: polygon(0 0,100% 0,100% 92%,0 100%);
            overflow: hidden;
        }

            .hero::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 160px;
                background: linear-gradient(180deg,rgba(18,32,51,0) 0%,rgba(18,32,51,.85) 100%);
                pointer-events: none;
            }

            .hero .layer {
                position: absolute;
                inset: 0;
                background-position: center;
                background-size: cover;
                will-change: transform;
            }

            .hero .overlay {
                background: linear-gradient(180deg,rgba(18,32,51,.35),rgba(18,32,51,.85));
            }

            .hero .content {
                position: relative;
                z-index: 2;
                padding: calc(110px + var(--tickerH)) 0 110px;
            }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .14em;
            color: #111;
            background: var(--accent);
            padding: 8px 12px;
            border-radius: 999px;
        }

        .billboard {
            font-size: clamp(36px,6.2vw,82px);
            line-height: 1.02;
            margin: 0 0 4px;
            font-weight: 1000;
            letter-spacing: .01em;
            background: linear-gradient(90deg,#fff 30%,var(--accent) 70%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 6px 28px rgba(0,0,0,.35);
        }

        .hero h1 {
            font-size: clamp(28px,2.8vw,40px);
            line-height: 1.1;
            margin: 0 0 12px;
            color: #eaf4ff;
        }

        .slogan {
            font-size: 18px;
            color: #e9f4ff;
            margin: 0 0 6px;
            font-weight: 800;
            letter-spacing: .06em;
        }

        .rotate {
            display: inline-block;
            min-width: 220px;
            color: var(--accent-2);
        }

        .hero p {
            max-width: 960px;
            color: #dfeaf5;
            margin: 14px 0 28px;
        }

        .scroll-cue {
            position: absolute;
            left: 50%;
            bottom: 22px;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            font-size: 12px;
            opacity: .9;
        }

            .scroll-cue svg {
                animation: bounce 1.4s ease-in-out infinite;
            }

        @keyframes bounce {
            0%,100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-6px);
            }
        }

        /* spotlight + shine */
        .hero .spotlight {
            pointer-events: none;
            position: absolute;
            inset: 0;
            z-index: 1;
            background: radial-gradient(300px 300px at var(--mx,50%) var(--my,50%), rgba(255,212,59,.10), rgba(255,212,59,0) 60%), radial-gradient(500px 500px at var(--mx,50%) var(--my,50%), rgba(255,255,255,.06), transparent 60%);
            mix-blend-mode: screen;
            opacity: .55;
            transition: opacity .2s ease;
        }

        @media (pointer:coarse) {
            .hero .spotlight {
                opacity: .25;
            }
        }

        .shine {
            position: relative;
            display: inline-block;
            background: linear-gradient(90deg,#fff 0 35%,var(--accent) 65% 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

            .shine::after {
                content: "";
                position: absolute;
                inset: -4px 0;
                background: linear-gradient(110deg,transparent 20%,rgba(255,255,255,.35) 45%,transparent 55%);
                mix-blend-mode: screen;
                transform: translateX(-120%);
                animation: shine 4s ease-in-out infinite;
            }

        @keyframes shine {
            0% {
                transform: translateX(-120%);
            }

            60%,100% {
                transform: translateX(120%);
            }
        }

        /* ============ UTILITIES / REVEAL ============ */
        .reveal {
            opacity: 0;
            filter: blur(6px);
            transform: translateY(30px) scale(.98);
            transition: opacity .7s ease,transform .7s ease,filter .7s ease;
        }

            .reveal.left {
                transform: translateX(-70px);
            }

            .reveal.right {
                transform: translateX(70px);
            }

            .reveal.up {
                transform: translateY(40px);
            }

            .reveal.is-visible {
                opacity: 1;
                filter: blur(0);
                transform: none;
            }

        .section {
            position: relative;
            padding: 104px 0;
        }

            .section.split {
                background: radial-gradient(1000px 600px at 10% -10%,rgba(137,210,255,.12),transparent 60%),var(--panel-2);
            }

            .section.alt {
                background: radial-gradient(900px 600px at 90% 10%,rgba(255,212,59,.10),transparent 60%),var(--panel);
            }

        .eyebrow {
            color: #fff;
            text-transform: uppercase;
            letter-spacing: .18em;
            font-weight: 900;
            font-size: 12px;
            opacity: .9;
        }

        h2 {
            font-size: 36px;
            margin: 8px 0 12px;
        }

        .lead {
            color: #d0deec;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        @media (max-width:900px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }

        .para {
            margin: 18px 0;
        }

        .para--accent {
            border-left: 4px solid var(--accent);
            padding-left: 16px;
            background: linear-gradient(90deg,rgba(255,212,59,.10),transparent 55%);
            border-radius: 6px;
            color: #e7f1fb;
        }

        .para--note {
            background: linear-gradient(180deg,rgba(137,210,255,.12),rgba(137,210,255,.04));
            border: 1px solid rgba(137,210,255,.25);
            padding: 14px 16px;
            border-radius: 10px;
            color: #eaf6ff;
        }

        .para--cta {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0b0b0b;
            background: linear-gradient(90deg,var(--accent),#ffe37d);
            padding: 12px 14px;
            border-radius: 8px;
            font-weight: 900;
            letter-spacing: .06em;
        }

        /* cards */
        .cards3 {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 36px;
        }

        @media (max-width:1100px) {
            .cards3 {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width:700px) {
            .cards3 {
                grid-template-columns: 1fr;
            }
        }

        .card {
            background: linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden;
            transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease;
            transform-style: preserve-3d;
            perspective: 800px;
        }

            .card:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 32px rgba(0,0,0,.35),0 0 0 1px rgba(255,212,59,.2) inset;
                border-color: rgba(255,212,59,.35);
            }

            .card .img {
                height: 220px;
                background: center/cover no-repeat;
                filter: saturate(.98);
                transition: transform .15s ease;
            }

            .card .body {
                padding: 22px 20px 24px;
                transform: translateZ(20px);
            }

        .kicker {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 12px;
        }

        .dot {
            width: 9px;
            height: 9px;
            background: var(--accent);
            border-radius: 50%;
        }

        .card h3 {
            margin: 0 0 8px;
        }

        .card p {
            color: #cfe0ef;
            margin: 0;
        }

        .link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: .12em;
            border-bottom: 1px solid currentColor;
            padding-bottom: 2px;
        }

            .link svg {
                opacity: .85;
            }

        /* pillars */
        .features3 {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 56px;
        }

        @media (max-width:1100px) {
            .features3 {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width:720px) {
            .features3 {
                grid-template-columns: 1fr;
            }
        }

        .feat .index {
            display: inline-block;
            margin-bottom: 10px;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
            font-size: 16px;
            color: var(--accent);
        }

        .feat h3 {
            margin: 0 0 12px;
            font-size: 24px;
            line-height: 1.25;
        }

        .feat p {
            margin: 0;
            color: #d0deec;
        }

        .section.pillars {
            background: var(--panel-2);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding-block: 70px;
        }

        @media (min-width:901px) {
            .feat:nth-child(2) {
                border-inline: 1px solid var(--line);
                padding-inline: 28px;
            }
        }

        /* stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden;
        }

        .stat {
            padding: 28px;
            text-align: center;
            background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
        }

            .stat + .stat {
                border-left: 1px solid var(--line);
            }

        .num {
            font-family: Georgia,serif;
            font-size: 48px;
        }

        .title {
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: .14em;
            color: var(--accent);
        }

        /* placeholders (insights) */
        .ph {
            --w:1200;
            --h:800;
            aspect-ratio: var(--w)/var(--h);
            background: repeating-linear-gradient(135deg,rgba(255,255,255,.06) 0 16px,rgba(0,0,0,.15) 16px 32px),linear-gradient(180deg,var(--glow),transparent 70%);
            border: 1px dashed rgba(255,255,255,.35);
            border-radius: 14px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #dfeaf7;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

            .ph::after {
                content: attr(data-size);
                position: absolute;
                inset: auto auto 10px 10px;
                font-size: 12px;
                opacity: .85;
                color: #fff;
                background: rgba(0,0,0,.35);
                padding: 4px 8px;
                border-radius: 6px;
            }

        /* brochure / poster panel */
        .bro {
            position: relative;
            overflow: hidden;
            background: radial-gradient(900px 600px at 90% 10%,rgba(255,212,59,.10),transparent 60%),var(--panel);
        }

            .bro::before {
                content: "";
                position: absolute;
                left: -5%;
                right: -5%;
                top: -70px;
                height: 140px;
                background: var(--panel-2);
                transform: skewY(-4deg);
            }

            .bro::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 16px;
                background: repeating-linear-gradient(45deg,var(--accent) 0 18px,#11212f 18px 36px);
            }

        .bro-wrap {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 90px 24px 70px;
            position: relative;
        }

        .bro-cards {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 28px;
            margin-top: 24px;
        }

        @media (max-width:1020px) {
            .bro-cards {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width:700px) {
            .bro-cards {
                grid-template-columns: 1fr;
            }
        }

        .bro-card {
            position: relative;
            padding: 26px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
            box-shadow: 0 10px 24px rgba(0,0,0,.25);
        }

            .bro-card::before {
                content: "";
                position: absolute;
                inset: 0 auto auto 0;
                height: 8px;
                width: 100%;
                background: linear-gradient(90deg,var(--accent),#ffe37d);
                border-top-left-radius: 14px;
                border-top-right-radius: 14px;
            }

        .bro-ico {
            width: 58px;
            height: 58px;
            border-radius: 10px;
            background: var(--accent);
            color: #111;
            display: grid;
            place-items: center;
            box-shadow: 0 6px 18px rgba(255,212,59,.25);
            margin-bottom: 14px;
        }

        .bro-card h3 {
            margin: 6px 0 8px;
            font-size: 24px;
        }

        .bro-card p {
            margin: 0;
            color: #d0deec;
        }

        .bro-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 42px;
            margin-top: 32px;
        }

        @media (max-width:1020px) {
            .bro-grid {
                grid-template-columns: 1fr;
            }
        }

        .bro-title {
            font-size: 32px;
            margin: 0 0 14px;
        }

        .bro-sub {
            color: #d0deec;
            margin: 0 0 20px;
        }

        .bro-checks {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 26px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        @media (max-width:700px) {
            .bro-checks {
                grid-template-columns: 1fr;
            }
        }

        .bro-checks li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.45;
            color: #e7f1fb;
        }

        .bro-checks .tick {
            flex: 0 0 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--accent);
            color: #111;
            display: grid;
            place-items: center;
            font-weight: 900;
            font-size: 12px;
        }

        .bro-why {
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 20px;
            background: linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
        }

            .bro-why h3 {
                margin: 0 0 10px;
                font-size: 28px;
                letter-spacing: .02em;
            }

            .bro-why p {
                margin: 0;
                color: #cfe0ef;
            }

        .bro-contact {
            margin-top: 16px;
            display: grid;
            gap: 10px;
        }

            .bro-contact a {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 10px 12px;
                border-radius: 10px;
                background: linear-gradient(90deg,rgba(255,212,59,.18),rgba(255,212,59,.06));
                border: 1px solid rgba(255,212,59,.25);
                color: #111;
                font-weight: 800;
            }

        /* CTA band */
        .band {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
            border: 1px dashed rgba(255,255,255,.22);
            border-radius: 16px;
            padding: 28px;
            background: linear-gradient(180deg,rgba(255,212,59,.12),rgba(137,210,255,.10));
            box-shadow: 0 0 0 1px rgba(255,212,59,.18) inset,0 12px 36px rgba(137,210,255,.12);
        }

            .band .btn {
                background: linear-gradient(90deg,var(--accent),#ffe37d);
                color: #111;
                border: none;
                font-weight: 900;
                letter-spacing: .12em;
                text-transform: uppercase;
                padding: 12px 18px;
                border-radius: 6px;
                cursor: pointer;
                transition: filter .2s ease;
            }

                .band .btn:hover {
                    filter: brightness(1.05);
                }

        /* light variant */
        .section.light {
            background: #fff;
            color: #0e1722;
        }

            .section.light .eyebrow {
                color: #0e1722;
                opacity: .7;
            }

            .section.light h2 {
                color: #0e1722;
            }

            .section.light .lead {
                color: #4a5a6b;
            }

            .section.light .para {
                color: #233243;
            }

            .section.light .para--accent {
                border-left-color: var(--accent);
                background: linear-gradient(90deg,rgba(255,212,59,.18),transparent 55%);
                color: #182636;
            }

            .section.light .para--note {
                background: #f6f8fb;
                border-color: #e3edf7;
                color: #223245;
            }

            .section.light .card {
                background: #fff;
                border-color: #e6eef6;
                box-shadow: 0 10px 22px rgba(10,30,60,.07);
            }

                .section.light .card p {
                    color: #4a5a6b;
                }

            .section.light .stat {
                background: #fff;
            }

            .section.light .title {
                color: var(--accent);
            }

            .section.light::before,
            .section.light::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                height: 18px;
                pointer-events: none;
            }

            .section.light::before {
                top: -18px;
                background: linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,0));
            }

            .section.light::after {
                bottom: -18px;
                background: linear-gradient(0deg,rgba(0,0,0,.10),rgba(0,0,0,0));
            }

        /* ticker */
        .ticker {
            position: fixed;
            top: var(--navH,96px);
            left: 0;
            right: 0;
            z-index: 999;
            background: linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
            border-bottom: 1px solid var(--line);
            overflow: hidden;
            height: 32px;
        }

            .ticker .track {
                display: flex;
                gap: 36px;
                white-space: nowrap;
                align-items: center;
                height: 32px;
                animation: tkr 28s linear infinite;
            }

            .ticker .item {
                font-size: 12px;
                letter-spacing: .18em;
                text-transform: uppercase;
                opacity: .9;
            }

            .ticker .dot {
                width: 6px;
                height: 6px;
                background: var(--accent);
                border-radius: 50%;
            }

        @keyframes tkr {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* floating dock */
        .dock {
            position: fixed;
            right: 16px;
            bottom: 16px;
            z-index: 9999;
            display: grid;
            gap: 10px;
        }

            .dock a {
                width: 48px;
                height: 48px;
                display: grid;
                place-items: center;
                border-radius: 12px;
                background: linear-gradient(180deg,var(--panel-2),var(--panel));
                border: 1px solid var(--line);
                box-shadow: 0 10px 22px rgba(0,0,0,.25);
                color: #fff;
                transition: transform .15s ease, box-shadow .15s ease;
            }

                .dock a:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 16px 32px rgba(0,0,0,.35);
                }

        /* footer (Nexus-style) */
        .site-footer {
            background: #2b3238;
            color: #dbe3ec;
            border-top: 1px solid var(--line);
        }

            .site-footer .foot-wrap {
                padding: 56px 0;
            }

        .foot-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        @media (max-width:900px) {
            .foot-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width:620px) {
            .foot-grid {
                grid-template-columns: 1fr;
            }
        }

        .foot-brand img {
            width: 180px;
            height: auto;
            margin-bottom: 12px;
        }

        .foot-brand .contact a {
            color: #bcd0e2;
            display: inline-block;
            margin-top: 6px;
        }

            .foot-brand .contact a:hover {
                color: var(--accent);
            }

        .foot-col h4 {
            margin: 0 0 14px;
            font-size: 14px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: #fff;
            opacity: .9;
        }

        .foot-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 10px;
        }

            .foot-links a {
                color: #d1d9e2;
                font-weight: 600;
            }

                .foot-links a:hover {
                    color: var(--accent);
                }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08);
            background: #262c32;
        }

            .footer-bottom .row {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 16px;
                flex-wrap: wrap;
                padding: 18px 0;
                color: #a9b6c4;
            }

        .to-top {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #dbe3ec;
            font-weight: 700;
        }

            .to-top:hover {
                color: var(--accent);
            }

            .to-top svg {
                opacity: .9;
            }

        /* respect reduced motion */
        @media (prefers-reduced-motion:reduce) {
            .ticker .track, .scroll-cue svg, .shine::after {
                animation: none;
            }

            .reveal {
                transition: none;
            }
        }
 