/* IndieAppScale marketing site.

   Monochrome: a white page, near-black ink, and nothing else. What used to be
   carried by pastel fills — step markers, feature swatches, the closing band —
   is carried by weight, edges and the two-tone line art in assets/lottie
   (docs/LOTTIE_ART.md). Display is Nunito at 900: rounded terminals, heavy
   enough to hold a line; body is Nunito Sans.

   The pastel tokens below are kept only because --blue-deep is still the link
   and focus colour. The three fills are unused; don't reintroduce them.

   Every colour pair in here has been checked against WCAG AA. The two
   boundary tokens are deliberately different: --line is decorative (1.27:1)
   and --line-ctl is for interactive edges, where 1.4.11 requires 3:1. */

:root {
  --cream:      #FFFFFF;
  --cream-2:    #F5F4F2;              /* the one inset band (the wall) */
  --shadow:     0 1px 2px rgba(25,27,30,.04), 0 14px 30px -22px rgba(25,27,30,.22);
  --ink:        #191B1E;
  --ink-70:     rgba(25,27,30,.70);
  --ink-50:     #6E6E75;              /* meta text — 5.06 white / 4.60 band */
  --line:       rgba(25,27,30,.12);   /* decorative edges only (1.27:1) */
  --line-ctl:   #918A7F;              /* interactive boundaries — 3.42 white / 3.11 band */

  /* pastel fills — ink text sits on these at 10:1 or better */
  --blue:       #AFC9E9;
  --blue-soft:  #DCE7F6;
  --green:      #B2D8C0;
  --yellow:     #FFE49A;
  /* the one deep tone, for coloured text and solid buttons */
  --blue-deep:  #2C4E7A;

  /* Wordmark, sampled from the icon: the mark's charcoal, a lighter grey for
     "scale", and the mark's yellow for the period. WCAG 1.4.3 exempts
     logotypes, which is what lets the period stay true to the brand yellow. */
  --logo-ink:   #2B2B2C;
  --logo-scale: #7C7F86;
  --logo-dot:   #FBBF31;
  --on-ink-dim: #909092;              /* dim text on --ink — 5.42:1 */

  /* Nunito: rounded terminals, soft joins, still heavy enough at 900 to
     carry a display line. Nunito Sans is its designed companion. */
  --display: 'Nunito', ui-rounded, ui-sans-serif, system-ui, sans-serif;
  --sans:    'Nunito Sans', ui-sans-serif, system-ui, sans-serif;
  --post:    'TikTok Sans', var(--sans);

  --maxw: 1240px;
  --gut:  clamp(20px, 4.4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--cream); }

a, button, summary { transition: opacity .3s ease-out; }
a:hover, button:hover, summary:hover { opacity: .62; }

.wrap { width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: var(--gut); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 200; background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 999px; }
:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; }

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

.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.028em;
  line-height: 1.04;
  margin: 0;
}
.h1 { font-size: clamp(38px, 5.9vw, 78px); }
.h2 { font-size: clamp(29px, 4vw, 50px); }
.h3 { font-family: var(--display); font-weight: 800; font-size: clamp(19px, 1.8vw, 24px); letter-spacing: -.015em; line-height: 1.2; margin: 0 0 10px; }

.lede { font-size: clamp(17px, 1.3vw, 19px); color: var(--ink-70); max-width: 46ch; margin: 0; }

/* label pill — white capsule, coloured dot, small caps */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  border-radius: 999px; padding: 7px 16px 7px 13px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-70);
}
.pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }

.section { padding-block: clamp(72px, 9vw, 132px); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 68px); }
.section__head .pill { margin-bottom: 20px; }
.section__head .lede { margin: 18px auto 0; }

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

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink); border-radius: 999px;
  padding: 14px 26px; font-weight: 700; font-size: 15px; letter-spacing: -.01em;
}
.btn--sm    { padding: 10px 20px; font-size: 14px; }
.btn--lg    { padding: 17px 34px; font-size: 16.5px; }
.btn--quiet { background: #fff; color: var(--ink); border-color: var(--line-ctl); }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* ── Reveals ────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease-out, transform .7s ease-out; transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.fade { opacity: 0; animation: fade .8s ease-out forwards; animation-delay: var(--d, 0s); }
@keyframes fade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .fade, .reveal { opacity: 1; transform: none; }
}

