/* =============================================================
   Sayso — stereo split system
   Left channel  = THEM = amber   Right channel = YOU = teal
   Palette lifted from the app's own Theme.swift so the site and
   the product speak the same colour language.
   ============================================================= */

:root {
  --ink:      #05070F;
  --navy:     #0A1128;
  --navy-2:   #101A38;
  --card:     #16224A;
  --teal:     #2DE1C2;
  --amber:    #FFB454;
  --text:     #F2F6FF;
  --sub:      #8A97B8;

  --line:     rgba(138, 151, 184, 0.18);
  --line-2:   rgba(138, 151, 184, 0.32);

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1240px;
  --measure: 40rem;

  --r: 14px;
  --r-lg: 22px;
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }

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

::selection { background: var(--teal); color: var(--ink); }

/* ---------- shared type ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

/* The utility label. Mono, wide-tracked, always tiny — it is the
   site's "channel strip" voice: L / R, language codes, section tags. */
.tag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sub);
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  /* the env() terms are 0 everywhere except a notched iPhone in landscape,
     where they keep text clear of the sensor housing and rounded corners */
  padding-inline:
    calc(var(--gut) + env(safe-area-inset-left, 0px))
    calc(var(--gut) + env(safe-area-inset-right, 0px));
}

/* every in-page anchor has to clear the sticky masthead */
[id] { scroll-margin-top: 84px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--teal);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }

/* ---------- masthead ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 15, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.masthead__in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 66px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
  padding-block: 0.55rem;   /* touch target, not visual change */
}
/* "say" in amber (spoken), "so" in teal (heard back) — the product in two syllables */
.wordmark i { font-style: normal; color: var(--amber); }
.wordmark b { font-weight: 800; color: var(--teal); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
}
.nav a {
  color: var(--sub);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-block: 0.7rem;   /* ~44px touch target */
  transition: color 0.18s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }

@media (max-width: 640px) {
  .nav .nav__hide { display: none; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--go {
  background: var(--teal);
  color: #062A24;
  box-shadow: 0 10px 30px -12px rgba(45, 225, 194, 0.7);
}
.btn--go:hover { background: #57e9d0; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--sub); background: rgba(138, 151, 184, 0.07); }

/* =============================================================
   HERO — the split axis
   ============================================================= */

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* two tinted channels, meeting on the seam */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
}
.hero::before {
  left: 0;
  background: radial-gradient(58% 62% at 22% 34%, rgba(255, 180, 84, 0.14), transparent 72%);
}
.hero::after {
  right: 0;
  background: radial-gradient(58% 62% at 78% 34%, rgba(45, 225, 194, 0.15), transparent 72%);
}

.hero__in {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 8vw, 6.5rem);
}

.hero__lede {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}

.hero h1 {
  font-size: clamp(2.6rem, 8.2vw, 5.4rem);
  font-stretch: 118%;
  font-weight: 800;
  letter-spacing: -0.038em;
  margin-block: 1.1rem 0;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero h1 .l2 { color: var(--sub); }

.hero__sub {
  color: var(--sub);
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  max-width: 34rem;
  margin: 1.35rem auto 0;
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero__note {
  margin-top: 1.1rem;
  font-size: 0.8125rem;
}

/* ---- the live split demo ---- */

.split {
  position: relative;
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(22, 34, 74, 0.55), rgba(10, 17, 40, 0.35));
  overflow: hidden;
}

/* the seam: the earbud handover line */
.split::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: linear-gradient(180deg, transparent, var(--line-2) 12%, var(--line-2) 88%, transparent);
}

.chan {
  position: relative;
  padding: clamp(1.1rem, 3vw, 2rem);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.chan__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.chan--r .chan__head { flex-direction: row-reverse; }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0.35;
}
.chan--l .dot { background: var(--amber); }
.chan--r .dot { background: var(--teal); }

.chan.is-live .dot { opacity: 1; }
.chan--l.is-live .dot { box-shadow: 0 0 0 4px rgba(255, 180, 84, 0.18); }
.chan--r.is-live .dot { box-shadow: 0 0 0 4px rgba(45, 225, 194, 0.18); }

.chan__who { letter-spacing: 0.18em; }
.chan--l .chan__who { color: var(--amber); }
.chan--r .chan__who { color: var(--teal); }

.chan__lang {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--sub);
  letter-spacing: 0.06em;
}
.chan--r .chan__lang { margin-left: 0; margin-right: auto; }

