/*
 * callback.app — the marketing site.
 *
 * DESIGN NOTES
 *
 * The app's own palette is the starting point (src/theme.ts): a deep blue-black
 * ground, one electric blue that means "act", jade for right, oxide for wrong,
 * amber for "happening now". The site goes a shade deeper than the app so that
 * screenshots of the app sit *on* the page rather than dissolving into it.
 *
 * Three typefaces, each with a job:
 *   · Bricolage Grotesque — display. Tight, slightly odd, not a default.
 *   · Plus Jakarta Sans — body. The same face the app is set in, so the site
 *     and the product read as one thing.
 *   · IBM Plex Mono — dates, counts, codes and the receipt. A receipt is
 *     monospaced; that is the whole reason it is here.
 *
 * Theme: light is the base palette on :root. Dark is redefined at token level
 * in two places — prefers-color-scheme (guarded so an explicit light choice
 * still wins) and [data-theme="dark"] (so the toggle wins the other way).
 * No component rule ever sits inside a theme block.
 */

/* ── Tokens ─────────────────────────────────────────────────────────────── */

:root {
  /* Light is the base. Neutrals carry a blue bias — they are the app's. */
  --ground: #F3F5FB;
  --surface: #FFFFFF;
  --raise: #ECEFF7;
  --hair: #DFE3EE;
  --edge: #77829C;

  --ink: #0B1020;
  --ink-2: #434D69;
  --ink-3: #5A6480;

  --signal: #2459F0;          /* the one color that means "do this" */
  --signal-deep: #0B62B4;
  --signal-wash: #E4ECFF;
  --on-signal: #FFFFFF;

  --called: #047857;          /* right */
  --called-wash: #DCF6EA;
  --wrong: #BE123C;           /* wrong */
  --wrong-wash: #FFE1E8;
  --wax: #C2410C;             /* the seal, and "happening now" */
  --wax-wash: #FFEBD6;

  --shadow: 0 10px 30px rgba(10, 15, 30, .08);
  --shadow-lift: 0 18px 46px rgba(10, 15, 30, .14);

  --display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --col: 1140px;
  --read: 68ch;
  --r: 18px;
  --r-sm: 11px;

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    /* The app's own dark palette, verbatim (src/theme.ts). The site used to sit
       a shade deeper than the product; it read as flat near-black, so it now
       uses exactly the app's grounds and surfaces. */
    --ground: #090B12;
    --surface: #131722;
    --raise: #1C2130;
    --hair: #283044;
    --edge: #6B7690;

    --ink: #F5F7FF;
    --ink-2: #AEB6CC;
    --ink-3: #8A93AB;

    --signal: #6B97FF;
    --signal-deep: #2ED3F2;
    --signal-wash: #15204A;
    --on-signal: #FFFFFF;

    --called: #2EE59D;
    --called-wash: #0B2B22;
    --wrong: #FF5A78;
    --wrong-wash: #3A1422;
    --wax: #FF9F1A;
    --wax-wash: #3A2408;

    --shadow: 0 10px 30px rgba(0, 0, 0, .45);
    --shadow-lift: 0 18px 46px rgba(0, 0, 0, .55);
  }
}

:root[data-theme="dark"] {
  /* The app's own dark palette, verbatim (src/theme.ts). The site used to sit
     a shade deeper than the product; it read as flat near-black, so it now
     uses exactly the app's grounds and surfaces. */
  --ground: #090B12;
  --surface: #131722;
  --raise: #1C2130;
  --hair: #283044;
  --edge: #6B7690;

  --ink: #F5F7FF;
  --ink-2: #AEB6CC;
  --ink-3: #8A93AB;

  --signal: #6B97FF;
  --signal-deep: #2ED3F2;
  --signal-wash: #15204A;
  --on-signal: #FFFFFF;

  --called: #2EE59D;
  --called-wash: #0B2B22;
  --wrong: #FF5A78;
  --wrong-wash: #3A1422;
  --wax: #FF9F1A;
  --wax-wash: #3A2408;

  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lift: 0 18px 46px rgba(0, 0, 0, .55);
}

/* ── Base ───────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; }

a { color: var(--signal); text-decoration-color: color-mix(in oklab, var(--signal) 40%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

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

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -.024em; line-height: 1.06; text-wrap: balance; margin: 0; }
h1 { font-size: clamp(2.3rem, 4.3vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.28rem; letter-spacing: -.015em; line-height: 1.24; }
h4 { font-size: 1.02rem; letter-spacing: -.008em; }
p { margin: 0; }

hr.rule { border: 0; border-top: 1px solid var(--hair); margin: 0; }

::selection { background: var(--signal); color: var(--on-signal); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--signal); color: var(--on-signal);
  padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ── Layout ─────────────────────────────────────────────────────────────── */

