@font-face {
  font-family: "Material Symbols Rounded";
  src: url("/assets/material-symbols-rounded.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --paper: #ffffff;
  --ink: #172021;
  --muted: #667274;
  --tertiary: #8b9596;
  --line: #e3e8e7;
  --line-strong: #cbd5d3;
  --blue: #2d6873;
  --blue-soft: #eaf4f6;
  --green: #168260;
  --green-soft: #e4f3eb;
  --amber: #bd7520;
  --amber-soft: #fff1df;
  --section: #f7f9f8;
  --ease: cubic-bezier(.2, 0, 0, 1);
  --display: "Arial Black", "Avenir Next", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }

.material-symbols {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: 8px;
  transition: transform 120ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.96);
  transition: border-color 160ms var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); }
.header-inner { height: 74px; display: flex; align-items: center; gap: 42px; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -.5px;
  text-decoration: none;
}
.wordmark-symbol { width: 30px; height: 30px; display: block; flex: 0 0 auto; }
.desktop-nav { display: flex; gap: 30px; margin-left: auto; }
.desktop-nav a, .site-footer a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
.desktop-nav a:hover, .site-footer a:hover { color: var(--ink); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 120ms var(--ease), background-color 120ms var(--ease);
}
.header-cta:active { transform: scale(.97); }
.menu-button { display: none; border: 0; background: transparent; color: var(--ink); padding: 8px; }
.mobile-nav { position: fixed; inset: 74px 0 0; padding: 26px 24px; background: var(--paper); }
.mobile-nav a { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 750; text-decoration: none; }

.hero {
  min-height: 0;
  padding-top: 64px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .82fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
}
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 12px; line-height: 1.2; letter-spacing: 1.35px; font-weight: 800; }
.hero h1, .section-heading h2, .final-copy h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -2.7px;
}
.hero h1 { max-width: 690px; font-size: clamp(48px, 5.3vw, 72px); line-height: .98; }
.hero-lead { max-width: 630px; margin: 28px 0 0; color: var(--muted); font-size: 20px; line-height: 1.5; }
.hero-anchor { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; color: var(--blue); font-size: 14px; font-weight: 800; text-decoration: none; }
.hero-anchor span { transition: transform 160ms var(--ease); }
.hero-anchor:hover span { transform: translateY(3px); }
.platform-cluster { margin-top: 38px; }
.platform-label { margin: 0 0 12px; font-size: 14px; font-weight: 760; }
.platform-buttons { display: flex; gap: 9px; flex-wrap: wrap; }
.platform-button {
  min-width: 152px;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 120ms var(--ease), border-color 120ms var(--ease), background-color 120ms var(--ease);
}
.platform-button:hover { border-color: var(--ink); background: var(--section); }
.platform-button:active { transform: scale(.97); }
.platform-button .material-symbols { font-size: 18px; color: var(--blue); transition: transform 160ms var(--ease); }
.platform-button:hover .material-symbols { transform: translate(2px, -2px); }
.price-note { margin: 13px 0 0; color: var(--tertiary); font-size: 12px; line-height: 1.45; }

