/* ============================================================
   FLOW — operator-led growth firm · shared stylesheet
   One file for every page. Edit here once; applies everywhere.
   Palette: cool paper / graphite ink / electric cobalt / amber signal
   Type:    Bricolage Grotesque (display) · Inter (body) · JetBrains Mono (data)
   ============================================================ */

:root {
    --bg:          #F5F6F8;
    --surface:     #FFFFFF;
    --ink:         #14161C;
    --ink-soft:    #383B45;
    --muted:       #6A6E78;
    --line:        #E4E7EC;
    --line-strong: #D4D8DF;

    --accent:      #2348FF;
    --accent-press:#1736D1;
    --accent-tint: #EBEEFF;
    --accent-glow: rgba(35,72,255,.7);
    --accent-glow-strong: rgba(35,72,255,.8);
    --signal:      #FFB020;

    --ink-bg:      #101218;
    --ink-bg-2:    #181B23;
    --on-ink:      #ECEEF3;
    --on-ink-soft: #B9BCC6;
    --on-ink-muted:#80848F;

    --radius:    18px;
    --radius-sm: 12px;
    --radius-lg: 26px;
    --maxw:      1180px;

    --shadow:      0 1px 2px rgba(20,22,28,.04), 0 10px 30px -16px rgba(20,22,28,.16);
    --shadow-lift: 0 2px 6px rgba(20,22,28,.06), 0 28px 50px -24px rgba(35,72,255,.30);

    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, monospace;

    --header-bg:          rgba(245,246,248,.72);
    --header-bg-scrolled: rgba(245,246,248,.9);
    --mobile-nav-bg:      rgba(245,246,248,.98);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg:          #15171D;
        --surface:     #1D2028;
        --ink:         #F1F2F6;
        --ink-soft:    #C6C9D2;
        --muted:       #8A8F9C;
        --line:        #2C303A;
        --line-strong: #3A3F4B;

        --accent:      #5B7FFF;
        --accent-press:#7C9AFF;
        --accent-tint: rgba(91,127,255,.16);
        --accent-glow: rgba(91,127,255,.55);
        --accent-glow-strong: rgba(91,127,255,.65);
        --signal:      #FFB020;

        --ink-bg:      #0B0C10;
        --ink-bg-2:    #131519;
        --on-ink:      #ECEEF3;
        --on-ink-soft: #B9BCC6;
        --on-ink-muted:#80848F;

        --shadow:      0 1px 0 rgba(255,255,255,.03) inset, 0 10px 30px -16px rgba(0,0,0,.65);
        --shadow-lift: 0 1px 0 rgba(255,255,255,.04) inset, 0 28px 50px -24px rgba(91,127,255,.35);

        --header-bg:          rgba(21,23,29,.72);
        --header-bg-scrolled: rgba(21,23,29,.9);
        --mobile-nav-bg:      rgba(21,23,29,.98);
    }
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink-soft);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 1.0625rem;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.04;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* ---------- shared utilities ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--accent);
    display: inline-block;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-head { max-width: 680px; margin-bottom: 3.25rem; }
.section-head h2 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    margin: 1rem 0 1rem;
}
.section-head p { font-size: 1.15rem; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px -12px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-2px); box-shadow: 0 14px 30px -12px var(--accent-glow-strong); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- status pill ---------- */
.status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.status .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #18B368;
    box-shadow: 0 0 0 0 rgba(24,179,104,.5);
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(24,179,104,.45); }
    70%  { box-shadow: 0 0 0 7px rgba(24,179,104,0); }
    100% { box-shadow: 0 0 0 0 rgba(24,179,104,0); }
}

/* ---------- header / nav ---------- */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
}
header.scrolled { border-bottom-color: var(--line); background: var(--header-bg-scrolled); }

