/* Radish landing — production stylesheet.
   Design tokens mirror apps/ios/DesignHandoff/Tokens/radish-tokens.json.
   JS toggles classes only; the page is complete without it. */

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

:root {
  --bg: #fbf4ea;
  --surface: #fffdf8;
  --surface-2: #f7eadb;
  --ink: #211a17;
  --muted: #6f635b;
  --soft: #736960;
  --line: #eadfce;
  --line-soft: #f3ebe0;
  --pink: #d81e5b;
  --pink-dark: #a8123f;
  --pink-bright: #ff4d7d;
  --pink-text-dark: #ff7099;
  --green: #2f8f5b;
  --green-bright: #3dbe77;
  --link: #1f7347;
  --tan: #c98a5e;
  --orange: #b45309;
  --cat-protein: #c0492f;
  --cat-treats: #7c5cbf;
  --cat-staples: #a87c4f;
  --receipt-ink: #5a5048;
  --phone-frame: #17120f;
  --ink-surface: #1e1a17;
  --ink-stroke: #2b2521;
  --ink-muted: #a89b90;
  --ink-subtle: #a89b90;
  --ink-copy: #c7bbaf;
  --on-pink: #fff;
  --radius: 18px;
  --radius-card: 14px;
  --max: 1120px;
  --product-mock-width: 340px;
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-data: "Spline Sans Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--pink-dark);
  text-decoration: none;
}

a:hover {
  color: var(--pink);
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--pink-dark);
  outline-offset: 4px;
  border-radius: 8px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.024em;
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--surface);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- release flag ---------- */

[data-release="prelaunch"] .is-live-only {
  display: none !important;
}

[data-release="live"] .is-prelaunch-only {
  display: none !important;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.section-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.demo-static-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

[data-demo-state="interactive"] .demo-static-note {
  display: none;
}

.device-shell {
  display: block;
  width: 100%;
  padding: 9px;
  background: var(--phone-frame);
  border-radius: 46px;
  box-shadow: 0 40px 80px -50px rgba(33, 26, 23, .7);
}

.device-shell .product-picture {
  display: block;
  width: 100%;
}

.device-shell img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.product-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.product-shot figcaption {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--soft);
  text-align: center;
}

.product-shot--hero,
.product-shot--mobile {
  width: min(100%, var(--product-mock-width));
  max-width: var(--product-mock-width);
}

.product-shot--mobile {
  display: none;
}

.money {
  font-family: var(--font-data);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 244, 234, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.brand__mark {
  width: 28px;
  height: 32px;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 9px;
  transition: color .18s ease;
}

.nav__links a:hover {
  color: var(--pink-dark);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--pink);
  color: var(--on-pink);
  font-size: 15px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 11px;
  transition: background .18s ease;
}

.nav__cta:hover {
  background: var(--pink-dark);
  color: var(--on-pink);
}

/* ---------- hero ---------- */

.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 56px 0 72px;
}

.hero__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 700px) var(--product-mock-width);
  gap: 60px;
  justify-content: space-between;
  align-items: center;
}

.hero__visual {
  justify-self: end;
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.028em;
  max-width: 20ch;
}

.hero__lede {
  margin: 26px 0 0;
  font-size: 19px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 50ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero__primary,
.price-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--on-pink);
  font-size: 17px;
  font-weight: 700;
  padding: 17px 28px;
  border-radius: var(--radius-card);
  letter-spacing: -.01em;
  transition: background .18s ease, transform .18s ease;
}

.hero__primary:hover,
.price-cta:hover {
  background: var(--pink-dark);
  color: var(--on-pink);
  transform: translateY(-1px);
}

.hero__secondary {
  font-size: 16px;
  font-weight: 600;
}

.hero__trustline {
  margin: 18px 0 0;
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
}

.hero__availability {
  max-width: 62ch;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

[data-reveal] {
  opacity: 1;
}

.js.reveal-armed [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
}

.js.reveal-armed [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- tagger ---------- */

.tagger {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: none;
  background: var(--surface-2);
  padding: 84px 0;
}

.tagger__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 60px;
  align-items: center;
}

.tagger h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.06;
}

