/* =========================================================================
   Cratis — cratis.no
   Design direction evolved from the exploratory concept:
   near-black ground, italic serif accent, hairline card grids, the pipeline.
   Corrections: single accent (docs blue) instead of purple+teal+yellow+orange,
   no orbit/atom, no word carousel, light mode, reduced-motion support.
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
    color-scheme: dark;

    --font-sans: "Inter", system-ui, -apple-system, sans-serif;
    --font-serif: "Fraunces", Georgia, serif;
    --font-mono:
        "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Accent inherited from cratis.io docs — brand continuity */
    --accent: #8b5cf6;
    --accent-strong: #7c3aed;
    --accent-soft: #c9baff;
    --accent-deep: #2a1a5e;

    /* Signal — prices, status pills, the one highlight. Used sparingly. */
    --signal: #f0a500;

    --bg: #08080e;
    --panel: #0c0c15;
    --panel-hi: #12121d;
    --glow-a: #7c5cf0;
    --glow-b: #2dd4bf;
    --violet: #8b5cf6;
    --violet-light: #c9baff;
    --teal: #2dd4bf;
    --amber: #f2994a;
    --lime: #dbe45c;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);

    --text: #f5f3f0;
    --text-dim: #9b9aa8;
    --text-faint: #6c6b7a;

    --shell: 1280px;
    --gutter: clamp(20px, 5vw, 48px);
    --radius: 14px;

    --step--1: 12.5px;
    --step-0: 15.5px;
    --step-1: clamp(17px, 1.3vw, 19px);
    --step-2: clamp(24px, 3vw, 34px);
    --step-3: clamp(30px, 4vw, 46px);
    --step-4: clamp(38px, 5.4vw, 68px);
}

/* Light theme — designed, not inverted.
   Principles: warm off-white ground (never pure #fff — the award research is
   explicit), white cards ON the tinted ground rather than grey cards on white,
   and the SAME brand violet as dark — the brand must not change colour when
   the theme does. All accent values checked for WCAG AA on the new ground. */
:root[data-theme="light"] {
    color-scheme: light;
    --accent: #6d28d9; /* 6.8:1 on --bg */
    --accent-strong: #5b21b6;
    --accent-soft: #4c1d95;
    --accent-deep: #ede9fe;
    --signal: #9a6700;
    --bg: #faf9f6;
    --panel: #ffffff;
    --panel-hi: #f5f2fc;
    --glow-a: #8b5cf6;
    --glow-b: #2dd4bf;
    --violet: #6d28d9;
    --violet-light: #5b21b6;
    --teal: #0f766e;
    --amber: #b45309;
    --lime: #63750f;
    --line: rgba(23, 20, 40, 0.1);
    --line-strong: rgba(23, 20, 40, 0.22);
    --text: #17141f;
    --text-dim: #4e4a5c;
    --text-faint: #726e82;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: var(--step-0);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--accent-strong);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}
img,
svg {
    display: block;
    max-width: 100%;
}

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

.skip {
    position: absolute;
    left: -9999px;
    background: var(--accent-strong);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    z-index: 999;
    font-weight: 600;
}
.skip:focus {
    left: 0;
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- atmosphere ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.032) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 48%,
        transparent 88%
    );
    mask-image: linear-gradient(to bottom, #000 0%, #000 48%, transparent 88%);
}
:root[data-theme="light"] .bg-grid {
    /* The graph-paper grid is most of what makes light mode read as a
       developer tool. Nearly dissolve it and fade it out high. */
    background-image:
        linear-gradient(to right, rgba(23, 20, 40, 0.022) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(23, 20, 40, 0.022) 1px, transparent 1px);
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 20%,
        transparent 60%
    );
    mask-image: linear-gradient(to bottom, #000 0%, #000 20%, transparent 60%);
}

/* One glow. Not three. */
.bg-glow {
    position: fixed;
    right: -10%;
    top: -6%;
    width: 62vw;
    height: 62vw;
    max-width: 780px;
    max-height: 780px;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent) 20%, transparent),
        transparent 68%
    );
    z-index: 0;
    pointer-events: none;
}
:root[data-theme="light"] .bg-glow {
    opacity: 0.3;
}

/* ---------- shell ---------- */
.shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

/* ---------- header ---------- */
.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}
.logo svg {
    height: 34px;
    width: auto;
}

.site-nav {
    display: flex;
    gap: 30px;
    font-size: var(--step--1);
    color: var(--text-dim);
}
.site-nav a {
    transition: color 0.18s ease;
    white-space: nowrap;
}
.site-nav a:hover {
    color: var(--text);
}
.site-nav .idx {
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 11px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        color 0.18s ease;
}
.theme-toggle:hover {
    border-color: var(--line-strong);
    color: var(--text);
}
.theme-toggle svg {
    width: 15px;
    height: 15px;
}
:root:not([data-theme="light"]) .icon-sun {
    display: none;
}
:root[data-theme="light"] .icon-moon {
    display: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--text);
    background: color-mix(in srgb, var(--text) 3%, transparent);
    transition:
        border-color 0.18s ease,
        background 0.18s ease;
    white-space: nowrap;
}
.pill:hover {
    border-color: var(--line-strong);
    background: color-mix(in srgb, var(--text) 7%, transparent);
}
.pill svg {
    width: 11px;
    height: 11px;
}

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }
}

/* ---------- buttons ---------- */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text);
    color: var(--bg);
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14.5px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}
.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgb(0 0 0 / 0.35);
}
.cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.18s ease;
}
.cta:hover svg {
    transform: translate(2px, -2px);
}

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text);
    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}
.cta-ghost:hover {
    border-color: var(--text);
    background: color-mix(in srgb, var(--text) 6%, transparent);
}

/* ---------- type ---------- */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--accent-soft);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.eyebrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background: currentColor;
    flex: none;
}

h1 {
    font-size: var(--step-4);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.033em;
}
h2 {
    font-size: var(--step-3);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}
h3 {
    font-size: var(--step-1);
    font-weight: 700;
    letter-spacing: -0.012em;
}