/* ── Nav ────────────────────────────────────────────────────── */

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; padding-top: 16px; }
.nav__inner {
  display: flex; align-items: center; gap: 22px;
  padding: 9px 9px 9px 20px; border: 1px solid transparent; border-radius: 999px;
  transition: background .4s ease-out, border-color .4s ease-out;
}
.nav.is-stuck .nav__inner {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-color: var(--line);
}
/* The lockup: icon + wordmark at 1.4em, where their optical masses balance. */
.brand {
  display: inline-flex; align-items: center; gap: .36em;
  font-family: var(--display); font-weight: 900; font-size: 21px;
  letter-spacing: -.028em; line-height: 1; color: var(--logo-ink);
  white-space: nowrap;
}
.brand__mark { display: block; height: 1.4em; width: auto; flex: none; }
.brand__scale { color: var(--logo-scale); }
.brand__dot { color: var(--logo-dot); }
.nav__links { display: flex; gap: 26px; margin-left: auto; font-size: 15px; font-weight: 500; color: var(--ink-70); }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__signin { font-size: 15px; font-weight: 600; }
.nav__burger { display: none; background: none; border: 0; padding: 10px; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: transform .35s ease-out, opacity .3s ease-out; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; margin-top: 8px; padding: 18px 24px 24px; background: #fff; border: 1px solid var(--line); border-radius: 26px; }
.nav__mobile a { padding: 9px 0; font-family: var(--display); font-weight: 800; font-size: 20px; }
.nav.is-open .nav__mobile { display: flex; }

/* ── Hero ───────────────────────────────────────────────────── */

.hero { position: relative; padding-top: clamp(110px, 13vw, 168px); padding-bottom: clamp(48px, 6vw, 84px); overflow: hidden; }
.hero > * { position: relative; }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(32px, 4.6vw, 72px); align-items: center; }

