:root {
            --bg: #071112;
            --bg-soft: #0b1c20;
            --panel: #10272c;
            --panel-2: #0d2024;
            --line: rgba(113, 229, 218, .22);
            --line-strong: rgba(113, 229, 218, .42);
            --text: #eefafa;
            --muted: #a9c6c8;
            --accent: #71e5da;
            --accent-2: #6aa8ff;
            --warn: #f5b35b;
            --ok: #8cf5b6;
            --bad: #ff9696;
            --shadow: rgba(0, 0, 0, .34);
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body {
            margin: 0;
            min-width: 0;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
            color: var(--text);
            background:
                radial-gradient(900px 520px at 12% -10%, rgba(34, 158, 151, .28), transparent 58%),
                radial-gradient(820px 560px at 86% 0%, rgba(72, 115, 255, .18), transparent 52%),
                linear-gradient(180deg, #091719 0%, var(--bg) 42%, #050b0d 100%);
        }
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(113,229,218,.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(113,229,218,.035) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 78%);
        }
        a { color: inherit; }
        img, svg, canvas { max-width: 100%; }
        :where(h1, h2, h3, p, li, a, span, strong, small, code, label) { overflow-wrap: anywhere; }
        :focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }
        .skip-link {
            position: absolute;
            left: 16px;
            top: -80px;
            z-index: 30;
            background: var(--accent);
            color: #061112;
            padding: 10px 12px;
            border-radius: 8px;
            font-weight: 800;
        }
        .skip-link:focus { top: 14px; }
        .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;
        }
        .topnav {
            position: sticky;
            top: 0;
            z-index: 20;
            border-bottom: 1px solid rgba(255,255,255,.08);
            background: rgba(7, 17, 18, .88);
            backdrop-filter: blur(14px);
        }
        .nav-inner {
            max-width: 1180px;
            margin: 0 auto;
            min-height: 64px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }
        .brand {
            text-decoration: none;
            font-size: 20px;
            font-weight: 900;
            letter-spacing: .02em;
        }
        .brand span { color: var(--accent); }
        .nav-toggle {
            display: none;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.05);
            color: var(--text);
            border-radius: 8px;
            padding: 9px 11px;
            font: inherit;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            gap: 8px 14px;
        }
        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }
        .nav-links a:hover { color: var(--accent); }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            align-items: center;
            color: var(--muted);
            font-size: 13px;
            margin-top: 12px;
            margin-bottom: -8px;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb a:hover,
        .breadcrumb a:focus-visible { color: var(--text); }
        .breadcrumb .sep { color: rgba(238,250,250,.42); }
        .shell {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 18px;
        }
        .hero {
            min-height: calc(100vh - 64px);
            display: grid;
            grid-template-columns: minmax(0, 1.03fr) minmax(330px, .97fr);
            gap: 34px;
            align-items: center;
            padding: 56px 18px 38px;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 0 0 14px;
            color: var(--accent);
            font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
            text-transform: uppercase;
            letter-spacing: .08em;
        }
        .eyebrow::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--ok);
            box-shadow: 0 0 16px rgba(140,245,182,.8);
        }
        h1 {
            margin: 0;
            font-size: clamp(42px, 7vw, 82px);
            line-height: .95;
            letter-spacing: 0;
        }
        h2 {
            margin: 0 0 10px;
            font-size: clamp(26px, 4vw, 40px);
            line-height: 1.08;
        }
        h3 {
            margin: 0 0 8px;
            font-size: 19px;
        }
        p {
            margin: 0;
            color: var(--muted);
            line-height: 1.62;
        }
        .lead {
            max-width: 720px;
            margin-top: 18px;
            font-size: clamp(17px, 2.2vw, 21px);
        }
        .hero-actions,
        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }
        .button,
        button.button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            max-width: 100%;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 10px 14px;
            background: rgba(255,255,255,.055);
            color: var(--text);
            text-decoration: none;
            font: 800 14px/1.2 inherit;
            cursor: pointer;
            text-align: center;
        }
        .button.primary {
            background: var(--accent);
            color: #061112;
            border-color: transparent;
            box-shadow: 0 12px 30px rgba(113,229,218,.22);
        }
        .button.blue {
            background: var(--accent-2);
            color: #061112;
            border-color: transparent;
        }
        .button:hover { border-color: var(--line-strong); }
        .badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 22px;
        }
        .badge,
        .status-badge {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 6px 10px;
            background: rgba(255,255,255,.045);
            color: var(--muted);
            font-size: 13px;
            font-weight: 800;
        }
        .status-badge.ok { color: #caffdb; border-color: rgba(140,245,182,.4); background: rgba(140,245,182,.09); }
        .status-badge.preview { color: #ffe2b0; border-color: rgba(245,179,91,.4); background: rgba(245,179,91,.1); }
        .terminal {
            border: 1px solid var(--line-strong);
            border-radius: 12px;
            background: #041112;
            box-shadow: 0 26px 80px var(--shadow);
            overflow: hidden;
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        }
        .terminal-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 12px;
            border-bottom: 1px solid rgba(113,229,218,.18);
            background: rgba(255,255,255,.045);
            color: var(--muted);
            font-size: 12px;
        }
        .dots {
            display: flex;
            gap: 6px;
        }
        .dots i {
            display: block;
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: var(--accent);
        }
        .dots i:nth-child(2) { background: var(--warn); }
        .dots i:nth-child(3) { background: #31525a; }
        .terminal-body {
            padding: 18px;
            display: grid;
            gap: 9px;
            color: #bdfdf5;
            font-size: 14px;
            line-height: 1.45;
        }
        .terminal-line {
            display: grid;
            grid-template-columns: minmax(112px, .42fr) minmax(0, 1fr);
            gap: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(113,229,218,.1);
        }
        .terminal-line:last-child { border-bottom: 0; padding-bottom: 0; }
        .terminal-key { color: #7fa5a7; }
        .terminal-value { color: var(--text); font-weight: 800; }
        .terminal-value.good { color: var(--ok); }
        .cursor::after {
            content: "_";
            color: var(--accent);
            animation: blink 1s steps(2, start) infinite;
        }
        @keyframes blink { 50% { opacity: 0; } }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .cursor::after { animation: none; }
        }
        main {
            display: grid;
            gap: 26px;
            padding-bottom: 72px;
        }
        section {
            scroll-margin-top: 86px;
        }
        .section-head {
            max-width: 780px;
            margin-bottom: 16px;
        }
        .section-head p { font-size: 17px; }
        .command-strip {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
            margin-top: -18px;
        }
        .command-chip {
            min-width: 0;
            border: 1px solid rgba(113,229,218,.2);
            border-radius: 8px;
            padding: 12px;
            background: rgba(4, 17, 18, .68);
            box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        }
        .command-chip span {
            display: block;
            color: #7fa5a7;
            font-size: 12px;
            margin-bottom: 6px;
        }
        .command-chip strong {
            display: block;
            color: var(--accent);
            font-size: 14px;
        }
        .grid-4,
        .grid-3,
        .grid-2 {
            display: grid;
            gap: 14px;
        }
        .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .card,
        .panel {
            min-width: 0;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: linear-gradient(180deg, rgba(18,49,55,.82), rgba(12,31,35,.82));
            box-shadow: 0 16px 46px rgba(0,0,0,.18);
            padding: 20px;
        }
        .card p + .actions,
        .card ul + .actions { margin-top: 16px; }
        .card ul,
        .panel ul,
        .panel ol {
            margin: 12px 0 0;
            padding-left: 18px;
            color: var(--muted);
            line-height: 1.5;
        }
        .card li,
        .panel li { margin: 7px 0; }
        .card code,
        .panel code,
        .inline-code {
            color: var(--accent);
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        }
        .path-card {
            display: grid;
            gap: 12px;
        }
        .project-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }
        .project-card {
            position: relative;
            min-width: 0;
            min-height: 178px;
            display: grid;
            align-content: end;
            gap: 8px;
            overflow: hidden;
            border: 1px solid rgba(113,229,218,.22);
            border-radius: 10px;
            padding: 16px;
            background:
                linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0)),
                radial-gradient(260px 160px at 20% 0%, rgba(113,229,218,.16), transparent 70%),
                rgba(0,0,0,.18);
            text-decoration: none;
        }
        .project-card::before {
            content: "";
            position: absolute;
            inset: 12px 12px auto auto;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(113,229,218,.22);
            border-radius: 8px;
            background:
                linear-gradient(rgba(113,229,218,.18) 1px, transparent 1px),
                linear-gradient(90deg, rgba(113,229,218,.18) 1px, transparent 1px);
            background-size: 10px 10px;
            opacity: .75;
        }
        .project-card:hover {
            border-color: var(--line-strong);
            transform: translateY(-1px);
        }
        .project-kicker {
            color: var(--accent);
            font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
            text-transform: uppercase;
            letter-spacing: .08em;
        }
        .project-card strong {
            color: var(--text);
            font-size: 20px;
            line-height: 1.12;
        }
        .project-card small {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.45;
        }
        .trust-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .setup-panel {
            display: grid;
            grid-template-columns: minmax(240px, .62fr) minmax(0, 1fr);
            gap: 16px;
        }
        .copy-stack {
            display: grid;
            gap: 10px;
        }
        .copy-box {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 8px;
            align-items: end;
            border: 1px solid rgba(255,255,255,.09);
            border-radius: 8px;
            padding: 10px;
            background: rgba(0,0,0,.18);
        }
        .copy-box label {
            display: grid;
            gap: 5px;
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }
        .copy-box input {
            width: 100%;
            min-width: 0;
            border: 0;
            background: transparent;
            color: var(--accent);
            font: 800 15px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
            padding: 0;
        }
        .copy-button {
            min-width: 92px;
            min-height: 36px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255,255,255,.06);
            color: var(--text);
            font: 800 13px/1 inherit;
            cursor: pointer;
        }
        .tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }
        .tab-button {
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255,255,255,.045);
            color: var(--muted);
            min-height: 38px;
            padding: 8px 10px;
            font: 800 14px/1 inherit;
            cursor: pointer;
        }
        .tab-button.active {
            color: #061112;
            background: var(--accent);
            border-color: transparent;
        }
        .tab-panel {
            display: none;
        }
        .tab-panel.active {
            display: block;
        }
        .tool-cards {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
            margin-top: 16px;
        }
        .mini-card {
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 8px;
            padding: 12px;
            background: rgba(255,255,255,.04);
        }
        .mini-card strong {
            display: block;
            color: var(--text);
            margin-bottom: 4px;
        }
        .mini-card span {
            display: block;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.4;
        }
        .signal-panel {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 18px;
            align-items: center;
        }
        .status-console {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
        }
        .status-tile {
            min-width: 0;
            display: grid;
            gap: 7px;
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 8px;
            padding: 14px;
            background:
                linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
                rgba(0,0,0,.16);
        }
        .status-tile strong {
            color: var(--text);
            font-size: 17px;
        }
        .status-tile small {
            color: var(--muted);
            line-height: 1.35;
        }
        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: var(--muted);
            box-shadow: 0 0 16px rgba(169,198,200,.4);
        }
        .status-dot.ok {
            background: var(--ok);
            box-shadow: 0 0 18px rgba(140,245,182,.72);
        }
        .status-dot.preview {
            background: var(--warn);
            box-shadow: 0 0 18px rgba(245,179,91,.64);
        }
        .compact-actions {
            margin-top: 14px;
        }
        .counter-embed {
            display: grid;
            justify-items: center;
            gap: 8px;
            min-width: 230px;
        }
        .counter-embed img {
            display: block;
            width: 230px;
            height: 210px;
            border-radius: 8px;
            border: 1px solid var(--line);
            background: #071112;
        }
        .tracking-pixel {
            position: absolute;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }
        .mt-14 { margin-top: 14px; }
        .mt-16 { margin-top: 16px; }
        .page-hero { min-height: auto; padding-top: 54px; }
        .deep-link-list { display: grid; gap: 10px; margin-top: 14px; }
        .deep-link-list a { text-decoration: none; }
        .content-flow { display: grid; gap: 18px; }
        .toc-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
        .toc-list a { color: var(--accent); text-decoration: none; }
        .visual-panel {
            display: grid;
            grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
            gap: 18px;
            align-items: center;
        }
        .visual-panel > * { min-width: 0; }
        .visual-frame {
            margin: 0;
            min-width: 0;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: rgba(0,0,0,.18);
            padding: 10px;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
        }
        .visual-frame img {
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .roadmap {
            display: grid;
            gap: 10px;
        }
        .roadmap-row {
            display: grid;
            grid-template-columns: minmax(160px, .45fr) minmax(0, 1fr) auto;
            gap: 12px;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,.08);
            padding: 10px 0;
        }
        .roadmap-row:last-child { border-bottom: 0; }
        form {
            display: grid;
            gap: 10px;
        }
        input,
        textarea,
        select {
            width: 100%;
            min-width: 0;
            border: 1px solid rgba(255,255,255,.2);
            border-radius: 8px;
            background: rgba(0,0,0,.18);
            color: var(--text);
            padding: 10px 11px;
            font: inherit;
        }
        textarea { resize: vertical; min-height: 108px; }
        .feedback-trap {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            clip-path: inset(50%);
            white-space: nowrap;
        }
        .toast {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 40;
            max-width: min(340px, calc(100vw - 36px));
            border: 1px solid var(--line-strong);
            border-radius: 8px;
            background: #071112;
            color: var(--text);
            padding: 12px 14px;
            box-shadow: 0 18px 48px rgba(0,0,0,.4);
            transform: translateY(18px);
            opacity: 0;
            pointer-events: none;
            transition: opacity .18s ease, transform .18s ease;
        }
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }
        footer {
            border-top: 1px solid rgba(255,255,255,.08);
            color: var(--muted);
            padding: 26px 18px 40px;
            text-align: center;
        }
        footer p { margin: 6px 0; font-size: 14px; }
        @media (max-width: 1020px) {
            .hero,
            .setup-panel,
            .grid-2,
            .signal-panel,
            .visual-panel {
                grid-template-columns: 1fr;
            }
            .grid-4,
            .project-grid,
            .command-strip,
            .status-console,
            .tool-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .grid-3 { grid-template-columns: 1fr; }
        }
        @media (max-width: 760px) {
            .nav-inner { align-items: flex-start; }
            .nav-toggle { display: inline-flex; }
            .nav-links {
                display: none;
                width: 100%;
                padding: 8px 0 2px;
                justify-content: flex-start;
            }
            .nav-links.open { display: flex; }
            .hero {
                min-height: auto;
                padding-top: 34px;
            }
            .terminal-line,
            .copy-box,
            .roadmap-row {
                grid-template-columns: 1fr;
            }
            .grid-4,
            .project-grid,
            .command-strip,
            .status-console,
            .tool-cards {
                grid-template-columns: 1fr;
            }
            .button,
            .copy-button {
                width: 100%;
            }
            .hero-actions .button,
            .actions .button {
                flex: 1 1 100%;
            }
        }