/* The italic serif — the signature move, kept from the concept */
.serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent-soft);
    text-shadow: 0 0 44px color-mix(in srgb, var(--accent) 42%, transparent);
}
:root[data-theme="light"] .serif {
    text-shadow: none;
    color: var(--accent);
}

.lead {
    color: var(--text-dim);
    font-size: var(--step-1);
    line-height: 1.62;
    max-width: 46ch;
}
.muted {
    color: var(--text-dim);
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    z-index: 2;
    padding-block: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 76px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
}
.hero-copy {
    position: relative;
    z-index: 3;
}
.hero h1 {
    margin-bottom: 24px;
}
.hero .lead {
    margin-bottom: 34px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-facts {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-faint);
}

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

/* ---------- hero visual: the loop (replaces the orbit) ---------- */
.loop {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--panel) 80%, transparent);
    padding: 26px 24px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    overflow: hidden;
}
.loop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        120% 90% at 100% 0%,
        color-mix(in srgb, var(--accent) 12%, transparent),
        transparent 62%
    );
    pointer-events: none;
}
.loop-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 20px;
}
.loop-row {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: start;
    padding: 11px 0;
    border-top: 1px solid var(--line);
    transition: opacity 0.4s ease;
}
.loop-row:first-of-type {
    border-top: 0;
}
.loop-label {
    color: var(--text-faint);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 3px;
}
.loop-val {
    color: var(--text-dim);
    line-height: 1.5;
    word-break: break-word;
}
.loop-val b {
    color: var(--text);
    font-weight: 600;
}
.loop-row.is-on .loop-val b {
    color: var(--accent-soft);
}
.loop-row.is-on .loop-label {
    color: var(--accent);
}

.loop-foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 11.5px;
    color: var(--text-faint);
    line-height: 1.55;
    font-family: var(--font-sans);
}

/* ---------- pipeline strip ---------- */
.strip {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-block: 20px 40px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.pipeline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pipeline span {
    transition:
        color 0.35s ease,
        text-shadow 0.35s ease;
}
.pipeline span.on {
    color: var(--accent-soft);
    text-shadow: 0 0 16px color-mix(in srgb, var(--accent) 55%, transparent);
}
:root[data-theme="light"] .pipeline span.on {
    color: var(--accent);
    text-shadow: none;
}
.pipeline .sep {
    color: var(--text-faint);
    opacity: 0.5;
}

/* ---------- bands ---------- */
.band {
    position: relative;
    z-index: 2;
    padding-block: clamp(64px, 8vw, 104px);
    border-top: 1px solid var(--line);
    scroll-margin-top: 24px;
}
.band-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}
.band-head > div:first-child {
    max-width: 640px;
}
.band-head p {
    color: var(--text-dim);
    font-size: 14.5px;
    max-width: 380px;
}
.band-head h2 + p {
    margin-top: 14px;
    max-width: 620px;
    font-size: var(--step-1);
}

/* ---------- statement ---------- */
.statement {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(21px, 2.9vw, 33px);
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--text);
    border-left: 2px solid var(--accent);
    padding: 6px 0 6px 26px;
    max-width: 24ch;
}
.statement.wide {
    max-width: 34ch;
}

/* ---------- grids ---------- */
.grid {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--panel);
    padding: 30px 26px;
    transition: background 0.22s ease;
}
.card:hover {
    background: var(--panel-hi);
}
.card .num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}
.card h3 {
    margin-bottom: 4px;
}
.card .role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.62;
}
.card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-soft);
}
.card .card-link:hover {
    text-decoration: underline;
}
:root[data-theme="light"] .card .card-link {
    color: var(--accent);
}

.tag {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--signal);
    border: 1px solid color-mix(in srgb, var(--signal) 40%, transparent);
    border-radius: 999px;
    padding: 3px 8px;
}

/* ---------- steps ---------- */
.steps {
    display: grid;
    gap: 34px;
    max-width: 780px;
}
.step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    align-items: start;
}
.step .n {
    font-family: var(--font-mono);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    padding-top: 2px;
}
.step h3 {
    margin-bottom: 8px;
}
.step p {
    color: var(--text-dim);
    font-size: 14.8px;
    line-height: 1.62;
}
@media (max-width: 640px) {
    .step {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ---------- code ---------- */
.code-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
}
.code-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}
pre {
    margin: 0;
    padding: 22px 20px;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 12.6px;
    line-height: 1.75;
    color: var(--text-dim);
    -moz-tab-size: 4;
    tab-size: 4;
}
pre code {
    font: inherit;
    color: inherit;
}
.tok-c {
    color: var(--text-faint);
    font-style: italic;
}
.tok-a {
    color: var(--accent);
}
.tok-k {
    color: #c792ea;
}
.tok-t {
    color: #7fdbca;
}
.tok-s {
    color: #ecc48d;
}
:root[data-theme="light"] .tok-k {
    color: #7c3aed;
}
:root[data-theme="light"] .tok-t {
    color: #0f766e;
}
:root[data-theme="light"] .tok-s {
    color: #a3592b;
}

.code-note {
    margin-top: 16px;
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.62;
    max-width: 62ch;
}

/* ---------- callout ---------- */
.callout {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent) 9%, transparent),
        transparent 62%
    );
    padding: 32px clamp(22px, 3vw, 38px);
}
.callout h3 {
    margin-bottom: 14px;
    font-size: var(--step-2);
    letter-spacing: -0.02em;
}
.callout p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.68;
    max-width: 70ch;
}
.callout p + p {
    margin-top: 14px;
}

/* ---------- banner ---------- */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent) 13%, transparent),
        transparent 70%
    );
    padding: 32px clamp(22px, 3vw, 36px);
}
.banner h3 {
    margin-bottom: 8px;
    font-size: var(--step-2);
}
.banner p {
    color: var(--text-dim);
    font-size: 14.5px;
    max-width: 52ch;
}