.tagger__copy > p {
  margin: 18px 0 0;
  font-size: 17.5px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 46ch;
}

.tagger__readout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.tagger__readout span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
}

.tagger__readout strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -.03em;
  color: var(--pink-dark);
  font-variant-numeric: tabular-nums;
}

.tagger__readout b {
  display: block;
  margin-top: 5px;
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 26px;
  font-variant-numeric: tabular-nums;
}

.tagger__note {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 50ch;
}

.paper-card {
  background: var(--surface);
  border-radius: 6px 6px var(--radius-card) var(--radius-card);
  padding: 24px 22px 20px;
  box-shadow: 0 30px 70px -44px rgba(33, 26, 23, .6);
}

.paper-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed #dfd2bf;
  padding-bottom: 14px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--receipt-ink);
}

.paper-card__head span:first-child {
  font-weight: 600;
  font-size: 13px;
}

.paper-card__head span:last-child {
  color: var(--soft);
}

.paper-card__lines {
  list-style: none;
  margin: 6px 0;
  padding: 0;
}

.paper-card__lines button {
  font: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  text-align: left;
  padding: 10px;
  margin: 0 -10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: background .16s ease;
}

.paper-card__lines button:not(:disabled):hover {
  background: var(--line-soft);
}

.paper-card__lines button:disabled {
  cursor: default;
}

.paper-card__lines i {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid #c9bcb0;
  transition: background .16s ease, border-color .16s ease;
}

.paper-card__lines span {
  flex: 1;
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -.01em;
  color: var(--receipt-ink);
}

.paper-card__lines b {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}

.paper-card__lines button[aria-pressed="true"] {
  background: #fceef3;
}

.paper-card__lines button[aria-pressed="true"] i {
  background: var(--pink);
  border-color: var(--pink);
}

.paper-card__lines button[aria-pressed="true"] span,
.paper-card__lines button[aria-pressed="true"] b {
  color: var(--pink-dark);
}

.paper-card__foot {
  border-top: 1px dashed #dfd2bf;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.paper-card__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--receipt-ink);
}

.paper-card__total b {
  font-size: 19px;
  letter-spacing: 0;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.split-bar {
  display: flex;
  height: 12px;
  border-radius: 99px;
  overflow: hidden;
  background: var(--line-soft);
}

.split-bar i {
  display: block;
  height: 100%;
  transition: flex-basis .3s cubic-bezier(.22, .61, .36, 1);
}

.split-bar__essential {
  background: #24694a;
  flex: 0 0 70%;
}

.split-bar__optional {
  background: var(--pink);
  flex: 0 0 30%;
}

.paper-card__legend {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.paper-card__legend .is-essential {
  color: #24694a;
}

.paper-card__legend .is-optional {
  color: var(--pink-dark);
}

.paper-card__stamp {
  margin: 16px 0 0;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--soft);
  text-align: center;
}

.tagger__live {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  min-height: 1em;
}

/* ---------- journey ---------- */

.journey {
  padding: 92px 0 40px;
}

.journey__inner,
.journey__experience {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.journey__intro h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.06;
}

.journey__intro > p {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 56ch;
}

/* Process carousel: one stationary iPhone, three continuous product states.
   armHow() derives the active step from (scroll track height − sticky height),
   so the track MUST be taller than the pinned pane or every step collapses. */

.process-story__scroll {
  position: relative;
  height: 230vh;
  min-height: 1480px;
  margin-top: clamp(32px, 4vw, 52px);
}

.process-story__sticky {
  position: sticky;
  top: 73px;
  display: grid;
  grid-template-columns: minmax(0, 560px) var(--product-mock-width);
  gap: clamp(48px, 4vw, 60px);
  justify-content: space-between;
  align-items: center;
  min-height: calc(100svh - 73px);
}

.process-story__copy {
  min-width: 0;
}

.process-story__copy-stage {
  position: relative;
  height: 300px;
}

.process-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity .22s ease, transform .42s cubic-bezier(.22, .61, .36, 1);
}

