/* ===========================================================
   FitFolder — sales page · "Zest" identity
   Bright canvas, one bold lime accent, warm coral (recipe) +
   teal (workout). Display = Space Grotesk, body = Hanken Grotesk.
   --accent is a FILL only (dark text on it); use --accent-deep
   for any interactive TEXT / icons that sit on a light surface.
   =========================================================== */

:root {
  --paper:    #F7F8F2;
  --surface:  #FFFFFF;
  --surface2: #FBFCF6;

  --ink:   #16170F;
  --soft:  #5E6155;
  --faint: #9A9D8B;

  --line:  rgba(22,23,15,.10);
  --line2: rgba(22,23,15,.05);

  --accent:      #BEEF2E;   /* lime — FILL only (buttons, chips, highlights) */
  --accent-ink:  #243200;   /* dark text ON the lime fill */
  --accent-bg:   #ECFAC6;   /* pale lime tint (icon tiles, soft fills) */
  --accent-deep: #1C8A50;   /* readable green for links / icons / labels on light */

  --rec:    #C8542B;        /* recipe accent — warm coral */
  --rec-bg: #FBE7DD;
  --wk:     #0E9C7E;        /* workout accent — teal */
  --wk-bg:  #D6F0E8;

  --shadow-card: 0 18px 40px -22px rgba(22,23,15,.30), 0 2px 6px rgba(22,23,15,.04);
  --shadow-soft: 0 2px 10px rgba(22,23,15,.05);

  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;

  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 48px);

  --serif: "Space Grotesk", "Hanken Grotesk", system-ui, sans-serif;   /* display */
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* Dark palette — applied via the explicit data-theme attribute (set by the head
   script from the saved choice or the OS preference), so the nav toggle can
   override the system setting. */
:root[data-theme="dark"] {
    --paper:    #14160D;
    --surface:  #1E2016;
    --surface2: #191B12;

    --ink:   #F0F2E4;
    --soft:  #A6A999;
    --faint: #6E7160;

    --line:  rgba(255,255,255,.10);
    --line2: rgba(255,255,255,.05);

    --accent:      #C8F23E;
    --accent-ink:  #1A2400;
    --accent-bg:   #2B3608;
    --accent-deep: #8BE6A6;

    --rec:    #F0A07E;
    --rec-bg: #2E2016;
    --wk:     #79D9B5;
    --wk-bg:  #14271F;

    --shadow-card: 0 22px 48px -24px rgba(0,0,0,.7), 0 2px 6px rgba(0,0,0,.3);
    --shadow-soft: 0 2px 10px rgba(0,0,0,.35);
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

a { color: inherit; text-decoration: none; }
em { font-style: italic; }
strong { font-weight: 600; }

.display { font-family: var(--serif); font-weight: 500; letter-spacing: -.022em; line-height: 1.06; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 14px;
}

.section-title { font-size: clamp(30px, 5vw, 46px); }
.section-sub { color: var(--soft); font-size: clamp(16px, 2.4vw, 19px); max-width: 56ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 600; font-size: 15.5px;
  padding: 13px 22px; border-radius: 999px;
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--small { padding: 9px 18px; font-size: 14.5px; }
.btn--block { width: 100%; padding: 16px; font-size: 16.5px; border-radius: 16px; }

.appstore { display: inline-block; transition: transform .15s ease; }
.appstore:hover { transform: translateY(-2px); }
.appstore__badge { width: 168px; height: auto; display: block; }
.appstore--lg .appstore__badge { width: 196px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--pad);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line2);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.brand__icon { width: 30px; height: 30px; border-radius: 7px; display: block; box-shadow: var(--shadow-soft); }
.brand__icon--sm { width: 24px; height: 24px; border-radius: 6px; }
.brand__name { font-family: var(--serif); font-size: 21px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; font-size: 15px; color: var(--soft); }
.nav__links a { transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
/* theme toggle */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.theme-toggle:hover { background: var(--surface); border-color: var(--line); transform: translateY(-1px); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .theme-toggle { margin-left: auto; }
}

/* ---------- layout helpers ---------- */
main > section { padding: clamp(64px, 9vw, 120px) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.section-title { margin-bottom: 14px; }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-top: clamp(40px, 6vw, 72px) !important;
}
.hero h1 { font-size: clamp(38px, 6vw, 64px); margin-bottom: 22px; }
.lede { color: var(--soft); font-size: clamp(17px, 2.3vw, 20px); max-width: 52ch; margin-bottom: 30px; }
.lede em { color: var(--ink); font-style: italic; }
.lede strong { color: var(--ink); }
.hero__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__trust { font-size: 14px; color: var(--soft); }

/* phone mockup */
.hero__art { position: relative; display: flex; justify-content: center; }
.hero__glow {
  position: absolute; inset: 8% 12%; z-index: 0;
  background: radial-gradient(60% 55% at 60% 35%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 70%);
  filter: blur(36px); opacity: .55;
}
.phone {
  position: relative; z-index: 1;
  width: min(310px, 78vw); aspect-ratio: 300 / 620;
  background: linear-gradient(160deg, #2a2722, #16140f);
  border-radius: 46px; padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(33,30,26,.55), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone__island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #000; border-radius: 999px; z-index: 3;
}
.phone__screen {
  height: 100%; border-radius: 36px; background: var(--paper);
  padding: 46px 16px 18px; overflow: hidden; position: relative;
}
.share-toast {
  display: flex; align-items: center; gap: 9px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 12.5px; font-weight: 600;
  padding: 10px 12px; border-radius: 13px; margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.share-toast__icon { font-size: 15px; }
.share-toast strong { font-weight: 700; }

/* generic app card (in phone) */
.appcard { background: var(--surface); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); }
.appcard__media { height: 116px; position: relative; display: flex; align-items: flex-end; padding: 12px; overflow: hidden; }
.appcard__media--rec { background: linear-gradient(135deg, var(--rec-bg), color-mix(in srgb, var(--rec) 30%, var(--rec-bg))); }
.appcard__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* scrim so the chip stays legible over the photo */
.appcard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.32), rgba(0,0,0,0) 55%); }
.appcard__media .chip { position: relative; z-index: 1; }
.appcard__body { padding: 14px 15px 15px; }
.appcard__title { font-family: var(--serif); font-size: 19px; line-height: 1.15; margin-bottom: 5px; }
.appcard__meta { font-size: 12.5px; color: var(--soft); margin-bottom: 12px; }

