  /* ------------------------------------------------------------------ */
  /*  Jerico — instrument graphite.                                      */
  /*                                                                     */
  /*  Design rule for this page: COLOR IS NEVER DECORATION.              */
  /*  The canvas is achromatic (neutral graphite + warm paper white) so  */
  /*  that the only chromatic marks on the page are the ones that carry  */
  /*  meaning in the product itself:                                     */
  /*    planner / developer / reviewer  → the role of a todo             */
  /*    --live                          → running, connected, succeeded  */
  /*    --hold                          → a gate waiting on a human      */
  /*  There is deliberately no "brand accent". The primary action is the */
  /*  brightest thing on the page, not the most saturated.               */
  /*                                                                     */
  /*  Type is one variable family (Archivo) plus one mono (IBM Plex).    */
  /*  Emphasis inside headlines is a WEIGHT drop at expanded width, not  */
  /*  a serif italic and not a colour swap.                              */
  /* ------------------------------------------------------------------ */
  :root {
    --bg:          #0b0b0b;
    --bg-2:        #121212;
    --bg-3:        #1a1a19;
    --bg-card:     #0f0f0f;
    --ink:         #f2f0ec;            /* warm paper white on neutral graphite */
    --ink-2:       #a5a19a;
    --ink-3:       #8e8a83;            /* WCAG AA on --bg (5.7:1) — verified */
    --ink-ghost:   #5b5852;            /* decorative only: ticks, separators, counters */
    --rule:        #232322;
    --rule-2:      #34342f;

    /* semantic colour — these encode data, they are not accents */
    --planner:     #7aa2ff;
    --developer:   #b6e85f;
    --reviewer:    #ff7e9c;
    --live:        #6fdca0;            /* running / connected / done */
    --hold:        #ffb547;            /* gate: awaiting a human decision */
    --success:     var(--live);

    --display: "Archivo", "Helvetica Neue", system-ui, -apple-system, sans-serif;
    --sans:    "Archivo", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    --container: 1240px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --rail: 9rem;                      /* left ledger column, ≥1100px only */
    --ease: cubic-bezier(.2,.7,.2,1);
    --ease-press: cubic-bezier(.4,.1,.2,1);

    --shadow-lift:  0 30px 80px -50px rgba(0,0,0,.8);
    --shadow-panel: 0 1px 0 rgba(255,255,255,.035) inset, 0 40px 90px -50px rgba(0,0,0,.9);
  }

  *,*::before,*::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: auto; min-height: 100%; }
  html body {
    margin: 0;
    height: auto;
    min-height: 100%;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: clamp(1rem, 1.05vw, 1.0625rem);
    line-height: 1.58;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  ::selection { background: var(--ink); color: var(--bg); }

  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

  img, svg { display: block; max-width: 100%; }

  .mono { font-family: var(--mono); }

  /* headline emphasis: same family, same expanded width, dropped weight.
     Light-inside-heavy — no serif italic, no colour swap. */
  em.lo {
    font-style: normal;
    font-weight: 300;
    font-stretch: 125%;
    letter-spacing: -.005em;
  }

  /* skip-to-content link — keyboard accessibility */
  .skip {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 100;
    padding: .6rem .9rem;
    background: var(--ink);
    color: var(--bg);
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: top .15s var(--ease);
  }
  .skip:focus { top: .8rem; }

  .footnote-mono {
    font-family: var(--mono);
    font-size: .76rem;
    color: var(--ink-3);
    letter-spacing: .04em;
    margin-top: 1.2rem;
    max-width: 62ch;
  }
  .footnote-mono.lead-in { margin-top: 1.4rem; }

  /* ------------------------------------------------------------------ */
  /*  layout                                                             */
  /* ------------------------------------------------------------------ */
  .wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
  }
  /* the ledger owns the left gutter from 1100px up, so the content column
     sits deliberately off-centre rather than dead-centre. */
  @media (min-width: 1100px) {
    .wrap { padding-left: calc(var(--gutter) + var(--rail)); }
  }

  section { position: relative; padding: clamp(4rem, 8vw, 6.75rem) 0; }
  /* section divider fades out at both ends — a seam, not a table border */
  section + section::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--rule) 14%, var(--rule) 86%, transparent);
  }

  .sec-title {
    font-family: var(--display);
    font-weight: 700;
    font-stretch: 118%;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.04;
    letter-spacing: -.028em;
    margin: 0 0 1.3rem;
    max-width: 20ch;
    color: var(--ink);
    text-wrap: balance;
  }
  .sec-lede {
    max-width: 60ch;
    color: var(--ink-2);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    margin: 0 0 2.4rem;
    text-wrap: pretty;
  }

  /* ------------------------------------------------------------------ */
  /*  left ledger — the page's section index, rendered as a run track    */
  /* ------------------------------------------------------------------ */
  .ledger { display: none; }
  @media (min-width: 1100px) {
    .ledger {
      display: flex;
      flex-direction: column;
      position: fixed;
      z-index: 40;
      top: 50%;
      transform: translateY(-50%);
      left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
      width: calc(var(--rail) - 2.2rem);   /* keeps a real gutter between ledger and copy */
      max-height: calc(100dvh - 5rem);
      overflow: hidden;
    }
  }
  .led-item {
    display: grid;
    grid-template-columns: 1.5rem 1fr;
    align-items: center;
    gap: .1rem;
    padding: .3rem 0;
    font-family: var(--mono);
    font-size: .615rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-ghost);
    transition: color .2s var(--ease);
  }
  .led-num { color: inherit; opacity: .8; }
  .led-name { position: relative; padding-left: 1rem; white-space: nowrap; }
  .led-name::before {
    content: "";
    position: absolute; left: 0; top: 50%;
    width: .5rem; height: 1px;
    background: currentColor;
    transition: width .22s var(--ease), height .22s var(--ease);
  }
  .ledger a:hover { color: var(--ink-2); }
  .led-item[aria-current="true"] { color: var(--ink); }
  .led-item[aria-current="true"] .led-name::before { width: .95rem; height: 2px; }
  .ledger a:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

  /* ------------------------------------------------------------------ */
  /*  top bar                                                            */
  /* ------------------------------------------------------------------ */
  header.top {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(11,11,11,.74);
    border-bottom: 1px solid var(--rule);
  }
  .top-row {
    display: flex; align-items: center; gap: 1.5rem;
    height: 58px;
  }
  .brand {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--display);
    font-weight: 700;
    font-stretch: 125%;
    letter-spacing: .14em;
    font-size: .84rem;
    color: var(--ink);
  }
  .brand svg { width: 17px; height: 17px; }
  nav.main {
    margin-left: auto;
    display: flex; align-items: center; gap: .7rem;
  }
  .gh-link {
    display: inline-flex; align-items: center; gap: .45rem;
    white-space: nowrap;
    padding: .4rem .68rem;
    border: 1px solid var(--rule-2);
    border-radius: 2px;
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-2);
    transition: border-color .18s var(--ease), color .18s var(--ease), transform .12s var(--ease-press);
  }
  .gh-link:hover { border-color: var(--ink-3); color: var(--ink); }
  .gh-link:active { transform: scale(.97); }
  .gh-link svg { width: 13px; height: 13px; }
  .gh-link #relChip:empty { display: none; }

  @media (max-width: 560px) {
    nav.main a.gh-link:not(:last-child) { display: none; }
  }

  /* ------------------------------------------------------------------ */
  /*  hero                                                              */
  /* ------------------------------------------------------------------ */
  .hero {
    min-height: calc(100dvh - 58px);
    isolation: isolate;
    display: grid;
    align-items: center;
    padding-top: clamp(2rem, 5vw, 3.25rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
  }
  /* vertical lanes, not graph paper — the page opens on the same column
     rhythm the console uses for panels, then lets go. */
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      90deg, rgba(255,255,255,.032) 0 1px, transparent 1px 104px);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 88%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 88%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
  .micro-sep { display: none; }

  .hero-kicker {
    display: flex; align-items: baseline; gap: .6rem;
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--ink-3);
    text-transform: uppercase;
    margin: 0 0 1.3rem;
    max-width: 46ch;
    line-height: 1.5;
  }
  .hero-kicker::before {
    content: "";
    flex: none;
    width: 1.4rem; height: 1px;
    background: var(--ink-ghost);
    transform: translateY(-.28em);
  }

  h1.hero-title {
    font-family: var(--display);
    font-weight: 700;
    font-stretch: 118%;
    font-size: clamp(2.15rem, 5vw, 3.85rem);
    line-height: .99;
    letter-spacing: -.035em;
    margin: 0 0 1.35rem;
    color: var(--ink);
    text-wrap: balance;
  }
  .hero-sub {
    color: var(--ink-2);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.62;
    max-width: 54ch;
    margin: 0 0 1.9rem;
    text-wrap: pretty;
  }
  .hero-sub b { color: var(--ink); font-weight: 600; }

  .cta-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
    margin-bottom: .8rem;
  }
  .btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--mono);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .82rem 1.15rem;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: background .18s var(--ease), border-color .18s var(--ease),
                color .18s var(--ease), box-shadow .18s var(--ease),
                transform .12s var(--ease-press);
    white-space: nowrap;
  }
  /* the primary action is the brightest thing on the page, not the most
     saturated — luminance is the accent here. */
  .btn-primary {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .btn-primary:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 8px 30px -14px rgba(255,255,255,.5);
  }
  .btn-primary:active { transform: scale(.97); background: var(--ink); }
  .btn-ghost,
  .btn-mac {
    border-color: var(--rule-2);
    color: var(--ink);
    background: transparent;
  }
  .btn-ghost:hover,
  .btn-mac:hover { border-color: var(--ink-3); background: var(--bg-2); }
  .btn-ghost:active,
  .btn-mac:active { transform: scale(.97); }
  .btn-mac .apple-glyph { margin-top: -2px; }
  .btn-mac .caret { margin-left: .15rem; margin-right: -.2rem; opacity: .6; transition: transform .18s var(--ease); }
  #dlMacBtn[aria-expanded="true"] .caret { transform: rotate(180deg); }

  /* Apple Chip / Intel picker menu */
  .mac-dl { position: relative; display: inline-flex; }
  .mac-menu {
    position: absolute; top: calc(100% + .4rem); left: 0; z-index: 30;
    min-width: 100%; width: max-content; max-width: min(20rem, calc(100vw - 2.5rem));
    display: flex; flex-direction: column; gap: .1rem;
    padding: .3rem;
    background: var(--bg-2);
    border: 1px solid var(--rule-2);
    border-radius: 3px;
    box-shadow: 0 22px 50px -18px rgba(0,0,0,.85);
  }
  .mac-menu[hidden] { display: none; }
  .mac-opt {
    display: flex; flex-direction: column; gap: .12rem;
    padding: .55rem .7rem; border-radius: 2px;
    text-decoration: none; color: var(--ink);
    transition: background .15s var(--ease);
  }
  .mac-opt:hover, .mac-opt:focus-visible { background: var(--bg-3); outline: none; }
  .mac-opt-name {
    font-family: var(--mono); font-size: .78rem; font-weight: 500;
    letter-spacing: .05em; text-transform: uppercase;
  }
  .mac-opt-sub { font-family: var(--mono); font-size: .64rem; letter-spacing: .04em; color: var(--ink-3); }
  .btn-text {
    color: var(--ink-2);
    padding: .82rem .4rem;
  }
  .btn-text:hover { color: var(--ink); }
  .btn-text:active { transform: scale(.97); }
  .btn-text .arr { transition: transform .18s var(--ease); display: inline-block; }
  .btn-text:hover .arr { transform: translateX(3px); }

  .dl-meta {
    margin: .15rem 0 1.35rem;
    padding-left: .15rem;
    display: flex; align-items: center; gap: .15rem .45rem;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .07em;
    color: var(--ink-3);
  }
  .dl-meta .dl-sep { color: var(--ink-ghost); }
  .dl-meta a {
    color: var(--ink-2);
    text-decoration: underline;
    text-decoration-color: var(--rule-2);
    text-underline-offset: 2px;
    border-radius: 2px;
    transition: color .18s var(--ease), text-decoration-color .18s var(--ease),
                transform .12s var(--ease-press);
  }
  .dl-meta a:hover { color: var(--ink); text-decoration-color: var(--ink-3); }
  .dl-meta a:active { transform: scale(.97); }

  .btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
    border-radius: 2px;
  }

  .setup-path { margin: .85rem 0 0; font-size: .86rem; color: var(--ink-3); max-width: 54ch; }
  .setup-path a {
    color: var(--ink);
    border-bottom: 1px solid var(--rule-2);
    transition: border-color .18s var(--ease);
  }
  .setup-path a:hover { border-color: var(--ink); }

  .hero-proof {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: .35rem 1.4rem; margin-top: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--rule);
    font-family: var(--mono); font-size: .63rem; letter-spacing: .11em;
    text-transform: uppercase; color: var(--ink-3);
    max-width: 60ch;
  }
  .hero-proof a { color: var(--ink-2); transition: color .18s var(--ease); }
  .hero-proof a:hover { color: var(--ink); }

  /* staged page-load: text settles, then the capture arrives */
  @keyframes rise { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
  .hero-text > * { animation: rise .55s var(--ease) both; }
  .hero-text > *:nth-child(1) { animation-delay: .02s; }
  .hero-text > *:nth-child(2) { animation-delay: .08s; }
  .hero-text > *:nth-child(3) { animation-delay: .14s; }
  .hero-text > *:nth-child(4) { animation-delay: .2s; }
  .hero-text > *:nth-child(n+5) { animation-delay: .26s; }
  .dag-panel { animation: rise .65s var(--ease) .2s both; }

  /* ------------------------------------------------------------------ */
  /*  hero capture panel                                                */
  /* ------------------------------------------------------------------ */
  .dag-panel {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--rule-2);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: var(--shadow-panel);
  }
  .dag-chrome {
    display: flex; align-items: center; gap: .8rem;
    padding: .58rem .85rem;
    border-bottom: 1px solid var(--rule);
    background: rgba(0,0,0,.3);
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .13em;
    color: var(--ink-2);
    text-transform: uppercase;
  }
  .dag-chrome .spacer { flex: 1; }
  .dag-chrome .meta { color: var(--ink-3); }

  .hero-video-stage {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .hero-video-stage video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-video-chip {
    position: absolute;
    top: .7rem; left: .7rem;
    display: inline-flex; align-items: center; gap: .42rem;
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(11,11,11,.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: .3rem .55rem;
    border-radius: 2px;
    border: 1px solid var(--rule-2);
    z-index: 2;
  }
  /* green square = live/running, the same signal the console uses */
  .hero-video-chip::before {
    content: ""; width: 5px; height: 5px;
    background: var(--live);
  }

  /* phase strip */
  .dag-strip {
    display: flex; align-items: center; gap: .7rem;
    padding: .55rem .85rem;
    border-top: 1px solid var(--rule);
    background: rgba(0,0,0,.34);
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .13em;
    color: var(--ink-2);
    text-transform: uppercase;
  }
  .dag-strip .phase-label { color: var(--ink-3); }
  .dag-strip .phase-value { color: var(--ink); }
  @media (min-width: 721px) { .dag-strip .phase-value { display: none; } }
  /* the approval phase is the one that waits on a human — it wears --hold */
  .dag-strip[data-phase="approve"] .phase-value { color: var(--hold); }
  .phase-track {
    display: inline-flex;
    flex: 1;
    gap: .8rem;
    margin-left: .35rem;
    padding-left: .85rem;
    border-left: 1px solid var(--rule-2);
    font-family: var(--mono);
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    flex-wrap: wrap;
  }
  .phase-track span {
    color: var(--ink-ghost);
    transition: color .35s var(--ease);
    white-space: nowrap;
  }
  .phase-track span::before { content: "·"; margin-right: .35rem; color: var(--ink-ghost); }
  .phase-track span:first-child::before { content: ""; margin-right: 0; }
  .phase-track span.done { color: var(--ink-3); }
  .phase-track span.cur { color: var(--ink); }
  .phase-track span[data-phase="approve"].cur { color: var(--hold); }
  @media (max-width: 720px) { .phase-track { display: none; } }

  /* ------------------------------------------------------------------ */
  /*  beats (how it works) — a staggered lane, not four equal cards      */
  /* ------------------------------------------------------------------ */
  .beats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: clamp(2rem, 5vw, 4.5rem);
    row-gap: 0;
  }
  .beat {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    align-items: start;
    padding: 1.9rem 0 2.1rem;
    border-top: 1px solid var(--rule);
  }
  @media (min-width: 721px) {
    /* break the symmetry: the right lane runs one beat-height behind */
    .beat:nth-child(2) { margin-top: 3.5rem; }
  }
  @media (max-width: 720px) {
    .beats { grid-template-columns: 1fr; }
  }
  .beat-num {
    font-family: var(--display);
    font-weight: 700;
    font-stretch: 125%;
    font-size: 1.9rem;
    line-height: .85;
    letter-spacing: -.04em;
    color: var(--ink-ghost);
    padding-top: .1rem;
  }
  /* beat 03 is the approval gate — the only beat that waits on you */
  .beats .beat:nth-child(3) .beat-num { color: var(--hold); }
  .beat-tag {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .22em;
    color: var(--ink-3);
    text-transform: uppercase;
    margin: 0 0 .5rem;
  }
  .beat h3 {
    font-family: var(--display);
    font-weight: 600;
    font-stretch: 110%;
    font-size: 1.14rem;
    line-height: 1.28;
    margin: 0 0 .55rem;
    letter-spacing: -.015em;
    color: var(--ink);
    text-wrap: balance;
  }
  .beat p {
    margin: 0;
    color: var(--ink-2);
    font-size: .95rem;
    line-height: 1.62;
    max-width: 46ch;
    text-wrap: pretty;
  }
  .beat code,
  .f-desc code,
  .sec-lede code,
  .gate-sequence code,
  .faq-item code,
  .trust-cell code {
    font-family: var(--mono);
    font-size: .86em;
    color: var(--ink);
    background: var(--bg-3);
    padding: .08rem .32rem;
    border-radius: 2px;
  }

  /* ------------------------------------------------------------------ */
  /*  feature captures — the video IS the card; caption sits outside     */
  /* ------------------------------------------------------------------ */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.2rem, 2.2vw, 1.8rem);
    margin-top: .5rem;
  }
  .f-tile {
    grid-column: span 12;
    background: none;
    border: 0;
    border-radius: 0;
    display: flex; flex-direction: column;
    position: relative;
  }
  @media (min-width: 760px) { .f-tile { grid-column: span 6; } }
  @media (min-width: 1024px) {
    .f-tile.wide   { grid-column: span 7; }
    .f-tile.narrow { grid-column: span 5; }
    .f-tile.half   { grid-column: span 6; }
  }
  .f-video-wrap {
    position: relative;
    border: 1px solid var(--rule);
    border-radius: 2px;
    overflow: hidden;
    background: #000;
    height: clamp(190px, 21vw, 320px);
    transition: border-color .2s var(--ease);
  }
  .f-tile:hover .f-video-wrap { border-color: var(--rule-2); }
  .f-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .f-chip {
    position: absolute;
    top: .6rem; left: .6rem;
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .26rem .5rem;
    background: rgba(11,11,11,.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--rule-2);
    border-radius: 2px;
    font-family: var(--mono);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
    z-index: 2;
  }
  .f-chip::before { content: ""; width: 5px; height: 5px; background: var(--live); }
  .f-index {
    position: absolute;
    top: .62rem; right: .62rem;
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .14em;
    color: var(--ink-3);
    background: rgba(11,11,11,.62);
    padding: .2rem .38rem;
    border-radius: 2px;
    z-index: 2;
  }
  .f-body { padding: .85rem 0 0; }
  .f-title {
    font-family: var(--display);
    font-weight: 600;
    font-stretch: 112%;
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0 0 .38rem;
    letter-spacing: -.018em;
    color: var(--ink);
    text-wrap: balance;
  }
  .f-desc {
    margin: 0;
    color: var(--ink-2);
    font-size: .9rem;
    line-height: 1.58;
    max-width: 50ch;
    text-wrap: pretty;
  }

  /* ------------------------------------------------------------------ */
  /*  comparison — hairline rows                                         */
  /* ------------------------------------------------------------------ */
  .cmp-table {
    display: grid;
    grid-template-columns: minmax(0,1.55fr) minmax(0,.85fr) minmax(0,.85fr);
    margin-top: 2rem;
    border: 0;
    border-radius: 0;
  }
  .cmp-table > div { display: contents; }
  .cmp-table > div > span {
    padding: .74rem 1rem .74rem 0;
    border-bottom: 1px solid var(--rule);
    color: var(--ink-2);
    font-size: .9rem;
  }
  .cmp-table .c-head {
    font-family: var(--mono); font-size: .61rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--ink-3);
    background: none;
    border-bottom: 1px solid var(--rule-2);
    padding-bottom: .55rem;
  }
  .cmp-table .c-cap { color: var(--ink); }
  .cmp-table .c-yes { color: var(--live); font-weight: 500; }
  .cmp-table .c-no  { color: var(--ink-3); }
  @media (max-width: 640px) {
    .cmp-table { grid-template-columns: 1fr; margin-top: 1.6rem; border-top: 1px solid var(--rule); }
    .cmp-table > div:first-child { display: none; }          /* column heads become inline labels */
    .cmp-table > div { display: block; padding: .8rem 0; border-bottom: 1px solid var(--rule); }
    .cmp-table > div > span { display: block; padding: 0; border: 0; }
    .cmp-table .c-cap { font-size: .92rem; margin-bottom: .4rem; }
    .cmp-table .c-yes, .cmp-table .c-no {
      font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; line-height: 1.7;
    }
    /* label by position, not by class — the last two rows are "yes" on BOTH sides */
    .cmp-table > div > span:nth-child(2)::before { content: "Jerico · "; color: var(--ink-3); }
    .cmp-table > div > span:nth-child(3)::before { content: "By hand · "; color: var(--ink-3); }
  }
  .cmp-caption {
    margin-top: .9rem;
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--ink-3);
    letter-spacing: .04em;
    max-width: 68ch;
  }

  /* ------------------------------------------------------------------ */
  /*  fleet                                                              */
  /* ------------------------------------------------------------------ */
  .fleet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
  }
  @media (max-width: 900px) { .fleet-grid { grid-template-columns: 1fr; } }

  .fleet-flow {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    counter-reset: stop;
    border-top: 1px solid var(--rule);
  }
  .fleet-flow li {
    position: relative;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
    padding: 1.05rem 0 1.05rem 2.5rem;
    display: grid;
    gap: .2rem;
  }
  .fleet-flow li::before {
    counter-increment: stop;
    content: counter(stop, decimal-leading-zero);
    position: absolute; left: 0; top: 1.2rem;
    font-family: var(--mono);
    font-size: .64rem;
    letter-spacing: .12em;
    color: var(--ink-ghost);
  }
  /* the chain that makes three stops read as one path */
  .fleet-flow li:not(:last-child)::after {
    content: "";
    position: absolute; left: .53rem; top: 2.15rem; bottom: -.3rem;
    width: 1px; background: var(--rule-2);
  }
  .fleet-flow strong { color: var(--ink); font-size: .95rem; font-weight: 600; }
  .fleet-flow span { color: var(--ink-2); font-size: .88rem; }

  /* ------------------------------------------------------------------ */
  /*  roles — three lanes, each flying its own colour                    */
  /* ------------------------------------------------------------------ */
  .roles {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0;
    background: none;
    border: 0;
    border-radius: 0;
  }
  @media (max-width: 780px) { .roles { grid-template-columns: 1fr; } }
  .role {
    background: none;
    border-top: 2px solid var(--rolecolor);
    padding: 1.2rem 1.6rem 0 0;
    position: relative;
  }
  @media (min-width: 781px) {
    .role + .role { padding-left: 1.7rem; border-left: 1px solid var(--rule); }
  }
  @media (max-width: 780px) {
    .role { padding: 1.2rem 0 1.8rem; }
  }
  .role-head {
    display: flex; align-items: center; gap: .55rem;
    margin-bottom: .85rem;
  }
  .role-dot {
    width: 6px; height: 6px;
    background: var(--rolecolor);
    box-shadow: none;
  }
  .role-name {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--rolecolor);
  }
  .role h3 {
    font-family: var(--display);
    font-weight: 600;
    font-stretch: 110%;
    font-size: 1.12rem;
    line-height: 1.3;
    letter-spacing: -.015em;
    margin: 0 0 .65rem;
    color: var(--ink);
    text-wrap: balance;
  }
  .role p {
    margin: 0;
    color: var(--ink-2);
    font-size: .92rem;
    line-height: 1.6;
  }
  .role[data-role="planner"]   { --rolecolor: var(--planner); }
  .role[data-role="developer"] { --rolecolor: var(--developer); }
  .role[data-role="reviewer"]  { --rolecolor: var(--reviewer); }

  /* ------------------------------------------------------------------ */
  /*  agents — a capability manifest, not eleven identical cards         */
  /* ------------------------------------------------------------------ */
  .agent-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 5vw, 4rem);
    row-gap: 0;
    border-top: 1px solid var(--rule);
  }
  @media (max-width: 680px) { .agent-list { grid-template-columns: 1fr; } }
  .agent-list li {
    background: none;
    border: 0;
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
    padding: .62rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 1rem;
  }
  .agent-list strong {
    font-family: var(--mono);
    font-size: .84rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: .01em;
  }
  .agent-list span {
    font-family: var(--mono);
    font-size: .64rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-3);
    text-align: right;
  }
  .agents-foot {
    margin-top: 1.3rem;
    font-family: var(--mono);
    font-size: .74rem;
    color: var(--ink-3);
    letter-spacing: .04em;
    max-width: 66ch;
  }

  /* ------------------------------------------------------------------ */
  /*  control / gates                                                    */
  /* ------------------------------------------------------------------ */
  .control-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
  }
  @media (max-width: 900px) { .control-grid { grid-template-columns: minmax(0, 1fr); } }

  .gate-sequence {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 1.15rem;
  }
  .gate-sequence li {
    background: none;
    border: 0;
    border-left: 2px solid var(--hold);
    border-radius: 0;
    padding: .1rem 0 .1rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
  }
  .gate-sequence strong {
    color: var(--hold);
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .gate-sequence span { color: var(--ink-2); font-size: .92rem; }

  .telemetry-facts {
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 3px;
    padding: 1.3rem 1.4rem;
    box-shadow: var(--shadow-lift);
  }
  .telemetry-facts h3 {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 0 0 1.1rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--rule);
  }
  .telemetry-facts dl { display: grid; gap: .85rem; margin: 0 0 1.1rem; }
  .telemetry-facts dt {
    font-family: var(--mono);
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: .18rem;
  }
  .telemetry-facts dd { margin: 0; font-size: .86rem; color: var(--ink-2); }
  .telemetry-facts p {
    margin: 0;
    font-family: var(--mono);
    font-size: .68rem;
    color: var(--ink-3);
    border-top: 1px solid var(--rule);
    padding-top: .75rem;
  }

  /* ------------------------------------------------------------------ */
  /*  open & yours                                                      */
  /* ------------------------------------------------------------------ */
  .open-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
  }
  @media (max-width: 860px) { .open-grid { grid-template-columns: 1fr; } }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: none;
    border: 0;
    border-top: 1px solid var(--rule);
    border-radius: 0;
    margin-top: 1.5rem;
  }
  @media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }
  .trust-cell {
    background: none;
    padding: 1.05rem 0 1.2rem;
    border-bottom: 1px solid var(--rule);
  }
  @media (min-width: 561px) {
    .trust-cell:nth-child(odd)  { border-right: 1px solid var(--rule); padding-right: 1.5rem; }
    .trust-cell:nth-child(even) { padding-left: 1.5rem; }
  }
  .trust-cell .t-label {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: .45rem;
  }
  .trust-cell .t-body { color: var(--ink-2); font-size: .88rem; line-height: 1.55; }

  /* connect-a-machine — the Mac app is the whole path, so this is a short
     numbered panel, not a terminal card. */
  .connect-panel {
    border: 1px solid var(--rule-2);
    border-radius: 3px;
    padding: 1.25rem 1.4rem 1.35rem;
    background: var(--bg-2);
    box-shadow: var(--shadow-lift);
  }
  .connect-head {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 0 0 .3rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--rule);
  }
  .connect-steps {
    list-style: none;
    display: flex; flex-direction: column; gap: 0;
    margin: 0 0 1.1rem;
    padding: 0;
  }
  .connect-step {
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    align-items: baseline;
    gap: .5rem;
    font-size: .93rem;
    color: var(--ink-2);
    padding: .85rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .connect-step:last-child { border-bottom: 0; padding-bottom: .3rem; }
  .connect-step .cs-num {
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .12em;
    color: var(--ink-ghost);
  }
  .connect-step .cs-num::before { content: "0"; }
  .connect-note {
    margin: 0;
    padding-top: .95rem;
    border-top: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: .7rem;
    line-height: 1.65;
    letter-spacing: .02em;
    color: var(--ink-3);
  }

  /* ------------------------------------------------------------------ */
  /*  FAQ — hairline rows                                                */
  /* ------------------------------------------------------------------ */
  .faq-list { max-width: 76ch; margin: 1.9rem 0 0; display: block; border-top: 1px solid var(--rule); }
  .faq-item { border: 0; border-bottom: 1px solid var(--rule); border-radius: 0; background: none; }
  .faq-item summary {
    cursor: pointer; list-style: none;
    position: relative;
    display: block;
    padding: .95rem 2.2rem .95rem 0;
    font-weight: 600;
    font-size: .98rem;
    line-height: 1.45;
    color: var(--ink);
    transition: color .15s var(--ease);
  }
  .faq-item summary:hover { color: #fff; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    position: absolute; right: 0; top: .95rem;
    color: var(--ink-3);
    font-family: var(--mono);
    font-weight: 400;
    transition: transform .2s var(--ease), color .15s var(--ease);
  }
  .faq-item[open] summary { color: var(--ink); }
  .faq-item[open] summary::after { transform: rotate(45deg); color: var(--ink); }
  .faq-item p { margin: 0; padding: 0 0 1.15rem; color: var(--ink-2); font-size: .93rem; max-width: 70ch; }

  /* ------------------------------------------------------------------ */
  /*  final CTA                                                         */
  /* ------------------------------------------------------------------ */
  .final {
    text-align: left;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.022));
    padding-top: clamp(5rem, 10vw, 8.5rem);
    padding-bottom: clamp(5rem, 10vw, 8.5rem);
  }
  .final h2 {
    font-family: var(--display);
    font-weight: 700;
    font-stretch: 125%;
    font-size: clamp(2rem, 5.4vw, 3.6rem);
    line-height: .98;
    letter-spacing: -.035em;
    margin: 0 0 1.3rem;
    max-width: 16ch;
    text-wrap: balance;
  }
  .final p {
    color: var(--ink-2);
    font-size: 1.06rem;
    max-width: 50ch;
    margin: 0 0 2rem;
  }
  .final .price-line {
    font-family: var(--mono); font-size: .74rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--ink-3); margin: -1.2rem 0 2.1rem;
  }
  .final .cta-row { margin-bottom: 0; }

  /* ------------------------------------------------------------------ */
  /*  footer                                                            */
  /* ------------------------------------------------------------------ */
  footer.foot {
    border-top: 1px solid var(--rule);
    padding: 2rem 0;
  }
  .foot-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem;
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .13em;
    color: var(--ink-3);
    text-transform: uppercase;
  }
  .foot-row .brand { font-size: .74rem; color: var(--ink); }
  .foot-row .spacer { flex: 1; }
  .foot-row a { color: var(--ink-3); }
  .foot-row a:hover { color: var(--ink); }

  /* Product Hunt badge — hidden until the real post_id/slug exist */
  .foot-row .ph-badge[hidden] { display: none; }
  .foot-row .ph-badge { display: inline-flex; align-items: center; gap: 1.1rem; }
  .foot-row .ph-badge img { display: block; width: 210px; height: 45px; }

  /* ------------------------------------------------------------------ */
  /*  reduced motion                                                    */
  /* ------------------------------------------------------------------ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      scroll-behavior: auto !important;
    }
  }