.wrap { width: 100%; max-width: var(--col); margin-inline: auto; padding-inline: 24px; }

.band { padding-block: clamp(52px, 7vw, 92px); }
.band--tight { padding-block: clamp(34px, 4vw, 52px); }
.band--tint { background: var(--surface); border-block: 1px solid var(--hair); }

.stack { display: flex; flex-direction: column; gap: 18px; }
.stack--lg { gap: 30px; }
.stack--sm { gap: 10px; }

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.split { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ── Type helpers ───────────────────────────────────────────────────────── */

.kicker {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
  margin: 0;
}
.kicker--signal { color: var(--signal); }
.kicker--wax { color: var(--wax); }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.55; color: var(--ink-2); max-width: var(--read); }
.sub { color: var(--ink-2); }
.small { font-size: .88rem; color: var(--ink-3); line-height: 1.5; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  /* The app's own button gradient (src/theme.ts `grad`), fixed in both
     themes so the site and the product are the same object. */
  background: linear-gradient(103deg, #2560F0, #0877D6);
  color: #FFFFFF;
  font-family: var(--body); font-weight: 700; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 0; text-decoration: none;
  box-shadow: var(--shadow); cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lift); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--edge); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--signal); color: var(--signal); box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Cards ──────────────────────────────────────────────────────────────── */

.card {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r);
  padding: 22px; display: flex; flex-direction: column; gap: 9px;
}
.card h3 { margin: 0; }
.card p { color: var(--ink-2); font-size: .95rem; line-height: 1.55; }
.card--link { text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease; }
.card--link:hover { border-color: var(--signal); transform: translateY(-2px); text-decoration: none; }
.card__tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }

/* A plain list of links, no card chrome. Not everything is a card. */
.links { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.links a {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid var(--hair); text-decoration: none; color: var(--ink);
  font-weight: 600;
}
.links a:hover { color: var(--signal); }
.links span { font-family: var(--mono); font-size: .78rem; color: var(--ink-3); font-weight: 400; text-align: right; }

/* ── Pills and stats ────────────────────────────────────────────────────── */

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
  background: var(--raise); color: var(--ink-2); border: 1px solid var(--hair);
}
.pill--called { background: var(--called-wash); color: var(--called); border-color: transparent; }
.pill--wrong { background: var(--wrong-wash); color: var(--wrong); border-color: transparent; }
.pill--wax { background: var(--wax-wash); color: var(--wax); border-color: transparent; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__n { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__l { font-size: .84rem; color: var(--ink-2); line-height: 1.4; }

/* ── Prose, for the long pages ──────────────────────────────────────────── */

.prose { max-width: var(--read); }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: 1.62rem; margin-top: 2em; scroll-margin-top: 90px; }
.prose h3 { font-size: 1.12rem; margin-top: 1.7em; scroll-margin-top: 90px; }
.prose p, .prose li { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.2em; display: grid; gap: .5em; margin-top: .8em; }
.prose li::marker { color: var(--ink-3); }
.prose a { font-weight: 600; }
.prose code { font-family: var(--mono); font-size: .88em; background: var(--raise); padding: 2px 6px; border-radius: 6px; color: var(--ink); }

/* The document layout: a sticky contents rail beside the prose. */
.doc { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .doc { grid-template-columns: 1fr; } .doc__rail { position: static !important; } }
.doc__rail { position: sticky; top: 88px; }
.doc__rail ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; counter-reset: toc; }
.doc__rail a {
  display: block; padding: 7px 0; font-size: .86rem; color: var(--ink-2); text-decoration: none;
  border-left: 2px solid var(--hair); padding-left: 12px;
}
.doc__rail a:hover { color: var(--signal); border-left-color: var(--signal); }

/* ── Callouts ───────────────────────────────────────────────────────────── */

.callout {
  border: 1px solid var(--hair); border-left: 4px solid var(--signal);
  background: var(--surface); border-radius: var(--r-sm);
  padding: 16px 18px; display: grid; gap: 6px;
}
.callout h4 { font-family: var(--body); font-weight: 800; font-size: .96rem; letter-spacing: 0; }
.callout p { color: var(--ink-2); font-size: .93rem; }
.callout--wax { border-left-color: var(--wax); }
.callout--called { border-left-color: var(--called); }
.callout--wrong { border-left-color: var(--wrong); }