.hero__title { margin-top: 22px; }
/* the signature: a hand-drawn marker stroke under the payoff line */
.swash { position: relative; display: inline-block; white-space: nowrap; }
.swash svg { position: absolute; left: -1.5%; bottom: -.16em; width: 103%; height: .34em; overflow: visible; }
.swash path { fill: none; stroke: var(--ink); stroke-width: 15; stroke-linecap: round; opacity: .95;
  stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 1.1s ease-out .55s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__sub { margin: clamp(20px, 2.4vw, 28px) 0 0; max-width: 40ch; }

.console {
  margin-top: clamp(24px, 3vw, 34px);
  background: #fff; border: 1px solid var(--line-ctl); border-radius: 999px;
  padding: 7px 7px 7px 22px; display: flex; align-items: center; gap: 14px; max-width: 540px;
  box-shadow: 0 10px 30px -18px rgba(25,27,30,.28);
}
.console__field { flex: 1; min-width: 0; display: flex; align-items: baseline; overflow: hidden; }
.console__scheme { font-size: 14.5px; color: var(--ink-50); flex: none; }
.console__typed { font-size: 14.5px; font-weight: 600; white-space: nowrap; }
.console__caret { display: inline-block; width: 2px; height: 1.05em; background: var(--blue-deep); vertical-align: -.16em; margin-left: 2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero__note { margin: 16px 0 0; font-size: 14.5px; color: var(--ink-70); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.hero__tick { width: 18px; height: 18px; border-radius: 50%; background: var(--ink); color: var(--cream); display: grid; place-items: center; font-size: 10px; font-weight: 700; flex: none; }

/* phone with real TikTok chrome, showing a real generated slide */
.phone {
  width: min(100%, 300px); margin-inline: auto; aspect-ratio: 9/17.4;
  background: var(--ink); border-radius: 38px; padding: 9px;
  box-shadow: 0 30px 70px -30px rgba(25,27,30,.5);
  position: relative;
}
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #000; }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.phone__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 34%, rgba(0,0,0,0) 55%); }
.phone__dots { position: absolute; top: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; }
.phone__dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.45); }
.phone__dots i.on { background: #fff; width: 16px; border-radius: 3px; }
.phone__cap {
  position: absolute; left: 16px; right: 54px; bottom: 62px; margin: 0;
  font-family: var(--post); font-weight: 700; font-size: 17px; line-height: 1.24; color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.phone__meta { position: absolute; left: 16px; right: 54px; bottom: 30px; margin: 0; font-size: 12.5px; color: rgba(255,255,255,.82); }
.phone__rail { position: absolute; right: 12px; bottom: 30px; display: grid; gap: 16px; justify-items: center; color: #fff; font-size: 10px; }
.phone__rail b { display: block; font-size: 19px; line-height: 1; margin-bottom: 3px; font-weight: 400; }

/* ── Stat cards ─────────────────────────────────────────────── */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.2vw, 16px); }
.stat { background: var(--ink); color: var(--cream); border-radius: 22px; padding: clamp(22px, 2.4vw, 30px); }
.stat b { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(34px, 4vw, 50px); letter-spacing: -.03em; line-height: 1; color: var(--cream); }
.stat p { margin: 14px 0 0; font-size: 14.5px; font-weight: 600; }
.stat small { display: block; margin-top: 6px; font-size: 13px; color: #A6A6A7; font-weight: 400; line-height: 1.45; }

/* ── The wall of real slides ────────────────────────────────── */

.wall { padding-block: clamp(64px, 8vw, 110px); background: var(--cream-2); overflow: hidden; }
.wall__rows { display: grid; gap: clamp(12px, 1.4vw, 20px); margin-top: clamp(34px, 4vw, 54px); transform: rotate(-1.6deg); }
.row { display: flex; overflow: hidden; }
.row__track { display: flex; gap: clamp(12px, 1.4vw, 20px); flex: none; animation: slide 96s linear infinite; }
.row--b .row__track { animation-duration: 124s; animation-direction: reverse; }
.row--c .row__track { animation-duration: 108s; }
.wall:hover .row__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

.slide {
  position: relative; flex: none;
  width: clamp(140px, 15vw, 196px); aspect-ratio: 9/16;
  border-radius: 16px; overflow: hidden; background: var(--ink);
  box-shadow: 0 12px 30px -18px rgba(25,27,30,.45);
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.1) 46%, transparent 62%); }
.slide__hook {
  position: absolute; left: 11px; right: 11px; bottom: 11px; margin: 0;
  font-family: var(--post); font-weight: 700; font-size: clamp(10px, 1.02vw, 13px); line-height: 1.22; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.wall__note { margin: clamp(30px, 3.4vw, 46px) auto 0; text-align: center; font-size: 13.5px; color: var(--ink-50); max-width: 60ch; }

/* ── Steps ──────────────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.step { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(24px, 2.6vw, 34px); box-shadow: var(--shadow); }
.step__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.step__n { display: inline-grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 999px; border: 1.5px solid var(--ink); font-family: var(--display); font-weight: 900; font-size: 15px; }
/* Holds its square from the start so the mark landing shifts nothing. Empty
   until main.js mounts the animation — the numeral carries the step until then. */
.step__art { display: block; width: 96px; aspect-ratio: 1; flex: none; margin: -14px 0; }
.step__art svg { display: block; width: 100%; height: 100%; }
.step p { margin: 0 0 16px; color: var(--ink-70); font-size: 15.5px; }
.step small { font-size: 13px; font-weight: 600; color: var(--ink-50); }

/* ── Features ───────────────────────────────────────────────── */

.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.feat { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(24px, 2.6vw, 32px); box-shadow: var(--shadow); }
/* Was a pastel swatch standing in for an icon. Monochrome leaves no honest
   version of that, so it is a rule instead — a mark, not a missing picture. */
.feat__mark { width: 36px; height: 4px; border-radius: 2px; background: var(--ink); margin-bottom: 20px; }
.feat p { margin: 0; color: var(--ink-70); font-size: 15.5px; }

/* ── Pricing ────────────────────────────────────────────────── */

.toggle { display: inline-flex; background: #fff; border: 1px solid var(--line-ctl); border-radius: 999px; padding: 4px; position: relative; margin-top: 22px; }
.toggle__pill { position: absolute; top: 4px; bottom: 4px; border-radius: 999px; background: var(--ink); transition: transform .4s ease-out, width .4s ease-out; }
.toggle button { position: relative; z-index: 1; border: 0; background: none; padding: 9px 22px; font-size: 14px; font-weight: 700; border-radius: 999px; color: var(--ink-70); transition: color .3s ease-out; white-space: nowrap; }
.toggle button.is-on { color: var(--cream); }
.toggle__save { font-weight: 700; margin-left: 7px; color: var(--ink); }
.toggle button.is-on .toggle__save { color: var(--cream); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: clamp(26px, 2.8vw, 34px); display: flex; flex-direction: column; box-shadow: var(--shadow); }
/* The popular plan is called out by an ink edge rather than a fill, so the
   three cards stay one surface. */
.plan--pop { border: 2px solid var(--ink); position: relative; }
.plan__badge { position: absolute; top: 22px; right: 22px; background: var(--ink); color: var(--cream); border-radius: 999px; padding: 5px 12px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.plan__name { font-family: var(--display); font-weight: 900; font-size: 24px; letter-spacing: -.022em; margin: 0 0 6px; }
.plan__blurb { margin: 0 0 24px; font-size: 14.5px; color: var(--ink-70); min-height: 44px; }
.plan__price { display: flex; align-items: baseline; gap: 2px; margin: 0 0 22px; flex-wrap: wrap; }
.plan__cur { font-family: var(--display); font-weight: 800; font-size: 22px; opacity: .55; }
.plan__num { font-family: var(--display); font-weight: 900; font-size: clamp(38px, 3.8vw, 48px); letter-spacing: -.03em; line-height: .95; }
.plan__per { font-size: 13.5px; color: var(--ink-50); margin-left: 8px; }
.plan__feats { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 11px; }
.plan__feats li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--ink-70); }
.plan__feats li::before { content: ''; position: absolute; left: 0; top: .45em; width: 14px; height: 14px; border-radius: 50%; background: var(--cream-2); border: 1px solid var(--line); }

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

.faq__list { max-width: 800px; margin-inline: auto; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line-ctl); border-radius: 20px; box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 56px 22px 26px; font-family: var(--display); font-weight: 800; font-size: clamp(16.5px, 1.5vw, 19px); letter-spacing: -.015em; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ''; position: absolute; right: 26px; top: 50%; background: var(--ink); border-radius: 2px; transition: transform .35s ease-out, opacity .35s ease-out; }
.faq summary::before { width: 14px; height: 2px; translate: 0 -50%; }
.faq summary::after { width: 2px; height: 14px; right: 32px; translate: 0 -50%; }
.faq details[open] summary::after { transform: rotate(90deg); opacity: 0; }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease-out; }
.faq details[open] .faq__body { grid-template-rows: 1fr; }
.faq__body > div { overflow: hidden; }
.faq__body p { margin: 0 26px 24px; color: var(--ink-70); font-size: 16px; }

