/* TREYN - treyn.app
   Same design language as the iOS app: warm paper ground, passport navy, forest card.
   Brass is a minor accent only; navy and forest carry the page.

   Motion is entirely CSS. The site ships `script-src 'none'` and keeps it, so scroll
   reveals use `animation-timeline: view()` rather than an observer. Browsers without it
   show the content immediately, which is the correct fallback. */

:root {
  --paper:      #FAF7F2;
  --surface:    #FFFFFF;
  --sunken:     #F1ECE3;
  --deep:       #123328;

  --ink:        #17191C;
  --ink-2:      #4F545B;
  --ink-3:      #656A70;

  --rule:       #E4DFD6;
  --rule-2:     #D1C9BB;

  --navy:       #17365E;
  --navy-lift:  #204777;
  --forest:     #123328;
  --brass:      #A8762F;
  --brass-text: #8A5F22;   /* brass on a paper ground */
  --brass-lift: #D9A65C;   /* brass on the forest card */

  --serif: "Newsreader", ui-serif, "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --gutter: 20px;
  --max:    1180px;
  --r:      18px;
  --r-s:    11px;

  --ease: cubic-bezier(.32,.72,0,1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #131210; --surface: #1C1A16; --sunken: #0E0D0B; --deep: #0E241C;
    --ink: #F4F0E9; --ink-2: #A6A096; --ink-3: #8A8279;
    --rule: #2C2822; --rule-2: #3B362E;
    --navy: #A3BEE6; --navy-lift: #BBD0F0; --brass: #CE9E52; --brass-text: #CE9E52;
  }
}
:root[data-theme="dark"] {
  --paper: #131210; --surface: #1C1A16; --sunken: #0E0D0B; --deep: #0E241C;
  --ink: #F4F0E9; --ink-2: #A6A096; --ink-3: #8A8279;
  --rule: #2C2822; --rule-2: #3B362E;
  --navy: #A3BEE6; --navy-lift: #BBD0F0; --brass: #CE9E52; --brass-text: #CE9E52;
}

/* ---------- reset ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: 72px; }
@media (min-width: 840px) { section { padding-block: 104px; } }

/* ---------- motion ----------
   One reveal, used everywhere. `view()` drives it from scroll position with no script,
   and the `supports` guard means an unsupported browser never sees a hidden element. */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .rise {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 26%;
    }
  }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* The hero plays on load rather than on scroll, because it is already in view. */
@media (prefers-reduced-motion: no-preference) {
  .enter { animation: rise .8s var(--ease) both; }
  .enter-1 { animation-delay: .06s; }
  .enter-2 { animation-delay: .14s; }
  .enter-3 { animation-delay: .22s; }
  .enter-4 { animation-delay: .3s; }
}

/* ---------- type helpers ---------- */

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px;
}
.lede { font-size: 18.5px; color: var(--ink-2); max-width: 56ch; }
.fine { font-size: 14px; color: var(--ink-3); max-width: 64ch; }
.sec-head { margin-bottom: 42px; max-width: 58ch; }
.sec-head h2 { font-size: clamp(27px, 4.4vw, 40px); margin-bottom: 13px; }
.sec-head p { color: var(--ink-2); font-size: 17px; }

/* ---------- nav ---------- */

.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 30px; height: 27px; color: var(--ink); flex: none; }
.wordmark { font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: .22em; }

header.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 68px; }
.nav-links { display: none; gap: 30px; align-items: center; }
@media (min-width: 920px) { .nav-links { display: flex; } }
.nav-links a { font-size: 15px; color: var(--ink-2); text-decoration: none; transition: color .18s ease; }
.nav-links a:hover { color: var(--ink); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px; border-radius: var(--r-s);
  font-size: 16px; font-weight: 500; font-family: var(--sans);
  text-decoration: none; white-space: nowrap; border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--navy); color: var(--paper); box-shadow: 0 1px 2px rgba(18,51,40,.2); }
.btn-primary:hover { background: var(--navy-lift); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(18,51,40,.45); }
.btn-primary:active { transform: translateY(0) scale(.985); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn-ghost:hover { background: var(--surface); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0) scale(.985); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 15px; }
@media (prefers-reduced-motion: reduce) { .btn:hover, .btn:active { transform: none; } }

/* ============ 1. HERO - asymmetric split ============ */

.hero { padding-block: 56px 0; overflow: hidden; overflow: clip; }
/* Above 900px the phone bleeds past the section edge, so the hero is sized by the
   words rather than by the full height of a 19.5:9 screenshot. */
@media (min-width: 900px) { .hero { padding-block: 84px 0; } }

.hero-grid { display: grid; gap: 52px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 64px; } }