/* ---------- routes ---------- */
.routes {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.route {
    background: var(--panel);
    padding: 26px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    transition: background 0.2s ease;
}
.route:hover {
    background: var(--panel-hi);
}
.route h3 {
    font-size: 17px;
    margin-bottom: 5px;
}
.route p {
    color: var(--text-dim);
    font-size: 14px;
    max-width: 58ch;
}
.route .go {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent-soft);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
:root[data-theme="light"] .route .go {
    color: var(--accent);
}

/* ---------- footer ---------- */
.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
    padding-block: 54px 40px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px 28px;
    margin-bottom: 44px;
}
@media (max-width: 860px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 520px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}
.foot-brand .logo svg {
    height: 28px;
    margin-bottom: 16px;
}
.foot-brand p {
    color: var(--text-faint);
    font-size: 13px;
    max-width: 34ch;
    line-height: 1.6;
}
.foot-col h4 {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 14px;
    font-weight: 600;
}
.foot-col ul {
    list-style: none;
    display: grid;
    gap: 9px;
}
.foot-col a {
    font-size: 13.5px;
    color: var(--text-dim);
    transition: color 0.18s ease;
}
.foot-col a:hover {
    color: var(--text);
}
.foot-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    color: var(--text-faint);
    font-size: 12.5px;
}
.foot-bar .legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ---------- utils ---------- */
.stack-sm > * + * {
    margin-top: 16px;
}
.stack-md > * + * {
    margin-top: 28px;
}
.stack-lg > * + * {
    margin-top: 46px;
}
.mt-lg {
    margin-top: clamp(40px, 5vw, 64px);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* =========================================================================
   PAGE SHELL (interior pages)
   ========================================================================= */
.page-hero {
    position: relative;
    z-index: 2;
    padding-block: clamp(48px, 6vw, 84px) clamp(28px, 4vw, 48px);
}
.page-hero h1 {
    font-size: var(--step-3);
    margin-bottom: 20px;
    max-width: 20ch;
}
.page-hero .lead {
    max-width: 62ch;
    font-size: var(--step-1);
}

/* =========================================================================
   TESTIMONIAL MARQUEE
   ========================================================================= */
.voices {
    position: relative;
    z-index: 2;
    padding-block: clamp(48px, 6vw, 80px);
    border-top: 1px solid var(--line);
    overflow: hidden;
}
.voices-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.voices-head h2 {
    font-size: var(--step-2);
}
.voices-head p {
    color: var(--text-dim);
    font-size: 14px;
}

.marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 6%,
        #000 94%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 6%,
        #000 94%,
        transparent
    );
}
.marquee-track {
    display: flex;
    gap: 18px;
    padding-inline: 9px;
    flex: none;
    animation: slide 64s linear infinite;
    will-change: transform;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
    animation-play-state: paused;
}
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .marquee-track {
        animation: none;
    }
}

.voice {
    flex: 0 0 auto;
    width: min(420px, 78vw);
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.voice blockquote {
    font-size: 14.6px;
    line-height: 1.66;
    color: var(--text);
}
.voice blockquote::before {
    content: "\201C";
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 0;
    vertical-align: -6px;
    margin-right: 3px;
}
.voice figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
}
.voice .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: var(--accent-deep);
    color: var(--accent-soft);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
:root[data-theme="light"] .voice .avatar {
    color: var(--accent);
}
.voice .who {
    font-size: 13.4px;
    font-weight: 650;
    color: var(--text);
    line-height: 1.35;
}
.voice .role {
    font-size: 12.4px;
    color: var(--text-faint);
    line-height: 1.35;
}

/* Placeholder guard — cannot be shipped unnoticed */
.placeholder-ribbon {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px dashed color-mix(in srgb, var(--signal) 55%, transparent);
    background: color-mix(in srgb, var(--signal) 9%, transparent);
    color: var(--signal);
    border-radius: 10px;
    padding: 11px 16px;
    margin-bottom: 22px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    line-height: 1.5;
}
.is-placeholder .voice {
    opacity: 0.55;
    border-style: dashed;
}

/* =========================================================================
   OFFERINGS
   ========================================================================= */
.offer {
    background: var(--panel);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    transition: background 0.22s ease;
}
.offer:hover {
    background: var(--panel-hi);
}
.offer h3 {
    margin-bottom: 6px;
}
.offer .who-for {
    font-size: 13px;
    color: var(--text-faint);
    margin-bottom: 18px;
}
.offer .price {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 500;
    color: var(--signal);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}
.offer .price small {
    font-size: 12px;
    color: var(--text-faint);
    font-weight: 400;
    letter-spacing: 0.02em;
}
.offer ul {
    list-style: none;
    display: grid;
    gap: 9px;
    margin: 18px 0 24px;
    flex-grow: 1;
}
.offer li {
    font-size: 13.6px;
    color: var(--text-dim);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}
.offer li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.offer .offer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 13.4px;
    font-weight: 650;
    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}
.offer .offer-cta:hover {
    border-color: var(--text);
    background: color-mix(in srgb, var(--text) 6%, transparent);
}
.offer.featured {
    background: var(--panel-hi);
    position: relative;
}
.offer.featured::after {
    content: "Most teams start here";
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-soft);
    background: var(--accent-deep);
    padding: 4px 9px;
    border-radius: 999px;
}
:root[data-theme="light"] .offer.featured::after {
    color: var(--accent);
}

/* =========================================================================
   COMPARISON TABLE
   ========================================================================= */
.table-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow-x: auto;
    background: var(--panel);
}
table.plans {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 13.8px;
}
table.plans th,
table.plans td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
table.plans thead th {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
    font-weight: 600;
    background: color-mix(in srgb, var(--text) 3%, transparent);
    position: sticky;
    top: 0;
}
table.plans tbody th {
    font-weight: 500;
    color: var(--text-dim);
}
table.plans td {
    color: var(--text);
}
table.plans tr:last-child th,
table.plans tr:last-child td {
    border-bottom: 0;
}
table.plans .yes {
    color: var(--accent);
}
table.plans .no {
    color: var(--text-faint);
}
table.plans .price-cell {
    font-family: var(--font-mono);
    color: var(--signal);
    font-size: 15px;
}