/* the spoken line */
.chan__body {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 1.5rem;
}

.line {
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: clamp(1.15rem, 3vw, 1.85rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.chan--r .line { text-align: right; margin-left: auto; }
.chan--l .line { color: var(--amber); }
.chan--r .line { color: var(--text); }

.chan:not(.is-shown) .line { opacity: 0; transform: translateY(8px); }
.chan.is-shown .line { opacity: 1; transform: none; }

/* channel meter — 14 bars, animated only while that side is live */
.meter {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.chan--r .meter { justify-content: flex-end; }

/* Bars are full height and scaled down; animating transform keeps this on the
   compositor. Animating `height` here re-laid-out 28 elements every frame,
   which is exactly the kind of thing a phone shows you and a desktop hides. */
.meter i {
  display: block;
  width: 3px;
  height: 22px;
  border-radius: 2px;
  background: var(--line-2);
  transform: scaleY(0.18);
  transform-origin: bottom;
  will-change: transform;
}
.chan--l.is-live .meter i { background: var(--amber); animation: vu 0.9s ease-in-out infinite; }
.chan--r.is-live .meter i { background: var(--teal);  animation: vu 0.9s ease-in-out infinite; }

@keyframes vu {
  0%, 100% { transform: scaleY(0.18); opacity: 0.45; }
  50%      { transform: scaleY(1);    opacity: 1; }
}

.chan__foot {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.chan--r .chan__foot { flex-direction: row-reverse; }

.ear {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--sub);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .split { grid-template-columns: 1fr; }
  .split::after {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: none;
    background: linear-gradient(90deg, transparent, var(--line-2) 12%, var(--line-2) 88%, transparent);
  }
  .chan { min-height: 220px; }
  .chan--r .line { text-align: left; margin-left: 0; }
  .chan--r .chan__head, .chan--r .chan__foot { flex-direction: row; }
  .chan--r .chan__lang { margin-left: auto; margin-right: 0; }
  .chan--r .meter { justify-content: flex-start; }
}

/* =============================================================
   SECTIONS
   ============================================================= */

.band { border-bottom: 1px solid var(--line); }
.band__in { padding-block: clamp(3.5rem, 9vw, 7rem); }

.band--raise { background: var(--navy); }

.head { max-width: 44rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.head h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  margin-top: 0.9rem;
}
.head p {
  color: var(--sub);
  font-size: 1.0625rem;
  margin: 1rem 0 0;
  max-width: var(--measure);
  text-wrap: pretty;
}

/* small print that still has to be readable — never set this in .tag */
.fine {
  color: var(--sub);
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 46rem;
  margin: 1.5rem 0 0;
}
.fine a { display: inline-block; padding-block: 0.6rem; }

.after { margin-top: clamp(2rem, 5vw, 3rem); }

/* ---------- split-mode routing diagram ---------- */

.route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--navy-2);
}

.bud { text-align: center; }

.bud__glyph {
  width: clamp(64px, 13vw, 96px);
  height: clamp(64px, 13vw, 96px);
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  background: var(--card);
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}
.bud--l .bud__glyph { color: var(--amber); box-shadow: inset 0 0 0 1px rgba(255, 180, 84, 0.25), 0 0 44px -14px rgba(255, 180, 84, 0.75); }
.bud--r .bud__glyph { color: var(--teal);  box-shadow: inset 0 0 0 1px rgba(45, 225, 194, 0.25), 0 0 44px -14px rgba(45, 225, 194, 0.75); }

.bud__who { font-family: var(--display); font-weight: 700; font-size: 1.0625rem; }
.bud__what { color: var(--sub); font-size: 0.875rem; margin-top: 0.2rem; }

.route__mid { text-align: center; color: var(--sub); }
.route__mid .tag { display: block; margin-bottom: 0.6rem; }

.route__arrows { display: grid; gap: 0.5rem; font-family: var(--mono); font-size: 0.75rem; }
.route__arrows span { white-space: nowrap; }
.route__arrows .a-l { color: var(--amber); }
.route__arrows .a-r { color: var(--teal); }

@media (max-width: 620px) {
  .route { grid-template-columns: 1fr 1fr; }
  .route__mid { grid-column: 1 / -1; order: -1; margin-bottom: 0.5rem; }
}

/* ---------- feature rows ---------- */

.rows { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }

.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--ink);
}
.band--raise .row { background: var(--navy); }

