@font-face {
  font-family: "Onest";
  src: url("./fonts/onest-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("./fonts/onest-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("./fonts/onest-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("./fonts/onest-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --surface-lowest: #0c0e13;
  --surface: #111318;
  --surface-low: #191c20;
  --surface-mid: #1d2024;
  --surface-high: #282a2f;
  --surface-highest: #33353a;
  --text: #f2f2f7;
  --text-muted: #c4c6d0;
  --text-dim: #9aa0aa;
  --outline: #44474f;
  --outline-soft: #2b2d35;
  --white: #ffffff;
  --ink: #0f1117;
  --protein: #f2b7c6;
  --carbs: #b5e3c4;
  --fat: #e5c36c;
  --calories: #a0cafd;
  --expenditure: #d0bcff;
  --signal: #f34b43;
  --interactive: #ff7b73;
  --warning: #ffd8a8;
  --success: #78e2a8;
  --max-width: 1220px;
  --reading-width: 74ch;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--surface-lowest);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: "Onest", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}


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

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease-out;
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 3px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  background: var(--signal);
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--outline-soft);
  background: var(--surface-lowest);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 130ms ease-out;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

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

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  min-width: 190px;
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  background: var(--surface-lowest);
}

.mobile-nav nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--outline-soft);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav nav a:last-child { border-bottom: 0; }

.header-action,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 140ms ease-out, background-color 140ms ease-out, border-color 140ms ease-out;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
  background: #e6e8ef;
}

.header-action:active,
.button:active {
  transform: translateY(0) scale(0.97);
}

.button--secondary {
  border-color: var(--outline);
  background: transparent;
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--text-muted);
  background: var(--surface-high);
}

.button:focus-visible,
.header-action:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.footer-links a:focus-visible,
.legal-toc a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--interactive);
  outline-offset: 4px;
}

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