/* =========================================================================
   PEOPLE
   ========================================================================= */
.people {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (max-width: 720px) {
    .people {
        grid-template-columns: 1fr;
    }
}
.person {
    background: var(--panel);
    padding: 32px 28px;
}
.person .portrait {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    background: var(--accent-deep);
    color: var(--accent-soft);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 25px;
}
:root[data-theme="light"] .person .portrait {
    color: var(--accent);
}
.person h3 {
    margin-bottom: 3px;
}
.person .role {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.05em;
    color: var(--text-faint);
    margin-bottom: 14px;
}
.person p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.62;
}
.person .links {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    font-size: 13px;
}
.person .links a {
    color: var(--accent-soft);
    font-weight: 600;
}
:root[data-theme="light"] .person .links a {
    color: var(--accent);
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.field {
    display: grid;
    gap: 7px;
    margin-bottom: 18px;
}
.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.field input,
.field select,
.field textarea {
    font: inherit;
    font-size: 14.5px;
    color: var(--text);
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
    transition: border-color 0.18s ease;
}
.field textarea {
    min-height: 130px;
    resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    outline: none;
}
.field .hint {
    font-size: 12.4px;
    color: var(--text-faint);
}
.contact-aside {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 28px 26px;
}
.contact-aside h3 {
    font-size: 17px;
    margin-bottom: 12px;
}
.contact-aside p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.62;
}
.contact-aside p + p {
    margin-top: 14px;
}
.contact-aside a {
    color: var(--accent-soft);
    font-weight: 600;
}
:root[data-theme="light"] .contact-aside a {
    color: var(--accent);
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
}
.faq details {
    border-bottom: 1px solid var(--line);
}
.faq details:last-child {
    border-bottom: 0;
}
.faq summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 650;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    transition: background 0.18s ease;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 18px;
    flex: none;
}
.faq details[open] summary::after {
    content: "\2212";
}
.faq summary:hover {
    background: var(--panel-hi);
}
.faq .answer {
    padding: 0 22px 20px;
    color: var(--text-dim);
    font-size: 14.4px;
    line-height: 1.66;
    max-width: 74ch;
}
.faq .answer p + p {
    margin-top: 12px;
}

/* =========================================================================
   POLISH PASS — depth, entrances, and the pieces that make it feel built
   ========================================================================= */

/* Hero: bigger, tighter, with a luminous serif */
.hero {
    padding-block: clamp(56px, 8vw, 120px) clamp(44px, 6vw, 84px);
}
.hero h1 {
    letter-spacing: -0.038em;
}
.serif {
    position: relative;
}

/* Cards lift, and catch a light from above */
.card,
.offer,
.route,
.person,
.voice {
    position: relative;
    transition:
        background 0.22s ease,
        transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
        box-shadow 0.22s ease;
}
/* The hover sheen lives on ::before — ::after stays free for real content
   (e.g. the .offer.featured badge). Overloading one pseudo-element for both
   made the badge inherit `inset: 0` and balloon into a full-card circle. */
.card::before,
.offer::before,
.person::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--text) 4%, transparent),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.22s ease;
}
.card:hover::before,
.offer:hover::before,
.person:hover::before {
    opacity: 1;
}
.card:hover,
.offer:hover,
.person:hover {
    transform: translateY(-2px);
}
.route:hover {
    transform: translateX(3px);
}

/* The loop panel — glassier, with a live edge */
.loop {
    backdrop-filter: blur(12px);
    background: color-mix(in srgb, var(--panel) 62%, transparent);
    border-color: color-mix(in srgb, var(--accent) 16%, var(--line));
    box-shadow: 0 24px 70px -30px
        color-mix(in srgb, var(--glow-a) 55%, transparent);
}
.loop-row {
    position: relative;
}
.loop-row::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--accent);
    border-radius: 2px;
    transition: height 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.loop-row.is-on::before {
    height: 60%;
}
.loop-row.is-on {
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--accent) 7%, transparent),
        transparent 70%
    );
}

/* Section entrances — subtle, once, never on scroll-back */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(14px);
    }
    .reveal.in {
        opacity: 1;
        transform: none;
        transition:
            opacity 0.6s ease,
            transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
    }
}

/* Eyebrow gets a live dot */
.eyebrow::before {
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor);
}

/* Statement: the serif pull-quote, with a gradient rule */
.statement {
    border-left: 0;
    padding-left: 30px;
}
.statement::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
    border-radius: 2px;
}
.statement {
    position: relative;
}

/* Numbered steps get a hairline spine */
.steps {
    position: relative;
}
.step {
    position: relative;
}
.step .n {
    background: linear-gradient(
        180deg,
        var(--accent),
        color-mix(in srgb, var(--glow-b) 80%, var(--accent))
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons: accent primary, with a glow on hover */
.cta {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--text) 100%, transparent),
        color-mix(in srgb, var(--text) 88%, var(--accent))
    );
}
.cta:hover {
    box-shadow: 0 14px 40px -12px
        color-mix(in srgb, var(--glow-a) 70%, transparent);
}

/* Pipeline: give the active stage a travelling underline */
.pipeline span {
    position: relative;
    padding-bottom: 3px;
}
.pipeline span[data-i]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.pipeline span.on::after {
    transform: scaleX(1);
}

/* =========================================================================
   STACK PAGE
   ========================================================================= */
.flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (max-width: 900px) {
    .flow {
        grid-template-columns: 1fr;
    }
}
.flow-step {
    background: var(--panel);
    padding: 24px 20px;
}
.flow-step .k {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}
.flow-step h3 {
    font-size: 15.5px;
    margin-bottom: 7px;
}
.flow-step p {
    font-size: 13.2px;
    color: var(--text-dim);
    line-height: 1.55;
}
.flow-step .owner {
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    text-transform: uppercase;
}