nav {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0; margin: -0.5rem 0; }
.logo-mark { width: 30px; height: 30px; display: block; }
.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.98rem;
    transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-pill {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--surface);
}
.nav-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #18B368; }
.cta-nav { background: var(--ink); color: #fff; padding: 0.6rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; transition: transform .18s ease, background .18s ease; }
.cta-nav:hover { transform: translateY(-2px); background: var(--accent); }

.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0;
    background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* ---- hero ---- */
.hero { padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem,6vw,5rem); position: relative; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.7rem, 6.2vw, 4.7rem);
    font-weight: 800;
    margin: 1.4rem 0 1.5rem;
}
.hero h1 .mark {
    background-image: linear-gradient(transparent 58%, var(--signal) 58%, var(--signal) 90%, transparent 90%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 0.04em;
}
.hero p.lead {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 34em;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }

/* trajectory signature */
.hero-visual { width: 100%; }
.trajectory { width: 100%; height: auto; display: block; }
.trajectory .grid-line { stroke: var(--line); stroke-width: 1; }
.trajectory .curve {
    fill: none;
    stroke: var(--accent);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw 2.1s cubic-bezier(.6,.05,.2,1) .3s forwards;
}
.trajectory .area { fill: url(#fade); opacity: 0; animation: fadeArea 1.2s ease 1.6s forwards; }
.trajectory .node { opacity: 0; animation: pop .5s ease forwards; }
.trajectory .node.n1 { animation-delay: 0.9s; }
.trajectory .node.n2 { animation-delay: 1.4s; }
.trajectory .node.n3 { animation-delay: 1.9s; }
.trajectory .node-dot { fill: var(--surface); stroke: var(--accent); stroke-width: 3; }
.trajectory .node-turn .node-dot { fill: var(--signal); stroke: var(--signal); }
.trajectory .ghost { fill: none; stroke: var(--muted); stroke-width: 2; stroke-dasharray: 4 6; opacity: 0; animation: fadeGhost 1s ease 1.9s forwards; }
@keyframes fadeGhost { to { opacity: .45; } }
.trajectory .lbl { font-family: var(--font-mono); font-size: 11px; fill: var(--muted); }
.trajectory .lbl-strong { fill: var(--ink); font-size: 12px; }
@keyframes draw    { to { stroke-dashoffset: 0; } }
@keyframes fadeArea{ to { opacity: 1; } }
@keyframes pop     { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ---- context chips band ---- */
.context { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.context .wrap { padding-top: 2.2rem; padding-bottom: 2.2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; }
.context .label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-right: 0.4rem; }
.chip {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--ink-soft);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.42rem 0.85rem;
    background: var(--surface);
}

/* ---- capabilities ---- */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.cap {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 1.7rem;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; }
.cap .tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; }
.cap h3 { font-size: 1.4rem; margin-bottom: 0.55rem; }
.cap p { color: var(--muted); font-size: 1rem; margin-bottom: 1.2rem; flex: 1; }
.cap .more { font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.cap .more .arrow { transition: transform .2s ease; }
.cap:hover .more .arrow { transform: translateX(4px); }

/* ---- principles (dark) ---- */
.section--dark { background: var(--ink-bg); color: var(--on-ink); }
.section--dark h2, .section--dark h3 { color: var(--on-ink); }
.section--dark .eyebrow { color: #8FA2FF; }
.section--dark .eyebrow::before { background: #8FA2FF; }
.section--dark .section-head p { color: var(--on-ink-soft); }

.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; }
.principle { background: var(--ink-bg); padding: 2rem; transition: background .25s ease; }
.principle:hover { background: var(--ink-bg-2); }
.principle .num { font-family: var(--font-mono); font-size: 0.78rem; color: #8FA2FF; }
.principle h3 { font-size: 1.45rem; margin: 0.9rem 0 0.6rem; }
.principle p { color: var(--on-ink-soft); font-size: 1rem; }

/* ---- about / firm ---- */
.about-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 3.5rem; align-items: start; }
.about-body p { margin-bottom: 1.25rem; color: var(--ink-soft); font-size: 1.12rem; }
.about-body p strong { color: var(--ink); font-weight: 650; }
.about-card {
    position: sticky; top: 100px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.9rem;
    box-shadow: var(--shadow);
}
.about-card h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; font-weight: 500; }
.about-card .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-top: 1px solid var(--line); font-size: 0.98rem; }
.about-card .row:first-of-type { border-top: none; }
.about-card .row .k { color: var(--muted); }
.about-card .row .v { color: var(--ink); font-weight: 600; text-align: right; }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-intro h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1.2rem; }
.contact-intro p { font-size: 1.15rem; color: var(--muted); margin-bottom: 1.5rem; }
.contact-direct { font-family: var(--font-mono); font-size: 0.95rem; color: var(--ink-soft); }
.contact-direct a { font-weight: 600; }

form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 0.8rem 0.9rem;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-tint);
}