.process-copy.is-before {
  transform: translateY(-28px);
}

.process-copy.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: .14s;
}

.process-copy__number {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--soft);
}

.process-copy__kicker {
  margin: 8px 0 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.process-copy h3 {
  font-size: 30px;
  line-height: 1.1;
}

.process-copy > p:last-child {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 44ch;
}

.process-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 32px;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.process-progress button {
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  padding: 9px 10px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: var(--muted);
  transition: background .18s ease, box-shadow .18s ease, color .18s ease;
}

.process-progress button span {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
}

.process-progress button b {
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.process-progress button.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(33, 26, 23, .08);
}

.process-progress button.is-active span {
  color: var(--pink-dark);
}

.process-progress button.is-complete span {
  color: var(--link);
}

.journey__boundary {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
}

.process-story__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, var(--product-mock-width));
  max-width: var(--product-mock-width);
  margin: 0;
  justify-self: end;
}

.product-carousel {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 2.2;
  touch-action: pan-y;
}

.process-screen {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px) scale(.985);
  pointer-events: none;
  transition: opacity .26s ease, transform .42s cubic-bezier(.22, .61, .36, 1);
}

.process-screen.is-before {
  transform: translateY(-18px) scale(.985);
}

.process-screen.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.theme-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  width: 100%;
}

.theme-switcher > span {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--soft);
}

.theme-switcher > div {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.theme-switcher button {
  min-width: 62px;
  min-height: 44px;
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.theme-switcher button.is-active {
  background: var(--ink);
  color: #fff;
}

/* ---------- difference ---------- */

.difference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 60px;
  align-items: center;
}

.difference h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.06;
}

.difference h2 span {
  color: var(--pink-dark);
}

.difference__copy > p {
  margin: 18px 0 0;
  font-size: 17.5px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 46ch;
}

.difference__effort {
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-card);
}

.difference__effort strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
}

.difference__effort p {
  margin: 7px 0 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--muted);
}

.difference__effort a {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-dark);
}

.difference__effort a:hover {
  color: var(--pink);
}

.difference__flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.statement-card,
.radish-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px 24px;
}

.radish-card {
  border-color: var(--pink);
}

.statement-card > p,
.radish-card > p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
}

.radish-card > p {
  color: var(--pink-dark);
}

.radish-card > p strong {
  font-family: var(--font-data);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.statement-card > div,
.radish-card > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.statement-card > div:last-of-type,
.radish-card > div:last-of-type {
  border-bottom: 0;
}

.statement-card span,
.radish-card span {
  flex: 1;
  font-family: var(--font-data);
  font-size: 13.5px;
  color: var(--muted);
}

.statement-card b,
.radish-card b {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}

/* ---------- item-level answers ---------- */

.answers {
  padding-top: 72px;
}

.answers__intro {
  max-width: 760px;
}

.answers__intro h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.04;
  max-width: 24ch;
}

.answers__intro > p:last-child {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 60ch;
}

.answers__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.answers__grid article {
  grid-column: span 2;
  min-width: 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.answers__grid article:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.answers__grid span {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-dark);
}

.answers__grid h3 {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.22;
  text-wrap: pretty;
}

.answers__grid p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.answers__boundary {
  margin: 20px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--green);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 72ch;
}

.statement-card small {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #dfd2bf;
  font-size: 14px;
  line-height: 1.5;
  color: var(--soft);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.dot--pink { background: var(--cat-protein); }
.dot--green { background: var(--green); }
.dot--gray { background: var(--cat-staples); }
.dot--tan { background: var(--soft); }
.dot--orange { background: var(--cat-treats); }

.flow-arrow {
  align-self: center;
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, transparent, var(--pink));
  overflow: hidden;
  text-indent: -999px;
}