.hero-product { position: relative; padding-top: 32px; }
.photo-caption { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; color: var(--tertiary); font-size: 10px; letter-spacing: .8px; font-weight: 800; }
.phone-frame { width: min(420px, 100%); margin-inline: auto; border: 1px solid var(--line-strong); border-radius: 18px; background: var(--paper); overflow: hidden; box-shadow: 0 26px 64px rgba(23,32,33,.10); }
.phone-topbar { height: 58px; padding: 0 18px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.phone-topbar .material-symbols:last-child { justify-self: end; }
.phone-topbar strong { font-size: 14px; }
.meal-photo { width: 100%; height: 210px; display: block; object-fit: cover; }
.scan-summary { display: flex; justify-content: space-between; align-items: flex-start; padding: 18px 20px 14px; }
.ui-label { display: block; color: var(--tertiary); font-size: 10px; letter-spacing: 1.1px; font-weight: 800; }
.scan-summary h2 { margin: 6px 0 0; font-family: var(--display); font-size: 23px; letter-spacing: -.8px; }
.confidence { padding: 5px 7px; border-radius: 6px; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 800; }
.scan-list { padding: 0 20px; }
.food-row { width: 100%; min-height: 61px; padding: 10px 0; border: 0; border-top: 1px solid var(--line); background: transparent; display: grid; grid-template-columns: 28px 1fr 24px; gap: 10px; align-items: center; text-align: left; color: var(--ink); cursor: pointer; }
.food-row strong, .food-row small { display: block; }
.food-row strong { font-size: 13px; }
.food-row small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.food-status { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-size: 17px; }
.edit-icon { color: var(--blue); font-size: 18px; }
.save-meal, .plan-action {
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
}
.save-meal { width: calc(100% - 40px); margin: 16px 20px 20px; }
.save-meal:active, .plan-action:active { transform: scale(.98); }
.hero-proof { width: min(500px, calc(100% + 80px)); margin: 18px 0 0 -40px; display: flex; justify-content: center; gap: 0; color: var(--muted); font-size: 11px; }
.hero-proof span { padding: 0 16px; border-right: 1px solid var(--line); }
.hero-proof span:last-child { border: 0; }

.section-line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--section); }
.friction { padding: 104px 0; }
.friction-grid, .future-grid, .faq-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(64px, 10vw, 150px); align-items: start; }
.section-heading h2 { max-width: 760px; font-size: clamp(38px, 4.3vw, 58px); line-height: 1.02; }
.section-heading > p:last-child, .product-intro > p { max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.friction-list { list-style: none; margin: 0; padding: 0; }
.friction-list li { min-height: 112px; display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: center; border-top: 1px solid var(--line-strong); }
.friction-list li:last-child { border-bottom: 1px solid var(--line-strong); }
.friction-list span { color: var(--amber); font-size: 11px; font-weight: 800; }
.friction-list strong { display: block; font-size: 17px; line-height: 1.35; }
.friction-list p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.consequence { padding-top: 118px; padding-bottom: 28px; display: grid; grid-template-columns: .4fr 1.1fr; gap: clamp(52px, 9vw, 132px); }
.consequence-label { padding-top: 10px; color: var(--amber); font-size: 10px; letter-spacing: 1.1px; font-weight: 850; }
.consequence-copy h2 { max-width: 720px; margin: 0; font-family: var(--display); font-size: clamp(40px, 4.2vw, 58px); line-height: 1.02; letter-spacing: -2.2px; }
.consequence-copy > p { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.consequence-copy .tracker-note { margin-top: 34px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); font-size: 14px; font-weight: 700; }

.workflow { padding-top: 126px; padding-bottom: 132px; }
.workflow > .section-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; }
.workflow > .section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -52px; }
.workflow > .section-heading > p:last-child { margin: 0; padding-bottom: 5px; }
.workflow-grid { margin-top: 70px; display: grid; grid-template-columns: .76fr 1.24fr; gap: 28px; }
.workflow-tabs { display: flex; flex-direction: column; }
.workflow-tab { min-height: 118px; padding: 24px 12px; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--muted); display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 16px; text-align: left; cursor: pointer; }
.workflow-tab:last-child { border-bottom: 1px solid var(--line); }
.workflow-tab > span { grid-row: 1 / 3; padding-top: 2px; color: var(--tertiary); font-size: 11px; font-weight: 800; }
.workflow-tab strong { color: var(--ink); font-size: 19px; }
.workflow-tab small { margin-top: 6px; font-size: 13px; }
.workflow-tab.is-active { padding-left: 18px; background: var(--blue-soft); color: var(--blue); }
.workflow-tab.is-active > span, .workflow-tab.is-active strong { color: var(--blue); }
.workflow-demo { min-height: 468px; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; background: var(--paper); }
.demo-toolbar { height: 54px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 10px; letter-spacing: .8px; font-weight: 800; color: var(--tertiary); }
.demo-status { display: flex; align-items: center; gap: 7px; letter-spacing: 0; color: var(--green); }
.demo-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.demo-stage { position: relative; height: 332px; overflow: hidden; background: var(--section); }
.demo-stage > img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 320ms var(--ease), filter 220ms var(--ease); }
.focus-corners { position: absolute; inset: 32px; border: 1px solid rgba(255,255,255,.82); border-radius: 9px; box-shadow: inset 0 0 0 1px rgba(23,32,33,.15); }
.demo-result { position: absolute; left: 22px; right: 22px; bottom: 20px; padding: 15px 16px; border-radius: 9px; background: rgba(255,255,255,.96); display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; transition: transform 240ms var(--ease), opacity 180ms var(--ease); }
.demo-result .ui-label { grid-column: 1 / -1; }
.demo-result strong { font-size: 17px; }
.demo-result small { color: var(--muted); }
.demo-note { margin: 0; min-height: 80px; padding: 18px 20px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.workflow-demo.is-changing .demo-result { transform: translateY(8px); opacity: .2; }
.workflow-demo.is-changing .demo-stage > img { transform: scale(1.02); filter: saturate(.75); }
.solution-proof { margin-top: 54px; border-top: 2px solid var(--ink); display: grid; grid-template-columns: .8fr 1.2fr; }
.solution-proof span, .solution-proof strong { min-height: 64px; padding: 18px 16px 18px 0; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.4; }
.solution-proof span { color: var(--muted); }
.solution-proof strong { color: var(--green); }

.product-section { padding: 118px 0 126px; background: var(--paper); }
.product-intro { display: grid; grid-template-columns: 1.1fr .65fr; gap: 90px; align-items: end; }
.product-intro > p { margin: 0; padding-bottom: 5px; }
.nutrition-board { margin-top: 68px; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line-strong); display: grid; grid-template-columns: 1.15fr .85fr; }
.nutrition-main { padding: 36px 44px 40px 0; border-right: 1px solid var(--line-strong); }
.nutrition-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.nutrition-head strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 50px; letter-spacing: -2px; }
.nutrition-head strong small { font-family: var(--body); font-size: 14px; letter-spacing: 0; }
.remaining { text-align: right; }
.remaining span, .remaining b { display: block; }
.remaining span { color: var(--muted); font-size: 12px; }
.remaining b { margin-top: 5px; font-size: 17px; }
.calorie-track { height: 9px; margin-top: 26px; background: var(--line); overflow: hidden; }
.calorie-track span { display: block; width: 67%; height: 100%; background: var(--amber); transform-origin: left; }
.macro-table { margin-top: 30px; }
.macro-table > div { min-height: 58px; display: grid; grid-template-columns: 1fr auto; align-items: center; border-top: 1px solid var(--line); font-size: 13px; }
.macro-table > div:last-child { border-bottom: 1px solid var(--line); }
.macro-table span { color: var(--muted); }
.macro-table i { grid-column: 1 / -1; height: 3px; margin-top: -12px; background: var(--line); overflow: hidden; }
.macro-table em { display: block; width: var(--progress); height: 100%; background: var(--blue); }
.daily-note { margin-top: 28px; padding: 17px; display: grid; grid-template-columns: 30px 1fr; gap: 12px; background: var(--green-soft); color: var(--green); }
.daily-note .material-symbols { font-size: 21px; }
.daily-note p { margin: 0; font-size: 13px; line-height: 1.45; }
.meal-log { padding: 36px 0 40px 44px; }
.meal-log-head { height: 44px; display: flex; justify-content: space-between; align-items: flex-start; }
.meal-log-head button { border: 0; background: transparent; color: var(--blue); display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 750; cursor: pointer; }
.meal-log-head button .material-symbols { font-size: 18px; }
.meal-log article { min-height: 92px; padding: 15px 0; display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 14px; border-top: 1px solid var(--line); }
.meal-log article:last-child { border-bottom: 1px solid var(--line); }
.meal-log article > img, .empty-meal > span { width: 64px; height: 62px; object-fit: cover; border-radius: 8px; }
.meal-log article strong, .meal-log article small { display: block; }
.meal-log article strong { font-size: 14px; }
.meal-log article small { margin-top: 5px; color: var(--muted); font-size: 11px; }
.meal-log article > b { font-size: 13px; }
.empty-meal > span { display: grid; place-items: center; background: var(--section); color: var(--tertiary); }

