
        html {
            scrollbar-color: #78a990 #f6faf2;
            scrollbar-width: thin;
        }
        html::-webkit-scrollbar {
            width: 10px;
        }
        html::-webkit-scrollbar-track {
            background: #f6faf2;
        }
        html::-webkit-scrollbar-thumb {
            background: #78a990;
            border: 2px solid #f6faf2;
            border-radius: 999px;
        }
        .typing-scale {
            display: inline-block;
            width: 10.5ch;
            overflow: hidden;
            vertical-align: bottom;
            white-space: nowrap;
            border-right: 0.08em solid #9bef45;
            animation: type-scale 5.5s steps(11, end) infinite, type-caret 0.75s step-end infinite;
        }
        @keyframes type-scale {
            0%, 10% { clip-path: inset(0 100% 0 0); }
            36%, 66% { clip-path: inset(0 0 0 0); }
            92%, 100% { clip-path: inset(0 100% 0 0); }
        }
        @keyframes type-caret {
            0%, 48% { border-color: #9bef45; }
            49%, 100% { border-color: transparent; }
        }
        @media (prefers-reduced-motion: reduce) {
            .typing-scale {
                width: 10.5ch;
                clip-path: none;
                border-right: 0;
                animation: none;
            }
        }
        .loop-roadmap {
            position: relative;
            height: 460px;
        }
        .loop-roadmap-line {
            position: absolute;
            left: 2%;
            right: 2%;
            top: 50%;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, #9bef45, #42d5c8, #9bef45);
            box-shadow: 0 0 18px rgba(155, 239, 69, 0.42);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .loop-roadmap-step {
            position: absolute;
            top: 50%;
            width: 16.666%;
            height: 0;
        }
        .loop-roadmap-step:nth-of-type(1) { left: 0; }
        .loop-roadmap-step:nth-of-type(2) { left: 16.666%; }
        .loop-roadmap-step:nth-of-type(3) { left: 33.332%; }
        .loop-roadmap-step:nth-of-type(4) { left: 49.998%; }
        .loop-roadmap-step:nth-of-type(5) { left: 66.664%; }
        .loop-roadmap-step:nth-of-type(6) { left: 83.33%; }
        .loop-roadmap-node {
            position: absolute;
            left: 50%;
            top: 0;
            width: 42px;
            height: 42px;
            transform: translate(-50%, -50%);
            display: grid;
            place-items: center;
            border: 4px solid #0b4b37;
            border-radius: 50%;
            background: #9bef45;
            box-shadow: 0 0 0 2px #9bef45, 0 0 20px rgba(155, 239, 69, 0.45);
            color: #052e24;
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            font-weight: 800;
            z-index: 2;
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.35);
            transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.55s ease;
        }
        .loop-roadmap-step::before {
            content: "";
            position: absolute;
            left: 50%;
            width: 1px;
            height: 48px;
            transform: translateX(-50%);
            background: rgba(155, 239, 69, 0.5);
        }
        .loop-roadmap-step.is-top::before { bottom: 21px; }
        .loop-roadmap-step.is-bottom::before { top: 21px; }
        .loop-roadmap-card {
            position: absolute;
            left: 50%;
            width: min(205px, 94%);
            min-height: 145px;
            transform: translateX(-50%);
            padding: 16px;
            border: 1px solid rgba(155, 239, 69, 0.28);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.045);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
        }
        .loop-roadmap-step.is-top .loop-roadmap-card { bottom: 69px; transform: translate(-50%, -34px); }
        .loop-roadmap-step.is-bottom .loop-roadmap-card { top: 69px; transform: translate(-50%, 34px); }
        .loop-roadmap.is-assembled .loop-roadmap-line { transform: scaleX(1); }
        .loop-roadmap.is-assembled .loop-roadmap-node { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        .loop-roadmap.is-assembled .loop-roadmap-card { opacity: 1; transform: translate(-50%, 0); }
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(1) .loop-roadmap-node,
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(1) .loop-roadmap-card { transition-delay: 0.14s; }
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(2) .loop-roadmap-node,
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(2) .loop-roadmap-card { transition-delay: 0.28s; }
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(3) .loop-roadmap-node,
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(3) .loop-roadmap-card { transition-delay: 0.42s; }
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(4) .loop-roadmap-node,
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(4) .loop-roadmap-card { transition-delay: 0.56s; }
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(5) .loop-roadmap-node,
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(5) .loop-roadmap-card { transition-delay: 0.7s; }
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(6) .loop-roadmap-node,
        .loop-roadmap.is-assembled .loop-roadmap-step:nth-of-type(6) .loop-roadmap-card { transition-delay: 0.84s; }
        @media (max-width: 767px) {
            .loop-roadmap { height: auto; padding-left: 54px; }
            .loop-roadmap-line { left: 20px; right: auto; top: 10px; bottom: 10px; width: 3px; height: auto; }
            .loop-roadmap-step,
            .loop-roadmap-step:nth-of-type(n) { position: relative; left: auto; top: auto; width: 100%; height: auto; min-height: 180px; }
            .loop-roadmap-node { left: -34px; top: 25px; }
            .loop-roadmap-step::before { display: none; }
            .loop-roadmap-card,
            .loop-roadmap-step.is-top .loop-roadmap-card,
            .loop-roadmap-step.is-bottom .loop-roadmap-card { position: relative; left: auto; top: auto; bottom: auto; width: 100%; min-height: 0; }
            .loop-roadmap-step:nth-of-type(odd) .loop-roadmap-card { transform: translateX(-28px); }
            .loop-roadmap-step:nth-of-type(even) .loop-roadmap-card { transform: translateX(28px); }
            .loop-roadmap.is-assembled .loop-roadmap-card { transform: translateX(0); }
            .loop-roadmap-line { transform: scaleY(0); transform-origin: center top; }
            .loop-roadmap.is-assembled .loop-roadmap-line { transform: scaleY(1); }
        }
        @media (prefers-reduced-motion: reduce) {
            .loop-roadmap-line,
            .loop-roadmap-node,
            .loop-roadmap-card { opacity: 1; transition: none; }
            .loop-roadmap-line { transform: none; }
            .loop-roadmap-node { transform: translate(-50%, -50%) scale(1); }
            .loop-roadmap-step.is-top .loop-roadmap-card,
            .loop-roadmap-step.is-bottom .loop-roadmap-card { transform: translate(-50%, 0); }
        }
        @media (max-width: 767px) and (prefers-reduced-motion: reduce) {
            .loop-roadmap-step.is-top .loop-roadmap-card,
            .loop-roadmap-step.is-bottom .loop-roadmap-card { transform: none; }
        }
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .learning-loop-path {
            stroke-dasharray: 8;
            animation: dash 30s linear infinite;
        }
        @keyframes dash {
            to { stroke-dashoffset: -1000; }
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 61, 46, 0.08);
        }
        .hero-glow {
            isolation: isolate;
            background:
                linear-gradient(to bottom, transparent 68%, rgba(246, 250, 248, 0.24) 82%, #f6faf8 100%),
                radial-gradient(circle at 86% 74%, rgba(89, 204, 196, 0.92) 0%, rgba(15, 143, 99, 0.6) 19%, transparent 46%),
                radial-gradient(circle at 12% 68%, rgba(0, 106, 101, 0.64) 0%, transparent 42%),
                radial-gradient(circle at 74% -12%, rgba(52, 104, 86, 0.48) 0%, transparent 38%),
                linear-gradient(135deg, #001f18 0%, #00251b 42%, #003d2e 72%, #0f8f63 100%);
        }
        .hero-glow::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                radial-gradient(ellipse at 50% 48%, transparent 0%, rgba(0, 18, 13, 0.16) 68%, rgba(0, 14, 10, 0.48) 100%),
                linear-gradient(115deg, rgba(89, 204, 196, 0.06), transparent 42%);
            pointer-events: none;
        }
        .hero-glow::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            z-index: 1;
            height: 240px;
            background: linear-gradient(to bottom, transparent 0%, rgba(246, 250, 248, 0.72) 58%, #f6faf8 100%);
            pointer-events: none;
        }
        .hero-glow > div {
            position: relative;
            z-index: 2;
        }
        .workspace-hero { background: #052e24; }
        .workspace-surface { position: relative; min-height: clamp(460px, 68svh, 560px); isolation: isolate; background: linear-gradient(120deg, #031c16 0%, #052e24 54%, #073d2d 100%); box-shadow: 0 24px 80px rgba(3, 28, 22, 0.32); }
        .workspace-content { min-height: clamp(460px, 68svh, 560px); }
        .workspace-wave-canvas { position: absolute; top: 0; right: 0; bottom: 0; z-index: 0; width: 68%; height: 100%; opacity: 0.92; pointer-events: none; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.28) 16%, #000 38%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.28) 16%, #000 38%); }
        .workspace-surface h1 { color: #ffffff; }
        .workspace-surface > .relative > p { color: rgba(255, 255, 255, 0.76); }
        .page-section { padding-top: clamp(56px, 6vw, 88px) !important; padding-bottom: clamp(56px, 6vw, 88px) !important; }
        .hero-actions a:first-child { background: #9bef45; color: #052e24; }
        .hero-actions a:first-child:hover { background: #b2f76d; }
        .hero-actions a:last-child { border-color: rgba(255, 255, 255, 0.42); background: rgba(255, 255, 255, 0.08); color: #ffffff; }
        .hero-actions a:last-child:hover { background: rgba(255, 255, 255, 0.16); }
        .workspace-node { width: 72px; height: 72px; display: grid; grid-template-columns: repeat(2, 12px); place-content: center; gap: 7px; border: 1px solid rgba(5, 46, 36, 0.14); border-radius: 20px; background: rgba(255, 255, 255, 0.9); box-shadow: 0 14px 30px rgba(5, 46, 36, 0.13); }
        .workspace-node i { width: 12px; height: 12px; border-radius: 50%; background: #052e24; }
        .workspace-node i:first-child { background: #9bef45; }
        .workspace-card { position: absolute; z-index: 2; width: 230px; padding: 18px; border: 1px solid rgba(5, 46, 36, 0.13); border-radius: 16px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 18px 45px rgba(5, 46, 36, 0.11); backdrop-filter: blur(12px); animation: workspace-float 6s ease-in-out infinite; }
        .workspace-card:nth-of-type(even) { animation-delay: -2.5s; }
        .workspace-card--platforms { left: 3%; top: 8%; transform: rotate(-3deg); }
        .workspace-card--answer { right: 3%; top: 7%; transform: rotate(3deg); }
        .workspace-card--citation { left: 1%; top: 46%; transform: rotate(2deg); }
        .workspace-card--query { right: 1%; top: 44%; transform: rotate(-2deg); }
        .workspace-card--metric { left: 6%; bottom: 5%; transform: rotate(-2deg); }
        .workspace-card--agents { right: 6%; bottom: 4%; transform: rotate(2deg); }
        .workspace-chip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; background: #eff7e9; font-size: 10px; font-weight: 700; }
        .workspace-dot { width: 7px; height: 7px; border-radius: 50%; background: #9bef45; box-shadow: 0 0 0 4px rgba(155, 239, 69, 0.14); }
        .site-footer { background: linear-gradient(135deg, #031c16 0%, #052e24 58%, #0b4b37 100%); border-color: rgba(155, 239, 69, 0.16); }
        .site-footer img { filter: none; opacity: 1; border-radius: 6px; }
        .site-footer .text-primary { color: #9bef45; }
        .site-footer .footer-wordmark { color: #ffffff; }
        .site-footer .footer-wordmark .text-agent-green { color: #9bef45; }
        .site-footer .text-on-surface-variant,
        .site-footer .text-outline { color: rgba(255, 255, 255, 0.64); }
        .site-footer a:hover { color: #9bef45; }
        .site-footer .border-outline-variant\/10 { border-color: rgba(155, 239, 69, 0.14); }
        .nav-dropdown { position: relative; }
        .nav-dropdown > summary { display: flex; align-items: center; gap: 8px; padding: 20px 0; cursor: pointer; list-style: none; color: rgba(5,46,36,.74); font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0; }
        .nav-dropdown > summary::-webkit-details-marker { display: none; }
        .nav-dropdown > summary::after { content: ""; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid #052e24; transform-origin: center 2px; transition: transform .24s ease, border-color .24s ease; }
        .nav-dropdown[open] > summary::after { border-top-color: #087f5b; transform: rotate(180deg); }
        .nav-dropdown[open] > summary { color: #087f5b; }
        .nav-panel { position: absolute; top: calc(100% + 10px); z-index: 70; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(14px) scale(.985); transform-origin: top center; padding: 13px; border: 1px solid rgba(5,46,36,.13); border-radius: 16px; background: #ffffff; box-shadow: 0 28px 70px rgba(5,46,36,.2); transition: opacity .28s ease, transform .38s cubic-bezier(.22,1,.36,1), visibility 0s linear .38s; }
        .nav-panel::before { content: ""; position: absolute; top: -8px; width: 15px; height: 15px; border-left: 1px solid rgba(5,46,36,.13); border-top: 1px solid rgba(5,46,36,.13); background: #ffffff; transform: rotate(45deg); }
        .nav-dropdown[open] > .nav-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); transition-delay: 0s; }
        .nav-mega { left: -55px; width: 520px; display: grid; grid-template-columns: .94fr 1.06fr; gap: 0; }
        .nav-mega::before { left: 87px; }
        .nav-panel--research { left: -115px; width: 430px; }
        .nav-panel--research::before { left: 163px; }
        .nav-panel--company { right: -12px; width: 360px; }
        .nav-panel--company::before { right: 42px; }
        .nav-group { position: relative; padding: 11px; border-radius: 11px; background: transparent; }
        .nav-group + .nav-group { padding: 11px; }
        .nav-mega .nav-group + .nav-group { margin-left: 0; padding-left: 22px; border-left: 1px solid rgba(5,46,36,.14); border-radius: 0 11px 11px 0; }
        .nav-mega .nav-group + .nav-group::before { display: none; }
        .nav-panel--company .nav-group { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 12px; padding: 8px; }
        .nav-group-title { display: block; margin-bottom: 15px; color: #087f5b; font: 700 13px "Manrope", sans-serif; letter-spacing: 0; }
        .nav-panel a { display: block; padding: 8px 9px; border-radius: 8px; color: #052e24; font-size: 14px; line-height: 1.35; transition: background-color .18s ease, color .18s ease, transform .18s ease; }
        .nav-panel a:hover { color: #087f5b; background: rgba(5,46,36,.05); transform: translateX(3px); }
        .mobile-menu > summary { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(5,46,36,.16); border-radius: 9px; cursor: pointer; list-style: none; color: #052e24; }
        .mobile-menu > summary::-webkit-details-marker { display: none; }
        .mobile-menu-panel { position: fixed; left: 0; right: 0; top: 64px; max-height: calc(100svh - 64px); overflow-y: auto; padding: 20px 24px 28px; border-top: 1px solid rgba(5,46,36,.1); background: #ffffff; box-shadow: 0 22px 45px rgba(5,46,36,.14); }
        .mobile-menu-panel h4 { margin: 18px 0 7px; color: #087f5b; font: 700 12px "Manrope", sans-serif; letter-spacing: 0; }
        .mobile-menu-panel a { display: block; padding: 8px 0; color: #052e24; font-size: 14px; }
        .mobile-nav-cta { display: none; }
        .mobile-panel-cta { display: block !important; margin-top: 12px; padding: 12px 14px !important; border-radius: 9px; background: #052e24; color: #ffffff !important; font: 700 10px/1.3 "JetBrains Mono", monospace !important; letter-spacing: .05em; text-align: center; }
        @media (max-width: 1023px) {
            .mobile-nav-cta { display: inline-flex; align-items: center; justify-content: center; flex: 0 1 118px; min-height: 38px; margin-left: auto; margin-right: 8px; padding: 7px 9px; border-radius: 8px; background: #052e24; color: #ffffff; font: 700 9px/1.15 "Manrope", sans-serif; text-align: center; }
        }
        @media (max-width: 380px) {
            .mobile-nav-cta { flex-basis: 96px; padding: 6px 7px; font-size: 8px; }
        }
        .route-main,
        .route-destination { opacity: 0; transform: translateY(22px) scale(0.96); transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
        .route-line { transform: scaleY(0); transform-origin: top; transition: transform 0.6s ease 0.42s; }
        .route-label { opacity: 0; transform: scale(0.88); transition: opacity 0.35s ease 0.67s, transform 0.45s ease 0.67s; }
        .sovereign-route.is-routed .route-main { opacity: 1; transform: translateY(0) scale(1); }
        .sovereign-route.is-routed .route-line { transform: scaleY(1); }
        .sovereign-route.is-routed .route-label { opacity: 1; transform: scale(1); }
        .sovereign-route.is-routed .route-destination { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.92s; }
        @media (prefers-reduced-motion: reduce) {
            .route-main, .route-destination, .route-label { opacity: 1; transform: none; transition: none; }
            .route-line { transform: none; transition: none; }
        }
        .problem-shift { display: grid; grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr); align-items: stretch; gap: 0; }
        .problem-shift-card { position: relative; min-height: 350px; padding: 30px; overflow: hidden; }
        .problem-shift-card--old { border: 1px solid rgba(5, 46, 36, 0.12); border-radius: 18px 0 0 18px; background: #eef3ed; color: #052e24; }
        .problem-shift-card--new { border: 1px solid rgba(155, 239, 69, 0.32); border-radius: 0 18px 18px 0; background: linear-gradient(145deg, #052e24, #0b4b37); color: white; box-shadow: 0 24px 55px rgba(5, 46, 36, 0.18); }
        .problem-shift-label { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; font-family: "JetBrains Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
        .problem-shift-label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
        .problem-shift-card--old .problem-shift-label { color: #68756f; }
        .problem-shift-card--new .problem-shift-label { color: #9bef45; }
        .scale-metric-card { min-height: 280px; border: 1px solid rgba(5, 46, 36, 0.12); border-top: 2px solid rgba(155, 239, 69, 0.72); border-radius: 18px; background: rgba(255,255,255,0.82); box-shadow: 0 18px 46px rgba(5,46,36,0.07); }
        .metric-donut { --donut-fill: 0%; width: 150px; height: 150px; margin-inline: auto; border-radius: 50%; background: conic-gradient(#9bef45 0 var(--donut-fill), rgba(5,46,36,.09) var(--donut-fill) 100%); position: relative; display: grid; place-items: center; }
        .metric-donut::after { content: ""; position: absolute; inset: 18px; border-radius: inherit; background: #fbfdfa; }
        .metric-donut strong { position: relative; z-index: 1; color: #052e24; font: 700 31px "Sora", sans-serif; }
        .range-donut { --range-low: 0%; --range-high: 0%; width: 140px; height: 140px; margin-inline: auto; flex: 0 0 auto; border-radius: 50%; position: relative; display: grid; place-items: center; background: conic-gradient(#078c80 0 var(--range-low), #9bef45 var(--range-low) var(--range-high), rgba(5,46,36,.09) var(--range-high) 100%); }
        .range-donut::after { content: ""; position: absolute; inset: 17px; border-radius: inherit; background: #fbfdfa; }
        .range-donut span { position: relative; z-index: 1; color: #052e24; font: 700 22px "Sora", sans-serif; }
        .donut-metric, .range-metric { display: grid !important; grid-template-rows: 18px 154px 58px 14px; row-gap: 10px; align-content: start; overflow: hidden; }
        .donut-metric > *, .range-metric > * { min-width: 0; max-width: 100%; }
        .donut-metric .metric-donut, .range-metric .range-donut { align-self: center; }
        .donut-metric > .font-body-md, .range-metric > .font-body-md { margin: 0 !important; align-self: start; }
        .donut-metric > .font-label-caps:last-child, .range-metric > .font-label-caps:last-child { margin: 0 !important; align-self: end; }
        .metric-range-low { color: #078c80; }
        .metric-range-high { color: #65c72a; }
        .range-track { position: relative; height: 12px; border-radius: 999px; background: rgba(5,46,36,.08); overflow: visible; }
        .range-track::before { content: ""; position: absolute; left: 15%; width: 10%; inset-block: 0; border-radius: inherit; background: linear-gradient(90deg,#42d5c8,#9bef45); box-shadow: 0 0 18px rgba(155,239,69,.45); }
        .range-track::after { content: "15%\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0 25%"; position: absolute; left: 11%; top: 20px; color: rgba(5,46,36,.56); font: 700 9px "JetBrains Mono", monospace; white-space: pre; }
        .activity-rings { width: 106px; height: 106px; position: relative; display: grid; place-items: center; }
        .activity-rings::before, .activity-rings::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(66,213,200,.38); }
        .activity-rings::before { inset: 4px; box-shadow: 0 0 24px rgba(66,213,200,.16); }
        .activity-rings::after { inset: 20px; border-color: rgba(155,239,69,.62); }
        .activity-rings span { width: 36px; height: 36px; border-radius: 50%; background: #052e24; box-shadow: 0 0 0 8px rgba(155,239,69,.13); }
        .overview-progress { height: 9px; overflow: hidden; border-radius: 999px; background: rgba(5,46,36,.09); }
        .overview-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#078c80,#42d5c8 48%,#9bef45); box-shadow: 0 0 16px rgba(155,239,69,.36); transition: width 1.35s cubic-bezier(.2,.75,.2,1); }
        .overview-metric.is-counting .overview-progress span { width: 100%; }
        [data-overview-count], [data-mode-count] { display: block; width: 7.2ch; white-space: nowrap; font-variant-numeric: tabular-nums; letter-spacing: -0.045em; }
        .metric-sparkline { height: 82px; margin: 14px 0 10px; }
        .metric-sparkline svg { width: 100%; height: 100%; overflow: visible; }
        .metric-sparkline .spark-grid { stroke: rgba(5,46,36,.09); stroke-width: 1; stroke-dasharray: 3 5; }
        .metric-sparkline .spark-line { fill: none; stroke: #078c80; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 320; stroke-dashoffset: 320; }
        .mode-metric .metric-sparkline .spark-line { stroke: #42d5c8; }
        .metric-sparkline circle { fill: #9bef45; stroke: #ffffff; stroke-width: 3; opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0); }
        .overview-metric, .mode-metric { display: grid !important; grid-template-rows: 18px 92px 52px 58px 14px; row-gap: 10px; align-content: start; overflow: hidden; }
        .overview-metric > *, .mode-metric > * { min-width: 0; max-width: 100%; }
        .overview-metric .metric-sparkline, .mode-metric .metric-sparkline { width: 100%; height: 82px; margin: 0; align-self: center; overflow: hidden; }
        .overview-metric .metric-sparkline svg, .mode-metric .metric-sparkline svg { display: block; width: 100%; max-width: 100%; overflow: hidden; }
        .overview-metric > .flex, .mode-metric > .flex { width: 100%; min-width: 0; align-self: center; }
        .overview-metric > .font-body-md, .mode-metric > .font-body-md { width: 100%; margin: 0 !important; align-self: start; overflow-wrap: break-word; }
        .overview-metric > .font-label-caps:last-child, .mode-metric > .font-label-caps:last-child { margin: 0 !important; align-self: end; }
        .overview-metric.is-counting .spark-line { animation: spark-draw 1.35s cubic-bezier(.2,.75,.2,1) forwards; }
        .mode-metric.is-counting .spark-line { animation: spark-draw 1.25s cubic-bezier(.2,.75,.2,1) forwards; }
        .overview-metric.is-counting .metric-sparkline circle { animation: spark-node .3s ease 1.25s forwards; }
        .mode-metric.is-counting .metric-sparkline circle { animation: spark-node .3s ease 1.15s forwards; }
        .metric-status { display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border-radius: 7px; background: #9bef45; color: #052e24; font: 700 8px "JetBrains Mono", monospace; letter-spacing: .05em; white-space: nowrap; }
        @keyframes spark-draw { to { stroke-dashoffset: 0; } }
        @keyframes spark-node { to { opacity: 1; transform: scale(1); } }
        .segment-meter { display: grid; grid-template-columns: repeat(10, 1fr); gap: 5px; height: 50px; align-items: end; }
        .segment-meter i { display: block; height: 42%; border-radius: 4px 4px 2px 2px; background: rgba(5,46,36,.09); opacity: .18; transform: scaleY(.08); transform-origin: bottom; transition: transform .42s cubic-bezier(.2,.8,.2,1), opacity .32s ease; }
        .segment-meter i:nth-child(-n+4) { height: 100%; background: linear-gradient(180deg,#9bef45,#42d5c8); box-shadow: 0 6px 15px rgba(66,213,200,.2); }
        .mode-metric.is-counting .segment-meter i { opacity: 1; transform: scaleY(1); }
        .mode-metric.is-counting .segment-meter i:nth-child(2) { transition-delay: .07s; }
        .mode-metric.is-counting .segment-meter i:nth-child(3) { transition-delay: .14s; }
        .mode-metric.is-counting .segment-meter i:nth-child(4) { transition-delay: .21s; }
        .mode-metric.is-counting .segment-meter i:nth-child(5) { transition-delay: .28s; }
        .mode-metric.is-counting .segment-meter i:nth-child(6) { transition-delay: .35s; }
        .mode-metric.is-counting .segment-meter i:nth-child(7) { transition-delay: .42s; }
        .mode-metric.is-counting .segment-meter i:nth-child(8) { transition-delay: .49s; }
        .mode-metric.is-counting .segment-meter i:nth-child(9) { transition-delay: .56s; }
        .mode-metric.is-counting .segment-meter i:nth-child(10) { transition-delay: .63s; }
        .scale-equation { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1.25fr); align-items: center; gap: 14px; }
        .scale-equation-box { min-height: 78px; display: grid; place-items: center; padding: 16px; border-radius: 12px; border: 1px solid rgba(66,213,200,.25); background: #eef7f1; text-align: center; }
        .expansion-visual { padding: 18px 18px 16px; border: 1px solid rgba(66,213,200,.22); border-radius: 16px; background: linear-gradient(145deg,#f4faf5,#edf7f2); overflow: hidden; }
        .expansion-visual svg { display: block; width: 100%; height: auto; overflow: visible; }
        .network-edge { fill: none; stroke: rgba(8,127,91,.26); stroke-width: 1.2; }
        .network-edge--flow { stroke: #9bef45; stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 7 13; animation: expansion-flow 2.4s linear infinite; }
        .network-node { fill: #078c80; }
        .network-node--lime { fill: #9bef45; filter: drop-shadow(0 0 5px rgba(155,239,69,.55)); }
        .network-node--soft { fill: #42d5c8; opacity: .75; }
        .expansion-labels { display: grid; grid-template-columns: .8fr 1fr 1.35fr; gap: 18px; margin-top: 12px; text-align: center; }
        .expansion-labels strong { display: block; color: #052e24; font: 700 16px "Sora", sans-serif; }
        .expansion-labels span { color: rgba(5,46,36,.56); font: 700 8px "JetBrains Mono", monospace; letter-spacing: .08em; }
        @keyframes expansion-flow { to { stroke-dashoffset: -40; } }
        .scale-funnel { padding: 4px 0 2px; }
        .funnel-inputs { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
        .funnel-input { min-height: 88px; padding: 16px 12px; display: grid; place-items: center; text-align: center; border: 1px solid rgba(66,213,200,.28); border-radius: 13px; background: #eef7f1; }
        .funnel-input strong { display: block; color: #052e24; font: 700 19px "Sora", sans-serif; }
        .funnel-input span { display: block; margin-top: 4px; color: rgba(5,46,36,.56); font: 700 8px "JetBrains Mono", monospace; letter-spacing: .08em; }
        .funnel-paths { display: block; width: 100%; height: 82px; overflow: visible; }
        .funnel-paths path { fill: none; stroke: rgba(8,127,91,.26); stroke-width: 1.4; }
        .funnel-paths .funnel-flow { stroke: #9bef45; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 8 12; animation: expansion-flow 2s linear infinite; }
        .funnel-output { max-width: 470px; margin: 0 auto; padding: 19px 24px; border: 1px solid rgba(155,239,69,.6); border-radius: 999px; background: linear-gradient(120deg,#052e24,#087f5b); color: white; text-align: center; box-shadow: 0 16px 36px rgba(5,46,36,.18),0 0 28px rgba(155,239,69,.12); }
        .funnel-output small { display: block; margin-bottom: 4px; color: #9bef45; font: 700 8px "JetBrains Mono", monospace; letter-spacing: .11em; }
        .funnel-output strong { font: 700 21px/1.25 "Sora", sans-serif; }
        .scale-summary-card { border-color: rgba(155,239,69,.42) !important; background: linear-gradient(135deg,#052e24 0%,#087f5b 100%) !important; box-shadow: 0 18px 42px rgba(5,46,36,.16); }
        .scale-summary-card > p:first-child { color: #9bef45 !important; }
        .scale-summary-card h3 { color: #ffffff !important; }
        .scale-summary-card > p:last-child { color: rgba(255,255,255,.76) !important; }
        @media (max-width: 640px) { .funnel-inputs { grid-template-columns: 1fr; } .funnel-paths { height: 56px; } }
        @media (prefers-reduced-motion: reduce) { .network-edge--flow { animation: none; } }
        @media (max-width: 767px) { .scale-equation { grid-template-columns: 1fr; } .scale-equation-symbol { transform: rotate(90deg); } }
        .problem-shift-list { display: grid; gap: 13px; margin-top: 20px; }
        .problem-shift-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
        .problem-shift-list strong { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-family: "JetBrains Mono", monospace; font-size: 9px; }
        .problem-shift-card--old .problem-shift-list strong { background: rgba(5, 46, 36, 0.08); color: #68756f; }
        .problem-shift-card--new .problem-shift-list strong { background: rgba(155, 239, 69, 0.14); color: #9bef45; }
        .problem-shift-break { position: relative; display: grid; place-items: center; background: linear-gradient(90deg, #eef3ed 0 50%, #052e24 50% 100%); }
        .problem-shift-break::before { content: ""; position: absolute; inset: 32px 45px; border-left: 2px dashed rgba(155, 239, 69, 0.7); }
        .problem-shift-break span { position: relative; z-index: 1; display: grid; place-items: center; width: 58px; height: 58px; border: 8px solid #f6faf2; border-radius: 50%; background: #9bef45; color: #052e24; font-size: 28px; font-weight: 800; box-shadow: 0 10px 30px rgba(5, 46, 36, 0.2); }
        @media (max-width: 900px) {
            .problem-shift { grid-template-columns: 1fr; }
            .problem-shift-card--old { border-radius: 18px 18px 0 0; }
            .problem-shift-card--new { border-radius: 0 0 18px 18px; }
            .problem-shift-break { min-height: 78px; background: linear-gradient(#eef3ed 0 50%, #052e24 50% 100%); }
            .problem-shift-break::before { inset: 38px 24px; border-left: 0; border-top: 2px dashed rgba(155, 239, 69, 0.7); }
            .problem-shift-card { min-height: 0; padding: 30px; }
        }
        @keyframes workspace-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }
        @media (max-width: 1023px) { .workspace-surface, .workspace-content { min-height: clamp(480px, 72svh, 560px); } .workspace-card { width: 190px; padding: 14px; } .workspace-card--citation, .workspace-card--query { display: none; } }
        @media (max-width: 767px) { .workspace-surface, .workspace-content { min-height: 520px; } .workspace-surface { padding: 0; } .workspace-card { display: none; } }
        @media (prefers-reduced-motion: reduce) { .workspace-card { animation: none; } }
        .agent-hero::after { display: none; }
        .agent-hero {
            background:
                radial-gradient(circle at 86% 74%, rgba(89, 204, 196, 0.92) 0%, rgba(15, 143, 99, 0.6) 19%, transparent 46%),
                radial-gradient(circle at 12% 68%, rgba(0, 106, 101, 0.64) 0%, transparent 42%),
                radial-gradient(circle at 74% -12%, rgba(52, 104, 86, 0.48) 0%, transparent 38%),
                linear-gradient(135deg, #001f18 0%, #00251b 42%, #003d2e 72%, #0f8f63 100%);
        }
        .agent-hero-visual { min-height: 520px; display: flex; align-items: center; justify-content: center; padding: 24px 0 72px; }
        .agent-hero-shell { position: relative; inset: auto; width: min(100%, 570px); height: 430px; }
        .agent-hero-card { position: absolute; left: 36px; right: 36px; top: 50%; bottom: auto; transform: translateY(-50%); z-index: 2; }
        .agent-hero-float-left { left: -22px; bottom: -34px; z-index: 4; }
        .agent-hero-float-right { right: -22px; bottom: -34px; z-index: 4; }
        .agent-final-cta .hero-actions a:first-child,
        .agent-final-cta .hero-actions a:last-child,
        .agent-cta-secondary { border-color: #052e24 !important; background: #052e24 !important; color: #ffffff !important; }
        .agent-final-cta .hero-actions a:first-child:hover,
        .agent-final-cta .hero-actions a:last-child:hover,
        .agent-cta-secondary:hover { border-color: #087f5b !important; background: #087f5b !important; color: #ffffff !important; }
        .agent-final-cta .hero-actions a { white-space: nowrap; text-align: center; }
        .agent-final-cta .hero-actions a:first-child { min-width: 230px; }
        .agent-final-cta .hero-actions a:last-child { min-width: 340px; }
        @media (max-width: 767px) {
            .agent-final-cta .hero-actions { flex-direction: column; }
            .agent-final-cta .hero-actions a:first-child,
            .agent-final-cta .hero-actions a:last-child { width: 100%; min-width: 0; }
        }
        @media (max-width: 1100px) { .agent-hero-shell { width: min(100%, 520px); } .agent-hero-card { left: 28px; right: 28px; } }
    