/* ---- footer ---- */
footer { border-top: 1px solid var(--line); padding: 3rem 0 2.5rem; }
.footer-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.footer-grid .tagline { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); }
.footer-grid .copy { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   SERVICE SUBPAGES
   ============================================================ */
body.service-page main { padding-top: 84px; }

.page-container { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }

.service-hero { padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem; text-align: left; }
.service-hero-content { max-width: 760px; }
.service-icon-large {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    font-size: 1.7rem;
    background: var(--accent-tint);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 1.6rem;
}
.service-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800; margin-bottom: 1rem; }
.service-hero .highlight { color: var(--accent); }
.service-hero .subtitle { font-family: var(--font-mono); font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem; letter-spacing: 0.01em; }
.service-hero .description { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.service-hero .gentle-pulse { color: var(--accent); font-weight: 600; }

.content-section { padding: 2.6rem 0; border-top: 1px solid var(--line); }
.content-section:first-of-type { border-top: none; }
.content-section h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1.4rem; }
.content-section h3 { font-size: 1.4rem; color: var(--accent); margin-bottom: 1rem; }
.content-section p { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 1.1rem; }

.content-list { list-style: none; display: grid; gap: 0.7rem; }
.content-list li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    color: var(--ink-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}
.content-list li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.content-list li strong { color: var(--ink); font-weight: 650; }

.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.approach-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.approach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; }
.approach-card h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: 0.7rem; }
.approach-card ul { list-style: none; }
.approach-card li { color: var(--muted); font-size: 1rem; padding-left: 1.3rem; position: relative; }
.approach-card li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

.cta-section {
    background: var(--ink-bg);
    color: var(--on-ink);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin: 3.5rem 0 4.5rem;
}
.cta-section h3 { color: var(--on-ink); font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 0.8rem; }
.cta-section p { color: var(--on-ink-soft); margin-bottom: 1.8rem; font-size: 1.1rem; }
.cta-section .btn-primary { background: var(--accent); }

/* ---- leadership / founder ---- */
.leadership-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 3.5rem; align-items: start; }
.portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--accent-tint), var(--surface) 70%);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
}
.portrait .ph { text-align: center; font-family: var(--font-mono); color: var(--muted); font-size: 0.78rem; line-height: 1.5; padding: 1.2rem; }
.portrait .ph strong { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0.5rem; }
.portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.leadership-body .role { font-family: var(--font-mono); color: var(--accent); font-size: 0.95rem; margin: 0.4rem 0 1.5rem; }
.leadership-body > p { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.leadership-body .personal { color: var(--muted); font-size: 1rem; }
.cred { list-style: none; display: grid; gap: 0.65rem; margin: 0.4rem 0 1.6rem; }
.cred li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); }
.cred li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { order: -1; max-width: 480px; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-card { position: static; }
    .leadership-grid { grid-template-columns: 1fr; gap: 2rem; }
    .portrait { max-width: 320px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
    .cap-grid, .principles, .approach-grid { grid-template-columns: 1fr; }
    .nav-pill { display: none; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: flex-start; gap: 0;
        background: var(--mobile-nav-bg);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        padding: 0 1.5rem;
        max-height: 0; overflow: hidden; opacity: 0;
        transition: max-height .35s ease, opacity .35s ease, padding .35s ease;
    }
    .nav-links.open { max-height: 320px; opacity: 1; padding: 0.5rem 1.5rem 1rem; }
    .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links li a { display: block; width: 100%; padding: 0.85rem 0; }
    form { grid-template-columns: 1fr; }
}

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

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .trajectory .curve { stroke-dashoffset: 0; }
    .trajectory .area, .trajectory .node { opacity: 1; }
    .trajectory .ghost { opacity: .45; }
    .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- legal / privacy page ---- */
.prose-list { list-style: disc; padding-left: 1.4rem; display: grid; gap: 0.5rem; margin-bottom: 1.1rem; }
.prose-list li { font-size: 1.05rem; color: var(--ink-soft); }
.legal-meta { font-family: var(--font-mono); font-size: 0.92rem; color: var(--muted); line-height: 1.9; }
.footer-priv { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