.difference { padding-top: 124px; padding-bottom: 128px; }
.difference > .section-heading { max-width: 820px; }
.comparison { margin-top: 62px; border-top: 2px solid var(--ink); }
.comparison-row { min-height: 82px; display: grid; grid-template-columns: .75fr 1fr 1fr; gap: 30px; align-items: center; border-bottom: 1px solid var(--line); }
.comparison-row > * { padding-right: 20px; }
.comparison-row strong { font-size: 14px; }
.comparison-row span { color: var(--muted); font-size: 14px; line-height: 1.4; }
.comparison-row span:last-child { color: var(--green); font-weight: 700; }
.comparison-head { min-height: 56px; }
.comparison-head b { color: var(--tertiary); font-size: 10px; letter-spacing: 1px; }

.future { padding: 112px 0; }
.future-list article { min-height: 102px; padding: 18px 0; display: grid; grid-template-columns: 38px 1fr auto; gap: 18px; align-items: center; border-top: 1px solid var(--line-strong); }
.future-list article:last-child { border-bottom: 1px solid var(--line-strong); }
.future-list > article > .material-symbols { color: var(--blue); }
.future-list strong, .future-list p { display: block; margin: 0; }
.future-list strong { font-size: 17px; }
.future-list p { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.future-list small { color: var(--amber); font-size: 9px; letter-spacing: 1px; font-weight: 850; }

.plans { padding-top: 126px; padding-bottom: 128px; }
.plans-heading { display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: end; }
.billing-switch { padding: 4px; border: 1px solid var(--line); border-radius: 9px; display: flex; }
.billing-switch button { min-height: 39px; padding: 0 13px; border: 0; border-radius: 6px; background: transparent; color: var(--muted); font-weight: 700; cursor: pointer; }
.billing-switch button.is-active { background: var(--ink); color: var(--paper); }
.billing-switch span { color: var(--amber); font-size: 10px; }
.pricing-grid { margin-top: 62px; display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line-strong); }
.pricing-grid article { padding: 36px 44px 40px; }
.free-plan { border-right: 1px solid var(--line-strong); }
.paid-plan { background: var(--section); }
.plan-top { min-height: 142px; display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.plan-top h3 { margin: 8px 0 0; font-family: var(--display); font-size: 38px; letter-spacing: -1.4px; }
.plan-top h3 small { font-family: var(--body); color: var(--muted); font-size: 13px; letter-spacing: 0; }
.plan-top p { max-width: 190px; margin: 2px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.pricing-grid ul { margin: 22px 0 0; padding: 0; list-style: none; }
.pricing-grid li { min-height: 44px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.pricing-grid li .material-symbols { color: var(--green); font-size: 18px; }
.plan-action { margin-top: 24px; text-decoration: none; gap: 10px; transition: transform 120ms var(--ease); }
.plan-action .material-symbols { font-size: 19px; }
.plan-disclaimer { margin: 14px 0 0; color: var(--tertiary); font-size: 11px; }

.faq { padding: 112px 0; }
.accordion details { border-top: 1px solid var(--line-strong); }
.accordion details:last-child { border-bottom: 1px solid var(--line-strong); }
.accordion summary { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 16px; font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .material-symbols { color: var(--blue); transition: transform 180ms var(--ease); }
.accordion details[open] summary .material-symbols { transform: rotate(45deg); }
.accordion details p { max-width: 640px; margin: -4px 44px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.final-wrap { background: var(--ink); color: var(--paper); }
.final-cta { padding-top: 112px; padding-bottom: 116px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: end; }
.final-copy, .final-platforms, .platform-buttons { min-width: 0; }
.final-copy h2 { font-size: clamp(42px, 4.5vw, 62px); line-height: 1.01; }
.final-wrap .eyebrow { color: #d99643; }
.final-platforms > p { margin: 0 0 18px; display: flex; align-items: flex-start; gap: 11px; font-size: 20px; line-height: 1.3; font-weight: 850; }
.final-platforms > p > span { width: 10px; height: 10px; margin-top: 7px; flex: 0 0 auto; border-radius: 3px; background: #d99643; }
.final-platforms .platform-buttons { display: grid; grid-template-columns: 1fr; }
.final-platforms .platform-button { border-color: rgba(255,255,255,.28); background: var(--paper); color: var(--ink); }
.final-platforms .platform-button:hover { border-color: var(--paper); background: #f4f7f6; }
.final-platforms > small { display: block; margin-top: 16px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; }
.final-platforms .platform-button { width: 100%; }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { min-height: 120px; display: grid; grid-template-columns: .5fr 1fr auto; gap: 40px; align-items: center; }
.footer-inner p { color: var(--muted); font-size: 13px; }
.footer-inner nav { display: flex; gap: 20px; }

.toast { position: fixed; z-index: 90; right: 24px; bottom: 24px; max-width: 390px; padding: 15px 17px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--paper); box-shadow: 0 16px 42px rgba(23,32,33,.14); display: grid; grid-template-columns: 24px 1fr; gap: 11px; transform: translateY(18px); opacity: 0; pointer-events: none; transition: transform 240ms var(--ease), opacity 180ms var(--ease); }
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast > .material-symbols { color: var(--green); }
.toast strong, .toast small { display: block; }
.toast strong { font-size: 13px; }
.toast small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.reveal { opacity: 0; transform: translateY(9px); transition: opacity 260ms var(--ease), transform 260ms var(--ease); }
.reveal-delay-1 { transition-delay: 55ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(560px, 100%); margin-inline: auto; }
  .hero-proof { width: 100%; margin-left: 0; }
  .workflow > .section-heading, .product-intro { grid-template-columns: 1fr; gap: 20px; }
  .workflow > .section-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .workflow-grid { grid-template-columns: .78fr 1.22fr; }
  .consequence { grid-template-columns: .32fr 1fr; }
  .nutrition-board { grid-template-columns: 1fr; }
  .nutrition-main { padding-right: 0; border-right: 0; }
  .meal-log { padding-left: 0; border-top: 1px solid var(--line-strong); }
  .plans-heading { grid-template-columns: 1fr; align-items: start; }
  .billing-switch { width: max-content; }
  .pricing-grid article { padding-inline: 28px; }
  .plan-top { flex-direction: column; min-height: 170px; }
  .final-cta { grid-template-columns: 1fr; gap: 45px; }
  .final-platforms .platform-buttons { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 36px, 640px); }
  .header-inner { height: 66px; }
  .mobile-nav { inset: 66px 0 0; }
  .hero { min-height: 0; padding-top: 55px; padding-bottom: 78px; gap: 68px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); letter-spacing: -2px; }
  .hero-lead { margin-top: 22px; font-size: 17px; }
  .platform-buttons { display: grid; grid-template-columns: 1fr; }
  .platform-button { width: 100%; }
  .hero-proof { flex-direction: column; align-items: center; gap: 8px; }
  .hero-proof span { border: 0; padding: 0; }
  .photo-caption { display: none; }
  .hero-product { padding-top: 0; }
  .phone-frame { border-radius: 13px; }
  .friction, .future, .faq { padding: 78px 0; }
  .friction-grid, .future-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .consequence { padding-top: 80px; grid-template-columns: 1fr; gap: 24px; }
  .consequence-copy h2 { font-size: clamp(36px, 10vw, 48px); letter-spacing: -1.7px; }
  .consequence-copy > p { font-size: 16px; }
  .section-heading h2 { font-size: clamp(36px, 10vw, 48px); letter-spacing: -1.7px; }
  .workflow, .difference, .plans, .product-section { padding-top: 84px; padding-bottom: 88px; }
  .workflow-grid { margin-top: 45px; grid-template-columns: 1fr; }
  .workflow-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
  .workflow-tab { min-height: 116px; padding: 16px 9px; display: block; border-bottom: 1px solid var(--line); }
  .workflow-tab + .workflow-tab { border-left: 1px solid var(--line); }
  .workflow-tab span, .workflow-tab strong, .workflow-tab small { display: block; }
  .workflow-tab strong { margin-top: 9px; font-size: 13px; }
  .workflow-tab small { display: none; }
  .workflow-tab.is-active { padding-left: 9px; }
  .workflow-demo { min-height: 420px; }
  .solution-proof { grid-template-columns: 1fr; }
  .solution-proof span { min-height: 0; padding-bottom: 6px; border-bottom: 0; font-size: 11px; }
  .solution-proof strong { min-height: 0; padding-top: 0; padding-bottom: 18px; }
  .demo-stage { height: 286px; }
  .product-intro { gap: 12px; }
  .nutrition-board { margin-top: 42px; }
  .nutrition-main, .meal-log { padding-top: 28px; padding-bottom: 30px; }
  .nutrition-head strong { font-size: 42px; }
  .comparison { overflow: hidden; }
  .comparison-head { display: none; }
  .comparison-row { min-width: 0; grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .comparison-row > * { padding-right: 0; }
  .comparison-row span { display: grid; grid-template-columns: 78px 1fr; gap: 10px; }
  .comparison-row span::before { content: "Обычный"; color: var(--tertiary); font-size: 10px; letter-spacing: .7px; font-weight: 800; }
  .comparison-row span:last-child::before { content: "С Хэлфитом"; color: var(--green); }
  .pricing-grid { grid-template-columns: 1fr; }
  .free-plan { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .plan-top { min-height: 0; padding-bottom: 24px; }
  .final-cta { padding-top: 84px; padding-bottom: 88px; grid-template-columns: minmax(0, 1fr); }
  .final-platforms .platform-buttons { grid-template-columns: 1fr; }
  .footer-inner { padding: 32px 0; grid-template-columns: 1fr; gap: 12px; }
  .footer-inner nav { margin-top: 12px; }
  .toast { left: 18px; right: 18px; bottom: 18px; }
}

@media (max-width: 420px) {
  .shell { width: calc(100% - 32px); }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .meal-photo { height: 184px; }
  .scan-summary { padding-inline: 16px; }
  .scan-list { padding-inline: 16px; }
  .save-meal { width: calc(100% - 32px); margin-inline: 16px; }
  .friction-list p { font-size: 16px; }
  .workflow-tab { min-height: 102px; }
  .demo-stage { height: 250px; }
  .demo-result { left: 12px; right: 12px; bottom: 12px; }
  .nutrition-head { flex-direction: column; }
  .remaining { text-align: left; }
  .meal-log article { grid-template-columns: 56px 1fr auto; }
  .meal-log article > img, .empty-meal > span { width: 56px; height: 56px; }
  .pricing-grid article { padding-inline: 0; }
  .paid-plan { margin-inline: -16px; padding-inline: 16px !important; }
  .plan-top h3 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
