    :root {
        --paper: #f6f7f8;
        --panel: #ffffff;
        --ink: #1c1e21;
        --muted: #5b6069;
        --line: #dde0e4;
        --accent: #1e66d0;
        --accent-dark: #17509f;
        --term-bg: #15171c;
        --term-ink: #d7dae0;
        --term-green: #4ac26b;
        --radius: 10px;
        --display: "Schibsted Grotesk", -apple-system, sans-serif;
        /* Body is deliberately the system stack: a native app's page, set in the native font. */
        --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
        --mono: "JetBrains Mono", ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
    }

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

    html {
        scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }

        * {
            animation: none !important;
            transition: none !important;
        }
    }

    body {
        font-family: var(--body);
        background: var(--paper);
        color: var(--ink);
        line-height: 1.65;
        font-size: 17px;
        -webkit-font-smoothing: antialiased;
    }

    a {
        color: var(--accent);
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    a:focus-visible,
    button:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 3px;
        border-radius: 4px;
    }

    .wrap {
        max-width: 880px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ---------- top nav ---------- */
    .topbar {
        padding: 22px 0;
    }

    .topbar .wrap {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
    }

    .brand {
        font-family: var(--display);
        font-weight: 800;
        font-size: 19px;
        color: var(--ink);
        letter-spacing: -0.01em;
    }

    .brand:hover {
        text-decoration: none;
    }

    .topnav {
        display: flex;
        gap: 22px;
        font-size: 14.5px;
    }

    .topnav a {
        color: var(--muted);
    }

    .topnav a:hover {
        color: var(--ink);
        text-decoration: none;
    }

    /* ---------- hero ---------- */
    .hero {
        padding: 44px 0 26px;
        text-align: center;
    }

    .hero h1 {
        font-family: var(--display);
        font-weight: 800;
        font-size: clamp(38px, 6vw, 58px);
        letter-spacing: -0.025em;
        line-height: 1.05;
    }

    .hero .tagline {
        margin: 18px auto 0;
        max-width: 34ch;
        font-family: var(--display);
        font-weight: 500;
        font-size: clamp(20px, 2.6vw, 25px);
        line-height: 1.35;
        color: var(--ink);
    }

    .hero .subline {
        margin-top: 12px;
        color: var(--muted);
        font-size: 16px;
    }

    .cta {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn {
        display: inline-block;
        font-family: var(--display);
        font-weight: 700;
        font-size: 17px;
        color: #fff;
        background: var(--accent);
        padding: 14px 30px;
        border-radius: var(--radius);
        border: none;
        cursor: pointer;
    }

    .btn:hover {
        background: var(--accent-dark);
        text-decoration: none;
    }

    .meta-line {
        font-family: var(--mono);
        font-size: 12.5px;
        color: var(--muted);
    }

    .meta-line a {
        color: var(--muted);
        text-decoration: underline;
    }

    /* ---------- app window frame ---------- */
    .window {
        margin: 36px auto 0;
        max-width: 820px;
        background: var(--panel);
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: 0 24px 60px -28px rgba(28, 30, 33, 0.28);
        overflow: hidden;
    }

    .window-titlebar {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 14px;
        background: #ececee;
        border-bottom: 1px solid var(--line);
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot.r {
        background: #ff5f57;
    }

    .dot.y {
        background: #febc2e;
    }

    .dot.g {
        background: #28c840;
    }

    .window-title {
        margin-left: 8px;
        font-size: 13px;
        color: var(--muted);
    }

    .window img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* ---------- sections ---------- */
    section {
        padding: 64px 0 8px;
    }

    .eyebrow {
        font-family: var(--mono);
        font-size: 13px;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 14px;
    }

    .eyebrow::before {
        content: "~/";
        color: var(--muted);
        font-weight: 400;
    }

    h2 {
        font-family: var(--display);
        font-weight: 700;
        font-size: clamp(26px, 3.6vw, 34px);
        letter-spacing: -0.02em;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .prose p {
        max-width: 62ch;
    }

    .prose p+p {
        margin-top: 14px;
    }

    /* ---------- feature rows ---------- */
    .feature {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        padding: 30px 0;
        border-top: 1px solid var(--line);
    }

    .features .feature:first-of-type {
        border-top: none;
        padding-top: 8px;
    }

    .feature h3 {
        font-family: var(--display);
        font-weight: 700;
        font-size: 21px;
        letter-spacing: -0.01em;
    }

    .feature p {
        color: var(--ink);
        max-width: 60ch;
    }

    .feature .note {
        color: var(--muted);
        font-size: 15px;
        margin-top: 6px;
    }

    .shot {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--panel);
        color: var(--muted);
        font-size: 14px;
        text-align: center;
        padding: 52px 16px;
    }

    /* Replace each .shot placeholder with a real screenshot:
     <img class="shot-img" src="feature-tree.png" alt="..."> */
    .shot-img {
        display: block;
        width: 100%;
        height: auto;
        border: 1px solid var(--line);
        border-radius: var(--radius);
    }

    .shotwrap img {
        max-width: 100%;
        height: auto;
    }

    kbd {
        font-family: var(--mono);
        font-size: 0.82em;
        font-weight: 600;
        background: #fff;
        border: 1px solid var(--line);
        border-bottom-width: 2.5px;
        border-radius: 6px;
        padding: 2px 7px;
        white-space: nowrap;
    }

    /* ---------- terminal climax ---------- */
    .feature.feature-terminal {
        display: block;
    }

    .feature-terminal {
        background: var(--term-bg);
        color: var(--term-ink);
        border-radius: 14px;
        border: none;
        padding: 34px 34px 30px;
        margin-top: 30px;
    }

    .feature-terminal h3 {
        color: #fff;
    }

    .feature-terminal p {
        color: var(--term-ink);
    }

    .feature-terminal .note {
        color: #8b919c;
    }

    .termline {
        font-family: var(--mono);
        font-size: 14px;
        margin-top: 18px;
        padding: 16px 18px;
        background: #0d0f13;
        border-radius: 8px;
        overflow-x: auto;
        white-space: pre-wrap;
        word-break: normal;
        color: var(--term-ink);
        color-scheme: dark;
    }

    .termline .prompt {
        color: var(--term-green);
    }

    .termline .dim {
        color: #6c7380;
    }

    /* ---------- early access ---------- */
    .ea-box {
        background: var(--panel);
        border: 1px solid var(--line);
        border-left: 4px solid var(--accent);
        border-radius: var(--radius);
        padding: 30px 32px;
        max-width: 720px;
    }

    .ea-box h2 {
        margin-bottom: 12px;
    }

    .ea-box p {
        max-width: 60ch;
    }

    .ea-box p+p {
        margin-top: 12px;
    }

    .ea-box .price {
        font-family: var(--display);
        font-weight: 700;
    }

    /* ---------- FAQ ---------- */
    .faq details {
        border-top: 1px solid var(--line);
        padding: 16px 0;
        max-width: 720px;
    }

    .faq details:last-of-type {
        border-bottom: 1px solid var(--line);
    }

    .faq summary {
        font-family: var(--display);
        font-weight: 700;
        font-size: 17.5px;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 16px;
    }

    .faq summary::-webkit-details-marker {
        display: none;
    }

    .faq summary::after {
        content: "+";
        font-family: var(--mono);
        color: var(--muted);
    }

    .faq details[open] summary::after {
        content: "–";
    }

    .faq details p {
        margin-top: 10px;
        color: var(--ink);
        max-width: 62ch;
    }

    /* ---------- footer ---------- */
    footer {
        margin-top: 80px;
        border-top: 1px solid var(--line);
        padding: 30px 0 46px;
    }

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

    footer nav {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        font-size: 14.5px;
    }

    footer nav a {
        color: var(--muted);
    }

    footer .colophon {
        font-size: 13px;
        color: var(--muted);
    }

    @media (min-width: 700px) {
        .feature {
            grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
            align-items: center;
            gap: 36px;
        }

        .feature:nth-of-type(even) .shotwrap {
            order: -1;
        }
    }