/* ── Closing ────────────────────────────────────────────────── */

.closing { background: var(--ink); color: var(--cream); padding-block: clamp(80px, 10vw, 148px); text-align: center; }
.closing p { margin: 20px auto 32px; font-size: 18px; color: rgba(255,255,255,.76); max-width: 46ch; }
.closing small { display: block; margin-top: 20px; font-size: 13.5px; color: var(--on-ink-dim); }
/* Inverted on the ink band — the page's only white button. */
.closing .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }

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

/* The closing band is ink too now, so a hairline keeps the two from reading as
   one long slab. */
.foot { background: var(--ink); color: var(--cream); border-top: 1px solid rgba(255,255,255,.14); padding-top: clamp(56px, 7vw, 88px); }
.foot__top { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,2fr); gap: clamp(32px,5vw,70px); padding-bottom: clamp(44px,5vw,70px); }
.foot .brand { color: var(--cream); font-size: 24px; }
.foot .brand__scale { color: #9AA0A6; }
.foot .brand__mark { content: url('/assets/mark-on-dark.png'); }
.foot__blurb { margin: 16px 0 0; color: #A6A6A7; font-size: 15px; max-width: 34ch; }
.foot__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.foot__cols div { display: flex; flex-direction: column; gap: 11px; }
.foot__ct { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-dim); margin-bottom: 4px; }
.foot__cols a { font-size: 15px; color: #CDCCCA; width: fit-content; }
.foot__bar { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: 24px; border-top: 1px solid rgba(250,248,245,.14); font-size: 14px; color: var(--on-ink-dim); }
.foot__barlinks { display: flex; gap: 22px; }

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps, .feats, .plans { grid-template-columns: 1fr 1fr; }
  .feats > :last-child, .steps > :last-child { grid-column: 1 / -1; }
  .plans { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__signin { display: none; }
  .nav__burger { display: block; }
  .nav__cta { margin-left: auto; }
  .nav__inner { background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-color: var(--line); }
  .hero__title .swash { white-space: normal; }
  .stats, .steps, .feats { grid-template-columns: 1fr; }
  .feats > :last-child, .steps > :last-child { grid-column: auto; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .console { flex-wrap: wrap; border-radius: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   Sub-pages — privacy, terms, 404.
   They share the nav and footer above; these are the extras.
   ═══════════════════════════════════════════════════════════════ */

/* legacy button aliases so the sub-pages keep working */
.btn--primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line-ctl); }
.link-strong  { font-size: 15px; font-weight: 600; }
.foot__barLinks { display: flex; gap: 22px; }

/* ── Legal documents ────────────────────────────────────────── */

.legal { padding-top: clamp(120px, 14vw, 176px); padding-bottom: clamp(72px, 9vw, 120px); }
.legal__doc { width: min(100%, 760px); margin-inline: auto; padding-inline: var(--gut); }
.legal__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  border-radius: 999px; padding: 7px 16px 7px 13px; margin: 0 0 24px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-70);
}
.legal__eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.legal h1 { font-family: var(--display); font-weight: 900; letter-spacing: -.028em; line-height: 1.04; font-size: clamp(34px, 4.6vw, 54px); margin: 0 0 14px; }
.legal__meta { margin: 0 0 clamp(34px, 4vw, 48px); color: var(--ink-50); font-size: 15px; }
.legal h2 { font-family: var(--display); font-weight: 800; letter-spacing: -.018em; font-size: clamp(20px, 2vw, 25px); line-height: 1.24; margin: clamp(36px, 4vw, 52px) 0 12px; }
.legal p, .legal li { color: var(--ink-70); font-size: 16.5px; line-height: 1.68; }
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.legal li { position: relative; padding-left: 26px; }
.legal li::before { content: ''; position: absolute; left: 0; top: .58em; width: 12px; height: 12px; border-radius: 50%; background: var(--cream-2); border: 1px solid var(--line); }
.legal strong { color: var(--ink); font-weight: 700; }
.legal a { color: var(--blue-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal__footer { margin-top: clamp(44px, 5vw, 64px); padding-top: 28px; border-top: 1px solid var(--line); }
.legal__back { font-weight: 700; font-size: 15.5px; }

/* ── 404 ────────────────────────────────────────────────────── */

.notfound { min-height: 78vh; display: grid; place-items: center; padding-top: clamp(120px, 14vw, 170px); padding-bottom: clamp(64px, 8vw, 100px); }
.notfound__inner { text-align: center; max-width: 620px; }
.notfound__code {
  font-family: var(--display); font-weight: 900; letter-spacing: -.05em; line-height: .9;
  font-size: clamp(96px, 17vw, 200px); margin: 0 0 4px;
  color: var(--cream-2);
}
.notfound .mono-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); margin: 0 0 18px; }
.notfound__title { font-family: var(--display); font-weight: 900; letter-spacing: -.028em; line-height: 1.04; font-size: clamp(30px, 4.2vw, 48px); margin: 0 0 16px; }
.notfound__sub { color: var(--ink-70); font-size: 17px; margin: 0 auto 32px; max-width: 46ch; }
.notfound__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