.hero {
  min-height: calc(100svh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(64px, 9vw, 132px);
  padding-block: clamp(70px, 10vw, 138px) 88px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-kicker::before {
  width: 28px;
  height: 1px;
  background: var(--signal);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 7.2vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-mobile-preview {
  display: none;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--outline-soft);
  color: var(--text-dim);
  font-size: 0.84rem;
}

.availability span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.availability span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.instrument-stage {
  --dial-turn: 0deg;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --phone-lift: 0px;
  perspective: 1400px;
  isolation: isolate;
  position: relative;
  min-height: 720px;
  margin: 0;
  display: grid;
  place-items: center;
}


.instrument-stage::before {
  position: absolute;
  width: min(660px, 112%);
  aspect-ratio: 1;
  border: 1px solid var(--outline-soft);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 268deg, rgba(196, 198, 208, 0.34) 0 0.35deg, transparent 0.35deg 5deg),
    var(--surface-lowest);
  content: "";
  mask: radial-gradient(circle, transparent 0 63%, #000 63.5% 100%);
  opacity: 0.9;
  transform: rotate(var(--dial-turn));
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.instrument-stage::after {
  position: absolute;
  top: 3%;
  left: 50%;
  width: 17px;
  height: 30px;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--calories);
  content: "";
}


.phone {
  position: relative;
  z-index: 2;
  width: min(390px, 86vw);
  padding: 6px;
  overflow: hidden;
  border: 1px solid #53565f;
  border-radius: 48px;
  background: #08090c;
  transform: rotate(2.4deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--phone-lift), 0);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-energized h1 {
  animation: hero-calibration-lock 900ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero.is-energized .phone {
  animation: phone-calibration-lock 980ms 120ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero.is-energized .hero-mobile-preview {
  animation: mobile-calibration-lock 760ms 120ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.instrument-stage.is-visible::before {
  animation: dial-calibration-lock 900ms cubic-bezier(0.16, 1, 0.3, 1) backwards, dial-calibration-idle 16s 900ms linear infinite;
}


@keyframes hero-calibration-lock {
  from { clip-path: inset(0 100% 0 0); filter: blur(8px); }
  to { clip-path: inset(0); filter: blur(0); }
}

@keyframes phone-calibration-lock {
  from { opacity: 0.18; clip-path: inset(16% 0 16% 0 round 48px); transform: perspective(1300px) translate3d(90px, 90px, -220px) rotateY(-18deg) rotateZ(-7deg) scale(0.72); filter: blur(12px); }
  to { opacity: 1; clip-path: inset(0 round 48px); transform: rotate(2.4deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--phone-lift), 0); filter: blur(0); }
}

@keyframes mobile-calibration-lock {
  from { clip-path: inset(48% 0 48% 0 round var(--radius-md)); filter: blur(7px); }
  to { clip-path: inset(0 round var(--radius-md)); filter: blur(0); }
}

@keyframes dial-calibration-lock {
  from { rotate: -42deg; opacity: 0.12; }
  to { rotate: 0deg; opacity: 0.9; }
}

@keyframes dial-calibration-idle {
  to { rotate: 1turn; }
}


.phone__screenshot {
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.proof-strip {
  border-block: 1px solid var(--outline-soft);
  background: var(--surface-lowest);
}

.proof-strip__inner {
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-strip p {
  margin: 0;
  padding: 22px 30px;
  border-right: 1px solid var(--outline-soft);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.proof-strip p:first-child {
  padding-left: 0;
}

.proof-strip p:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 1.08rem;
}

.section {
  position: relative;
  padding-block: clamp(96px, 12vw, 168px);
}

.section + .section {
  border-top: 1px solid var(--outline-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.78fr);
  align-items: end;
  gap: 64px;
  margin-bottom: clamp(50px, 8vw, 92px);
}

.section-kicker {
  margin: 0 0 15px;
  color: var(--interactive);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-heading h2,
.split-copy h2,
.plan-heading h2,
.final-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 590px;
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.workflow-list {
  counter-reset: workflow;
  display: grid;
  overflow: visible;
}


.workflow-pair {
  counter-increment: workflow;
  position: relative;
  min-height: clamp(640px, 78svh, 760px);
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 138px);
  padding-block: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--outline-soft);
}

.workflow-pair:nth-of-type(1) { --screen-focus-y: 18%; --chapter-accent: var(--calories); }
.workflow-pair:nth-of-type(2) { --screen-focus-y: 24%; --chapter-accent: var(--protein); }
.workflow-pair:nth-of-type(3) { --screen-focus-y: 22%; --chapter-accent: var(--expenditure); }
.workflow-pair:nth-of-type(4) { --screen-focus-y: 42%; --chapter-accent: var(--expenditure); }

.workflow-pair:last-child {
  border-bottom: 1px solid var(--outline-soft);
}

.workflow-pair:nth-of-type(even) .workflow-copy {
  grid-column: 2;
}

.workflow-pair:nth-of-type(even) .workflow-screen {
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
}

.workflow-copy {
  position: relative;
  max-width: 520px;
  isolation: isolate;
}

.workflow-copy::before {
  position: absolute;
  top: -0.52em;
  left: -0.08em;
  z-index: -1;
  color: var(--surface-highest);
  color: color-mix(in srgb, var(--chapter-accent) 16%, var(--surface-highest));
  content: "0" counter(workflow);
  font-size: clamp(7rem, 15vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.workflow-copy small {
  color: var(--chapter-accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.workflow-copy h3 {
  max-width: 560px;
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.workflow-copy p {
  max-width: 44ch;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.workflow-screen {
  position: relative;
  width: min(520px, 100%);
  margin: 0;
  justify-self: end;
}

.workflow-screen img {
  width: 100%;
  height: min(760px, 78svh);
  object-fit: cover;
  object-position: 50% var(--screen-focus-y, 20%);
  border: 1px solid var(--outline);
  border-color: color-mix(in srgb, var(--chapter-accent) 52%, var(--outline));
  border-radius: 44px;
  background: #08090c;
}

.workflow-pair:nth-of-type(-n + 3) .workflow-screen img {
  height: auto;
  object-position: top;
}



@supports not (animation-timeline: view()) {
  .motion-ready .workflow-pair .workflow-copy {
    opacity: 0.18;
    transform: perspective(1200px) translate3d(0, 84px, -160px) scale(0.82);
    filter: blur(10px);
    transition: opacity 620ms ease-out, transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 620ms ease-out;
  }

  .motion-ready .workflow-pair .workflow-screen {
    opacity: 0.18;
    clip-path: inset(12% 0 12% 0 round 32px);
    transform: perspective(1200px) translate3d(0, 84px, -160px) scale(0.82);
    filter: blur(10px);
    transition: opacity 620ms ease-out, clip-path 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 620ms ease-out;
  }

  .motion-ready .workflow-pair.is-in-view .workflow-copy,
  .motion-ready .workflow-pair.is-in-view .workflow-screen {
    opacity: 1;
    transform: perspective(1200px) translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .motion-ready .workflow-pair.is-in-view .workflow-screen {
    clip-path: inset(0 round 32px);
  }
}

@supports (animation-timeline: view()) {
  .workflow-pair {
    --screen-entry-x: 18vw;
    --screen-entry-turn: -14deg;
    --screen-entry-blur: 14px;
    --screen-exit-blur: 5px;
    --copy-entry-blur: 9px;
    --copy-exit-blur: 3px;
    view-timeline-name: --workflow-chapter;
    view-timeline-axis: block;
  }

  .workflow-pair:nth-of-type(even) {
    --screen-entry-x: -18vw;
    --screen-entry-turn: 14deg;
  }

  .workflow-copy {
    animation: workflow-copy-cinematic both linear;
    animation-timeline: --workflow-chapter;
    animation-range: entry 0% cover 86%;
  }

  .workflow-copy::before {
    animation: workflow-number-cinematic both linear;
    animation-timeline: --workflow-chapter;
    animation-range: entry 0% cover 72%;
  }

  .workflow-screen {
    transform-origin: center;
    animation: workflow-screen-cinematic both linear;
    animation-timeline: --workflow-chapter;
    animation-range: entry 0% cover 88%;
    will-change: transform, opacity, filter;
  }

}

@keyframes workflow-screen-cinematic {
  0% {
    opacity: 0;
    transform: perspective(1300px) translate3d(var(--screen-entry-x), 18vh, 0) rotateY(var(--screen-entry-turn)) scale(0.64);
    filter: blur(var(--screen-entry-blur));
  }
  34% {
    opacity: 1;
    transform: perspective(1300px) translate3d(0, 0, 0) rotateY(0) scale(1);
    filter: blur(0);
  }
  68% {
    opacity: 1;
    transform: perspective(1300px) translate3d(0, 0, 0) rotateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0.16;
    transform: perspective(1300px) translate3d(0, -12vh, -180px) rotateY(0) scale(1.08);
    filter: blur(var(--screen-exit-blur));
  }
}

@keyframes workflow-copy-cinematic {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--screen-entry-x) * -0.42), 8vh, 0);
    filter: blur(var(--copy-entry-blur));
  }
  28% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
  100% {
    opacity: 0.22;
    transform: translate3d(0, -8vh, 0);
    filter: blur(var(--copy-exit-blur));
  }
}

@keyframes workflow-number-cinematic {
  0% {
    opacity: 0;
    transform: translate3d(0, 9vh, 0) scale(0.64);
  }
  42% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0.35;
    transform: translate3d(0, -6vh, 0) scale(1.12);
  }
}

@keyframes workflow-caption-cinematic {
  0% { opacity: 0; transform: translateY(18px); }
  45%, 100% { opacity: 1; transform: translateY(0); }
}

.local-first {
  overflow: hidden;
  background: var(--surface-highest);
  color: var(--text);
}

.local-first::after {
  position: absolute;
  right: -12vw;
  bottom: -38%;
  width: 46vw;
  aspect-ratio: 0.72;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 55% 55% 47% 47% / 62% 62% 38% 38%;
  content: "";
}

.local-first .section-shell {
  position: relative;
  z-index: 2;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: clamp(60px, 11vw, 150px);
  align-items: start;
}

.local-first .section-kicker {
  color: var(--interactive);
}

.local-first .split-copy h2 {
  max-width: 720px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  color: var(--white);
}

.local-first .split-copy p {
  color: var(--text-muted);
}

.split-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 1.1rem;
}

.data-route {
  border-top: 1px solid var(--outline);
}

.data-route__row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--outline);
}

.data-route__row span {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.data-route__row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1rem;
}

.data-route__row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.capability-list {
  margin-top: 48px;
}

.capability-list > p {
  margin: 0 0 10px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
}

.capability-list ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px solid var(--outline);
  color: var(--text);
  font-size: 0.86rem;
}

.capability-list li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--white);
  content: "";
}

.plan-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(64px, 8vw, 92px);
}