/* ---------- friction ---------- */

.friction {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: #f5efe6;
  padding: 88px 0;
}

.friction__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 64px;
  align-items: center;
}

.friction .eyebrow {
  color: var(--pink-text-dark);
}

.friction h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.06;
  max-width: 22ch;
}

.friction__copy > p {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-copy);
  max-width: 52ch;
}

.friction__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.friction__grid article {
  background: var(--ink-surface);
  border: 1px solid var(--ink-stroke);
  border-radius: var(--radius-card);
  padding: 20px 22px;
}

.friction__grid h3 {
  font-size: 19px;
  line-height: 1.2;
}

.friction__grid p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.friction__boundary {
  font-size: 15px !important;
  color: var(--ink-subtle) !important;
  max-width: 58ch;
}

.product-shot--friction .device-shell {
  background: #000;
}

.product-shot--friction figcaption {
  color: var(--ink-subtle);
}

/* ---------- hero order on small screens: CTA before the phone ---------- */

@media (max-width: 1023px) {
  :root {
    --product-mock-width: 300px;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__copy .section-kicker { order: 1; }
  .hero__copy h1 { order: 2; }
  .hero__copy .hero__lede { order: 3; }
  .hero__copy .hero__cta { order: 4; }
  .hero__copy .hero__trustline { order: 5; }
  .hero__copy .hero__availability { order: 6; }
  .hero__copy .product-shot--mobile { order: 7; align-self: center; }
}

/* ---------- payoff ---------- */

.payoff {
  width: 100%;
  max-width: none;
  padding: 88px 0;
}

.payoff--ink {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payoff__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 56px;
  align-items: center;
}

.payoff h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.04;
}

.payoff h2 span {
  color: var(--pink-dark);
}

.payoff__copy > p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 48ch;
}

.payoff__note {
  font-size: 15px !important;
  color: var(--muted) !important;
}

.payoff__calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
}

.payoff__dials {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.payoff__dials label {
  display: block;
}

.payoff__dials label > span {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

.payoff__dials label b {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  margin-top: 16px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  accent-color: var(--pink);
  outline: none;
}

input[type="range"]:focus-visible {
  outline: 3px solid var(--pink-dark);
  outline-offset: 8px;
  border-radius: 999px;
}

input[type="range"]:disabled {
  cursor: default;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(33, 26, 23, .28);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--surface);
  cursor: pointer;
}

.payoff__result {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px dashed #dfd2bf;
}

.payoff__result span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
}

.payoff__result b {
  display: block;
  margin-top: 6px;
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}

.payoff__result-major {
  text-align: right;
}

.payoff__result-major strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -.035em;
  color: var(--pink-dark);
  font-variant-numeric: tabular-nums;
}

.payoff__result-major i {
  font-style: normal;
}

.payoff__hint {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- trust strip ---------- */

.trust-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}

.trust-strip__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr);
  gap: 56px;
  align-items: start;
}

.trust-strip h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.trust-strip__head > p {
  margin: 16px 0 20px;
  font-size: 17px;
  line-height: 1.55;
  color: #5d5249;
}

.trust-strip__head a {
  font-size: 16px;
  font-weight: 700;
}

.trust-strip__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trust-strip__facts article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px 24px;
}

.trust-strip__facts span {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
}

.trust-strip__facts h3 {
  margin: 8px 0 6px;
  font-size: 19px;
}

.trust-strip__facts p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5d5249;
}

/* ---------- open-source proof (Radish Core) ---------- */

.open-core {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px 28px;
}

.open-core__text {
  flex: 1 1 380px;
  min-width: 0;
}

.open-core .eyebrow {
  margin: 0 0 10px;
}

.open-core__title {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.16;
  letter-spacing: -.01em;
  max-width: 40ch;
  text-wrap: pretty;
}

.open-core__body {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 64ch;
  text-wrap: pretty;
}