/* ---------- chips ---------- */
.chip {
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.chip--rec { background: var(--rec-bg); color: var(--rec); }
.chip--wk { background: var(--wk-bg); color: var(--wk); }
.chip--accent { background: var(--accent-bg); color: var(--accent-deep); }

/* checklist */
.checklist { list-style: none; display: grid; gap: 9px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink); }
.tick {
  width: 18px; height: 18px; border-radius: 6px; border: 2px solid var(--line);
  flex: none; position: relative; background: var(--surface2);
}
.tick--on { background: var(--accent); border-color: var(--accent-deep); }
.tick--on::after {
  content: ""; position: absolute; left: 5px; top: 2px;
  width: 4px; height: 8px; border: solid var(--accent-ink); border-width: 0 2px 2px 0; transform: rotate(42deg);
}

/* attribution row */
.attrib { display: flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 12px; color: var(--soft); }
.attrib__dot { width: 16px; height: 16px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--rec)); flex: none; }
.attrib__link { color: var(--accent-deep); font-weight: 600; }

/* ---------- pain ---------- */
.pain { text-align: center; }
.pain .section-sub { margin: 0 auto; }
.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 44px 0 30px; }
.pain__card {
  background: var(--surface); border: 1px solid var(--line2); border-radius: var(--r-md);
  padding: 30px 22px; box-shadow: var(--shadow-soft); text-align: left;
}
.pain__num { font-family: var(--serif); font-size: 52px; color: var(--accent-deep); line-height: 1; display: block; margin-bottom: 12px; }
.pain__card p { color: var(--soft); font-size: 15.5px; }
.pain__turn { font-family: var(--serif); font-size: clamp(20px, 3vw, 27px); color: var(--ink); max-width: 30ch; margin: 0 auto; }