.plan-heading p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--text-muted);
}

.plan-table-wrap {
  overflow-x: auto;
  padding: 18px clamp(14px, 2vw, 24px);
  border-block: 1px solid var(--outline);
}

.plan-table {
  width: 100%;
  min-width: 720px;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: left;
}

.plan-table th,
.plan-table td {
  padding: 22px 20px;
  border-bottom: 1px solid var(--outline-soft);
}

.plan-table th:first-child,
.plan-table td:first-child {
  padding-left: 0;
  width: 40%;
}


.plan-table thead th {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 600;
}

.plan-table thead th:not(:first-child) {
  width: 20%;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
}

.tier-heading {
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.tier-heading img {
  width: 48px;
  height: 48px;
}

.tier-heading small {
  color: var(--text-dim);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.25;
}

.plan-table tbody th {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.plan-table td {
  text-align: center;
  color: var(--text);
  font-size: 0.92rem;
}

.feature-check {
  display: inline-grid;
  min-width: 1.5rem;
  place-items: center;
  color: var(--success);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.plan-note {
  max-width: 64ch;
  margin: 26px 0 0;
  color: var(--text-dim);
  font-size: 0.84rem;
}

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

.plan-mobile {
  display: none;
  margin-top: 30px;
}

.tier-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--outline);
}

.tier-tab {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 12px 8px;
  border: 0;
  background: var(--surface-low);
  color: var(--text-muted);
  cursor: pointer;
}

.tier-tab img {
  width: 48px;
  height: 48px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tier-tab span {
  font-size: 0.82rem;
  font-weight: 700;
}

.tier-tab small {
  color: var(--text-dim);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.1;
}

.tier-tab.is-selected {
  background: var(--surface-high);
  color: var(--white);
}

.tier-tab.is-selected img {
  transform: translateY(-3px) scale(1.08);
}

.tier-tab:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--interactive);
  outline-offset: -3px;
}