.layer {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
    align-items: start;
}
.layer:first-of-type {
    border-top: 0;
}
@media (max-width: 760px) {
    .layer {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.layer-name {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.layer-name strong {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.012em;
}
.layer-name span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--text-faint);
}
.layer-body p {
    color: var(--text-dim);
    font-size: 14.6px;
    line-height: 1.64;
    max-width: 66ch;
}
.layer-body ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.layer-body li {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 11px;
}
.layer-body .more {
    margin-top: 16px;
    display: inline-flex;
    gap: 7px;
    font-size: 13.4px;
    font-weight: 600;
    color: var(--accent-soft);
}
:root[data-theme="light"] .layer-body .more {
    color: var(--accent);
}

/* =========================================================================
   ARTICLE
   ========================================================================= */
.article {
    position: relative;
    z-index: 2;
    padding-block: clamp(40px, 5vw, 72px) clamp(56px, 7vw, 96px);
}
.article-head {
    max-width: 34ch;
    margin-bottom: 44px;
}
.article-head h1 {
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.032em;
    margin-bottom: 22px;
}
.article-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.article-body {
    max-width: 68ch;
}
.article-body > * + * {
    margin-top: 24px;
}
.article-body p {
    font-size: 17px;
    line-height: 1.72;
    color: var(--text-dim);
}
.article-body p strong {
    color: var(--text);
    font-weight: 650;
}
.article-body h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    margin-top: 60px;
    letter-spacing: -0.02em;
}
.article-body h3 {
    font-size: 19px;
    margin-top: 40px;
}
.article-body ul,
.article-body ol {
    padding-left: 22px;
    display: grid;
    gap: 10px;
}
.article-body li {
    font-size: 16.5px;
    line-height: 1.68;
    color: var(--text-dim);
}
.article-body li::marker {
    color: var(--accent);
}
.article-body blockquote {
    border-left: 0;
    position: relative;
    padding: 4px 0 4px 28px;
    margin-block: 34px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(19px, 2.2vw, 25px);
    line-height: 1.38;
    color: var(--text);
    max-width: 30ch;
}
.article-body blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
}
.article-body .code-wrap {
    margin-block: 30px;
}
.article-body hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin-block: 48px;
}
.article-body a {
    color: var(--accent-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
:root[data-theme="light"] .article-body a {
    color: var(--accent);
}
.article-body code {
    font-family: var(--font-mono);
    font-size: 0.88em;
    background: color-mix(in srgb, var(--text) 8%, transparent);
    padding: 2px 6px;
    border-radius: 5px;
    color: var(--text);
}

.article-footer {
    max-width: 68ch;
    margin-top: 64px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}
.article-footer p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.66;
}

.post-list {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.post {
    background: var(--panel);
    padding: 28px 30px;
    display: block;
    transition: background 0.2s ease;
}
.post:hover {
    background: var(--panel-hi);
}
.post .when {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.post h3 {
    font-size: 20px;
    margin: 8px 0 8px;
    letter-spacing: -0.014em;
}
.post p {
    color: var(--text-dim);
    font-size: 14.6px;
    line-height: 1.6;
    max-width: 68ch;
}

/* =========================================================================
   BRAND LAYER — executive-facing. Bigger type, more air, no code.
   ========================================================================= */

/* Display scale — significantly larger than the developer-facing pages */
:root {
    --display: clamp(44px, 7.4vw, 116px);
    --display-2: clamp(32px, 4.6vw, 68px);
}

.hero-brand {
    position: relative;
    z-index: 2;
    min-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(60px, 10vh, 140px) clamp(40px, 6vh, 80px);
}
.hero-brand h1 {
    font-size: var(--display);
    line-height: 0.94;
    letter-spacing: -0.045em;
    font-weight: 800;
    max-width: 16ch;
    margin-bottom: clamp(26px, 3vw, 40px);
}
.hero-brand .lead {
    font-size: clamp(17px, 1.7vw, 23px);
    line-height: 1.5;
    max-width: 54ch;
    color: var(--text-dim);
    margin-bottom: clamp(32px, 4vw, 48px);
}
.hero-brand .hero-actions {
    gap: 14px;
}

/* Big statement bands — the rhythm of an editorial site */
.big-statement {
    font-size: var(--display-2);
    line-height: 1.06;
    letter-spacing: -0.032em;
    font-weight: 800;
    max-width: 20ch;
}
.big-statement .serif {
    display: inline;
}

/* Production pipeline — the signature visual */
.production {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) {
    .production {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .production {
        grid-template-columns: 1fr;
    }
}

.act {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--panel) 70%, transparent);
    padding: 30px 26px 28px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
        background 0.3s ease;
}
.act::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        120% 80% at 50% 0%,
        color-mix(in srgb, var(--accent) 14%, transparent),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}
.act:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
}
.act:hover::before {
    opacity: 1;
}
.act .act-no {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 22px;
}
.act h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--text);
}
.act p {
    font-size: 14.4px;
    line-height: 1.6;
    color: var(--text-dim);
}
.act .act-who {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* Outcome list — big numbers, business language */
.outcomes {
    display: grid;
    gap: 0;
    margin-top: clamp(30px, 4vw, 48px);
}
.outcome {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: start;
    padding-block: clamp(30px, 4vw, 46px);
    border-top: 1px solid var(--line);
}
@media (max-width: 800px) {
    .outcome {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
.outcome h3 {
    font-size: clamp(21px, 2.4vw, 30px);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.15;
    max-width: 18ch;
}
.outcome p {
    font-size: 16px;
    line-height: 1.66;
    color: var(--text-dim);
    max-width: 58ch;
}
.outcome .tagline {
    display: block;
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Full-bleed quote moment */
.moment {
    position: relative;
    z-index: 2;
    padding-block: clamp(70px, 11vw, 150px);
    border-top: 1px solid var(--line);
    text-align: left;
}
.moment blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(26px, 4.2vw, 62px);
    line-height: 1.12;
    letter-spacing: -0.028em;
    color: var(--text);
    max-width: 19ch;
}
.moment .attrib {
    margin-top: 28px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* Who it's for — audience cards */
.audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (max-width: 900px) {
    .audience {
        grid-template-columns: 1fr;
    }
}
.aud {
    background: var(--panel);
    padding: 32px 28px;
    transition: background 0.22s ease;
}
.aud:hover {
    background: var(--panel-hi);
}
.aud .role {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.aud h3 {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: -0.012em;
}
.aud p {
    font-size: 14.2px;
    line-height: 1.62;
    color: var(--text-dim);
}

/* Metric strip — proof without fake numbers */
.facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (max-width: 800px) {
    .facts {
        grid-template-columns: 1fr 1fr;
    }
}
.fact {
    background: var(--panel);
    padding: 28px 24px;
}
.fact strong {
    display: block;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 7px;
}
.fact span {
    font-size: 13.2px;
    color: var(--text-dim);
    line-height: 1.5;
    display: block;
}

/* Section lead-in for brand pages */
.section-lead {
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.55;
    color: var(--text-dim);
    max-width: 56ch;
    margin-top: 20px;
}

/* =========================================================================
   2026 CORRECTION PASS
   Measured from Awwwards winners (Prime Security, Kurrent, SSTR, ON Energy):
   - display weight 400-500, never 700-800
   - hero caps ~78px; monumental type lives BELOW the fold
   - letter-spacing scales with size
   - grotesque + mono, no serif body
   - one accent, flat dark, top-anchored radial atmosphere only
   ========================================================================= */

/* --- Hero: smaller, lighter, confident. Prime Security = min(4.8vw, 78px)/500 --- */
.hero-brand h1 {
    font-size: min(6.4vw, 82px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.028em;
    max-width: 17ch;
    text-wrap: balance;
}
.hero-brand .lead {
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.55;
    max-width: 48ch;
    color: var(--text-dim);
}

/* Section headlines follow the same discipline */
.big-statement {
    font-size: clamp(30px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -0.024em;
    line-height: 1.05;
    max-width: 21ch;
    text-wrap: balance;
}
h2 {
    font-weight: 550;
    letter-spacing: -0.02em;
}
h3 {
    font-weight: 600;
}

/* --- Monumental type BELOW the fold: the stat block (Prime Security 160px) --- */
.numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}
@media (max-width: 820px) {
    .numbers {
        grid-template-columns: 1fr;
    }
}
.number {
    padding: clamp(34px, 4vw, 54px) 0 clamp(30px, 3.6vw, 46px);
    border-right: 1px solid var(--line);
    padding-right: 28px;
}
.number:last-child {
    border-right: 0;
}
@media (max-width: 820px) {
    .number {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .number:last-child {
        border-bottom: 0;
    }
}
.number strong {
    display: block;
    /* Was clamp(56px, 9vw, 132px) — founders: "too in your face". Still
       monumental, no longer shouting. */
    font-size: clamp(46px, 6.4vw, 92px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.045em;
    font-variant-numeric: tabular-nums;
    color: var(--text);
    margin-bottom: 18px;
}
.number .unit {
    color: var(--accent);
}
.number span.label {
    display: block;
    max-width: 26ch;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-dim);
}

/* --- Split hero headline (Prime Security signature) --- */
.split-head {
    position: relative;
}
.split-head .l {
    display: block;
}
.split-head .r {
    display: block;
    padding-left: 12%;
    /* The rotating word and its period are one unbreakable unit — the
       rotator's animated width must never push the "." onto its own line. */
    white-space: nowrap;
}
@media (max-width: 760px) {
    .split-head .r {
        padding-left: 0;
    }
}

/* --- THE SIGNATURE VISUAL: ordered time ---------------------------------
   An event store's one true image is a timeline that keeps arriving.
   Nobody in the researched set has claimed it. Pure CSS + minimal JS. */
.timeline-wrap {
    position: relative;
    margin-top: clamp(40px, 5vw, 70px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--panel) 55%, transparent);
    backdrop-filter: blur(14px);
    overflow: hidden;
    box-shadow: 0 30px 90px -40px
        color-mix(in srgb, var(--glow-a) 60%, transparent);
}
.timeline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.timeline-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
}
.timeline-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 currentColor;
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent);
    }
    70%,
    100% {
        box-shadow: 0 0 0 9px transparent;
    }
}
.timeline {
    position: relative;
    height: 268px;
    overflow: hidden;
}
.timeline::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--panel) 90%, transparent),
        transparent 22%,
        transparent 74%,
        color-mix(in srgb, var(--panel) 90%, transparent)
    );
}
.tl-row {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
    font-family: var(--font-mono);
    font-size: 12.5px;
}
.tl-row .t {
    color: var(--text-faint);
    font-size: 11px;
}
.tl-row .what {
    color: var(--text);
}
.tl-row .what b {
    color: var(--accent-soft);
    font-weight: 500;
}
:root[data-theme="light"] .tl-row .what b {
    color: var(--accent);
}
.tl-row .who {
    color: var(--text-faint);
    font-size: 11px;
    white-space: nowrap;
}
.tl-row.fresh {
    animation: arrive 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes arrive {
    from {
        opacity: 0;
        transform: translateY(-8px);
        background: color-mix(in srgb, var(--accent) 12%, transparent);
    }
    to {
        opacity: 1;
        transform: none;
        background: transparent;
    }
}
.timeline-foot {
    padding: 15px 20px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}
@media (max-width: 620px) {
    .tl-row {
        grid-template-columns: 60px 1fr;
        font-size: 11.5px;
    }
    .tl-row .who {
        display: none;
    }
    .timeline {
        height: 220px;
    }
}

/* --- Use-case tiles (AxonIQ pattern: business nouns, one sentence) --- */
.uses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (max-width: 900px) {
    .uses {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .uses {
        grid-template-columns: 1fr;
    }
}
.use {
    background: var(--panel);
    padding: 26px 24px;
    transition: background 0.2s ease;
}
.use:hover {
    background: var(--panel-hi);
}
.use h3 {
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 7px;
    letter-spacing: -0.008em;
}
.use p {
    font-size: 13.6px;
    line-height: 1.55;
    color: var(--text-dim);
}

/* --- Mono is the label voice throughout (SSTR "engineer's language") --- */
.eyebrow,
.act-no,
.num,
.role,
.k,
.when,
.article-meta,
.hero-facts,
.strip,
.fact-unit {
    font-family: var(--font-mono);
}

/* Serif italic stays — but only as a single accent word, Kurrent-style */
.serif {
    font-weight: 600;
}

/* --- Hero: two-column so the signature visual sits WITH the headline --- */
@media (min-width: 1024px) {
    .hero-brand {
        display: grid;
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        column-gap: clamp(40px, 4.5vw, 76px);
        align-items: center;
        min-height: min(92vh, 920px);
    }
    .hero-copy-col {
        grid-column: 1;
        grid-row: 1;
    }
    .hero-brand > .timeline-wrap {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0;
    }
    .hero-brand h1 {
        font-size: min(5.1vw, 68px);
        max-width: 14ch;
    }
    .hero-brand .split-head .r {
        padding-left: 9%;
    }
    .hero-brand .lead {
        max-width: 42ch;
    }
}

/* =========================================================================
   THE ORBIT — abstract hero visual
   Taken from the concept: energy, not data. Reads as a living system
   rather than a log viewer. Pure CSS, no canvas, no library.
   ========================================================================= */
.orbit-wrap {
    --orbit-clearance: 56px;
    position: relative;
    display: grid;
    place-items: center;
    min-height: calc(clamp(380px, 46vw, 620px) + 2 * var(--orbit-clearance));
    padding: var(--orbit-clearance);
}
.orbit {
    position: relative;
    width: min(100%, 580px);
    aspect-ratio: 1;
}

.ring {
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--text) 9%, transparent);
}
.ring-1 {
    width: 100%;
    height: 100%;
}
.ring-2 {
    width: 76%;
    height: 76%;
    border-color: color-mix(in srgb, var(--text) 11%, transparent);
}
.ring-3 {
    width: 54%;
    height: 54%;
    border-color: color-mix(in srgb, var(--text) 13%, transparent);
}