.row__k { display: flex; flex-direction: column; gap: 0.5rem; }
.row__k h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }

.row__v { color: var(--sub); max-width: var(--measure); }
.row__v p { margin: 0; text-wrap: pretty; }
.row__v p + p { margin-top: 0.85rem; }
.row__v strong { color: var(--text); font-weight: 600; }

.pill {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 5px;
  border: 1px solid;
}
.pill--pro  { color: var(--teal);  border-color: rgba(45, 225, 194, 0.4);  background: rgba(45, 225, 194, 0.1); }
.pill--free { color: var(--amber); border-color: rgba(255, 180, 84, 0.4); background: rgba(255, 180, 84, 0.1); }

@media (max-width: 720px) {
  .row { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* ---------- languages patchbay ---------- */

.bay {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.bay__cell {
  background: var(--navy);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  transition: background 0.16s ease;
}
.bay__cell:hover { background: var(--card); }
.bay__cell code {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--teal);
  letter-spacing: 0.02em;
  flex: none;
}
.bay__cell span { font-size: 0.9375rem; }

/* ---------- privacy ledger ---------- */

.ledger { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }

.ledger__row {
  background: var(--ink);
  padding: 1.05rem clamp(1rem, 3vw, 1.6rem);
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.9rem;
  align-items: baseline;
}
.band--raise .ledger__row { background: var(--navy); }

.ledger__mark { font-family: var(--mono); font-size: 0.9375rem; line-height: 1.4; }
.ledger__row--no  .ledger__mark { color: var(--sub); }
.ledger__row--yes .ledger__mark { color: var(--teal); }

.ledger__row p { margin: 0; }
.ledger__row--no p { color: var(--sub); }
.ledger__row b { font-weight: 600; color: var(--text); }

/* ---------- plans ---------- */

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.5rem); }

.plan {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3.5vw, 2.1rem);
  background: var(--navy);
  display: flex;
  flex-direction: column;
}
.plan--pro {
  border-color: rgba(45, 225, 194, 0.35);
  background: linear-gradient(165deg, rgba(45, 225, 194, 0.09), rgba(10, 17, 40, 0.4) 58%);
}

.plan h3 { font-size: 1.4rem; margin-top: 0.75rem; }
.plan--free h3 { color: var(--amber); }
.plan--pro  h3 { color: var(--teal); }

.plan__price { font-family: var(--mono); font-size: 0.875rem; color: var(--sub); margin: 0.65rem 0 1.4rem; }
.plan__price b { color: var(--text); font-weight: 500; }

.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.plan li { display: grid; grid-template-columns: 1.1rem 1fr; gap: 0.7rem; font-size: 0.9375rem; align-items: baseline; }
.plan li em { font-style: normal; font-family: var(--mono); font-size: 0.75rem; }
.plan--free li em { color: var(--amber); }
.plan--pro  li em { color: var(--teal); }
.plan li.off { color: var(--sub); }
.plan li.off em { color: var(--sub); }

.plan__foot { margin-top: auto; padding-top: 1.6rem; }
.plan__foot .btn { width: 100%; }

@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }

/* ---------- closing call ---------- */