.open-core__cta {
  flex: 0 1 auto;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 12px 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-align: center;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.open-core__cta:visited {
  color: var(--muted);
}

.open-core__cta:hover,
.open-core__cta:visited:hover {
  background: var(--line);
  border-color: var(--ink);
  color: var(--ink);
}

.open-core__cta:focus-visible {
  outline: 2px solid var(--pink-dark);
  outline-offset: 4px;
}

.open-core__cta:active {
  background: var(--line);
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(1px);
}

.open-core__arrow {
  font-size: 15px;
  line-height: 1;
}

/* ---------- pricing ---------- */

.pricing {
  padding: 92px 0;
}

.pricing--focused__inner {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
}

.pricing--focused__head {
  text-align: center;
  margin-bottom: 34px;
}

.pricing--focused__head h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.06;
}

.pricing--focused__head > p {
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: #5d5249;
  max-width: 58ch;
}

.price-card--focused {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.price-card--focused__main {
  background: var(--ink);
  color: #f5efe6;
  border-radius: var(--radius);
  padding: 32px 34px;
}

.price-card--focused__label {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-text-dark);
}

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
}

.price-figure__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 56px);
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.price-figure__per {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-muted);
}

.price-sub {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--ink-muted);
}

.price-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-points li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.45;
}

.price-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #4cc98a;
  border-bottom: 2px solid #4cc98a;
  transform: rotate(-45deg);
}

.price-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.price-card--focused__aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card--focused__aside > p {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
}

.price-card--focused__aside strong {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
}

.price-card--focused__aside span {
  font-size: 15px;
  line-height: 1.5;
  color: #5d5249;
}

.pricing-details {
  margin-top: 20px;
}

.pricing-details summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

.pricing-details summary::-webkit-details-marker {
  display: none;
}

.pricing-details p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- faq ---------- */

.faq {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding: 80px 0;
}

.faq--compact__inner {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 28px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px 22px;
}

.faq__list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary::after {
  content: "+";
  font-family: var(--font-data);
  font-size: 20px;
  color: var(--pink-dark);
  flex: 0 0 auto;
}

.faq__list details[open] summary::after {
  content: "–";
}

.faq__list p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: #5d5249;
}

/* ---------- final CTA + footer ---------- */

.final-cta {
  background: var(--ink);
  color: #f5efe6;
  padding: 80px 0;
}

.final-cta--compact__inner {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.final-cta .eyebrow {
  color: var(--pink-text-dark);
}

.final-cta h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.06;
  max-width: 20ch;
}

.final-cta--compact__inner > div:first-child > p {
  margin: 16px 0 0;
  font-size: 17px;
  color: var(--ink-muted);
}

.final-cta--compact__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.final-cta--compact__action .price-cta {
  margin-top: 0;
}

.final-cta--compact__action > p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-subtle);
  max-width: 34ch;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}

.site-footer__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.site-footer__brand p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 40ch;
}

.site-footer__craft {
  color: var(--soft) !important;
  font-size: 13.5px !important;
}

