@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/newsreader-regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/newsreader-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/newsreader-700.woff2) format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/newsreader-italic.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/inter-regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/inter-500.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/inter-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/inter-700.woff2) format('woff2');
}

:root {
  --paper: #f7f6f3;
  --paper-2: #ffffff;
  --paper-3: #efeee9;
  --ink: #202528;
  --ink-soft: #45494c;
  --muted: #787774;
  --line: #1b1b1b;
  --line-soft: rgba(32, 37, 40, 0.16);
  --signal: #b8860b;
  --signal-ink: #92660a;
  --signal-wash: rgba(184, 134, 11, 0.12);
  --on-ink: #f7f6f3;
  --band-bg: #141414;
  --band-fg: #f7f6f3;
  --shadow: 0 1px 0 rgba(32, 37, 40, 0.04), 0 22px 48px -28px rgba(32, 37, 40, 0.4);
  --shadow-sm: 0 1px 0 rgba(32, 37, 40, 0.05), 0 10px 24px -18px rgba(32, 37, 40, 0.35);
  --r-card: 18px;
  --r-btn: 12px;
  --r-pill: 999px;
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
  --curve: cubic-bezier(0.32, 0.72, 0, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Newsreader', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: light;
}

:root[data-theme='dark'] {
  --paper: #141414;
  --paper-2: #1a1a1a;
  --paper-3: #232323;
  --ink: #ededed;
  --ink-soft: #c9c9c2;
  --muted: #9a9a92;
  --line: rgba(237, 237, 237, 0.9);
  --line-soft: rgba(237, 237, 237, 0.18);
  --signal: #fbbf24;
  --signal-ink: #fcd34d;
  --signal-wash: rgba(251, 191, 36, 0.14);
  --on-ink: #141414;
  --band-bg: #1a1a1a;
  --band-fg: #ededed;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 26px 56px -30px rgba(0, 0, 0, 0.8);
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.3), 0 12px 28px -20px rgba(0, 0, 0, 0.7);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --paper: #141414;
    --paper-2: #1a1a1a;
    --paper-3: #232323;
    --ink: #ededed;
    --ink-soft: #c9c9c2;
    --muted: #9a9a92;
    --line: rgba(237, 237, 237, 0.9);
    --line-soft: rgba(237, 237, 237, 0.18);
    --signal: #fbbf24;
    --signal-ink: #fcd34d;
    --signal-wash: rgba(251, 191, 36, 0.14);
    --on-ink: #141414;
    --shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 26px 56px -30px rgba(0, 0, 0, 0.8);
    --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.3), 0 12px 28px -20px rgba(0, 0, 0, 0.7);
    color-scheme: dark;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--signal);
  color: #fff;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand,
.note h3,
.contact h3,
.get h2 {
  font-family: var(--font-head);
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--on-ink);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}
.skip:focus {
  left: 0;
}

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

.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal-ink);
}

.lede {
  color: var(--ink-soft);
  max-width: 60ch;
}

.muted {
  color: var(--muted);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--curve), background 0.3s var(--curve);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
  white-space: nowrap;
}
.spark {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--signal);
  display: inline-grid;
  place-items: center;
}
.spark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s var(--curve);
}
.nav__links a:hover {
  color: var(--ink);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--paper-2);
  cursor: pointer;
  transition: border-color 0.2s var(--curve), transform 0.2s var(--curve);
}
.icon-btn:hover {
  border-color: var(--line);
}
.icon-btn:active {
  transform: scale(0.94);
}
.icon-btn .icon {
  font-size: 18px;
}
.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 (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .theme-toggle .icon-sun {
    display: block;
  }
  :root:not([data-theme='light']) .theme-toggle .icon-moon {
    display: none;
  }
}
.nav__toggle {
  display: none;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  padding: 0 22px;
  height: 50px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--curve), background 0.2s var(--curve), border-color 0.2s var(--curve), color 0.2s var(--curve);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn--sm {
  height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}
.btn--ink {
  background: var(--ink);
  color: var(--on-ink);
}
.btn--ink:hover {
  background: color-mix(in srgb, var(--ink) 86%, var(--signal));
}
.btn--signal {
  background: var(--signal);
  color: #fff;
}
.btn--signal:hover {
  filter: brightness(1.06);
}
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--paper-3);
}
.btn .icon {
  font-size: 1.05em;
}

