        :root {
            --bg: #ffffff;
            --bg-soft: #f7f8fa;
            --bg-ink: #0a0c10;
            --ink: #0a0c10;
            --muted: #5c6370;
            --faint: #8b919e;
            --blue: #0b73b9;
            --blue-soft: rgba(11, 115, 185, 0.08);
            --line: rgba(0, 0, 0, 0.08);
            --line-strong: rgba(0, 0, 0, 0.14);
            --container: 1200px;
            --pad-x: clamp(1.5rem, 5vw, 5rem);
            --section-y: clamp(3.15rem, 6.3vw, 5.95rem);
            --radius: 18px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        .serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }

        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding-left: var(--pad-x);
            padding-right: var(--pad-x);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--blue);
        }
        .eyebrow::before {
            content: "";
            width: 9px;
            height: 9px;
            background: var(--blue);
        }

        /* ---------- Blue Square System ---------- */
        .strip { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
        .strip span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
        .strip b { width: 6px; height: 6px; background: var(--blue); display: inline-block; flex: 0 0 auto; }

        .glyph { display: inline-grid; grid-template-columns: repeat(2, 1fr); gap: 3px; width: 16px; }
        .glyph i { width: 100%; aspect-ratio: 1; background: var(--blue); }
        .glyph i:nth-child(2) { opacity: 0.45; }
        .glyph i:nth-child(3) { opacity: 0.7; }
        .glyph i:nth-child(4) { opacity: 0.9; }

        .sq-row { display: flex; gap: 6px; align-items: center; justify-content: center; flex-wrap: nowrap; min-height: 22px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
        .sq-row i { width: 6px; height: 6px; flex: 0 0 auto; }
        .sq-row.divider { margin: clamp(2rem, 4vw, 3rem) 0; }

        h1, h2, h3 { letter-spacing: -0.025em; line-height: 1.07; font-weight: 600; }

        /* ---------- Buttons ---------- */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.95rem 1.5rem;
            border-radius: 100px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: 1px solid transparent;
            white-space: nowrap;
        }
        .btn-primary { background: var(--ink); color: #fff; }
        .btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
        .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
        .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
        .btn svg { width: 16px; height: 16px; }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 500;
            color: var(--blue);
            font-size: 0.95rem;
            transition: gap 0.2s ease;
        }
        .text-link:hover { gap: 0.65rem; }

        /* ---------- Nav ---------- */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.1rem var(--pad-x);
            background: rgba(255,255,255,0);
            transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            border-bottom: 1px solid transparent;
        }
        nav.scrolled {
            background: rgba(255,255,255,0.82);
            backdrop-filter: saturate(180%) blur(14px);
            -webkit-backdrop-filter: saturate(180%) blur(14px);
            border-bottom-color: var(--line);
        }
        .nav-logo img { height: 30px; width: auto; }
        .nav-links { display: flex; align-items: center; gap: 2.1rem; }
        .nav-links a:not(.btn) {
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--muted);
            transition: color 0.2s ease;
        }
        .nav-links a:not(.btn):hover { color: var(--ink); }
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
        .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: 0.25s; }

        /* ---------- Hero ---------- */
        .hero {
            position: relative;
            padding-top: clamp(9.5rem, 19vh, 13rem);
            padding-bottom: clamp(3.5rem, 7vw, 6rem);
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(60% 55% at 78% 8%, rgba(11,115,185,0.10), transparent 60%),
                radial-gradient(50% 45% at 8% 0%, rgba(11,115,185,0.05), transparent 55%);
            pointer-events: none;
        }
        .hero-inner { position: relative; z-index: 1; }
        .hero-copy { max-width: 640px; }
        /* Full-width scattered square field across the top */
        .hero-grid {
            position: absolute;
            top: 0; left: 0; right: 0;
            display: grid;
            place-items: center;
            justify-content: end;
            pointer-events: none;
            z-index: 0;
            -webkit-mask-image: radial-gradient(140% 138% at 100% 0%, #000 22%, rgba(0,0,0,0.34) 50%, transparent 84%);
            mask-image: radial-gradient(140% 138% at 100% 0%, #000 22%, rgba(0,0,0,0.34) 50%, transparent 84%);
        }
        .hero-grid i {
            width: 7px; height: 7px; border-radius: 0;
            --jx: 0px; --jy: 0px; --dx: 0px; --dy: 0px;
            transform: translate(var(--jx), var(--jy));
            animation: sqIn 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) both;
            animation-delay: var(--d, 0ms);
        }
        .hero-grid i.glint {
            animation: sqIn 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), sqGlint var(--gd, 5s) ease-in-out infinite;
            animation-delay: var(--d, 0ms), var(--gdelay, 1400ms);
            animation-fill-mode: both, none;
        }
        .hero-grid i.drift {
            animation: sqIn 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), sqDrift var(--dd, 11s) ease-in-out infinite;
            animation-delay: var(--d, 0ms), var(--ddelay, 1200ms);
            animation-fill-mode: both, none;
        }
        @keyframes sqIn {
            from { opacity: 0; transform: translate(var(--jx), var(--jy)) scale(0.4); }
            to   { opacity: 1; transform: translate(var(--jx), var(--jy)) scale(1); }
        }
        @keyframes sqGlint {
            0%, 100% { opacity: 1; transform: translate(var(--jx), var(--jy)) scale(1); }
            50%      { opacity: 0.4; transform: translate(var(--jx), var(--jy)) scale(0.86); }
        }
        @keyframes sqDrift {
            0%, 100% { transform: translate(var(--jx), var(--jy)) scale(1); }
            50%      { transform: translate(calc(var(--jx) + var(--dx)), calc(var(--jy) + var(--dy))) scale(1); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-grid i, .hero-grid i.glint, .hero-grid i.drift, .model-scatter i.drift { animation: none; opacity: 1; }
        }
        .hero h1 {
            font-size: clamp(2.7rem, 6.4vw, 5.1rem);
            line-height: 1.02;
            letter-spacing: -0.04em;
            margin: 1.5rem 0 0;
        }
        .hero h1 .accent { color: var(--blue); }
        .hero h1 em { color: var(--blue); font-style: italic; letter-spacing: -0.02em; }
        .hero-sub {
            font-size: clamp(1.05rem, 1.5vw, 1.25rem);
            color: var(--muted);
            max-width: 620px;
            margin: 1.6rem 0 0;
            line-height: 1.6;
        }
        .hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2.4rem; }

        /* ---------- Marquee ---------- */
        .marquee-section { padding: clamp(2.5rem, 4vw, 3.5rem) 0; border-top: 1px solid var(--line); }
        .marquee-label {
            text-align: center;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            color: var(--faint);
            margin-bottom: 2rem;
        }
        .marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
        .marquee-track { display: flex; align-items: center; gap: 4rem; width: max-content; animation: scroll-x 48s linear infinite; }
        .marquee:hover .marquee-track { animation-play-state: paused; }
        .marquee-track img { height: 30px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.55; transition: opacity 0.2s ease, filter 0.2s ease; }
        .marquee-track img:hover { opacity: 0.9; filter: grayscale(0); }
        @keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ---------- Section scaffolding ---------- */
        section { position: relative; }
        .section-pad { padding: var(--section-y) 0; }
        .section-head { max-width: 720px; margin-bottom: clamp(1.75rem, 3.5vw, 2.8rem); }
        .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
        .section-head h2 {
            font-size: clamp(2rem, 3.8vw, 3.1rem);
            margin-top: 1rem;
            letter-spacing: -0.03em;
        }
        .section-head h2 .accent { color: var(--blue); }
        .section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 1.1rem; }

        /* ---------- Statement ---------- */
        .statement { background: var(--bg-ink); color: #fff; }
        .statement .container { text-align: center; }
        .statement p {
            font-size: clamp(1.7rem, 3.7vw, 3rem);
            line-height: 1.18;
            letter-spacing: -0.03em;
            font-weight: 500;
            max-width: 980px;
            margin: 0 auto;
        }
        .statement p .accent { color: var(--blue); }
        .statement p em { font-style: italic; color: var(--blue); }
        .statement .sub {
            font-size: 1.05rem;
            font-weight: 400;
            color: rgba(255,255,255,0.62);
            max-width: 620px;
            margin: 2rem auto 0;
            letter-spacing: 0;
            line-height: 1.65;
        }

        /* ---------- Pillars ---------- */
        .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
        .pillar { padding-top: 1.5rem; border-top: 1px solid var(--line-strong); }
        .pillar-num { font-size: 0.85rem; font-weight: 600; color: var(--blue); letter-spacing: 0.05em; }
        .pillar h3 { font-size: 1.35rem; margin: 1rem 0 0.7rem; letter-spacing: -0.02em; }
        .pillar p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; }
        .pillars-foot { margin-top: clamp(2.5rem, 4vw, 3.5rem); font-size: 1.15rem; color: var(--ink); max-width: 760px; line-height: 1.55; font-weight: 500; }

        /* Forward-deployed model */
        .model { position: relative; }
        .model .container { position: relative; z-index: 1; }
        .model-scatter { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
        .model-scatter i {
            position: absolute; width: 6px; height: 6px;
            --jx: 0px; --jy: 0px; --dx: 0px; --dy: 0px;
            transform: translate(var(--jx), var(--jy));
        }
        .model-scatter i.drift { animation: sqDrift var(--dd, 11s) ease-in-out var(--ddelay, 0ms) infinite; }
        @media (max-width: 980px) { .model-scatter { display: none; } }
        .rail { display: none; }
        .seats { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4.5rem); }
        .seat .glyph { margin-bottom: 1.2rem; }
        .seat h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); letter-spacing: -0.02em; margin-bottom: 0.7rem; }
        .seat p { color: var(--muted); font-size: 1.02rem; line-height: 1.6; max-width: 430px; }
        .model-strip { justify-content: center; }
        @media (min-width: 1240px) {
            .rail { display: flex; flex-direction: column; gap: 10px; position: absolute; left: max(2rem, calc((100% - var(--container)) / 2 - 1.25rem)); top: 50%; transform: translateY(-50%); }
            .rail i { width: 6px; height: 6px; }
        }

        /* ---------- Capabilities ---------- */
        .caps { background: var(--bg-soft); }
        .caps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: start; }
        .cap-card {
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 1.75rem;
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .cap-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(0,0,0,0.35); }
        .cap-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
        .cap-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .cap-card h3 { font-size: 1.1rem; margin-bottom: 0.85rem; letter-spacing: -0.01em; }
        .cap-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
        .cap-tag { font-size: 0.78rem; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: 0.28rem 0.6rem; border-radius: 100px; }

        /* ---------- Solutions ---------- */
        .sol-feature {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: clamp(1.5rem, 3vw, 3rem);
            align-items: center;
            background: var(--bg-ink);
            color: #fff;
            border-radius: 24px;
            padding: clamp(2rem, 4vw, 3.5rem);
            overflow: hidden;
            position: relative;
            margin-bottom: 1.25rem;
        }
        .sol-feature::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(60% 80% at 100% 0%, rgba(11,115,185,0.35), transparent 60%);
            pointer-events: none;
        }
        .sol-feature-body { position: relative; z-index: 1; }
        .sol-flag { display: inline-block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 1.1rem; }
        .sol-feature img.ts-logo { height: 34px; width: auto; margin-bottom: 1.2rem; }
        .sol-feature p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 460px; margin-bottom: 1.6rem; }
        .sol-feature .btn-primary { background: #fff; color: var(--ink); }
        .sol-feature .btn-primary:hover { background: var(--blue); color: #fff; }
        .sol-feature-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 0.5rem; align-content: flex-start; }
        .sol-feature-tags span { font-size: 0.82rem; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); padding: 0.4rem 0.85rem; border-radius: 100px; }

        .sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
        .sol-card {
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .sol-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(0,0,0,0.35); }
        .sol-card-tag { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); }
        .sol-card h3 { font-size: 1.25rem; margin: 0.7rem 0 0.6rem; letter-spacing: -0.01em; }
        .sol-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; flex-grow: 1; margin-bottom: 1.2rem; }
        .sol-card .text-link { color: var(--ink); }
        .sol-card:hover .text-link { color: var(--blue); }

        /* ---------- Proof ---------- */
        .proof { background: var(--bg-ink); color: #fff; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
        .stat {
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius);
            padding: 1.75rem;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .stat:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.03); }
        .stat-num { font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 600; letter-spacing: -0.03em; color: #fff; }
        .stat-num .accent { color: var(--blue); }
        .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0.5rem 0 1rem; line-height: 1.45; }
        .stat .text-link { color: var(--blue); }

        .vid-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
        .vid-wrap { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
        .vid-wrap img { width: 100%; height: auto; display: block; }
        .vid-play {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 68px; height: 68px; border-radius: 50%;
            background: rgba(11,115,185,0.92); border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.2s ease;
        }
        .vid-wrap:hover .vid-play { transform: translate(-50%, -50%) scale(1.07); }
        .vid-play svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
        .vid-quote p { font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.5; font-weight: 500; letter-spacing: -0.01em; }
        .vid-quote p strong { color: var(--blue); font-weight: 600; }
        .vid-author { display: block; margin-top: 1.3rem; color: rgba(255,255,255,0.6); font-size: 0.95rem; }

        /* ---------- FAQ ---------- */
        .faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-q {
            width: 100%; text-align: left; background: none; border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
            padding: 1.5rem 0; font-size: 1.12rem; font-weight: 500; color: var(--ink);
            font-family: inherit; letter-spacing: -0.01em;
        }
        .faq-q .faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform 0.25s ease; }
        .faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; }
        .faq-q .faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
        .faq-q .faq-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); transition: opacity 0.25s ease; }
        .faq-item.open .faq-icon::after { opacity: 0; }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-a-inner { padding-bottom: 1.5rem; color: var(--muted); font-size: 1rem; line-height: 1.65; max-width: 680px; }

        /* ---------- Final CTA ---------- */
        .final-cta { text-align: center; }
        .final-cta h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); letter-spacing: -0.035em; }
        .final-cta h2 .accent { color: var(--blue); }
        .final-cta p { color: var(--muted); font-size: 1.12rem; margin: 1.2rem auto 0; max-width: 520px; }
        .final-cta .hero-ctas { justify-content: center; }

        /* ---------- Footer ---------- */
        footer { border-top: 1px solid var(--line); padding: 3rem var(--pad-x); }
        .footer-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
        .footer-inner img.f-logo { height: 28px; width: auto; }
        .footer-links { display: flex; gap: 1.75rem; }
        .footer-links a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s ease; }
        .footer-links a:hover { color: var(--ink); }
        .footer-meta { display: flex; align-items: center; gap: 1.25rem; }
        .footer-copy { font-size: 0.82rem; color: var(--faint); }
        .footer-veteran { height: 46px; width: auto; }

        /* ---------- Comparison table ---------- */
        .cmp-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
        .cmp-table th, .cmp-table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
        .cmp-table thead th { font-weight: 600; color: var(--ink); border-bottom-color: var(--line-strong); }
        .cmp-table td { color: var(--muted); }
        .cmp-table tbody th { font-weight: 500; color: var(--ink); }

        /* ---------- Media / proof visuals (charts, screenshots, client logos) ---------- */
        .media-figure { margin: clamp(1.5rem, 3vw, 2.5rem) 0; }
        .media-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
        .media-card img { width: 100%; height: auto; display: block; }
        .media-figure figcaption { margin-top: 0.75rem; font-size: 0.85rem; color: var(--faint); text-align: center; }
        .proof-logo { height: 40px; width: auto; filter: grayscale(1); opacity: 0.62; }
        .proof-logos { display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; }

        /* ---------- Long-form prose & lists ---------- */
        .prose { max-width: 720px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
        .prose p { margin-bottom: 1.1rem; }
        .prose p:last-child { margin-bottom: 0; }
        .prose strong { color: var(--ink); font-weight: 600; }
        .lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.6; max-width: 720px; }
        .sol-list { list-style: none; display: grid; gap: 0.75rem; max-width: 720px; }
        .sol-list li { position: relative; padding-left: 1.4rem; color: var(--muted); line-height: 1.6; }
        .sol-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; background: var(--blue); }
        .sol-list li strong { color: var(--ink); font-weight: 600; }

        /* ---------- Page drifters ---------- */
        .page-drifters { position: fixed; inset: 0; pointer-events: none; z-index: 50; overflow: hidden; }
        .page-drifters i { position: absolute; top: 0; left: 0; width: 6px; height: 6px; will-change: transform, opacity; }

        /* ---------- Reveal ---------- */
        .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.visible { opacity: 1; transform: none; }

        /* ---------- Responsive ---------- */
        @media (max-width: 980px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-visual { display: none; }
            .seats { grid-template-columns: 1fr; }
            .caps-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .sol-feature { grid-template-columns: 1fr; }
            .vid-layout { grid-template-columns: 1fr; }
        }
        @media (max-width: 760px) {
            .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: #fff; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; padding: 2rem; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4); }
            .nav-links.open { transform: translateX(0); }
            .nav-links a:not(.btn) { font-size: 1.1rem; }
            .nav-toggle { display: block; z-index: 101; }
            .pillars { grid-template-columns: 1fr; }
            .sol-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 520px) {
            .caps-grid, .stats-grid { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; align-items: flex-start; }
        }
    