/* The core — breathing, luminous */
.core {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 38%;
    height: 38%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 38% 32%,
        #cbb8ff 0%,
        var(--violet) 34%,
        #5b21c9 64%,
        #2c1065 100%
    );
    box-shadow:
        0 0 100px 18px color-mix(in srgb, var(--violet) 46%, transparent),
        inset -16px -16px 46px rgb(0 0 0 / 0.34);
    animation: breathe 7s ease-in-out infinite;
}
:root[data-theme="light"] .core {
    box-shadow:
        0 0 80px 14px color-mix(in srgb, var(--violet) 32%, transparent),
        inset -16px -16px 46px rgb(0 0 0 / 0.22);
}
@keyframes breathe {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

/* Orbiting bodies */
.orbiter {
    position: absolute;
    inset: 0;
    margin: auto;
    animation: orbit linear infinite;
}
@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}
.orbiter-1 {
    width: 100%;
    height: 100%;
    animation-duration: 34s;
    animation-delay: -4s;
}
.orbiter-2 {
    width: 76%;
    height: 76%;
    animation-duration: 42s;
    animation-direction: reverse;
    animation-delay: -16s;
}
.orbiter-3 {
    width: 54%;
    height: 54%;
    animation-duration: 22s;
    animation-delay: -9s;
}

