
        :root {
            --bg: #0d1114;
            --panel: #151b20;
            --panel-strong: #1c242a;
            --line: #2c373f;
            --text: #f3f7f8;
            --muted: #9eacb3;
            --teal: #74f2df;
            --teal-dark: #0f817a;
            --amber: #ffc857;
            --red: #ff6b6b;
            --green: #42d392;
            --shadow: rgba(0, 0, 0, 0.34);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(180deg, #10171b 0%, #0d1114 42%, #101315 100%);
            background-size: 44px 44px, 44px 44px, auto;
            color: var(--text);
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.5;
        }

        a {
            color: inherit;
        }

        .container {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 10;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(13, 17, 20, 0.86);
            backdrop-filter: blur(18px);
        }

        .nav {
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 0;
        }

        .brand img {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(116, 242, 223, 0.18);
        }

        .links {
            display: flex;
            align-items: center;
            gap: 22px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 650;
        }

        .links a {
            text-decoration: none;
        }

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

        .language-switcher {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #10161a;
        }

        .lang-link {
            min-width: 36px;
            padding: 5px 8px;
            border-radius: 6px;
            color: var(--muted);
            text-align: center;
            text-decoration: none;
            font-size: 12px;
            font-weight: 850;
        }

        .lang-link[aria-current="true"] {
            background: #123732;
            color: #effffb;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 18px;
            border-radius: 8px;
            border: 1px solid var(--line);
            background: #11181c;
            color: var(--text);
            text-decoration: none;
            font-weight: 750;
            cursor: pointer;
        }

        .button.primary {
            border-color: rgba(116, 242, 223, 0.55);
            background: #123732;
            color: #effffb;
        }

        .button:hover {
            border-color: rgba(116, 242, 223, 0.55);
        }

        .button.disabled,
        .button[aria-disabled="true"] {
            border-color: rgba(158, 172, 179, 0.28);
            background: rgba(158, 172, 179, 0.08);
            color: #77858c;
            cursor: not-allowed;
            pointer-events: none;
        }

        .hero {
            min-height: calc(100vh - 68px);
            padding: 72px 0 48px;
            display: grid;
            align-items: center;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
            gap: 44px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--teal);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .status-dot {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: var(--green);
            box-shadow: 0 0 0 5px rgba(66, 211, 146, 0.12);
        }

        h1 {
            margin: 18px 0 18px;
            max-width: 760px;
            font-size: clamp(42px, 7vw, 78px);
            line-height: 0.96;
            letter-spacing: 0;
        }

        .lead {
            max-width: 680px;
            margin: 0 0 28px;
            color: #c5d0d5;
            font-size: clamp(18px, 2vw, 22px);
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .proof {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            max-width: 720px;
        }

        .proof-item {
            min-height: 78px;
            padding: 12px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(21, 27, 32, 0.74);
        }

        .proof-item strong {
            display: block;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .proof-item span {
            color: var(--muted);
            font-size: 13px;
        }

        .product-shot {
            min-height: 650px;
            position: relative;
        }

        .app-preview-card {
            position: absolute;
            width: min(62%, 310px);
            margin: 0;
            padding: 7px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 38px;
            background: #080c0f;
            box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
            overflow: hidden;
        }

        .app-preview-card img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 31px;
        }

        .preview-dashboard {
            top: 0;
            right: 0;
            z-index: 2;
        }

        .preview-devices {
            bottom: 0;
            left: 0;
            z-index: 1;
            transform: rotate(-2.5deg);
            opacity: 0.9;
        }

        .device-panel {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            background: rgba(19, 26, 31, 0.95);
            box-shadow: 0 24px 80px var(--shadow);
            overflow: hidden;
        }

        .desktop-panel {
            width: min(100%, 560px);
            right: 0;
            top: 20px;
        }

        .phone-panel {
            width: 260px;
            left: 0;
            bottom: 0;
            border-radius: 28px;
        }

        .panel-top {
            height: 42px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 14px;
            border-bottom: 1px solid var(--line);
            background: #10161a;
        }

        .window-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: var(--line);
        }

        .panel-body {
            padding: 18px;
        }

        .app-line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 16px;
        }

        .app-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
        }

        .app-title img {
            width: 36px;
            height: 36px;
            border-radius: 8px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-height: 30px;
            padding: 0 10px;
            border-radius: 999px;
            background: rgba(66, 211, 146, 0.12);
            color: #a8f1d1;
            font-size: 12px;
            font-weight: 800;
        }

        .metric-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 10px;
            margin-bottom: 16px;
        }

        .metric {
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 12px;
            background: #10161a;
        }

        .metric span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            margin-bottom: 5px;
        }

        .metric code,
        .code code {
            color: var(--teal);
            font-family: "SFMono-Regular", Consolas, monospace;
            font-size: 14px;
            word-break: break-all;
        }

        .code {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(116, 242, 223, 0.26);
            background: #0a1013;
        }

        .copy-small {
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #172026;
            color: var(--text);
            min-height: 32px;
            padding: 0 10px;
            font-weight: 750;
            cursor: pointer;
        }

        .peer-list {
            display: grid;
            gap: 8px;
        }

        .peer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 0;
            border-top: 1px solid var(--line);
        }

        .peer strong {
            display: block;
            font-size: 14px;
        }

        .peer span {
            color: var(--muted);
            font-size: 12px;
        }

        .phone-panel .panel-body {
            padding: 20px 16px 18px;
        }

        .phone-ip {
            margin: 16px 0 14px;
            padding: 14px;
            border-radius: 8px;
            background: #0f1518;
            border: 1px solid var(--line);
        }

        .phone-ip span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            margin-bottom: 4px;
        }

        .phone-ip strong {
            color: var(--teal);
            font-family: "SFMono-Regular", Consolas, monospace;
            font-size: 18px;
        }

        .phone-button {
            width: 100%;
            height: 42px;
            border: 0;
            border-radius: 8px;
            background: #123732;
            color: #effffb;
            font-weight: 800;
        }

        section {
            padding: 76px 0;
        }

        .section-head {
            max-width: 780px;
            margin-bottom: 28px;
        }

        h2 {
            margin: 0 0 12px;
            font-size: clamp(30px, 4vw, 48px);
            line-height: 1.05;
            letter-spacing: 0;
        }

        .section-head p {
            margin: 0;
            color: var(--muted);
            font-size: 18px;
        }

        .grid {
            display: grid;
            gap: 14px;
        }

        .grid.three {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .grid.two {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .card {
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(21, 27, 32, 0.84);
            padding: 20px;
            min-height: 156px;
        }

        .card h3 {
            margin: 0 0 8px;
            font-size: 20px;
        }

        .card p {
            margin: 0;
            color: var(--muted);
        }

        .tag {
            display: inline-block;
            margin-bottom: 14px;
            padding: 4px 8px;
            border-radius: 999px;
            color: #fff4d0;
            background: rgba(255, 200, 87, 0.15);
            border: 1px solid rgba(255, 200, 87, 0.28);
            font-size: 12px;
            font-weight: 800;
        }

        .flow {
            counter-reset: step;
        }

        .flow .card {
            position: relative;
            padding-top: 54px;
        }

        .flow .card::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            top: 18px;
            left: 20px;
            width: 26px;
            height: 26px;
            display: grid;
            place-items: center;
            border-radius: 8px;
            background: rgba(116, 242, 223, 0.14);
            color: var(--teal);
            font-weight: 850;
        }

        .table-wrap {
            overflow-x: auto;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(21, 27, 32, 0.84);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 760px;
        }

        th, td {
            padding: 16px 18px;
            border-bottom: 1px solid var(--line);
            text-align: left;
        }

        th {
            color: var(--muted);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        tr:last-child td {
            border-bottom: 0;
        }

        .good {
            color: #a8f1d1;
            font-weight: 800;
        }

        .warn {
            color: #ffe19a;
            font-weight: 800;
        }

        .early-access {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 24px;
            align-items: stretch;
        }

        .launch-note,
        .waitlist-card {
            border: 1px solid var(--line);
            border-radius: 12px;
            background: rgba(21, 27, 32, 0.84);
            padding: clamp(24px, 4vw, 38px);
        }

        .launch-note {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: linear-gradient(145deg, rgba(116, 242, 223, 0.11), rgba(21, 27, 32, 0.9) 58%);
        }

        .launch-date {
            margin: 18px 0 8px;
            color: var(--teal);
            font-size: clamp(42px, 7vw, 76px);
            line-height: 0.95;
            font-weight: 900;
            letter-spacing: -0.055em;
        }

        .waitlist-form { display: grid; gap: 16px; }

        .form-field {
            display: grid;
            gap: 7px;
            color: var(--text);
            font-size: 14px;
            font-weight: 750;
        }

        .form-field input,
        .form-field select {
            width: 100%;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #10151a;
            color: var(--text);
            padding: 13px 14px;
            font: inherit;
        }

        .form-field input:focus,
        .form-field select:focus {
            outline: 2px solid rgba(116, 242, 223, 0.45);
            outline-offset: 2px;
            border-color: var(--teal);
        }

        .consent-field {
            display: grid;
            grid-template-columns: 20px 1fr;
            gap: 10px;
            align-items: start;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.5;
        }

        .consent-field input {
            width: 18px;
            height: 18px;
            margin: 2px 0 0;
            accent-color: var(--teal);
        }

        .consent-field a,
        .form-note a,
        .footer a { color: var(--teal); }

        .waitlist-submit { width: 100%; }
        .waitlist-submit:disabled { opacity: 0.65; cursor: wait; }

        .form-note,
        .form-status {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.5;
        }

        .form-status.success { color: #a8f1d1; }
        .form-status.error { color: #ffb5aa; }

        .waitlist-honeypot {
            position: absolute;
            left: -10000px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .footer {
            padding: 34px 0;
            border-top: 1px solid var(--line);
            color: var(--muted);
            font-size: 14px;
        }

        .footer-row {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        @media (max-width: 980px) {
            .hero-grid,
            .grid.two,
            .grid.three,
            .early-access {
                grid-template-columns: 1fr;
            }

            .product-shot {
                min-height: 680px;
            }

            .desktop-panel {
                left: 0;
                right: auto;
            }

            .phone-panel {
                left: auto;
                right: 20px;
            }
        }

        @media (max-width: 680px) {
            .nav {
                height: auto;
                padding: 12px 0;
                align-items: flex-start;
            }

            .links {
                display: none;
            }

            .language-switcher {
                margin-left: auto;
            }

            .hero {
                min-height: auto;
                padding: 44px 0 30px;
            }

            .hero-actions,
            .proof,
            .metric-grid {
                grid-template-columns: 1fr;
            }

            .proof {
                display: grid;
            }

            .product-shot {
                min-height: auto;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
            }

            .app-preview-card {
                position: static;
                width: 100%;
                border-radius: 26px;
                transform: none;
                opacity: 1;
            }

            .app-preview-card img {
                border-radius: 20px;
            }

            .device-panel {
                position: static;
                width: 100%;
            }

            .phone-panel {
                border-radius: 8px;
            }
        }
    
        /* --- Generated content pages (news index and articles) --- */
        main.content {
            max-width: 46rem;
            margin: 0 auto;
            padding: 4rem 1.5rem 5rem;
        }
        main.content h1 {
            font-size: clamp(1.9rem, 4vw, 2.6rem);
            line-height: 1.15;
            margin: 0 0 1rem;
        }
        main.content h2 {
            font-size: 1.3rem;
            margin: 2.5rem 0 0.75rem;
            color: var(--text);
        }
        main.content p { line-height: 1.7; color: var(--muted); margin: 0 0 1.1rem; }
        main.content p.lead { font-size: 1.1rem; color: var(--text); margin-bottom: 2rem; }
        main.content ul { line-height: 1.7; color: var(--muted); padding-left: 1.2rem; margin: 0 0 1.4rem; }
        main.content li { margin-bottom: 0.5rem; }
        main.content pre.code-block {
            background: var(--panel);
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 1rem;
            overflow-x: auto;
            font-size: 0.9rem;
        }
        .article-date { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }
        .article-back { margin-top: 3rem; }
        .article-back a { color: var(--teal); text-decoration: none; }
        .article-back a:hover { text-decoration: underline; }
        .article-list { list-style: none; padding: 0; }
        .article-list li {
            display: grid;
            gap: 0.25rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--line);
        }
        .article-list time { font-size: 0.8rem; color: var(--muted); }
        .article-list a { color: var(--text); font-size: 1.15rem; font-weight: 600; text-decoration: none; }
        .article-list a:hover { color: var(--teal); }
        .article-list span { color: var(--muted); font-size: 0.95rem; }

        /* --- Legal pages (the hand-written privacy policies) --- */
        /* They live here, not inline in those documents, because the pages are
           served under a Content-Security-Policy that refuses inline style. */
        .legal { width: min(820px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0 96px; }
        .legal h1 { margin: 0 0 8px; font-size: clamp(36px, 7vw, 64px); line-height: 1.05; }
        .legal h2 { margin-top: 42px; font-size: 24px; }
        .legal p, .legal li { color: var(--muted); }
        .legal a { color: var(--teal); }
        .legal .updated { margin-bottom: 42px; }
