/* Yap — shared design tokens */

:root {
  --paper: #F2C94C;
  --paperDeep: #DBA934;
  --ink: #17120A;
  --cream: #F7F1DF;
  --teal: #19B39B;
  --tealDark: #0C7469;
  --archiveSoft: #F4DF95;
  --recordRed: #FF4B37;
  --recordDark: #B92920;

  --ink-66: rgba(23, 18, 10, 0.66);
  --ink-42: rgba(23, 18, 10, 0.42);
  --ink-35: rgba(23, 18, 10, 0.35);
  --ink-16: rgba(23, 18, 10, 0.16);
  --ink-08: rgba(23, 18, 10, 0.08);

  --teal-28: rgba(25, 179, 155, 0.28);

  --radius-card: 14px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01' on;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
}

/* ============ Poster background (stripes + teal blot) ============ */
.bg-poster {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.bg-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    var(--paperDeep) 0 2px,
    transparent 2px 22px
  );
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.bg-poster.bg-poster--faint::before { opacity: 0.28; }
.bg-poster.bg-poster--whisper::before { opacity: 0.16; }

.poster-content { position: relative; z-index: 1; }

/* Teal blot decoration */
.blot {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.55;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 0;
}

/* ============ Type ============ */
.display {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
}

.eyebrow {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-66);
}

.eyebrow--spaced {
  display: inline-block;
  margin-bottom: 18px;
}

.eyebrow--footer {
  margin-bottom: 14px;
}

.text-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-note {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* Buttons (specificity bump: a.btn beats most nav link selectors) */
a.btn, .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  background: var(--cream);
  color: var(--ink);
}
a.btn:hover, .btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 0 var(--ink); }
a.btn:active, .btn:active { transform: translate(1px, 1px); box-shadow: 0 0 0 0 var(--ink); }

a.btn--ink, .btn--ink {
  background: var(--ink);
  color: var(--paper);
}
a.btn--ink:hover, .btn--ink:hover { box-shadow: 4px 4px 0 0 var(--teal); }

.btn--ghost {
  background: transparent;
}

a.btn.btn--sm,
.btn.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn--lg { font-size: 18px; padding: 18px 28px; }

/* ============ Record dot ============ */
.record-dot {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--recordRed);
  border: 3px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(255, 75, 55, 0.18), 6px 6px 0 0 var(--ink);
  cursor: pointer;
  position: relative;
}
.record-dot--lg { width: 124px; height: 124px; }
.record-dot svg { color: var(--cream); }

/* pulse ring (used when recording=true) */
.record-dot.is-pulsing::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid var(--recordRed);
  animation: pulse 1.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ Yap card (transcript card) ============ */
.yap-card {
  background: var(--cream);
  border: 1.5px solid var(--ink-35);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  color: var(--ink);
}
.yap-card .text {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-wrap: pretty;
}
.yap-card .date {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-42);
}

/* ============ Chatter mark (logo glyph variations) ============ */
.chatter-mark {
  display: inline-block;
  position: relative;
}

/* ============ Footer ============ */
.site-footer {
  border-top: 2px solid var(--ink);
  padding: 48px 0 40px;
  background: var(--paper);
  position: relative;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.site-footer a:not(.footer-brand) {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.site-footer a:not(.footer-brand):hover { text-decoration: underline; text-underline-offset: 4px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.footer-mark {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 0 var(--ink);
}

.footer-description {
  margin: 18px 0 0;
  max-width: 280px;
  font-weight: 500;
  color: var(--ink-66);
  font-size: 15px;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1.5px solid var(--ink-35);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-66);
}

/* ============ Phone frame (used in hero illustrations) ============ */
.phone {
  width: 280px;
  border-radius: 44px;
  background: var(--ink);
  padding: 8px;
  box-shadow: 10px 10px 0 0 var(--ink);
  position: relative;
}
.phone .screen {
  border-radius: 36px;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: var(--paper);
}
.phone .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ Utility ============ */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.container-sm {
  width: min(760px, 92vw);
  margin: 0 auto;
}

.divider-thick {
  height: 4px;
  background: var(--ink);
  width: 100%;
}

/* Tagged "BETA" pill */
.beta-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.beta-pill--cta {
  margin-bottom: 22px;
}

.beta-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--recordRed);
  box-shadow: 0 0 0 3px rgba(255, 75, 55, 0.25);
}

/* Sticky variation tab bar — top-center, immediately visible */
.var-bar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 100;
  box-shadow: 4px 4px 0 0 var(--ink);
  font-family: 'Nunito', sans-serif;
}
.var-bar::before {
  content: "Compare:";
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-66);
  padding: 0 10px 0 12px;
  text-transform: uppercase;
}
.var-bar a, .var-bar button {
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.var-bar a:hover, .var-bar button:hover { background: var(--archiveSoft); }
.var-bar a.is-current {
  background: var(--ink);
  color: var(--paper);
}
.var-bar .sep {
  width: 1.5px;
  height: 22px;
  background: var(--ink-16);
  margin: 0 4px;
}

/* Anim toggle (now lives inside var-bar) */
.anim-toggle .led {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--recordRed);
  box-shadow: 0 0 0 3px rgba(255, 75, 55, 0.22);
}
.anim-toggle.is-off .led { background: var(--ink-35); box-shadow: none; }