.hero h1 { font-size: clamp(42px, 7.6vw, 70px); margin-bottom: 22px; }
.hero .lede { font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* A real screenshot in a device frame, not a div pretending to be one. */
.device {
  --w: 272px;
  width: var(--w); margin-inline: auto; margin-bottom: -96px; position: relative;
  border-radius: 46px; padding: 10px;
  background: linear-gradient(160deg, var(--rule-2), var(--rule));
  box-shadow: 0 40px 80px -34px rgba(18,51,40,.5), 0 4px 12px rgba(0,0,0,.06);
}
@media (min-width: 900px) { .device { --w: 316px; margin-inline: 0 auto; margin-bottom: -112px; } }
.device img { border-radius: 37px; display: block; width: 100%; }

/* ============ 2. STATEMENT - full-width editorial ============ */

.statement { background: var(--sunken); border-block: 1px solid var(--rule); }
.statement .wrap { max-width: 900px; }
.statement p.big {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(25px, 4.3vw, 40px); line-height: 1.22;
  letter-spacing: -.018em; color: var(--ink); text-wrap: balance;
}
.statement p.after { margin-top: 26px; font-size: 18px; color: var(--ink-2); max-width: 54ch; }

/* ============ 3. STEPS - vertical flow with a rail ============ */

.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding-block: 24px; position: relative; }
@media (min-width: 720px) { .step { grid-template-columns: 94px 1fr; gap: 34px; } }

/* The rail connects the steps and stops at the last one. */
.step::before { content: ""; position: absolute; left: 18px; top: 58px; bottom: -6px; width: 1px; background: var(--rule-2); }
@media (min-width: 720px) { .step::before { left: 35px; } }
.step:last-child::before { display: none; }

.step-n {
  width: 37px; height: 37px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--rule-2);
  font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--brass-text);
  position: relative; z-index: 1;
}
@media (min-width: 720px) { .step-n { width: 71px; height: 71px; font-size: 25px; } }
.step h3 { font-size: clamp(21px, 2.8vw, 27px); margin-bottom: 7px; }
.step p { color: var(--ink-2); font-size: 16px; max-width: 58ch; }
.step .addr {
  display: inline-block; margin-top: 13px;
  font-family: var(--mono); font-size: 14px; color: var(--navy);
  background: var(--surface); border: 1px solid var(--rule);
  padding: 7px 12px; border-radius: 8px;
}

/* ============ 4. FEATURES - bento, six cells for six features ============ */

.bento { display: grid; gap: 14px; }
@media (min-width: 760px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .bento { grid-template-columns: repeat(3, 1fr); } }

.cell {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: border-color .22s ease, transform .22s var(--ease);
}
.cell:hover { border-color: var(--rule-2); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .cell:hover { transform: none; } }
.cell h3 { font-size: 21px; margin-bottom: 8px; }
.cell p { font-size: 15px; color: var(--ink-2); }

/* Two cells carry a real screenshot and span wider, which gives the grid its rhythm. */
@media (min-width: 760px) {
  .cell.wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 28px; }
  .cell.wide .cell-body { flex: 1; }
}
/* At three columns a screenshot cell also spans two rows, so the two text cells
   beside it stack into exactly the height the phone already occupies. Without
   this the text cell is stretched to a phone's height and the row is half empty. */
@media (min-width: 1020px) {
  .cell.wide { grid-column: span 2; grid-row: span 2; align-items: stretch; gap: 30px; }
  .cell.wide .cell-body { align-self: center; }
}
.cell-shot {
  flex: none; width: 100%; max-width: 186px; margin-top: 22px;
  border-radius: 15px; overflow: hidden;
  border: 1px solid var(--rule); background: var(--sunken);
  box-shadow: 0 18px 36px -22px rgba(18,51,40,.45);
}
@media (min-width: 760px) { .cell-shot { margin-top: 0; width: 186px; } }
@media (min-width: 1020px) {
  .cell-shot { width: 190px; align-self: stretch; }
  .cell-shot img { height: 100%; object-fit: cover; object-position: top center; }
}
.cell-shot img { width: 100%; display: block; }

.cell.dark { background: var(--deep); border-color: transparent; }
.cell.dark h3 { color: #F4F0E9; }
.cell.dark p { color: rgba(244,240,233,.74); }

/* ============ 5. MEMBERSHIP - offset composition ============ */

.member { background: var(--sunken); border-block: 1px solid var(--rule); }
.member-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 920px) { .member-grid { grid-template-columns: .92fr 1.08fr; gap: 60px; } }

