        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Mono:wght@300;400;500&family=DM+Sans:wght@300;400;500&display=swap');

        :root {
            --bg: #06080f;
            --bg2: #0c1020;
            --bg3: #111827;
            --line: rgba(255, 255, 255, 0.07);
            --accent: #4f8ef7;
            --accent2: #f7c94f;
            --accent3: #4ff7a0;
            --text: #e8eaf0;
            --muted: #6b7a99;
            --human: #4ff7a0;
            --stateless: #94a3b8;
            --agent: #f7c94f;
            --waymo: #f74f6a;
            --lida: #7b9ef7;
            --map: #6b7a99;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            font-weight: 300;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ── NOISE OVERLAY ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1000;
            opacity: 0.6;
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: grid;
            place-items: center;
            position: relative;
            padding: 80px 24px;
            overflow: hidden;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(79, 142, 247, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(79, 142, 247, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }

        .orb1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(79, 142, 247, 0.12) 0%, transparent 70%);
            top: -200px;
            left: -200px;
        }

        .orb2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(79, 247, 160, 0.08) 0%, transparent 70%);
            bottom: -150px;
            right: -150px;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 900px;
            text-align: center;
        }

        .hero-eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.2s;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(52px, 8vw, 96px);
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.4s;
        }

        .hero-title em {
            font-style: italic;
            color: var(--accent);
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(18px, 3vw, 26px);
            font-weight: 300;
            font-style: italic;
            color: var(--muted);
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.6s;
        }

        .hero-lead {
            font-size: 17px;
            color: #a0aabf;
            max-width: 680px;
            margin: 0 auto 48px;
            line-height: 1.75;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.8s;
        }

        .hero-lead strong {
            color: var(--text);
            font-weight: 500;
        }

        .hero-formula {
            display: inline-block;
            background: rgba(79, 142, 247, 0.08);
            border: 1px solid rgba(79, 142, 247, 0.2);
            border-radius: 8px;
            padding: 16px 32px;
            margin-bottom: 48px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-style: italic;
            color: var(--accent);
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 1.0s;
        }

        .hero-formula span {
            color: var(--muted);
            font-size: 14px;
            font-family: 'DM Mono', monospace;
            font-style: normal;
            display: block;
            margin-top: 4px;
            letter-spacing: 0.05em;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 1.2s;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 6px;
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--bg);
            font-weight: 500;
        }

        .btn-primary:hover {
            background: #6fa8ff;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--line);
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.04);
        }

        /* ── SCROLL HINT ── */
        .scroll-hint {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--muted);
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            animation: fadeUp 1s ease forwards 2s, bounce 2s ease-in-out infinite 3s;
            opacity: 0;
        }

        .scroll-hint svg {
            animation: bounce 2s ease-in-out infinite;
        }

        /* ── SECTIONS ── */
        section {
            padding: 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-divider {
            width: 100%;
            height: 1px;
            background: var(--line);
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .section-title em {
            font-style: italic;
            color: var(--accent);
        }

        .section-body {
            font-size: 16px;
            color: #8a94b0;
            max-width: 680px;
            line-height: 1.8;
        }

        .section-body strong {
            color: var(--text);
            font-weight: 500;
        }

        /* ── FCS TABLE SECTION ── */
        .fcs-section {
            padding: 100px 24px;
        }

        .fcs-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .fcs-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 64px;
        }

        @media (max-width: 768px) {
            .fcs-header {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        .fcs-explainer {
            font-size: 15px;
            color: #8a94b0;
            line-height: 1.8;
        }

        .fcs-explainer strong {
            color: var(--text);
            font-weight: 500;
        }

        .fcs-explainer p+p {
            margin-top: 16px;
        }

        .diagram-wrap {
            margin-bottom: 48px;
            text-align: center;
        }

        .diagram-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: var(--bg2);
        }

        /* The matrix */
        .matrix-wrap {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: var(--bg2);
        }

        .matrix {
            width: 100%;
            border-collapse: collapse;
            font-family: 'DM Mono', monospace;
            font-size: 13px;
        }

        .matrix thead th {
            padding: 14px 10px;
            text-align: left;
            font-size: 10px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            border-bottom: 1px solid var(--line);
            white-space: nowrap;
            line-height: 1.2;
        }

        .matrix thead th small {
            display: block;
            font-size: 8px;
            letter-spacing: 0.05em;
            opacity: 0.7;
            font-weight: normal;
        }

        .matrix thead th:not(:first-child) {
            text-align: right;
        }

        .matrix tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: background 0.15s;
        }

        .matrix tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .matrix tbody tr:last-child {
            border-bottom: none;
        }

        .matrix td {
            padding: 12px 10px;
            vertical-align: middle;
        }

        .matrix td:not(:first-child) {
            text-align: right;
        }

        .sys-name {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .sys-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .sys-name-text {
            color: var(--text);
            font-size: 13px;
        }

        .sys-type {
            font-size: 10px;
            color: var(--muted);
            display: block;
            margin-top: 1px;
        }

        .fcs-score {
            font-size: 14px;
            font-weight: 500;
        }

        .score-bar-cell {
            width: 140px;
        }

        .score-bar-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: flex-end;
        }

        .score-bar-bg {
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 2px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .score-bar-fill {
            height: 100%;
            border-radius: 2px;
            transition: width 1s ease;
        }

        .zero-score {
            color: var(--muted);
        }

        /* ── INSIGHT CARDS ── */
        .insights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        @media (max-width: 900px) {
            .insights {
                grid-template-columns: 1fr;
            }
        }

        .insight-card {
            background: var(--bg2);
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 28px;
        }

        .insight-icon {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-style: italic;
            color: var(--accent);
            margin-bottom: 12px;
            line-height: 1;
        }

        .insight-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 8px;
        }

        .insight-body {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ── RADAR SECTION ── */
        .radar-section {
            padding: 100px 24px;
        }

        .radar-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .radar-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 64px;
        }

        @media (max-width: 768px) {
            .radar-header {
                grid-template-columns: 1fr;
            }
        }

        .radar-explainer {
            font-size: 15px;
            color: #8a94b0;
            line-height: 1.8;
        }

        .radar-explainer strong {
            color: var(--text);
            font-weight: 500;
        }

        .radar-explainer p+p {
            margin-top: 16px;
        }

        .domain-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 20px;
        }

        .domain-pill {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            padding: 4px 10px;
            border-radius: 4px;
            background: rgba(79, 142, 247, 0.08);
            border: 1px solid rgba(79, 142, 247, 0.15);
            color: #7aA0d0;
        }

        /* Radar grid */
        .radar-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        @media (max-width: 1100px) {
            .radar-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .radar-grid {
                grid-template-columns: 1fr;
            }
        }

        .radar-card {
            background: var(--bg2);
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .radar-card-title {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 4px;
            text-align: center;
        }

        .radar-card-sub {
            font-size: 11px;
            color: var(--muted);
            margin-bottom: 16px;
            text-align: center;
            font-style: italic;
            font-family: 'Cormorant Garamond', serif;
        }

        .radar-card-score {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            margin-top: 12px;
        }

        .radar-card-score-label {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            color: var(--muted);
            text-align: center;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ── FOOTER ── */
        .footer-section {
            padding: 80px 24px;
            border-top: 1px solid var(--line);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
        }

        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        .footer-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-style: italic;
            color: var(--text);
            margin-bottom: 12px;
        }

        .footer-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col-title {
            font-family: 'DM Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: #8a94b0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--text);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--line);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: gap;
            gap: 16px;
        }

        .footer-copy {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--muted);
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(6px);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* stagger children */
        .reveal-stagger>* {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal-stagger.visible>*:nth-child(1) {
            opacity: 1;
            transform: none;
            transition-delay: 0.0s;
        }

        .reveal-stagger.visible>*:nth-child(2) {
            opacity: 1;
            transform: none;
            transition-delay: 0.1s;
        }

        .reveal-stagger.visible>*:nth-child(3) {
            opacity: 1;
            transform: none;
            transition-delay: 0.2s;
        }

        .reveal-stagger.visible>*:nth-child(4) {
            opacity: 1;
            transform: none;
            transition-delay: 0.3s;
        }

        .reveal-stagger.visible>*:nth-child(5) {
            opacity: 1;
            transform: none;
            transition-delay: 0.4s;
        }

        .reveal-stagger.visible>*:nth-child(6) {
            opacity: 1;
            transform: none;
            transition-delay: 0.5s;
        }

        .reveal-stagger.visible>*:nth-child(7) {
            opacity: 1;
            transform: none;
            transition-delay: 0.6s;
        }

        .reveal-stagger.visible>*:nth-child(8) {
            opacity: 1;
            transform: none;
            transition-delay: 0.7s;
        }