/* Push site nav down so var-bar doesn't overlap it (only on pages with var-bar) */
body:has(.var-bar) { padding-top: 56px; }

@media (max-width: 760px) {
  .var-bar { padding: 4px; gap: 2px; }
  .var-bar::before { padding: 0 6px; font-size: 11px; }
  .var-bar a, .var-bar button { padding: 6px 8px; font-size: 12px; }
  .var-bar .sep { display: none; }
  .anim-toggle { display: none !important; }
  body:has(.var-bar) { padding-top: 50px; }
}

@media (max-width: 720px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ Home page ============ */
/* Variation 3 — Friendly: warm, conversational, two-up hero, gentle texture */

body { background: var(--paper); }

/* faint stripes everywhere */
.home-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--paperDeep) 0 2px, transparent 2px 26px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.home-body main, .home-body header, .home-body footer { position: relative; z-index: 1; }

/* NAV */
.nav {
  padding: 22px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 900; font-size: 22px; letter-spacing: -0.01em;
}
.nav .brand .mark {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.nav .nav-links {
  display: flex; gap: 28px;
  font-weight: 700; font-size: 15px;
}
.nav .nav-links a:not(.btn) {
  color: var(--ink); text-decoration: none; padding: 8px 0;
}
.nav .nav-links a:not(.btn):hover { color: var(--tealDark); }

/* HERO — Loud Poster headline */
.hero {
  padding: 40px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 9.5vw, 154px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 22px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .tag {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 0 .22em .04em;
  transform: rotate(-2deg);
  border-radius: 14px;
  margin-top: 18px;
  box-shadow: 6px 6px 0 0 var(--teal);
}
.hero h1 .red-dot { color: var(--recordRed); }
.hero .lede {
  margin: 30px 0 36px;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  max-width: 480px;
  line-height: 1.5;
  text-wrap: pretty;
}
.hero .cta-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.hero .cta-note {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-66);
}

/* Phone illustration */
.phone-stage {
  position: relative;
  min-height: 580px;
  display: flex; align-items: center; justify-content: center;
}
.phone-stage .yellow-bg {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--paperDeep);
  opacity: 0.6;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0;
}
.phone-stage .teal-bg {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
  top: 70%; left: 35%;
  z-index: 0;
}
.phone-stage .phone-wrap {
  position: relative;
  z-index: 1;
  transform: rotate(-4deg);
}
.phone-stage .phone {
  width: 280px;
  border-radius: 44px;
  background: var(--ink);
  padding: 8px;
  box-shadow: 14px 14px 0 0 var(--ink);
}
.phone-stage .phone .screen {
  border-radius: 36px;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: var(--paper);
}
.phone-stage .phone .screen img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Floating yap chips around phone */
.chip-float {
  position: absolute;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 4px 4px 0 0 var(--ink);
  z-index: 2;
  max-width: 200px;
}
.chip-float .date {
  font-size: 11px; font-weight: 700; color: var(--ink-42);
  display: block; margin-top: 6px;
}
.chip-float.c1 { top: 4%; right: -8%; transform: rotate(6deg); }
.chip-float.c2 { bottom: 8%; left: -10%; transform: rotate(-5deg); }
.chip-float.c3 { top: 38%; left: -14%; transform: rotate(-3deg); }

/* PHILOSOPHY block */
.why {
  padding: 110px 0;
  background: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 1;
}
.why .container { position: relative; z-index: 1; }
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--ink-08) 0 2px, transparent 2px 32px);
  opacity: 0.7;
  pointer-events: none;
}
.why h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  text-wrap: balance;
  max-width: 18ch;
}
.why .why-sub {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-66);
  max-width: 540px;
  margin: 0 0 64px;
  line-height: 1.5;
  text-wrap: pretty;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.why-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--paperDeep) 0 2px, transparent 2px 22px);
  opacity: 0.34;
  pointer-events: none;
}
.why-card > * { position: relative; z-index: 1; }
.why-card .badge {
  width: 50px; height: 50px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.why-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

/* PRIVACY — conversational illustration block */
.privacy-stance {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.privacy-stance .sec-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-66);
  margin-bottom: 18px;
}
.privacy-stance h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.privacy-stance .lede {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-66);
  max-width: 460px;
  line-height: 1.55;
  text-wrap: pretty;
  margin: 0 0 32px;
}
.privacy-bubbles {
  display: grid;
  gap: 14px;
  max-width: 460px;
}
.privacy-bubbles .bubble {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 4px 4px 0 0 var(--ink);
  position: relative;
}
.privacy-bubbles .bubble.b2 { transform: translateX(28px); background: var(--archiveSoft); }
.privacy-bubbles .bubble.b3 { background: var(--cream); }
.privacy-bubbles .bubble.b4 { transform: translateX(20px); background: var(--archiveSoft); }
.privacy-bubbles .bubble strong { font-weight: 900; }
.privacy-bubbles .bubble .ico {
  display: inline-block;
  width: 24px; height: 24px;
  background: var(--teal);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  line-height: 24px;
  margin-right: 8px;
  vertical-align: -4px;
  font-size: 14px;
}