/* ---------- device frame (real screenshots) ---------- */
.device { background: #0E0F08; padding: 7px; border-radius: 32px; box-shadow: var(--shadow-card); display: inline-block; line-height: 0; }
.device img { display: block; width: 100%; height: auto; border-radius: 25px; }
.device--hero { width: min(300px, 78vw); }
.device--sm { width: min(212px, 62vw); }

/* ---------- how it works ---------- */
.how { text-align: center; }
.how .section-sub { margin: 6px auto 0; }
.flow { display: flex; align-items: flex-start; justify-content: center; gap: 14px; margin-top: 52px; }
.flow__step { flex: 1 1 0; max-width: 230px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.flow__head { display: flex; align-items: center; gap: 9px; margin: 22px 0 8px; }
.flow__num {
  width: 27px; height: 27px; border-radius: 999px; background: var(--accent); color: var(--accent-ink);
  font-family: var(--serif); font-weight: 500; font-size: 15px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.flow__head h3 { font-size: 17.5px; font-weight: 600; }
.flow__step > p { color: var(--soft); font-size: 14.5px; max-width: 30ch; }
.flow__arrow { flex: none; color: var(--accent-deep); font-size: 26px; line-height: 1; margin-top: 205px; }

@media (max-width: 820px) {
  .flow { flex-direction: column; align-items: center; gap: 38px; }
  .flow__arrow { display: none; }
  .flow__step { max-width: 320px; }
}

/* ---------- recipes & workouts ---------- */
.both__head { text-align: center; max-width: 60ch; margin: 0 auto; }
.both__head .section-sub { margin: 0 auto; }
.amp { font-style: italic; color: var(--accent-deep); }
.both__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.bigcard {
  background: var(--surface); border: 1px solid var(--line2); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-card);
}
.bigcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bigcard__time { font-size: 13px; color: var(--soft); font-weight: 500; }
.bigcard__title { font-family: var(--serif); font-size: clamp(24px, 3vw, 30px); line-height: 1.1; margin-bottom: 5px; }
.bigcard__meta { color: var(--soft); font-size: 14.5px; margin-bottom: 22px; }
.bigcard__label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.bigcard__split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.bigcard .checklist li { font-size: 14.5px; }

.servings { border-left: 1px solid var(--line2); padding-left: 22px; }
.stepper { display: inline-flex; align-items: center; gap: 14px; background: var(--surface2); border: 1px solid var(--line); border-radius: 12px; padding: 8px 14px; }
.stepper button { background: none; border: none; color: var(--accent-deep); font-size: 20px; font-weight: 600; cursor: default; line-height: 1; }
.stepper span { font-family: var(--serif); font-size: 20px; min-width: 16px; text-align: center; }
.servings__hint { font-size: 12.5px; color: var(--faint); margin-top: 12px; }

.sets { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.sets th { text-align: left; font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--faint); font-weight: 700; padding-bottom: 10px; }
.sets th:not(:first-child), .sets td:not(:first-child) { text-align: center; width: 56px; }
.sets td { padding: 11px 0; border-top: 1px solid var(--line2); }
.sets td:first-child { color: var(--ink); }
.sets td:not(:first-child) { color: var(--soft); font-variant-numeric: tabular-nums; }
.sets__burnout td:first-child { color: var(--wk); font-weight: 600; }

/* ---------- contrast / reads the video ---------- */
.contrast { background: var(--surface2); max-width: none !important; }
.contrast__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contrast__demo { display: grid; gap: 14px; }
.demo-row { background: var(--surface); border: 1px solid var(--line2); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-soft); }
.demo-row p { font-size: 15px; color: var(--ink); }
.demo-row--bad p { color: var(--soft); font-style: italic; }
.demo-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; margin-bottom: 10px; }
.demo-tag--bad { background: var(--line); color: var(--soft); }
.demo-tag--good { background: var(--wk-bg); color: var(--wk); }
.demo-arrow { text-align: center; color: var(--accent-deep); font-size: 22px; line-height: 0; }

/* ---------- features ---------- */
.features { text-align: center; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; text-align: left; }
.feature {
  background: var(--surface); border: 1px solid var(--line2); border-radius: var(--r-md);
  padding: 26px 22px; box-shadow: var(--shadow-soft);
}
.feature__icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px; background: var(--accent-bg); margin-bottom: 16px;
}
.feature__icon svg { width: 23px; height: 23px; fill: none; stroke: var(--accent-deep); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 7px; }
.feature p { font-size: 14.5px; color: var(--soft); }

/* ---------- faq ---------- */
.faq { max-width: 800px; }
.faq .section-title { text-align: center; margin-bottom: 38px; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line2); border-radius: var(--r-md); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16.5px; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 16px; height: 16px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--accent-deep); border-radius: 2px; transition: transform .2s ease; }
.faq__plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__item p { padding: 0 24px 22px; color: var(--soft); font-size: 15.5px; max-width: 64ch; }