.tier-panel {
  border: 1px solid var(--outline);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--surface-lowest);
}

.tier-panel:not([hidden]) {
  view-transition-name: tier-panel;
}

::view-transition-group(tier-panel) {
  animation-duration: 180ms;
}

::view-transition-old(tier-panel) {
  animation: tier-panel-out 90ms ease-in both;
}

::view-transition-new(tier-panel) {
  animation: tier-panel-in 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes tier-panel-out {
  to { clip-path: inset(0 0 100% 0); opacity: 0.35; }
}

@keyframes tier-panel-in {
  from { clip-path: inset(100% 0 0 0); }
  to { clip-path: inset(0); }
}

.tier-details {
  margin: 0;
  padding: 0 18px;
}

.tier-details > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--outline-soft);
}

.tier-details > div:last-child {
  border-bottom: 0;
}

.tier-details dt {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.tier-details dd {
  margin: 0;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: right;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.8fr);
  gap: clamp(48px, 10vw, 138px);
}

.faq-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.faq-intro p {
  margin: 24px 0 0;
  color: var(--text-muted);
}

.faq-list {
  interpolate-size: allow-keywords;
  border-top: 1px solid var(--outline);
}

.faq-list details {
  border-bottom: 1px solid var(--outline);
}

.faq-list details::details-content {
  block-size: 0;
  overflow: clip;
  opacity: 0;
  transition: block-size 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 160ms ease-out;
  transition-behavior: allow-discrete;
}

.faq-list details[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  transform: rotate(0deg);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), color 140ms ease-out;
  content: "+";
  color: var(--interactive);
  font-size: 1.45rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 62ch;
  margin: -4px 0 28px;
  color: var(--text-muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 10vw, 128px);
  background: var(--white);
  color: var(--ink);
}

.final-cta::after {
  position: absolute;
  right: -20px;
  bottom: -45%;
  width: min(40vw, 440px);
  aspect-ratio: 0.72;
  border: 2px solid rgba(15, 17, 23, 0.16);
  border-radius: 55% 55% 47% 47% / 62% 62% 38% 38%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) auto;
  align-items: end;
  gap: 50px;
}

.final-cta h2 {
  color: var(--ink);
}

.final-cta p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #484b55;
}

.final-cta .button {
  background: var(--ink);
  color: var(--white);
}

.final-cta .button:hover {
  background: #292d37;
}

.site-footer {
  padding-block: 44px;
  background: var(--surface-lowest);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 38px;
}

.footer-copy {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--text-dim);
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

/* Reading pages */
.legal-hero {
  padding-block: 78px 62px;
  border-bottom: 1px solid var(--outline-soft);
  background: var(--surface-lowest);
}

.legal-hero__inner {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 24px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.draft-notice {
  width: min(calc(100% - 40px), 980px);
  margin: 30px auto 0;
  padding: 20px 22px;
  border: 1px solid #8c724f;
  border-radius: var(--radius-sm);
  background: #2b241d;
  color: #ffe4c1;
}

.draft-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--warning);
}

.legal-layout {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, var(--reading-width));
  justify-content: space-between;
  gap: clamp(44px, 9vw, 120px);
  padding-block: 72px 120px;
}

.legal-toc {
  position: sticky;
  top: 30px;
  align-self: start;
}

.legal-toc > p {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 0.74rem;
  font-weight: 700;
}

.legal-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc li + li {
  margin-top: 10px;
}

.legal-toc a {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--white);
}

