:root {
            --ink: #0b1220;
            --ink-soft: #445066;
            --paper: #f4f7fb;
            --line: rgba(11, 18, 32, 0.12);
            --blue: #1f6bff;
            --blue-deep: #0d47d9;
            --steel: #8b95a7;
            --hero-a: #05070d;
            --hero-b: #0b1220;
            --hero-c: #132038;
            --white: #fff;
            --font-display: "Sora", sans-serif;
            --font-body: "Outfit", sans-serif;
            --shadow: 0 24px 60px rgba(5, 10, 20, 0.22);
            --radius: 20px;
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: var(--font-body);
            color: var(--ink);
            background:
                radial-gradient(1000px 500px at 100% -10%, rgba(31, 107, 255, 0.12), transparent 50%),
                linear-gradient(180deg, #f7f9fc 0%, var(--paper) 45%, #eef2f7 100%);
        }
        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }
        .shell { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
        .site-header {
            position: absolute; inset: 0 0 auto 0; z-index: 40; padding: 1.1rem 0;
        }
        .site-header .shell, .site-footer .shell {
            display: flex; align-items: center; justify-content: space-between; gap: 1rem;
        }
        .site-header-bar {
            position: relative;
            flex-wrap: nowrap;
        }
        .site-header.is-home-hero .shell { justify-content: flex-end; }
        .site-header.is-home-hero .brand-lockup { display: none; }
        .brand-lockup { display: inline-flex; align-items: center; gap: 0.7rem; }
        .brand-lockup img { height: 42px; width: auto; }
        .brand-lockup span {
            font-family: var(--font-display); font-weight: 800; letter-spacing: 0.06em; color: var(--white);
        }
        .nav-toggle {
            display: none;
            position: relative;
            z-index: 42;
            width: 44px;
            height: 44px;
            margin: 0;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 12px;
            background: rgba(8, 18, 36, 0.55);
            color: var(--white);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            flex-shrink: 0;
        }
        .nav-toggle:focus-visible {
            outline: 2px solid rgba(90, 215, 255, 0.7);
            outline-offset: 2px;
        }
        .nav-toggle-bars,
        .nav-toggle-bars::before,
        .nav-toggle-bars::after {
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform .2s ease, opacity .2s ease;
        }
        .nav-toggle-bars {
            position: relative;
        }
        .nav-toggle-bars::before,
        .nav-toggle-bars::after {
            content: "";
            position: absolute;
            left: 0;
        }
        .nav-toggle-bars::before { top: -6px; }
        .nav-toggle-bars::after { top: 6px; }
        .site-header.is-nav-open .nav-toggle-bars {
            background: transparent;
        }
        .site-header.is-nav-open .nav-toggle-bars::before {
            top: 0;
            transform: rotate(45deg);
        }
        .site-header.is-nav-open .nav-toggle-bars::after {
            top: 0;
            transform: rotate(-45deg);
        }
        .nav-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .nav-links {
            display: flex;
            gap: 0.9rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a { color: rgba(255,255,255,0.86); font-weight: 600; font-size: 0.95rem; }
        .nav-links a.nav-si {
            font-weight: 800;
            letter-spacing: 0.05em;
            font-size: 0.82rem;
            color: #fff;
        }
        .nav-backdrop {
            display: none;
        }
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            min-height: 2.75rem; padding: 0.7rem 1.15rem; border-radius: 999px;
            border: 1px solid transparent; font-weight: 700; font-size: 0.95rem;
            transition: transform .18s ease, background .18s ease, border-color .18s ease;
        }
        .btn:hover { transform: translateY(-1px); }
        .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); }
        .btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
        .btn-primary:hover { background: var(--blue-deep); }
        .btn-dark { background: var(--ink); color: var(--white); }
        .btn-dark:hover { background: #121826; color: var(--white); }
        .btn-outline { border-color: var(--line); background: rgba(255,255,255,0.7); }
        .hero {
            min-height: min(86vh, 740px); color: var(--white); display: grid; align-items: center;
            background:
                linear-gradient(120deg, rgba(5,7,13,0.94) 8%, rgba(11,18,32,0.82) 46%, rgba(19,32,56,0.55) 100%),
                radial-gradient(ellipse at 68% 42%, rgba(47,157,255,0.22), transparent 48%),
                linear-gradient(145deg, var(--hero-a), var(--hero-b) 45%, var(--hero-c));
            position: relative; overflow: hidden; isolation: isolate;
        }
        .hero::before {
            content: ""; position: absolute; inset: 0; z-index: 0;
            background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 46px 46px;
            mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 85%);
            animation: gridDrift 26s linear infinite;
            pointer-events: none;
        }
        .hero-emblem {
            --emblem-size: min(22vw, 220px);
            --emblem-depth: calc(var(--emblem-size) * 0.52);
            position: absolute;
            right: clamp(12%, 18vw, 26%);
            top: 48%;
            width: var(--emblem-size);
            height: var(--emblem-size);
            transform: translate3d(0, -50%, 0);
            z-index: 1;
            pointer-events: none;
            display: grid;
            place-items: center;
            animation: emblemFloat 22s ease-in-out infinite;
        }
        .hero-emblem-glow {
            position: absolute;
            inset: -10%;
            border-radius: 50%;
            background:
                radial-gradient(circle at 45% 40%, rgba(74, 168, 255, 0.3) 0%, rgba(20, 40, 80, 0.14) 46%, transparent 72%);
            filter: blur(20px);
        }
        .hero-emblem-stage {
            width: 90%;
            height: 90%;
            perspective: 980px;
            perspective-origin: 50% 42%;
            display: grid;
            place-items: center;
        }
        .hero-emblem-orbit {
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            transform-style: preserve-3d;
            animation: emblemViewSway 26s ease-in-out infinite;
            will-change: transform;
        }
        .hero-emblem-cube {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            transform-style: preserve-3d;
            animation: emblemRubikPlay 28s cubic-bezier(0.4, 0.05, 0.2, 1) infinite;
            will-change: transform;
        }
        .hero-emblem-face {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            border-radius: 10%;
            overflow: hidden;
            border: 1px solid rgba(150, 200, 255, 0.34);
            background:
                radial-gradient(circle at 28% 22%, rgba(120, 190, 255, 0.18), transparent 52%),
                linear-gradient(155deg, rgba(16, 28, 48, 0.97) 0%, rgba(8, 14, 26, 0.99) 48%, rgba(12, 24, 46, 0.97) 100%);
            box-shadow:
                inset 0 0 0 7px rgba(6, 14, 28, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.16),
                inset 0 -18px 28px rgba(0, 0, 0, 0.28),
                0 12px 30px rgba(3, 10, 24, 0.38);
            backface-visibility: hidden;
            transform-style: preserve-3d;
        }
        .hero-emblem-face::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(125deg, rgba(255,255,255,0.12) 0%, transparent 34%, transparent 62%, rgba(47,157,255,0.08) 100%);
            pointer-events: none;
        }
        .hero-emblem-face-front {
            transform: rotateY(0deg) translateZ(var(--emblem-depth));
        }
        .hero-emblem-face-back {
            transform: rotateY(180deg) translateZ(var(--emblem-depth));
        }
        .hero-emblem-face-right {
            transform: rotateY(90deg) translateZ(var(--emblem-depth));
        }
        .hero-emblem-face-left {
            transform: rotateY(-90deg) translateZ(var(--emblem-depth));
        }
        .hero-emblem-face-top {
            transform: rotateX(90deg) translateZ(var(--emblem-depth));
            background:
                radial-gradient(circle at 50% 40%, rgba(90, 170, 255, 0.16), transparent 58%),
                linear-gradient(180deg, rgba(28, 44, 72, 0.98) 0%, rgba(10, 16, 30, 0.98) 100%);
        }
        .hero-emblem-face-bottom {
            transform: rotateX(-90deg) translateZ(var(--emblem-depth));
            background:
                radial-gradient(circle at 50% 60%, rgba(70, 140, 220, 0.12), transparent 55%),
                linear-gradient(0deg, rgba(22, 34, 56, 0.98) 0%, rgba(8, 12, 22, 0.98) 100%);
        }
        .hero-emblem-mark {
            width: 72%;
            height: auto;
            position: relative;
            z-index: 1;
            filter:
                drop-shadow(0 10px 16px rgba(3, 12, 28, 0.5))
                drop-shadow(0 0 12px rgba(74, 168, 255, 0.24));
            /* Logo turns in 90° sticker steps with each Rubik move */
            animation: emblemMarkTwist 28s cubic-bezier(0.4, 0.05, 0.2, 1) infinite;
            transform-style: preserve-3d;
        }
        @keyframes gridDrift { to { transform: translate3d(-46px,-46px,0); } }
        @keyframes riseIn { from { opacity:0; transform: translateY(16px);} to { opacity:1; transform:none; } }
        /* Slow viewing sway only — not a chaotic tumble */
        @keyframes emblemViewSway {
            0%, 100% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
            50% { transform: rotateX(4deg) rotateY(-6deg) rotateZ(2deg); }
        }
        /*
         * Rubik-style play: pause → quarter turn → pause → another axis.
         * Ends +360° on Y so the loop is seamless.
         */
        @keyframes emblemRubikPlay {
            0%, 10% { transform: rotateX(-22deg) rotateY(-28deg) rotateZ(6deg); }
            18% { transform: rotateX(-22deg) rotateY(62deg) rotateZ(6deg); }
            18%, 28% { transform: rotateX(-22deg) rotateY(62deg) rotateZ(6deg); }
            36% { transform: rotateX(68deg) rotateY(62deg) rotateZ(6deg); }
            36%, 46% { transform: rotateX(68deg) rotateY(62deg) rotateZ(6deg); }
            54% { transform: rotateX(68deg) rotateY(152deg) rotateZ(6deg); }
            54%, 64% { transform: rotateX(68deg) rotateY(152deg) rotateZ(6deg); }
            72% { transform: rotateX(-22deg) rotateY(152deg) rotateZ(6deg); }
            72%, 82% { transform: rotateX(-22deg) rotateY(152deg) rotateZ(6deg); }
            90% { transform: rotateX(-22deg) rotateY(242deg) rotateZ(6deg); }
            90%, 96% { transform: rotateX(-22deg) rotateY(242deg) rotateZ(6deg); }
            100% { transform: rotateX(-22deg) rotateY(332deg) rotateZ(6deg); }
        }
        @keyframes emblemMarkTwist {
            0%, 10% { transform: rotate(0deg); }
            18%, 28% { transform: rotate(90deg); }
            36%, 46% { transform: rotate(180deg); }
            54%, 64% { transform: rotate(270deg); }
            72%, 82% { transform: rotate(360deg); }
            90%, 96% { transform: rotate(450deg); }
            100% { transform: rotate(540deg); }
        }
        @keyframes emblemFloat {
            0%, 100% { transform: translate3d(0, -50%, 0); }
            50% { transform: translate3d(-1%, calc(-50% - 6px), 0); }
        }
        .hero-inner {
            position: relative; z-index: 2;
            width: min(1120px, calc(100% - 2rem)); margin: 0 auto;
            padding: 5.2rem 0 3.4rem;
            max-width: min(1120px, calc(100% - 2rem));
        }
        .hero-logo-block {
            margin: 0 0 1rem;
            animation: riseIn .7s ease both;
        }
        .hero-logo { width: min(360px, 78vw); margin: 0; display: block; }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4.4vw, 3rem);
            max-width: 14ch;
            line-height: 1.08;
            letter-spacing: -0.02em;
            margin: 0 0 .95rem;
            animation: riseIn .8s .08s both;
        }
        .hero-lead {
            max-width: min(34rem, 50vw); color: rgba(255,255,255,.86); font-size: 1.1rem; line-height: 1.55;
            margin: 0 0 1.5rem; animation: riseIn .8s .16s both;
        }
        .hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; animation: riseIn .8s .24s both; }
        @media (max-width: 1100px) {
            .product-grid-three {
                grid-template-columns: 1fr;
            }
            .journey-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 980px) {
            .hero-emblem {
                --emblem-size: min(24vw, 190px);
                right: clamp(10%, 16vw, 22%);
                opacity: 0.94;
            }
            .hero-lead { max-width: 36rem; }
            .hero h1 { max-width: 16ch; }
        }
        @media (max-width: 640px) {
            .journey-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 720px) {
            .hero { min-height: auto; align-items: start; }
            .hero-emblem {
                --emblem-size: min(30vw, 128px);
                right: clamp(1.4rem, 8vw, 3rem);
                top: 22%;
                opacity: 0.72;
            }
            .hero-emblem-orbit { animation-duration: 32s; }
            .hero-emblem-cube,
            .hero-emblem-mark { animation-duration: 34s; }
            .hero-emblem { animation-duration: 26s; }
            .hero-inner { padding: 5.1rem 0 2.8rem; }
            .hero h1 { max-width: 12ch; font-size: clamp(1.7rem, 7.2vw, 2.35rem); }
            .hero-lead { max-width: 100%; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero::before,
            .hero-emblem,
            .hero-emblem-orbit,
            .hero-emblem-cube,
            .hero-emblem-mark { animation: none !important; }
            .hero-emblem { transform: translate3d(0, -50%, 0); }
            .hero-emblem-orbit { transform: none; }
            .hero-emblem-cube { transform: rotateX(-22deg) rotateY(-28deg) rotateZ(6deg); }
            .hero-emblem-face { border-radius: 10%; clip-path: none; }
        }
        section { padding: 4.4rem 0; }
        .section-kicker {
            display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
            text-transform: uppercase; color: var(--blue-deep); margin-bottom: .65rem;
        }
        .section-title {
            font-family: var(--font-display); font-size: clamp(1.65rem, 3.4vw, 2.35rem);
            margin: 0 0 .75rem; max-width: 18ch; line-height: 1.15;
        }
        .section-copy { margin: 0; color: var(--ink-soft); line-height: 1.6; max-width: 40rem; font-size: 1.05rem; }
        .product-grid, .feature-grid, .price-grid {
            display: grid; gap: 1.25rem; margin-top: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .product-card, .price-card {
            background: rgba(255,255,255,.78); border: 1px solid var(--line);
            border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow);
            display: flex; flex-direction: column; gap: .35rem;
        }
        .product-grid-three {
            grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr) minmax(0, 1fr);
            align-items: stretch;
        }
        .product-card-featured {
            border-color: rgba(31,107,255,.28);
            background:
                linear-gradient(180deg, rgba(31,107,255,.06), rgba(255,255,255,.86)),
                rgba(255,255,255,.78);
        }
        .product-card-flagship {
            border-color: rgba(31,107,255,.42);
            box-shadow:
                0 28px 70px rgba(5, 10, 20, 0.26),
                0 0 0 1px rgba(31, 107, 255, 0.12);
        }
        .product-card-quote,
        .hero-quote {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.35;
            color: var(--ink);
            margin: 0 0 0.75rem;
        }
        .product-card-quote { font-size: 1.05rem; }
        .hero-quote {
            font-size: clamp(1.15rem, 2.4vw, 1.55rem);
            color: #fff;
            max-width: 28rem;
            margin: 0.35rem 0 0.85rem;
        }
        .journey-grid {
            list-style: none;
            margin: 2rem 0 0;
            padding: 0;
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }
        .journey-step {
            margin: 0;
            padding: 1.1rem 1rem 1.15rem;
            border-radius: 18px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.78);
            box-shadow: var(--shadow);
        }
        .journey-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.85rem;
            height: 1.85rem;
            margin-bottom: 0.65rem;
            border-radius: 999px;
            background: var(--ink);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 800;
        }
        .journey-step h3 {
            margin: 0 0 0.4rem;
            font-family: var(--font-display);
            font-size: 1.02rem;
            line-height: 1.25;
        }
        .journey-step p {
            margin: 0;
            color: var(--ink-soft);
            font-size: 0.92rem;
            line-height: 1.45;
        }
        .pricing-reserved {
            margin-top: 1.4rem;
            padding: 1.25rem 1.3rem;
            border-radius: 18px;
            border: 1px dashed rgba(11, 18, 32, 0.22);
            background: rgba(255,255,255,.55);
            color: var(--ink-soft);
            line-height: 1.55;
            max-width: 40rem;
        }
        .pricing-reserved p { margin: 0; }
        .product-card-kicker {
            display: inline-block; width: fit-content;
            font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
            color: var(--blue-deep); margin-bottom: .2rem;
        }
        .product-card-list {
            margin: 0 0 1rem; padding: 0; list-style: none;
            display: grid; gap: .45rem; color: var(--ink-soft); font-size: .95rem;
        }
        .product-card-list li {
            display: flex; gap: .5rem; align-items: flex-start; line-height: 1.4;
        }
        .product-card-list li::before {
            content: ""; width: .45rem; height: .45rem; margin-top: .4rem; flex: 0 0 auto;
            border-radius: 50%; background: var(--blue);
        }
        .product-card .btn, .price-card .btn { margin-top: auto; align-self: flex-start; }
        .product-card h3, .price-card h3, .feature h3 {
            margin: 0 0 .45rem; font-family: var(--font-display); font-size: 1.15rem;
        }
        .product-card p, .price-card p, .feature p { margin: 0 0 1rem; color: var(--ink-soft); line-height: 1.5; }
        .feature { border-bottom: 1px solid var(--line); padding: .2rem 0 1rem; }
        .amount { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; letter-spacing: -.03em; margin: .35rem 0; }
        .amount span { font-size: 1rem; color: var(--ink-soft); font-weight: 600; }
        .trial-note {
            margin-top: 1.2rem; padding: 1rem 1.15rem; border-left: 3px solid var(--blue);
            background: rgba(31,107,255,.08); line-height: 1.5;
        }
        .pricing-offer-intro { max-width: 40rem; }
        .pricing-offer-grid {
            display: grid;
            gap: 0.9rem;
            margin-top: 1.5rem;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            max-width: 720px;
        }
        .pricing-offer-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            padding: 1.1rem 1.15rem 1.15rem;
            border-radius: 18px;
            border: 1px solid rgba(18, 28, 48, 0.14);
            background:
                linear-gradient(165deg, #0b1220 0%, #121a2c 55%, #0a101c 100%);
            color: #f4f7ff;
            box-shadow: 0 14px 34px rgba(8, 16, 32, 0.18);
            min-height: 100%;
        }
        .pricing-offer-card h3 {
            margin: 0;
            font-family: var(--font-display);
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(230, 238, 255, 0.78);
        }
        .pricing-offer-amount {
            margin: 0.15rem 0 0.1rem;
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 3vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        .pricing-offer-amount span {
            font-size: 0.92rem;
            font-weight: 600;
            color: rgba(210, 222, 255, 0.72);
        }
        .pricing-offer-benefit {
            margin: 0;
            color: rgba(220, 230, 255, 0.82);
            font-size: 0.92rem;
            line-height: 1.4;
        }
        .pricing-offer-benefit--accent {
            color: #9fd0ff;
            font-weight: 700;
        }
        .pricing-offer-meta {
            margin: 0 0 0.55rem;
            color: rgba(180, 198, 235, 0.72);
            font-size: 0.82rem;
            line-height: 1.35;
        }
        .pricing-offer-meta--accent {
            color: #7ec4ff;
            font-weight: 700;
        }
        .pricing-offer-card .btn {
            margin-top: auto;
            align-self: flex-start;
            min-height: 2.45rem;
            padding: 0.55rem 1rem;
            font-size: 0.88rem;
        }
        .pricing-offer-card .btn-dark {
            background: #05070d;
            border-color: rgba(255,255,255,0.12);
        }
        .pricing-offer-card .btn-dark:hover {
            background: #101624;
        }
        .pricing-offer-card--recommended {
            border-color: rgba(74, 168, 255, 0.55);
            box-shadow:
                0 16px 40px rgba(20, 70, 160, 0.28),
                0 0 0 1px rgba(90, 180, 255, 0.18) inset;
            background:
                linear-gradient(165deg, #0c1730 0%, #123057 48%, #0b1a33 100%);
        }
        .pricing-offer-badge {
            position: absolute;
            top: 0.85rem;
            right: 0.85rem;
            display: inline-flex;
            align-items: center;
            min-height: 1.45rem;
            padding: 0.18rem 0.55rem;
            border-radius: 999px;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #04101f;
            background: linear-gradient(90deg, #7ec8ff, #4aa8ff);
        }
        @media (max-width: 640px) {
            .pricing-offer-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
            }
        }
        .cta-panel {
            border-radius: 28px; padding: clamp(1.5rem, 4vw, 2.5rem); color: var(--white);
            background: linear-gradient(125deg, #0b1220 0%, #123057 55%, #0d47d9 120%);
            display: grid; gap: 1rem;
        }
        .cta-panel h2 { margin: 0; font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 2rem); max-width: 16ch; }
        .cta-panel p { margin: 0; color: rgba(255,255,255,.84); max-width: 36rem; line-height: 1.55; }
        .site-footer { border-top: 1px solid var(--line); padding: 1.4rem 0 2.3rem; color: var(--ink-soft); font-size: .92rem; }
        .page-hero-mini { padding: 7.5rem 0 2rem; color: var(--white);
            background: linear-gradient(135deg, #05070d, #0b1220 55%, #152848);
        }
        .page-hero-mini h1 { font-family: var(--font-display); margin: .4rem 0; font-size: clamp(1.8rem, 4vw, 2.6rem); }
        .page-hero-mini p { margin: 0; color: rgba(255,255,255,.82); max-width: 40rem; line-height: 1.55; }
        @media (max-width: 720px) {
            .brand-lockup span { display: none; }
            .brand-lockup img { height: 36px; }
            .page-hero-mini { padding-top: 6.4rem; }
        }
        /* Phones + tablets: real hamburger nav (desktop unchanged above 1024px) */
        @media (max-width: 1024px) {
            .site-header {
                padding: 0.85rem 0;
            }
            .site-header-bar {
                min-height: 44px;
            }
            .nav-toggle {
                display: inline-flex;
            }
            .nav-backdrop {
                display: block;
                position: fixed;
                inset: 0;
                z-index: 39;
                background: rgba(4, 10, 22, 0.42);
                opacity: 0;
                pointer-events: none;
                transition: opacity .2s ease;
            }
            .site-header.is-nav-open .nav-backdrop {
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links {
                position: absolute;
                top: calc(100% + 0.55rem);
                right: 0;
                left: auto;
                width: min(18.5rem, calc(100vw - 2rem));
                display: flex;
                flex-direction: column;
                align-items: stretch;
                flex-wrap: nowrap;
                gap: 0.2rem;
                padding: 0.7rem;
                border-radius: 18px;
                border: 1px solid rgba(120, 170, 255, 0.22);
                background:
                    linear-gradient(165deg, rgba(14, 28, 54, 0.98), rgba(7, 14, 28, 0.98));
                box-shadow:
                    0 24px 50px rgba(0, 0, 0, 0.42),
                    0 0 0 1px rgba(90, 215, 255, 0.06);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px) scale(0.98);
                transform-origin: top right;
                pointer-events: none;
                transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
                z-index: 41;
            }
            .site-header.is-nav-open .nav-links {
                opacity: 1;
                visibility: visible;
                transform: translateY(0) scale(1);
                pointer-events: auto;
            }
            .nav-links a {
                display: flex;
                align-items: center;
                min-height: 44px;
                padding: 0.55rem 0.85rem;
                border-radius: 12px;
                color: rgba(255, 255, 255, 0.9);
                font-size: 0.95rem;
            }
            .nav-links a:hover,
            .nav-links a:focus-visible {
                background: rgba(74, 140, 255, 0.14);
                color: #fff;
            }
            .nav-links .btn {
                width: 100%;
                margin-top: 0.15rem;
                border-radius: 12px;
            }
            .nav-links .btn-ghost {
                background: rgba(255, 255, 255, 0.06);
            }
            .hero-inner {
                padding-top: 4.6rem;
            }
            .page-hero-mini {
                padding-top: 6.8rem;
            }
            .hero-emblem {
                z-index: 1;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation: none !important; transition: none !important; }
        }