.card-stage { perspective: 1400px; }
.treyn-card {
  position: relative; aspect-ratio: 1.586; width: 100%; max-width: 420px;
  border-radius: 22px; overflow: hidden; padding: 24px;
  display: flex; flex-direction: column; color: #fff;
  background:
    radial-gradient(120% 100% at 26% 16%, rgba(255,255,255,.17), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.13), transparent 46%, rgba(0,0,0,.2)),
    var(--forest);
  box-shadow: 0 34px 60px -26px rgba(18,51,40,.62);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .6s var(--ease);
}
.card-stage:hover .treyn-card { transform: rotateX(4deg) rotateY(-8deg) translateY(-4px); }
@media (prefers-reduced-motion: reduce) { .card-stage:hover .treyn-card { transform: none; } }

.guilloche { position: absolute; inset: 0; opacity: .55; pointer-events: none; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.card-brand { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: .24em; color: rgba(255,255,255,.95); }
.card-mark { width: 27px; height: 24px; color: rgba(255,255,255,.9); }
.card-holder { margin-top: auto; font-size: 13px; font-weight: 500; letter-spacing: .14em; color: rgba(255,255,255,.88); }
.card-number {
  font-family: var(--mono); font-size: 17px; font-weight: 500; letter-spacing: .16em; margin-top: 6px;
  background: linear-gradient(90deg, var(--brass-lift), #F2DDB6, var(--brass-lift));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 22px; }
.card-status-label { font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.card-status { font-family: var(--serif); font-size: 15px; font-weight: 600; color: rgba(255,255,255,.92); }
.card-plan { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest); background: var(--brass-lift); padding: 4px 10px; border-radius: 99px; }

/* Three rows, divided by hairlines rather than boxed into cards. */
.rows { margin-top: 30px; border-top: 1px solid var(--rule-2); }
.row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--rule-2); }
.row b { display: block; font-weight: 500; font-size: 16.5px; }
.row small { color: var(--ink-3); font-size: 13.5px; }
.row .val { font-size: 16px; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.val.navy { color: var(--navy); }
.val.brass { color: var(--brass-text); }
.val.quiet { color: var(--ink-3); }

/* ============ 6. PRICING - one featured plan, two compact ============ */

.price-lead {
  background: var(--surface); border: 1px solid var(--navy);
  box-shadow: 0 0 0 1px var(--navy), 0 24px 48px -32px rgba(23,54,94,.5);
  border-radius: var(--r); padding: 30px 28px;
  display: grid; gap: 26px;
}
@media (min-width: 820px) { .price-lead { grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; } }
.price-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: color-mix(in srgb, var(--navy) 11%, transparent); padding: 4px 10px; border-radius: 99px; margin-bottom: 14px; }
.price-name { font-family: var(--serif); font-size: 30px; font-weight: 600; }
.price-year { font-size: 34px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--navy); margin-top: 10px; letter-spacing: -.02em; }
.price-month { font-size: 14.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; margin-top: 4px; }
.price-lead ul { display: grid; gap: 10px; }
.price-lead li { font-size: 15.5px; color: var(--ink-2); padding-left: 24px; position: relative; }
.price-lead li::before {
  content: ""; position: absolute; left: 4px; top: 7px; width: 8px; height: 5px;
  border-left: 1.8px solid var(--navy); border-bottom: 1.8px solid var(--navy);
  transform: rotate(-45deg);
}