.body {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.body::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: inherit;
    filter: blur(9px);
    opacity: 0.6;
    z-index: -1;
}
.body-teal {
    width: 14px;
    height: 14px;
    background: var(--teal);
    box-shadow: 0 0 18px 3px color-mix(in srgb, var(--teal) 72%, transparent);
}
.body-amber {
    width: 19px;
    height: 19px;
    background: var(--amber);
    box-shadow: 0 0 20px 3px color-mix(in srgb, var(--amber) 70%, transparent);
}
.body-lime {
    width: 16px;
    height: 16px;
    background: var(--lime);
    box-shadow: 0 0 18px 3px color-mix(in srgb, var(--lime) 68%, transparent);
}

/* Caption sits under the orbit, quiet */
.orbit-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
}

@media (prefers-reduced-motion: reduce) {
    .core,
    .orbiter {
        animation: none;
    }
}

/* Hero grid: copy left, orbit right, orbit bleeds slightly off-canvas */
@media (min-width: 1024px) {
    .hero-brand > .orbit-wrap {
        grid-column: 2;
        grid-row: 1;
    }
}
/* The orbit may extend past its column, but must never widen the document. */
.hero-brand {
    overflow: clip;
}
.orbit-wrap {
    max-width: 100%;
    overflow: clip;
}
@media (max-width: 1023px) {
    .orbit-wrap {
        min-height: 340px;
        margin-top: 40px;
    }
    .orbit {
        width: min(78vw, 400px);
    }
}

/* =========================================================================
   THE ROTATOR — the headline's living word
   The point of the concept: each word is a different reason to care.
   Width animates with the swap, so the line never snaps or reflows.
   ========================================================================= */
.rotator {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    /* width is set in JS from the measured word; transition makes it glide */
    transition: width 0.5s cubic-bezier(0.22, 0.68, 0.24, 1);
    will-change: width;
}
.rot-word {
    display: inline-block;
    white-space: nowrap;
    transition:
        opacity 0.34s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.44s cubic-bezier(0.22, 0.68, 0.24, 1),
        filter 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}
.rot-word.out {
    opacity: 0;
    transform: translateY(-0.34em) rotateX(38deg);
    filter: blur(7px);
}
.rot-word.in {
    opacity: 0;
    transform: translateY(0.34em) rotateX(-38deg);
    filter: blur(7px);
}
.rotator {
    perspective: 600px;
}

/* The accent rule under the living word — stretches to each new width */
.rotator::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.09em;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        var(--violet) 0%,
        color-mix(in srgb, var(--teal) 80%, var(--violet)) 100%
    );
    opacity: 0.5;
    transform-origin: left;
    animation: rule-sweep 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rule-sweep {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    12% {
        transform: scaleX(1);
        opacity: 0.55;
    }
    82% {
        transform: scaleX(1);
        opacity: 0.55;
    }
    100% {
        transform: scaleX(1);
        opacity: 0;
    }
}