/* CTA */
.cta-band {
  padding: 110px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 80px 48px;
  box-shadow: 14px 14px 0 0 var(--ink);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-card .red-blob {
  position: absolute;
  bottom: -100px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--recordRed);
  opacity: 0.14;
}
.cta-card .teal-blob {
  position: absolute;
  top: -80px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.22;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.cta-card p {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-66);
  margin: 0 0 36px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
  text-wrap: pretty;
}
.cta-card .btn--primary {
  background: var(--recordRed);
  color: var(--cream);
  border-color: var(--ink);
}
.cta-card .btn--primary:hover { box-shadow: 4px 4px 0 0 var(--ink); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; gap: 32px; }
  .privacy-bubbles { max-width: calc(100% - 32px); }
  .nav .nav-links { display: none; }
  .phone-stage { min-height: 520px; }
  .chip-float.c1 { right: 2%; }
  .chip-float.c3 { left: 2%; }
}

/* ============ Legal and support pages ============ */

/* Legal/utility page shared styles */

.legal-body { background: var(--cream); }

.legal-nav-wrap {
  background: var(--cream);
  border-bottom: 1.5px solid var(--ink-16);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
.legal-nav {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-nav .brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 900; font-size: 20px;
}
.legal-nav .brand .mark {
  width: 38px; height: 38px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.legal-nav nav {
  display: flex; align-items: center; gap: 22px;
  font-weight: 700; font-size: 15px;
}
.legal-nav nav a:not(.btn) {
  color: var(--ink-66);
  text-decoration: none;
}
.legal-nav nav a:not(.btn):hover { color: var(--ink); }
.legal-nav nav a.is-current { color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 2px; }

.legal-hero {
  padding: 80px 0 32px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--paperDeep) 0 2px, transparent 2px 24px);
  opacity: 0.28;
  pointer-events: none;
}
.legal-hero .container-sm { position: relative; }
.legal-kicker {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  white-space: nowrap;
}
.legal-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.legal-hero .updated {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-66);
  margin: 0 0 24px;
}

.legal-content {
  padding: 64px 0 96px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}
.legal-content h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.legal-content h2:first-of-type { margin-top: 24px; }
.legal-content h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 19px;
  line-height: 1.2;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal-content p {
  margin: 0 0 18px;
  color: var(--ink-66);
}
.legal-content p strong, .legal-content li strong { color: var(--ink); font-weight: 800; }
.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--paperDeep);
}
.legal-content a:hover { text-decoration-color: var(--recordRed); }
.legal-content code {
  background: var(--paper);
  border: 1px solid var(--ink-16);
  padding: 1px 6px;
  border-radius: 6px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
}

.legal-list {
  list-style: none;
  padding: 0; margin: 0 0 18px;
  display: grid; gap: 10px;
}
.legal-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-66);
}
.legal-list li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 0;
  color: var(--recordRed);
  font-weight: 900;
}

.legal-list--plain li {
  padding-left: 0;
}

.legal-list--plain li::before {
  content: none;
}

.legal-summary {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 26px 28px;
  margin: 0 0 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.legal-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--paperDeep) 0 2px, transparent 2px 22px);
  opacity: 0.3;
  pointer-events: none;
}
.legal-summary > * { position: relative; z-index: 1; }
.legal-summary h2 {
  margin: 0 0 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal-summary ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.legal-summary li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.legal-summary li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--ink);
}

.legal-footnote {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 2px solid var(--ink-16);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-42);
  font-style: italic;
}
.legal-footnote p { margin: 0; color: var(--ink-42); }

/* Support page extras */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0 48px;
}
.support-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--ink);
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.support-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 0 var(--ink); }
.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--paperDeep) 0 2px, transparent 2px 22px);
  opacity: 0.3;
  pointer-events: none;
}
.support-card > * { position: relative; z-index: 1; }
.support-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.support-card p {
  margin: 0;
  color: var(--ink-66);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.support-card .ico {
  display: inline-flex;
  width: 42px; height: 42px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.faq {
  display: grid; gap: 12px;
  margin: 24px 0 48px;
}
.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  transition: transform .15s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 14px 0 0;
  color: var(--ink-66);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .support-grid { grid-template-columns: 1fr; }
  .legal-nav nav a:not(.btn) { display: none; }
}