.price-rest { margin-top: 14px; display: grid; gap: 12px; }
@media (min-width: 720px) { .price-rest { grid-template-columns: 1fr 1fr; } }
.price-row {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-s);
  padding: 18px 20px; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.price-row b { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.price-row span { font-size: 14.5px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.price-row em { font-style: normal; display: block; font-size: 13.5px; color: var(--ink-3); margin-top: 3px; width: 100%; }

/* ============ 7. CLOSE - full-width band ============ */

.close { background: var(--deep); }
.close .wrap { max-width: 720px; text-align: center; }
.close h2 { font-size: clamp(28px, 5vw, 44px); color: #F4F0E9; margin-bottom: 16px; }
.close p { color: rgba(244,240,233,.74); font-size: 18px; margin-inline: auto; max-width: 48ch; }
.close .btn-primary { background: #F4F0E9; color: var(--forest); margin-top: 32px; box-shadow: none; }
.close .btn-primary:hover { background: #fff; }
.close .mails { margin-top: 34px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.close .mails a { font-size: 14.5px; color: rgba(244,240,233,.66); text-decoration: none; border-bottom: 1px solid rgba(244,240,233,.24); padding-bottom: 2px; transition: color .18s ease; }
.close .mails a:hover { color: #F4F0E9; }

/* ---------- early access form ----------
   No JavaScript anywhere: the creator section is a <details>, and "at least one
   handle" is checked on the server, because HTML cannot express that rule. */

.signup {
  margin: 34px auto 0; max-width: 460px; text-align: left;
  display: grid; gap: 16px;
  /* The band is forest green in both themes, so the browser-drawn checkbox has
     to be told which ground it sits on. */
  color-scheme: dark;
}
.signup .field { display: grid; gap: 7px; }
.signup label { font-size: 13px; font-weight: 600; letter-spacing: .04em;
                color: rgba(244,240,233,.78); }
.signup input[type="text"], .signup input[type="email"] {
  width: 100%; font: inherit; font-size: 16px; color: #F4F0E9;
  background: rgba(255,255,255,.06); border: 1px solid rgba(244,240,233,.22);
  border-radius: var(--r-s); padding: 12px 14px;
  transition: border-color .18s ease, background .18s ease;
}
.signup input::placeholder { color: rgba(244,240,233,.4); }
.signup input:focus-visible {
  outline: none; border-color: rgba(244,240,233,.7); background: rgba(255,255,255,.1);
}

.signup .check { display: flex; gap: 11px; align-items: flex-start; cursor: pointer;
                 font-weight: 400; line-height: 1.5; }
.signup .check input { margin-top: 3px; accent-color: var(--brass-lift); flex: none; }
.signup .check span { font-size: 15px; color: rgba(244,240,233,.78); }

.signup .ugc { border: 1px dashed rgba(244,240,233,.26); border-radius: var(--r-s); }
.signup .ugc summary {
  cursor: pointer; padding: 13px 16px; font-size: 15px; font-weight: 500;
  color: rgba(244,240,233,.82); list-style: none;
}
.signup .ugc summary::-webkit-details-marker { display: none; }
.signup .ugc summary::before { content: "+"; display: inline-block; width: 18px;
  font-weight: 600; color: var(--brass-lift); }
.signup .ugc[open] summary::before { content: "\2212"; }
.signup .ugc summary:hover { color: #F4F0E9; }
.signup .ugc:not([open]) .ugc-body { display: none; }
.signup .ugc[open] .ugc-body { display: grid; gap: 14px; }
.signup .ugc-body { padding: 0 16px 16px; }
.signup .ugc-body p { font-size: 14px; color: rgba(244,240,233,.66); margin: 0; max-width: none; }
.signup .handles { display: grid; gap: 12px; }

/* The honeypot is for bots, so it must be unreachable rather than merely invisible. */
.signup .hp { position: absolute; width: 1px; height: 1px; overflow: hidden;
              clip-path: inset(50%); white-space: nowrap; }

.signup button { margin-top: 6px; width: 100%; }
.close .signup .btn-primary { margin-top: 6px; }
.signup .form-fine { font-size: 13px; color: rgba(244,240,233,.56); margin: 0; max-width: none; }

/* ---------- footer ---------- */

footer { border-top: 1px solid var(--rule); padding-block: 44px 56px; font-size: 14px; color: var(--ink-2); }
.footer-inner { display: grid; gap: 30px; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; } }
.footer-blurb { margin-top: 13px; max-width: 32ch; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { text-decoration: none; color: var(--ink-2); transition: color .18s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-legal { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--rule); font-size: 13px; color: var(--ink-3); max-width: 78ch; }

/* ---------- legal pages ---------- */

.legal { padding-block: 56px 80px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(32px, 5.5vw, 46px); margin-bottom: 16px; }
.legal .lede { font-size: 18px; margin-bottom: 20px; }
.legal .stamp { font-size: 14px; color: var(--ink-3); padding-bottom: 28px; margin-bottom: 8px; border-bottom: 1px solid var(--rule); }
.legal h2 { font-size: clamp(22px, 3.2vw, 27px); margin-top: 48px; margin-bottom: 14px; scroll-margin-top: 84px; }
.legal h3 { font-size: 19px; margin-top: 28px; margin-bottom: 8px; }
.legal p { margin-bottom: 14px; color: var(--ink-2); max-width: 68ch; }
.legal p strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--navy); text-underline-offset: 3px; }
.legal code { font-family: var(--mono); font-size: .9em; background: var(--sunken); padding: 2px 6px; border-radius: 5px; }

ul.plain { margin: 0 0 18px; display: grid; gap: 10px; max-width: 68ch; }
ul.plain li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: 16px; }
ul.plain li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }
ul.plain li strong { color: var(--ink); font-weight: 600; }

.callout-box { background: var(--surface); border: 1px solid var(--rule); border-left: 3px solid var(--brass); border-radius: var(--r-s); padding: 18px 20px; margin: 22px 0; }
.callout-box p { margin: 0; color: var(--ink); }

.legal-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.legal-table th { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.legal-table td { color: var(--ink-2); }
.legal-table td:first-child { color: var(--ink); font-weight: 500; white-space: nowrap; }
@media (max-width: 620px) {
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table td { display: block; width: 100%; }
  .legal-table thead { display: none; }
  .legal-table tr { border-bottom: 1px solid var(--rule); padding-block: 8px; }
  .legal-table td { border: 0; padding: 4px 0; }
  .legal-table td:first-child { white-space: normal; }
}