/* Measuring shadow — offscreen, never announced */
.rot-measure {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
    top: 0;
    left: 0;
}

@media (prefers-reduced-motion: reduce) {
    .rotator {
        transition: none;
    }
    .rot-word {
        transition: none;
    }
    .rotator::after {
        animation: none;
        opacity: 0.5;
        transform: scaleX(1);
    }
}

/* =========================================================================
   HERO — matched to the concept: heavy, luminous, word on its own line
   ========================================================================= */
.hero-brand h1 {
    font-size: min(7.4vw, 96px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
    max-width: none;
}
@media (min-width: 1024px) {
    .hero-brand h1 {
        font-size: min(5.6vw, 82px);
        max-width: none;
    }
}
.hero-brand .split-head .l,
.hero-brand .split-head .r {
    display: block;
    padding-left: 0;
}

/* The living word: violet, italic, and genuinely luminous */
.rotator.serif {
    color: var(--violet-light);
    text-shadow:
        0 0 44px color-mix(in srgb, var(--violet) 52%, transparent),
        0 0 90px color-mix(in srgb, var(--violet) 26%, transparent);
}
:root[data-theme="light"] .rotator.serif {
    color: var(--violet);
    text-shadow: none;
}

/* Bloom behind the word — the halo in the concept */
.rotator::before {
    content: "";
    position: absolute;
    left: -14%;
    right: -14%;
    top: -28%;
    bottom: -28%;
    background: radial-gradient(
        ellipse at center,
        color-mix(in srgb, var(--violet) 30%, transparent) 0%,
        transparent 68%
    );
    filter: blur(26px);
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
:root[data-theme="light"] .rotator::before {
    opacity: 0.3;
}

/* Drop the underline rule — the concept has a bloom, not a rule */
.rotator::after {
    display: none;
}

/* Scroll cue, from the concept */
.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}
.scroll-cue:hover {
    color: var(--text);
}
.scroll-cue .arr {
    display: inline-block;
    animation: bob 1.9s ease-in-out infinite;
}
@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-cue .arr {
        animation: none;
    }
}

/* =========================================================================
   LOGO MARQUEE — social proof band
   ========================================================================= */
.logos {
    position: relative;
    z-index: 2;
    padding-block: clamp(38px, 4.5vw, 62px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.logos-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 30px;
}
/* AxonIQ-style band: a quiet supporting line beside the scroll, not above it. */
.logos-row {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 760px) {
    .logos-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.logos-lead {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-dim);
    max-width: 24ch;
}
.logo-marquee {
    display: flex;
    overflow: hidden;
    min-width: 0;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}
.logo-track {
    display: flex;
    align-items: center;
    gap: clamp(38px, 5vw, 76px);
    padding-right: clamp(38px, 5vw, 76px);
    flex: none;
    animation: logoslide 56s linear infinite;
}
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
    .logo-marquee {
        overflow-x: auto;
    }
}
@keyframes logoslide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.logo-item {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 650;
    letter-spacing: -0.018em;
    color: var(--text-dim);
    opacity: 0.62;
    white-space: nowrap;
    transition:
        opacity 0.25s ease,
        color 0.25s ease;
}
.logo-item:hover {
    opacity: 1;
    color: var(--text);
}
.logo-item .mk {
    width: 22px;
    height: 22px;
    flex: none;
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
}

/* =========================================================================
   FOUNDER QUOTE — the human moment
   ========================================================================= */
.founder-quote {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding-block: clamp(56px, 7vw, 100px);
    border-top: 1px solid var(--line);
}
@media (max-width: 860px) {
    .founder-quote {
        grid-template-columns: 1fr;
    }
}
.fq-who {
    display: flex;
    align-items: center;
    gap: 18px;
}
.fq-portrait {
    width: 76px;
    height: 76px;
    flex: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 27px;
    color: #fff;
    background: linear-gradient(
        140deg,
        var(--violet),
        color-mix(in srgb, var(--teal) 55%, var(--violet))
    );
    box-shadow: 0 0 44px -8px color-mix(in srgb, var(--violet) 60%, transparent);
}
.fq-who strong {
    display: block;
    font-size: 16.5px;
    font-weight: 650;
    letter-spacing: -0.012em;
}
.fq-who span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.fq-body blockquote {
    font-size: clamp(20px, 2.3vw, 31px);
    line-height: 1.32;
    letter-spacing: -0.019em;
    font-weight: 400;
    color: var(--text);
    max-width: 30ch;
}
.fq-body blockquote em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--violet-light);
}
:root[data-theme="light"] .fq-body blockquote em {
    color: var(--violet);
}

/* =========================================================================
   HOW WE HELP — the offer, made human
   ========================================================================= */
.help {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (max-width: 800px) {
    .help {
        grid-template-columns: 1fr;
    }
}
.help-item {
    background: var(--panel);
    padding: 30px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background 0.22s ease;
}
.help-item:hover {
    background: var(--panel-hi);
}
.help-item .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex: none;
    margin-top: 8px;
}
.help-item h3 {
    font-size: 17px;
    margin-bottom: 7px;
    letter-spacing: -0.012em;
}
.help-item p {
    font-size: 14.4px;
    line-height: 1.6;
    color: var(--text-dim);
}
.d-violet {
    background: var(--violet);
    box-shadow: 0 0 14px 2px color-mix(in srgb, var(--violet) 60%, transparent);
}
.d-teal {
    background: var(--teal);
    box-shadow: 0 0 14px 2px color-mix(in srgb, var(--teal) 55%, transparent);
}
.d-amber {
    background: var(--amber);
    box-shadow: 0 0 14px 2px color-mix(in srgb, var(--amber) 55%, transparent);
}
.d-lime {
    background: var(--lime);
    box-shadow: 0 0 14px 2px color-mix(in srgb, var(--lime) 50%, transparent);
}
