/* Calorna — presentation site.
 *
 * The palette is lifted verbatim from the product so the site and the app read
 * as one thing; a prospect who clicks through should not feel a seam.
 *
 * Two ideas carry the whole design:
 *
 *   THE SPINE IS A CLOCK.  One line runs the length of the story and fills as
 *   you scroll. Its nodes are timestamps, not 01/02/03, because the thing being
 *   sold is elapsed time — and the product itself timestamps every transcript
 *   turn the same way.
 *
 *   THE SPINE CHANGES HANDS.  Cyan while the machine acts, coral while the
 *   candidate does, violet when the recruiter decides. That is the product's
 *   own two-voice system, extended to the page. Read top to bottom, the line
 *   is a picture of the conversation.
 *
 * Roman type is the system; ITALIC is the human. Italic appears only where a
 * person speaks or decides — nowhere else.
 */

:root {
  --bg: #0b0d14;
  --surface: #141826;
  --sunken: #07080e;
  --text: #e8eaf2;
  --muted: #9ba2c0;
  --faint: #7d849f;
  --line: rgba(155, 162, 192, 0.16);
  --line-strong: rgba(155, 162, 192, 0.3);

  --brand: #7c5cff;
  --brand-solid: #6e4cfa;   /* white on --brand is 4.35:1; this passes AA */
  --brand-soft: rgba(124, 92, 255, 0.14);

  --ai: #4fd6ec;            /* the interviewer */
  --human: #ff8e7e;         /* the candidate */
  --ai-soft: rgba(79, 214, 236, 0.13);
  --human-soft: rgba(255, 142, 126, 0.14);

  --radius: 14px;
  --radius-sm: 9px;
  --wrap: 1120px;
  --narrow: 720px;

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  color-scheme: dark;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* A violet bloom behind the fold. One atmospheric gesture, not five. */
body::before {
  content: "";
  position: fixed;
  inset: -20% 0 auto 0;
  height: 70vh;
  background:
    radial-gradient(60% 55% at 22% 0%, rgba(124, 92, 255, 0.16), transparent 70%),
    radial-gradient(45% 45% at 82% 8%, rgba(79, 214, 236, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  padding: 10px 16px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.wrap.narrow { max-width: var(--narrow); }

/* ── type ──────────────────────────────────────────────────────────────── */

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.06;
  margin: 0;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
}
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.1; }
.display em, .display-em { font-style: italic; }
.display-em { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.25; }

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 14px;
  font-weight: 500;
}

.lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); margin: 22px 0 0; max-width: 46ch; }
.body-lg { font-size: 1.06rem; color: var(--muted); margin: 20px 0 0; }

h3 { font-family: var(--sans); font-size: 1.32rem; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 10px; line-height: 1.25; }
h4 { font-size: 1.02rem; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.005em; }

/* ── header ────────────────────────────────────────────────────────────── */

.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
  background: rgba(11, 13, 20, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  position: relative;
  padding-right: 10px;
}
.wordmark .dot {
  position: absolute; right: 0; top: 3px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand);
}

.hdr-nav { display: flex; gap: 22px; margin-left: 10px; }
.hdr-nav a { text-decoration: none; color: var(--muted); font-size: 14.5px; transition: color .18s ease; }
.hdr-nav a:hover { color: var(--text); }

.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }

.lang { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.lang-btn {
  background: none; border: 0; padding: 2px 2px; cursor: pointer;
  color: var(--faint); font: inherit; letter-spacing: 0.04em;
  transition: color .18s ease;
}
.lang-btn:hover { color: var(--text); }
.lang-btn[aria-pressed="true"] { color: var(--text); font-weight: 600; }
.lang-sep { color: var(--line-strong); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; text-decoration: none; font-weight: 550; font-size: 15px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-sm { padding: 8px 15px; font-size: 14px; }
.btn-primary { background: var(--brand-solid); color: #fff; }
.btn-primary:hover { background: #5f3bf5; box-shadow: 0 0 0 4px var(--brand-soft); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-soft); }

/* ── hero ──────────────────────────────────────────────────────────────── */

.hero { padding: clamp(56px, 11vh, 120px) 0 clamp(40px, 8vh, 90px); }
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 56px; align-items: center; }

.scroll-cue {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 40px; color: var(--faint); text-decoration: none;
  font-size: 13.5px; letter-spacing: 0.02em;
  transition: color .18s ease;
}
.scroll-cue:hover { color: var(--text); }
.scroll-cue svg { animation: nudge 2.4s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

.hero-demo {
  margin: 0;
  background: linear-gradient(180deg, var(--surface), #10131f);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255,255,255,0.045);
}

/* Two-channel voiceprint: the interviewer hangs from the top, the candidate
   from the bottom. Not a fake amplitude read-out — a picture of turn-taking. */
.voiceprint { display: flex; align-items: center; gap: 3px; height: 74px; }
.voiceprint i {
  flex: 1; border-radius: 2px; display: block;
  background: var(--ai); opacity: .85;
  transform-origin: center;
  animation: bar 1.9s ease-in-out infinite;
}
.voiceprint i.h { background: var(--human); }
@keyframes bar { 0%,100% { transform: scaleY(.32); } 50% { transform: scaleY(1); } }

.hero-turns { margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.turn { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text); }
.turn-who {
  display: inline-block; min-width: 74px; font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  vertical-align: top; padding-top: 3px;
}
.turn-ai .turn-who { color: var(--ai); }
.turn-human .turn-who { color: var(--human); }
.turn .typed { display: inline-block; max-width: calc(100% - 84px); }

/* ── bands ─────────────────────────────────────────────────────────────── */

.band { padding: clamp(70px, 12vh, 130px) 0; }

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 44px 0 40px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.stat-n {
  display: block; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-l { display: block; margin-top: 8px; font-size: 13.5px; color: var(--faint); line-height: 1.45; }

.turn-line { color: var(--text); margin: 0; }

/* ── the flow ──────────────────────────────────────────────────────────── */

.flow { padding: clamp(40px, 7vh, 80px) 0 clamp(70px, 12vh, 130px); }
.flow-intro { margin-bottom: clamp(48px, 8vh, 90px); }

.flow-body { position: relative; padding-left: 150px; }

.spine {
  position: absolute; left: 118px; top: 6px; bottom: 6px; width: 2px;
  background: var(--line);
  border-radius: 2px;
}
.spine-fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  clip-path: inset(0 0 100% 0);
  border-radius: 2px;
  /* The line takes the colour of whoever is acting, in story order. */
  background: linear-gradient(
    to bottom,
    var(--human) 0%, var(--human) 11%,
    var(--ai) 20%, var(--ai) 36%,
    var(--human) 46%, var(--human) 60%,
    var(--brand) 68%,
    var(--ai) 80%,
    var(--brand) 100%
  );
  box-shadow: 0 0 18px rgba(124, 92, 255, 0.35);
}

.stages { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: clamp(72px, 12vh, 130px); }

.stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.stage-wide { grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); }

.stage-mark {
  position: absolute; left: -150px; top: 0; width: 84px;
  text-align: right; display: flex; flex-direction: column; gap: 3px;
}
/* The node sits ON the spine, coloured by whose turn it is. It hangs off the
   STAGE rather than the label: tied to the label, a long timestamp such as
   "18 min" grows leftwards until the text runs under the dot. */
.stage::before {
  content: ""; position: absolute; left: -35.5px; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line-strong);
  transition: border-color .5s ease, box-shadow .5s ease;
}
.stage[data-voice="human"].lit::before { border-color: var(--human); box-shadow: 0 0 0 4px var(--human-soft); }
.stage[data-voice="ai"].lit::before,
.stage[data-voice="mix"].lit::before { border-color: var(--ai); box-shadow: 0 0 0 4px var(--ai-soft); }
.stage[data-voice="you"].lit::before { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }

.stage-time {
  font-family: var(--serif); font-size: 1.24rem; line-height: 1.1;
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.stage-who { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.stage[data-voice="human"] .stage-who { color: var(--human); }
.stage[data-voice="ai"] .stage-who,
.stage[data-voice="mix"] .stage-who { color: var(--ai); }
.stage[data-voice="you"] .stage-who { color: var(--brand); }

.stage-copy p { color: var(--muted); margin: 0; font-size: 1rem; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  font-size: 12.5px; padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ── product-UI recreations ────────────────────────────────────────────── */

.ui-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 24px 56px -38px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255,255,255,0.04);
}

.ui-file { display: flex; align-items: center; gap: 15px; }
.ui-doc { color: var(--human); flex: none; }
.ui-file-name { margin: 0; font-weight: 550; font-size: 15px; }
.ui-file-meta { margin: 3px 0 0; font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }

.ui-extract { display: flex; flex-direction: column; gap: 0; }
.ui-row { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.ui-row:last-child { border-bottom: 0; }
.ui-k { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--faint); }
.ui-v { font-size: 14.5px; }
.ui-v-dim { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

.ui-mail-hd { display: flex; align-items: center; gap: 10px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.ui-avatar {
  width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center;
  background: var(--human-soft); color: var(--human); font-size: 13px; font-weight: 700;
}
.ui-from { font-size: 13.5px; color: var(--muted); }
.ui-subj { margin: 14px 0 10px; font-weight: 600; font-size: 15.5px; }
.ui-mail-body { margin: 0 0 16px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.ui-btn {
  display: inline-block; background: var(--brand-solid); color: #fff;
  padding: 9px 16px; border-radius: 8px; font-size: 13.5px; font-weight: 600;
}
.ui-btn-ghost { background: none; border: 1px solid var(--line-strong); color: var(--muted); }
.ui-mail-note { margin: 15px 0 0; font-size: 12px; color: var(--faint); line-height: 1.55; }

.ui-consent-t { margin: 0 0 12px; font-weight: 600; font-size: 15px; }
.ui-consent-l { margin: 0 0 18px; padding-left: 18px; color: var(--muted); font-size: 13.8px; line-height: 1.75; }
.ui-consent-a { display: flex; gap: 10px; flex-wrap: wrap; }

.ui-kiosk { padding: 22px; }
.kiosk-eq { display: flex; align-items: center; gap: 3px; height: 52px; margin-bottom: 22px; }
.kiosk-eq i {
  flex: 1; border-radius: 2px; background: var(--ai); display: block;
  opacity: .8; animation: bar 1.6s ease-in-out infinite;
}
.kiosk-eq i.h { background: var(--human); }

/* The rail: each turn draws its own segment in its speaker's colour, so the
   left edge read top-to-bottom is the shape of the conversation. */
.rail { display: flex; flex-direction: column; gap: 15px; }
.rail-turn { padding-left: 15px; border-left: 2px solid var(--line); }
.rail-ai { border-left-color: var(--ai); }
.rail-human { border-left-color: var(--human); }
.rail-who {
  display: block; font-size: 10.5px; letter-spacing: 0.09em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 4px;
}
.rail-ai .rail-who { color: var(--ai); }
.rail-human .rail-who { color: var(--human); }
.rail-txt { font-size: 14px; line-height: 1.62; color: var(--text); }

.ui-report { display: flex; flex-direction: column; gap: 17px; }
.ui-sec-t { margin: 0 0 5px; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--faint); }
.ui-sec-b { margin: 0; font-size: 14px; line-height: 1.62; color: var(--text); }
.anchor {
  display: inline-block; background: var(--brand-soft); color: #a793ff;
  border-radius: 999px; padding: 1px 9px; font-size: 12px; font-weight: 600;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}

.ui-decide { text-align: center; }
.ui-decide-t { margin: 0 0 16px; }
.ui-decide-a { display: flex; gap: 10px; justify-content: center; }
.ui-decide-n { margin: 16px 0 0; font-size: 12.5px; color: var(--faint); }

/* ── trust ─────────────────────────────────────────────────────────────── */

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.tcard {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.tcard:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.tcard p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.62; }

/* ── pricing ───────────────────────────────────────────────────────────── */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; align-items: start; }
.pcard {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
}
.pcard-hi { border-color: rgba(124, 92, 255, 0.5); box-shadow: 0 0 0 1px rgba(124,92,255,0.16), 0 30px 60px -45px rgba(124,92,255,0.6); }
.pcard-badge {
  position: absolute; top: -10px; left: 24px;
  background: var(--brand-solid); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; padding: 3px 10px; border-radius: 999px;
}
.pcard-n { margin: 0; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.pcard-p { margin: 10px 0 0; font-family: var(--serif); font-size: 2.5rem; line-height: 1; letter-spacing: -0.02em; }
.pcard-p span { font-family: var(--sans); font-size: 0.92rem; color: var(--faint); letter-spacing: 0; }
.pcard-i { margin: 16px 0 2px; font-size: 14.5px; }
.pcard-i b { font-variant-numeric: tabular-nums; }
.pcard-o { margin: 0; font-size: 13.5px; color: var(--faint); }
.pcard-d { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13.8px; color: var(--muted); line-height: 1.6; }

/* ── cta + footer ──────────────────────────────────────────────────────── */

.cta { padding: clamp(70px, 12vh, 130px) 0; text-align: center; }
.cta .body-lg { margin-left: auto; margin-right: auto; max-width: 48ch; }
.cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

.ftr { border-top: 1px solid var(--line); padding: 34px 0; }
.ftr-in { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.ftr-tag { margin: 6px 0 0; font-size: 13.5px; color: var(--faint); }
.ftr-meta { margin: 0; font-size: 12.5px; color: var(--faint); }

/* ── motion ────────────────────────────────────────────────────────────── */

.reveal, .stage {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in, .stage.in { opacity: 1; transform: none; }

.pop { opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease; }
.stage.in .pop { opacity: 1; transform: none; }
.stage.in .pop[data-pop="1"] { transition-delay: .12s; }
.stage.in .pop[data-pop="2"] { transition-delay: .26s; }
.stage.in .pop[data-pop="3"] { transition-delay: .40s; }
.stage.in .pop[data-pop="4"] { transition-delay: .54s; }

.caret::after {
  content: "";
  display: inline-block; width: 2px; height: 1em;
  background: currentColor; margin-left: 2px;
  vertical-align: -0.15em; animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── responsive ────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hdr-nav { display: none; }
  .trust-grid, .price-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .flow-body { padding-left: 30px; }
  .spine { left: 3px; }
  .stage { grid-template-columns: 1fr; gap: 22px; }
  .stage-wide { grid-template-columns: 1fr; }
  .stage-mark {
    position: static; width: auto; text-align: left;
    flex-direction: row; align-items: baseline; gap: 10px; margin-bottom: 10px;
  }
  .stage::before { left: -30.5px; top: 8px; }
  .hero-demo { padding: 18px; }
  .turn-who { display: block; min-width: 0; margin-bottom: 3px; }
  .turn .typed { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Nothing animates in, and nothing is left invisible waiting for an
     animation that will never run. */
  .reveal, .stage, .pop { opacity: 1 !important; transform: none !important; transition: none !important; }
  .voiceprint i, .kiosk-eq i, .scroll-cue svg { animation: none !important; }
  .voiceprint i { transform: scaleY(.6); }
  .caret::after { animation: none; opacity: 0; }
}

.ftr-right { text-align: right; }
.ftr-contact { margin: 0 0 6px; font-size: 13.5px; display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.ftr-contact a { color: var(--muted); text-decoration: none; transition: color .18s ease; }
.ftr-contact a:hover { color: var(--text); }
.ftr-contact span { color: var(--line-strong); }

@media (max-width: 640px) {
  .ftr-right { text-align: left; }
  .ftr-contact { justify-content: flex-start; }
}

/* ── footer ────────────────────────────────────────────────────────────── */

.ftr { border-top: 1px solid var(--line); padding: 56px 0 34px; margin-top: 20px; }
.ftr-top { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr); gap: 48px; }

.ftr-brand .ftr-tag { margin: 10px 0 0; font-size: 13.5px; color: var(--faint); max-width: 30ch; }
.ftr-byline { margin: 20px 0 0; font-size: 12.5px; color: var(--faint); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
/* Arcania is the maker, not the product: it gets the small confident
   lockup, never a second wordmark competing with Calorna's. */
.ftr-arcania {
  text-decoration: none; color: var(--text); font-weight: 600;
  font-size: 12px; letter-spacing: 0.13em;
  border: 1px solid var(--line-strong); border-radius: 6px; padding: 4px 9px;
  transition: border-color .18s ease, color .18s ease;
}
.ftr-arcania span { color: var(--brand); }
.ftr-arcania:hover { border-color: var(--brand); }

.ftr-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ftr-col { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.ftr-h {
  margin: 0 0 3px; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint); font-weight: 600;
}
.ftr-col a { font-size: 13.5px; color: var(--muted); text-decoration: none; transition: color .18s ease; }
.ftr-col a:hover { color: var(--text); }

.ftr-note {
  margin: 40px 0 0; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--faint); max-width: 62ch;
}

.ftr-bottom {
  margin-top: 18px; display: flex; justify-content: space-between;
  align-items: flex-end; gap: 20px; flex-wrap: wrap;
}
.ftr-legal { margin: 0; font-size: 12px; color: var(--faint); line-height: 1.7; max-width: 68ch; }
.ftr-legal:empty { display: none; }
.ftr-meta { margin: 0; font-size: 12px; color: var(--faint); white-space: nowrap; }

@media (max-width: 900px) {
  .ftr-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .ftr-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ftr-meta { white-space: normal; }
}

/* ── legal pages ───────────────────────────────────────────────────────── */

.legal { padding: clamp(48px, 9vh, 96px) 0 clamp(60px, 10vh, 110px); }
.legal h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.015em; margin: 0; line-height: 1.08; }
.legal .lede { margin-top: 18px; }
.legal-updated { margin: 26px 0 0; font-size: 12.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.legal-body { margin-top: 44px; display: flex; flex-direction: column; gap: 30px; }
.legal-body h2 { font-size: 1.08rem; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.005em; }
.legal-body p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-contact { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.legal-contact a { color: var(--text); }