/* hero */
.hero {
  padding-top: clamp(34px, 7vh, 76px);
  padding-bottom: clamp(48px, 9vh, 110px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.25rem, 4.3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-top: 20px;
  text-wrap: balance;
}
.hero h1 .mark {
  color: var(--signal);
}
.hero__lede {
  margin-top: 22px;
  font-size: 1.14rem;
  max-width: 46ch;
}
.hero__cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__art {
  display: flex;
  gap: clamp(12px, 2vw, 22px);
  justify-content: center;
  align-items: flex-start;
}
.phone {
  width: min(212px, 24vw);
  background: var(--ink);
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--shadow);
}
.phone img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  background: var(--paper);
}
.phone--b {
  margin-top: 58px;
}

/* statement band */
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(46px, 8vh, 84px);
}
.band__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}
.band h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}
.band__facts {
  display: grid;
  gap: 14px;
}
.fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
.fact:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.fact b {
  font-weight: 700;
}
.fact span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* sections */
.section {
  padding-block: clamp(64px, 11vh, 128px);
}
.section__head {
  max-width: 44ch;
}
.section__head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}
.section__head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

/* feature split (visual left, list right) */
.feature {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
.feature__side .phone {
  width: min(300px, 100%);
  margin-inline: auto;
}
.defs {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.defs li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 20px 2px;
  border-bottom: 1px solid var(--line-soft);
}
.defs .num {
  font-weight: 800;
  color: var(--signal-ink);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.defs h3 {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.defs p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 46ch;
}

/* exam ledger */
.ledger {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--paper-2);
}
.row {
  display: grid;
  grid-template-columns: 52px minmax(150px, 1.1fr) minmax(180px, 1.5fr) auto auto;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  padding: clamp(18px, 2.6vw, 26px) clamp(20px, 3vw, 34px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s var(--curve);
}
.row:last-child {
  border-bottom: 0;
}
.row:hover {
  background: var(--paper-3);
}
.row__num {
  font-weight: 800;
  color: var(--signal-ink);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
.row__name {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.row__name small {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 2px;
}
.row__meta {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-variant-numeric: tabular-nums;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill--live {
  color: var(--signal-ink);
  background: var(--signal-wash);
  border-color: color-mix(in srgb, var(--signal) 38%, transparent);
}
.pill--soon {
  color: var(--muted);
}
.row__go {
  font-size: 1.2em;
  color: var(--ink-soft);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s var(--curve), transform 0.2s var(--curve);
}
.row--live:hover .row__go {
  opacity: 1;
  transform: none;
}

/* learn scroller */
.learn {
  margin-top: 40px;
}
.track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 26px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-color: var(--line-soft) transparent;
}
.track::-webkit-scrollbar {
  height: 6px;
}
.track::-webkit-scrollbar-thumb {
  background: var(--line-soft);
  border-radius: 999px;
}
.note {
  flex: 0 0 auto;
  width: clamp(272px, 78vw, 350px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper-2);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
}
.note__num {
  font-weight: 800;
  color: var(--signal-ink);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
.note h3 {
  margin-top: 16px;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.note p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
}
.note__links {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.note__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--signal-ink);
  text-decoration: none;
}
.note__links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.note__links .icon {
  font-size: 0.95em;
}

/* support */
.support {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.faq {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line-soft);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .icon {
  font-size: 1.25em;
  color: var(--signal-ink);
  transition: transform 0.28s var(--curve);
}
.faq details[open] summary .icon {
  transform: rotate(180deg);
}
.faq .answer {
  padding: 0 2px 24px;
  color: var(--ink-soft);
  font-size: 0.99rem;
  max-width: 60ch;
}
.contact {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper-2);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.contact h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.contact p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}
.contact a.mail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-weight: 700;
  color: var(--signal-ink);
  text-decoration: none;
  word-break: break-word;
}
.contact a.mail:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact .btn {
  margin-top: 20px;
  width: 100%;
}

/* download band */
.get {
  background: var(--band-bg);
  color: var(--band-fg);
  border-radius: 26px;
  padding: clamp(38px, 6vw, 72px);
}
.get__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}
.get__id {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 0;
}
.get__id > div {
  min-width: 0;
}
.get__id img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.7);
}
.get h2 {
  font-size: clamp(1.4rem, 2.7vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.get__id p {
  margin-top: 7px;
  opacity: 0.72;
  font-size: 0.95rem;
  max-width: 32ch;
}
.get__stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 17px;
  border-radius: 13px;
  border: 1px solid rgba(247, 244, 238, 0.28);
  color: var(--band-fg);
  text-decoration: none;
  background: rgba(247, 244, 238, 0.06);
  transition: background 0.2s var(--curve), transform 0.18s var(--curve);
}
.store:hover {
  background: rgba(247, 244, 238, 0.14);
}
.store:active {
  transform: translateY(1px);
}
.store--soon {
  opacity: 0.55;
  cursor: default;
}
.store--soon:hover {
  background: rgba(247, 244, 238, 0.06);
}
.store--soon:active {
  transform: none;
}
.store svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.store__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store__text small {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.store__text strong {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.get__note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 244, 238, 0.16);
  font-size: 0.9rem;
  opacity: 0.72;
}

/* footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(64px, 10vh, 120px);
  padding-top: clamp(44px, 7vh, 72px);
  padding-bottom: 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 30ch;
}
.footer__col h4 {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.footer__col a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__col a:hover {
  color: var(--signal-ink);
}
.footer__col a .icon {
  font-size: 0.9em;
}
.footer__base {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__base .disclaimer {
  max-width: 62ch;
}

/* motion */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--curve), transform 0.7s var(--curve);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__art {
    order: -1;
    margin-bottom: 8px;
  }
  .hero__lede {
    max-width: 54ch;
  }
  .band__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature__side {
    order: 2;
  }
  .support {
    grid-template-columns: 1fr;
  }
  .contact {
    position: static;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .nav__links {
    display: none;
  }
  .site-header .brand__suffix {
    display: none;
  }
  .nav__actions > .btn {
    display: none;
  }
  .nav__toggle {
    display: inline-grid;
  }
  .nav {
    height: 62px;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
  }
  .phone--b {
    display: none;
  }
  .phone {
    width: min(268px, 66vw);
  }
  .row {
    grid-template-columns: 34px 1fr auto;
    gap: 6px 16px;
  }
  .row__meta {
    grid-column: 2 / 3;
    font-size: 0.88rem;
  }
  .row__go {
    display: none;
  }
  .pill {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }
  .get,
  .band {
    border-radius: 20px;
  }
  .get {
    padding: 32px 24px;
  }
  .get__grid {
    gap: 26px;
    flex-wrap: wrap;
  }
  .get__stores {
    width: 100%;
  }
  .store {
    flex: 1 1 auto;
    justify-content: center;
  }
  .footer__base {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: auto;
  }
  .hero__cta .btn {
    flex-basis: 100%;
  }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 62px 0 auto 0;
  z-index: 39;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter) 26px;
  display: grid;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--curve), transform 0.24s var(--curve);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn {
  margin-top: 16px;
}

/* legal / privacy page */
.legal-page {
  padding-top: clamp(34px, 7vh, 76px);
  padding-bottom: clamp(56px, 9vh, 96px);
}
.legal {
  max-width: 70ch;
  margin-inline: auto;
}
.legal h1 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-top: 14px;
}
.legal .updated {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}
.legal .summary {
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper-2);
  color: var(--ink);
}
.legal h2 {
  margin-top: 2.6em;
  padding-top: 1.3em;
  border-top: 1px solid var(--line-soft);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.legal h2:first-of-type {
  margin-top: 2.2em;
}
.legal p {
  margin-top: 12px;
  color: var(--ink-soft);
}
.legal ul {
  margin: 14px 0 0;
  padding-left: 1.15em;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
}
.legal li::marker {
  color: var(--signal);
}
.legal strong {
  color: var(--ink);
  font-weight: 700;
}
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--paper-3);
  padding: 2px 7px;
  border-radius: 6px;
}
.legal a {
  color: var(--signal-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover {
  color: var(--signal);
}
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.legal .back:hover {
  color: var(--ink);
}
.legal .back .icon {
  font-size: 1.1em;
  transform: rotate(180deg);
}