.close { text-align: center; }
.close__in { padding-block: clamp(4rem, 10vw, 7.5rem); }
.close h2 {
  font-size: clamp(2rem, 6.4vw, 4rem);
  font-stretch: 118%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.close p { color: var(--sub); max-width: 32rem; margin: 1.2rem auto 0; }
.close .btn { margin-top: 2rem; }

.appicon {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.75rem;
  border-radius: 21px;
  box-shadow: 0 24px 60px -24px rgba(45, 225, 194, 0.55);
}

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

.foot { background: var(--ink); }
.foot__in {
  padding-block: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
}
.foot__links { display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; margin-left: auto; }
.foot__links a { color: var(--sub); text-decoration: none; font-size: 0.9375rem; padding-block: 0.6rem; }
.foot__links a:hover { color: var(--text); }
.foot__c { color: var(--sub); font-size: 0.875rem; }

/* =============================================================
   DOCUMENT PAGES — privacy, terms, support
   ============================================================= */

.doc-hero { border-bottom: 1px solid var(--line); background: var(--navy); }
.doc-hero__in { padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.doc-hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-stretch: 118%;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 0.9rem;
}
.doc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.25rem;
  color: var(--sub);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.doc { display: grid; grid-template-columns: 15rem minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(2.5rem, 6vw, 4.5rem); align-items: start; }

.toc { position: sticky; top: 90px; }
.toc ol { list-style: none; margin: 0.9rem 0 0; padding: 0; display: grid; gap: 0.15rem; counter-reset: s; }
.toc a {
  display: block;
  color: var(--sub);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.35;
  padding: 0.32rem 0 0.32rem 0.75rem;
  border-left: 1px solid var(--line);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.toc a:hover { color: var(--text); border-color: var(--sub); }
.toc a.is-active { color: var(--teal); border-color: var(--teal); }

@media (max-width: 900px) {
  .doc { grid-template-columns: 1fr; }
  .toc { position: static; }
  .toc ol { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

.prose { max-width: 46rem; }
.prose > section { scroll-margin-top: 90px; }
.prose > section + section { margin-top: 2.75rem; }

.prose h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.15rem;
}
.prose h2 em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.06em;
}

.prose h3 {
  font-size: 1.0625rem;
  font-stretch: 100%;
  margin: 1.9rem 0 0.6rem;
  color: var(--text);
}

.prose p, .prose li { color: var(--sub); text-wrap: pretty; }
.prose p { margin: 0 0 1rem; }
.prose strong { color: var(--text); font-weight: 600; }

.prose ul { margin: 0 0 1rem; padding-left: 1.1rem; display: grid; gap: 0.5rem; }
.prose li::marker { color: var(--line-2); }

/* the one thing in a legal doc that must not be skimmed past */
.callout {
  border-left: 2px solid var(--amber);
  background: rgba(255, 180, 84, 0.07);
  padding: 1.1rem 1.3rem;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 0 0 1.25rem;
}
.callout p { color: var(--text); }
.callout p:last-child { margin-bottom: 0; }
.callout .tag { color: var(--amber); display: block; margin-bottom: 0.55rem; }

.tablewrap { overflow-x: auto; margin: 0 0 1.25rem; border: 1px solid var(--line); border-radius: var(--r); }

.prose table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 30rem; }
.prose th, .prose td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sub);
  font-weight: 500;
  background: var(--navy);
}
.prose tbody tr:last-child td { border-bottom: 0; }
.prose td { color: var(--sub); }
.prose td:first-child { color: var(--text); }

/* ---------- support ---------- */

.mailcard {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(45, 225, 194, 0.08), rgba(10, 17, 40, 0.4) 60%);
  padding: clamp(1.75rem, 5vw, 3rem);
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}
.mailcard h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); margin-top: 0.85rem; }
.mailcard p { color: var(--sub); margin: 0.9rem auto 0; max-width: 30rem; }

.mailto {
  display: inline-block;
  margin-top: 1.75rem;
  font-family: var(--mono);
  font-size: clamp(0.95rem, 2.8vw, 1.35rem);
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(45, 225, 194, 0.4);
  border-radius: 999px;
  word-break: break-all;
  transition: background 0.16s ease, transform 0.16s ease;
}
.mailto:hover { background: rgba(45, 225, 194, 0.12); transform: translateY(-1px); }

.mailcard__note { font-size: 0.8125rem; margin-top: 1.5rem; }

/* =============================================================
   Motion off
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .chan .line { opacity: 1 !important; transform: none !important; }
  .meter i { transform: scaleY(0.5); opacity: 0.7; }
}