/* ── FAQ ────────────────────────────────────────────────────────────────── */

.qa { border-bottom: 1px solid var(--hair); }
.qa summary {
  cursor: pointer; list-style: none; padding: 17px 34px 17px 0; position: relative;
  font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.2rem; color: var(--ink-3); line-height: 1;
}
.qa[open] summary::after { content: "–"; color: var(--signal); }
.qa summary:hover { color: var(--signal); }
.qa__a { padding: 0 0 18px; display: grid; gap: .8em; max-width: var(--read); }
.qa__a p, .qa__a li { color: var(--ink-2); font-size: .97rem; }
.qa__a ul { padding-left: 1.2em; display: grid; gap: .4em; margin: 0; }

/* ── Tables ─────────────────────────────────────────────────────────────── */

.table-wrap { overflow-x: auto; border: 1px solid var(--hair); border-radius: var(--r-sm); background: var(--surface); }
table { border-collapse: collapse; width: 100%; font-size: .92rem; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--hair); }
th { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
td.num { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ── Header ─────────────────────────────────────────────────────────────── */

.site-head {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--ground) 86%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.site-head__in { display: flex; align-items: center; gap: 22px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 1.16rem; letter-spacing: -.03em; }
.brand:hover { text-decoration: none; }


.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav a {
  padding: 8px 12px; border-radius: 999px; text-decoration: none; color: var(--ink-2);
  font-size: .92rem; font-weight: 600;
}
.nav a:hover { color: var(--ink); background: var(--raise); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--ink); background: var(--raise); }
/* `.nav a` is more specific than `.btn`, so without this the call to action
   in the header renders in body-text color on the gradient. */
.nav a.btn { color: #FFFFFF; margin-left: 6px; padding: 9px 17px; font-size: .9rem; }

.themer {
  border: 1px solid var(--hair); background: var(--surface); color: var(--ink-2);
  width: 36px; height: 36px; border-radius: 999px; cursor: pointer; display: grid; place-items: center;
  font-size: 1rem; line-height: 1; flex: none;
}
.themer:hover { border-color: var(--signal); color: var(--signal); }

.menu-btn { display: none; }
@media (max-width: 940px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; left: 0; right: 0; top: 66px; margin: 0;
    background: var(--surface); border-bottom: 1px solid var(--hair); padding: 12px 24px 18px;
  }
  .nav.is-open .btn { margin-left: 0; margin-top: 8px; justify-content: center; }
  .menu-btn {
    display: grid; place-items: center; margin-left: auto;
    width: 40px; height: 40px; border-radius: var(--r-sm); border: 1px solid var(--hair);
    background: var(--surface); color: var(--ink); cursor: pointer; font-size: 1.1rem;
  }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-foot { background: var(--surface); border-top: 1px solid var(--hair); padding-block: 52px 34px; margin-top: 40px; }
.foot-grid { display: grid; gap: 30px; grid-template-columns: minmax(200px, 1.3fr) repeat(auto-fit, minmax(140px, 1fr)); }
.foot-col h4 { font-family: var(--mono); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 12px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.foot-col a { color: var(--ink-2); text-decoration: none; font-size: .92rem; }
.foot-col a:hover { color: var(--signal); }
.foot-legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: baseline; }
.foot-legal p { font-size: .82rem; color: var(--ink-3); }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */

.crumbs { font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; color: var(--ink-3); display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--signal); }

/* ── The hero, and the seal ─────────────────────────────────────────────── */

.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% 40% 40% -20%; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 50%, color-mix(in oklab, var(--signal) 26%, transparent), transparent 70%);
  filter: blur(44px); opacity: .42;
}
.hero__in { position: relative; display: grid; gap: clamp(30px, 4vw, 56px); grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; }
@media (max-width: 940px) { .hero__in { grid-template-columns: 1fr; } }
.hero h1 { margin-block: 14px 18px; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--signal); }

/* The sealed call. It is the product's one irreducible object, so it is the
   first thing on the page and it works. */
.seal-card {
  background: var(--surface); border: 1px solid var(--hair); border-radius: 22px;
  box-shadow: var(--shadow-lift); padding: 22px; display: grid; gap: 16px; position: relative;
}
.seal-card__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.seal-card__claim { font-family: var(--display); font-weight: 800; font-size: 1.42rem; line-height: 1.18; letter-spacing: -.02em; }
.seal-card__by { font-size: .86rem; color: var(--ink-3); }