/* ---------- final cta ---------- */
.final { text-align: center; }
.final__inner {
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 16%, var(--surface)), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(44px, 7vw, 76px) var(--pad); box-shadow: var(--shadow-card);
}
.final h2 { font-size: clamp(28px, 4.6vw, 44px); margin-bottom: 12px; max-width: 18ch; margin-inline: auto; }
.final__inner > p { color: var(--soft); font-size: 18px; margin-bottom: 30px; }
.final .appstore { margin: 0 auto; }
.final__trust { font-size: 14px; color: var(--soft); margin-top: 18px; }

/* ---------- footer ---------- */
.footer {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 40px var(--pad) 56px; border-top: 1px solid var(--line2);
  color: var(--soft); font-size: 14.5px;
}
.footer__brand { display: flex; align-items: center; gap: 9px; font-family: var(--serif); font-size: 18px; color: var(--ink); }
.footer__links { display: flex; gap: 22px; margin-left: auto; }
.footer__links a:hover { color: var(--ink); }
.footer__copy { width: 100%; color: var(--faint); font-size: 13px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__copy { order: 1; }
  .hero__art { order: 2; }
  .lede, .hero h1 { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .contrast__inner { grid-template-columns: 1fr; gap: 34px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .pain__grid { grid-template-columns: 1fr; }
  .both__cards { grid-template-columns: 1fr; }
  .pain__card { text-align: left; }
}
@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
  .bigcard__split { grid-template-columns: 1fr; }
  .servings { border-left: none; padding-left: 0; border-top: 1px solid var(--line2); padding-top: 18px; }
  .footer__links { margin-left: 0; width: 100%; }
}

/* ===========================================================
   Legal pages (terms / privacy) — readable prose on the Zest canvas
   =========================================================== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) var(--pad) clamp(60px, 9vw, 104px);
}
.legal__back {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--soft); font-size: 14.5px; font-weight: 500; margin-bottom: 30px;
  transition: color .15s ease;
}
.legal__back:hover { color: var(--ink); }
.legal h1 { font-size: clamp(32px, 6vw, 50px); margin-bottom: 12px; }
.legal__meta { color: var(--faint); font-size: 14px; margin-bottom: 4px; }
.legal__intro { color: var(--soft); font-size: 18px; margin: 16px 0 4px; }

/* plain-language summary box */
.legal__note {
  border: 1px solid var(--line);
  background: var(--surface2);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 22px 0;
}
.legal__note p { margin: 0 0 8px; }
.legal__note p:last-child { margin-bottom: 0; }
.legal__note--warn {
  border-color: color-mix(in srgb, var(--rec) 38%, transparent);
  background: var(--rec-bg);
}
.legal__note-label {
  display: inline-block; font-family: var(--serif); font-weight: 600;
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 6px;
}
.legal__note--warn .legal__note-label { color: var(--rec); }

.legal h2 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.01em;
  font-size: clamp(20px, 3vw, 25px); line-height: 1.2;
  color: var(--ink); margin: 46px 0 12px;
}
.legal h2 .legal__n {
  color: var(--accent-deep); margin-right: 10px; font-variant-numeric: tabular-nums;
}
.legal h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 26px 0 8px; }
.legal p { color: var(--soft); margin: 0 0 14px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a:not(.legal__back) { color: var(--accent-deep); font-weight: 600; }
.legal a:not(.legal__back):hover { text-decoration: underline; }

.legal ul { list-style: none; margin: 0 0 16px; padding: 0; }
.legal li { color: var(--soft); position: relative; padding-left: 22px; margin-bottom: 9px; }
.legal li::before {
  content: ""; position: absolute; left: 3px; top: .6em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.legal li strong { color: var(--ink); }

/* processor table */
.legal__table { width: 100%; border-collapse: collapse; margin: 4px 0 20px; font-size: 15px; }
.legal__table th, .legal__table td {
  text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line2);
  vertical-align: top;
}
.legal__table th { font-weight: 700; color: var(--ink); font-size: 13px; letter-spacing: .02em; text-transform: uppercase; }
.legal__table td { color: var(--soft); }
.legal__table td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
@media (max-width: 560px) {
  .legal__table, .legal__table tbody, .legal__table tr, .legal__table td, .legal__table th { display: block; }
  .legal__table thead { display: none; }
  .legal__table tr { padding: 10px 0; border-bottom: 1px solid var(--line2); }
  .legal__table td { padding: 2px 0; border: 0; }
  .legal__table td:first-child { margin-bottom: 2px; }
}