.prose {
  min-width: 0;
  color: var(--text-muted);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 72px 0 20px;
  scroll-margin-top: 28px;
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.prose h3 {
  margin: 42px 0 14px;
  scroll-margin-top: 28px;
  color: var(--text);
  font-size: 1.2rem;
}

.prose p,
.prose li {
  line-height: 1.78;
}

.prose p {
  margin: 0 0 22px;
}

.prose ul,
.prose ol {
  margin: 0 0 26px;
  padding-left: 1.3rem;
}

.prose li + li {
  margin-top: 10px;
}

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

.prose strong {
  color: var(--text);
}

.support-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 64px;
  border: 1px solid var(--outline-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--outline-soft);
}

.support-index a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: var(--surface-low);
  color: var(--text);
  text-decoration: none;
}

.support-index a:hover {
  background: var(--surface-high);
}

.support-index strong {
  margin-bottom: 4px;
}

.support-index span {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.support-contact {
  margin-top: 64px;
  padding: 28px;
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  background: var(--surface-low);
}

.support-contact h2 {
  margin-top: 0;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.status-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning);
  content: "";
}

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

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .header-action {
    margin-left: 0;
  }

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

  .hero-copy {
    max-width: 800px;
  }

  .instrument-stage {
    min-height: 620px;
  }

  .proof-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip p:nth-child(2) {
    border-right: 0;
  }

  .proof-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--outline-soft);
  }

  .proof-strip p:nth-child(3) {
    padding-left: 0;
  }

  .section-heading,
  .split-layout,
  .plan-heading,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }


  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--outline-soft);
  }

  .legal-toc ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .legal-toc li + li {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header__inner,
  .section-shell,
  .legal-hero__inner,
  .draft-notice,
  .legal-layout {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 32px 46px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .hero-mobile-preview {
    position: relative;
    height: 170px;
    margin: 28px 0 0;
    display: block;
    overflow: hidden;
    border: 1px solid var(--outline-soft);
    border-radius: var(--radius-md);
    background: var(--surface-lowest);
  }

  .hero-mobile-preview::after {
    position: absolute;
    inset: 0 14% auto;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--calories) 0 62%, var(--outline) 62%);
    content: "";
  }

  .hero-mobile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 13%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .instrument-stage {
    display: none;
  }

  .instrument-stage::before {
    width: 100%;
  }

  .instrument-stage::after {
    top: 1%;
  }

  .phone {
    width: min(320px, 86vw);
    padding: 5px;
    border-radius: 42px;
    transform: rotate(1.2deg);
  }


  .proof-strip__inner {
    grid-template-columns: 1fr;
  }

  .proof-strip p,
  .proof-strip p:first-child,
  .proof-strip p:nth-child(3) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--outline-soft);
  }

  .proof-strip p:last-child {
    border-bottom: 0;
  }

  .workflow-pair {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 48px;
    --screen-entry-blur: 8px;
    --screen-exit-blur: 3px;
    --copy-entry-blur: 6px;
    --copy-exit-blur: 2px;
  }


  .workflow-pair:nth-of-type(even) .workflow-copy,
  .workflow-pair:nth-of-type(even) .workflow-screen {
    grid-row: auto;
    grid-column: 1;
  }

  .workflow-screen {
    width: 100%;
    justify-self: stretch;
  }

  .workflow-screen img {
    height: min(600px, 70svh);
    border-radius: 28px;
  }


  .local-first::after,
  .final-cta::after {
    display: none;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.98rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-block: 58px 48px;
  }

  .legal-layout {
    padding-block: 48px 86px;
  }

  .support-index {
    grid-template-columns: 1fr;
  }


  .hero-lede {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .availability {
    gap: 12px 18px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .capability-list ul {
    grid-template-columns: 1fr;
  }

  .plan-table-wrap {
    display: none;
  }

  .plan-mobile {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .workflow-copy,
  .workflow-copy::before,
  .workflow-screen {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
  }

  .instrument-stage::before,
  .phone {
    transform: none !important;
  }



}

@media print {
  :root {
    color-scheme: light;
  }

  body,
  .legal-hero,
  .site-footer {
    background: #fff;
    color: #111;
  }

  body::before,
  .page-progress,
  .site-header,
  .legal-toc,
  .draft-notice,
  .site-footer {
    display: none;
  }

  .legal-hero,
  .legal-layout {
    width: 100%;
    padding: 0;
    border: 0;
  }

  .legal-hero h1,
  .prose h2,
  .prose h3,
  .prose strong,
  .prose a,
  .legal-hero p,
  .prose {
    color: #111;
  }

  .legal-layout {
    display: block;
    margin-top: 32px;
  }
}