.site-footer__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-top: 2px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pink-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer nav h2 {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
  font-family: var(--font-sans);
  margin-bottom: 14px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.site-footer nav a:hover {
  color: var(--pink-dark);
}

.site-footer__bottom {
  width: min(var(--max), calc(100% - 48px));
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__bottom span {
  font-size: 13.5px;
  color: var(--muted);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 86ch;
}

/* ---------- mobile sticky CTA ---------- */

.sticky-cta {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

/* ---------- compact difference section on narrow screens ---------- */

@media (max-width: 1023px) {
  .answers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .answers__grid article,
  .answers__grid article:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .difference__effort {
    margin-top: 26px;
    padding: 18px 20px;
  }
}
/* ---------- narrow desktop / tablet ---------- */

@media (max-width: 1023px) {
  .hero__inner,
  .tagger__inner,
  .difference,
  .friction__inner,
  .payoff__inner,
  .trust-strip__inner,
  .price-card--focused {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hero {
    min-height: 0;
    padding: 40px 0 64px;
  }

  .hero__visual {
    display: none;
  }

  .product-shot--mobile {
    display: flex;
    margin: 28px 0 0;
  }

  .hero h1,
  .hero__lede,
  .tagger__copy > p,
  .difference__copy > p,
  .payoff__copy > p {
    max-width: 40ch;
  }

}

/* ---------- journey stacks in step with armHow()'s 1023px compact mode ---------- */

@media (max-width: 1023px) {
  .process-story__scroll {
    position: static;
    height: auto;
    min-height: 0;
  }

  .process-story__sticky {
    position: static;
    top: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 34px;
    min-height: 0;
  }

  .process-story__visual {
    margin: 0 auto;
    justify-self: center;
  }

  .process-story__copy {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .process-story__copy-stage {
    height: 290px;
  }
}

/* ---------- mobile ---------- */

@media (max-width: 759px) {
  :root {
    --product-mock-width: 232px;
  }

  .hero {
    min-height: calc(100svh - 64px);
    padding: 32px 0 56px;
  }

  .site-header__inner {
    min-height: 64px;
    width: calc(100% - 32px);
  }

  .nav {
    display: none;
  }

  .section,
  .hero__inner,
  .tagger__inner,
  .journey__inner,
  .journey__experience,
  .friction__inner,
  .payoff__inner,
  .trust-strip__inner,
  .pricing--focused__inner,
  .faq--compact__inner,
  .final-cta--compact__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: calc(100% - 32px);
  }

  .section,
  .journey,
  .tagger,
  .friction,
  .payoff,
  .trust-strip,
  .pricing,
  .faq,
  .final-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero__visual {
    display: none;
  }

  .product-shot--mobile {
    display: flex;
    margin: 32px 0 0;
  }

  .hero h1 {
    font-size: 33px;
    max-width: none;
  }

  .hero__lede {
    font-size: 17px;
    max-width: none;
  }

  .hero__primary,
  .price-cta {
    width: 100%;
    justify-content: center;
  }

  .trust-strip__facts {
    grid-template-columns: 1fr;
  }

  .answers__grid {
    grid-template-columns: 1fr;
  }

  .open-core {
    gap: 20px;
    padding: 22px 20px;
  }

  .open-core__text {
    flex-basis: 100%;
  }

  .open-core__cta {
    width: 100%;
  }

  body {
    padding-bottom: 104px;
  }

  .process-progress button {
    gap: 6px;
    padding-inline: 7px;
  }

  .process-progress button span {
    display: none;
  }

  .process-progress button b {
    font-size: 13px;
  }

  .process-story__copy-stage {
    height: 240px;
  }

  .process-copy {
    justify-content: flex-start;
  }

  .payoff__result {
    flex-direction: column;
    align-items: flex-start;
  }

  .payoff__result-major {
    text-align: left;
  }

  .tagger__readout {
    gap: 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(251, 244, 234, .94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .28s;
  }

  .sticky-cta.is-visible {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .sticky-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    background: var(--pink);
    color: var(--on-pink);
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-card);
  }

  .sticky-cta small {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
  }

  .final-cta--compact__action {
    width: 100%;
  }
}

/* ---------- no-JS fallback ---------- */

html:not(.how-armed) .process-story__scroll {
  height: auto;
  min-height: 0;
}

html:not(.how-armed) .process-story__sticky {
  position: static;
  min-height: 0;
  align-items: start;
}

html:not(.how-armed) .process-story__copy-stage,
html:not(.how-armed) .product-carousel {
  display: grid;
  height: auto;
  gap: 28px;
}

html:not(.how-armed) .process-copy,
html:not(.how-armed) .process-screen {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

html:not(.how-armed) .process-progress,
html:not(.how-armed) .theme-switcher,
html:not(.js) .visually-hidden {
  display: none;
}

html:not(.js) [data-tagger-line],
html:not(.js) input[type="range"] {
  cursor: default;
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .js.reveal-armed [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