.wax {
  width: 96px; height: 96px; margin-inline: auto; display: block; overflow: visible;
}
.wax__crack { opacity: 0; }
.seal-card.is-open .wax { animation: wax-break .5s cubic-bezier(.3,1.4,.5,1) both; }
.seal-card.is-open .wax__crack { opacity: 1; }
@keyframes wax-break {
  0% { transform: scale(1) rotate(0); }
  35% { transform: scale(1.11) rotate(-4deg); }
  100% { transform: scale(1) rotate(0); }
}

.sealed-state { display: grid; gap: 14px; justify-items: center; text-align: center; padding-block: 6px; }
.sealed-state p { color: var(--ink-2); font-size: .94rem; max-width: 34ch; }

.roster { display: grid; gap: 10px; }
.roster__side { display: grid; gap: 7px; }
.roster__side h4 { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
.roster__names { display: flex; flex-wrap: wrap; gap: 6px; }
.name-chip { font-size: .84rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; background: var(--raise); color: var(--ink-2); }
.name-chip--called { background: var(--called-wash); color: var(--called); }
.name-chip--wrong { background: var(--wrong-wash); color: var(--wrong); }

.verdict {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-radius: var(--r-sm); padding: 12px 15px; background: var(--called-wash);
}
.verdict strong { font-family: var(--display); font-size: 1.1rem; letter-spacing: -.02em; color: var(--called); }
.verdict span { font-family: var(--mono); font-size: .82rem; color: var(--called); }

[hidden] { display: none !important; }

/* ── Steps: numbered only because the order is the mechanic ─────────────── */

.steps { display: grid; gap: 2px; counter-reset: step; }
.step { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; padding: 22px 0; border-top: 1px solid var(--hair); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--hair); }
.step__n { font-family: var(--mono); font-size: .8rem; color: var(--ink-3); padding-top: 4px; letter-spacing: .08em; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-2); max-width: var(--read); }

/* ── The scoring ladder ─────────────────────────────────────────────────── */

.ladder { display: grid; gap: 10px; }
.ladder__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; }
.ladder__bar { height: 34px; border-radius: 8px; background: var(--raise); overflow: hidden; position: relative; }
.ladder__fill { height: 100%; border-radius: 8px; background: linear-gradient(90deg, #2560F0, #0877D6); }
.ladder__fill--called { background: linear-gradient(90deg, var(--called), color-mix(in oklab, var(--called) 60%, var(--signal))); }
.ladder__lbl { font-size: .88rem; color: var(--ink-2); padding-left: 12px; position: absolute; inset: 0; display: flex; align-items: center; }
.ladder__v { font-family: var(--mono); font-weight: 600; font-variant-numeric: tabular-nums; min-width: 4.4ch; text-align: right; }

/* ── Interest index ─────────────────────────────────────────────────────── */

.topic { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; align-items: start; text-decoration: none; color: inherit; padding: 16px; border: 1px solid var(--hair); border-radius: var(--r); background: var(--surface); transition: border-color .15s ease, transform .15s ease; }
.topic:hover { border-color: var(--signal); transform: translateY(-2px); text-decoration: none; }
.topic__mark { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-size: 1.25rem; background: var(--raise); }
.topic h3 { font-size: 1.06rem; }
.topic p { color: var(--ink-2); font-size: .9rem; line-height: 1.5; margin-top: 3px; }

/* ── Bits ───────────────────────────────────────────────────────────────── */

.notice { background: var(--raise); border-radius: var(--r-sm); padding: 14px 16px; font-size: .9rem; color: var(--ink-2); }

.cta-band { background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r); padding: clamp(28px, 4vw, 44px); display: grid; gap: 16px; justify-items: start; }
.cta-band h2 { max-width: 18ch; }

.dl { display: grid; gap: 0; }
.dl__row { display: grid; grid-template-columns: minmax(140px, 220px) minmax(0, 1fr); gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--hair); }
.dl__row dt { font-weight: 700; font-size: .93rem; }
.dl__row dd { margin: 0; color: var(--ink-2); font-size: .93rem; }
@media (max-width: 620px) { .dl__row { grid-template-columns: 1fr; gap: 4px; } }

/* ── The mark ───────────────────────────────────────────────────────────── */

/* The Agori Labs logo carries its own gradients, so unlike the rest of the
   header it is not tinted by the theme. It is the only violet on the page. */
.brand svg { width: 30px; height: 30px; flex: none; }
