:root {
  --cream: #f6f1e7;
  --cream-deep: #ebe3d4;
  --paper: #fffdf8;
  --ink: #18231c;
  --muted: #667068;
  --forest: #173c2f;
  --forest-deep: #0d291f;
  --leaf: #7ac76a;
  --leaf-bright: #a8e879;
  --tomato: #e55f46;
  --orange: #e99a45;
  --blue: #3d8ed9;
  --line: rgba(24, 35, 28, 0.13);
  --shadow: 0 24px 70px rgba(36, 46, 38, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.app-store-button,
.button {
  letter-spacing: -0.035em;
}

h1,
h2,
h3 {
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.3rem);
  font-weight: 750;
}

h3 {
  font-size: 1.35rem;
}

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

.section {
  padding-block: clamp(90px, 11vw, 150px);
}

.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;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--forest);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--leaf-bright);
}

.eyebrow-green {
  color: #3f765a;
}

.eyebrow-green span {
  background: #4da163;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 60, 47, 0.2);
}

.button-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 16px 34px rgba(23, 60, 47, 0.28);
}

.button-secondary {
  border-color: rgba(23, 60, 47, 0.2);
  background: var(--paper);
  color: var(--forest);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding-block: 18px;
  color: #fff;
  transition: padding 220ms ease, background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.utility-page .site-header {
  padding-block: 10px;
  border-bottom: 1px solid rgba(23, 60, 47, 0.08);
  background: rgba(246, 241, 231, 0.9);
  box-shadow: 0 8px 30px rgba(31, 46, 35, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", sans-serif;
  font-size: 1.05rem;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.13);
}

.is-scrolled .brand img,
.utility-page .brand img {
  border-color: rgba(23, 60, 47, 0.12);
}

.brand i {
  color: var(--leaf-bright);
  font-style: normal;
}

.is-scrolled .brand i,
.utility-page .brand i {
  color: #3d975c;
}

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

.site-nav > a:not(.button) {
  position: relative;
  color: inherit;
  font-size: 0.89rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button-nav {
  min-height: 42px;
  padding: 10px 17px;
  background: #fff;
  color: var(--forest);
  font-size: 0.85rem;
}

.button-nav svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.is-scrolled .button-nav,
.utility-page .button-nav {
  background: var(--forest);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: currentColor;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .brand {
  position: relative;
  z-index: 2;
  color: var(--ink);
}

.nav-open .brand i {
  color: #3d975c;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 145px 0 0;
  background:
    linear-gradient(115deg, rgba(8, 37, 25, 0.98), rgba(23, 60, 47, 0.97)),
    #173c2f;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.09;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-one {
  top: -180px;
  right: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(137, 213, 111, 0.32), transparent 68%);
}

.hero-glow-two {
  bottom: -260px;
  left: -190px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(229, 95, 70, 0.17), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  min-height: 625px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 48px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: clamp(3.65rem, 6vw, 6.7rem);
  font-weight: 760;
  letter-spacing: -0.065em;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--leaf-bright);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 9px;
  border-radius: 50%;
  background: rgba(168, 232, 121, 0.16);
  content: "";
  transform: rotate(-1deg);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 10px 23px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: #050706;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.app-store-button:hover {
  background: #0b0e0c;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.app-store-button svg {
  width: 28px;
  height: 34px;
  fill: currentColor;
}

.app-store-button span {
  display: grid;
  gap: 4px;
}

.app-store-button small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
}

.app-store-button strong {
  font-size: 1.27rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 680;
  text-decoration: none;
}

.text-link span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.text-link:hover span {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(2px);
}

.hero-meta {
  display: flex;
  gap: 25px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.78rem;
  list-style: none;
}

.hero-meta li {
  position: relative;
}

.hero-meta li + li::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  content: "";
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  top: 60px;
  right: -100px;
  width: 580px;
  height: 580px;
}

.orbit-two {
  top: 125px;
  right: -30px;
  width: 440px;
  height: 440px;
  border-color: rgba(168, 232, 121, 0.12);
}

.ingredient {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  box-shadow: inset -5px -6px 9px rgba(0, 0, 0, 0.12), 0 13px 20px rgba(0, 0, 0, 0.17);
}

.ingredient-pea {
  width: 25px;
  height: 25px;
  background: radial-gradient(circle at 32% 28%, #d4f98e, #6bb64e 62%, #3e7c36);
}

.ingredient-one {
  top: 95px;
  right: 38px;
}

.ingredient-two {
  right: 7px;
  bottom: 132px;
  width: 16px;
  height: 16px;
}

.ingredient-tomato {
  top: 205px;
  left: 11px;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 30% 26%, #ffb07d, #e55f46 58%, #a82f28);
}

.phone-frame {
  position: absolute;
  z-index: 2;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48px;
  background: #050706;
  box-shadow: 0 45px 75px rgba(0, 0, 0, 0.35), inset 0 0 0 2px #353735;
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: #030403;
  transform: translateX(-50%);
}

.phone-hero {
  top: 18px;
  left: 50%;
  width: 310px;
  height: 671px;
  transform: translateX(-46%) rotate(2.2deg);
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
}

.float-card > span:last-child {
  display: grid;
  gap: 2px;
}

.float-card small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.float-card strong {
  font-size: 0.83rem;
  line-height: 1.2;
}

.float-card em {
  font-size: 0.69rem;
  font-style: normal;
  line-height: 1.2;
}

.float-icon {
  display: grid;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
}

.float-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.float-icon-red {
  background: #fce7e1;
  color: #cf513c;
}

.float-icon-green {
  background: #e1f4dc;
  color: #3b8950;
}

.float-use {
  top: 285px;
  left: -20px;
  transform: rotate(-3deg);
}

.float-use em {
  color: #cf513c;
  font-weight: 720;
}

.float-recipe {
  right: -8px;
  bottom: 84px;
  transform: rotate(2deg);
}

.float-recipe em {
  color: #3b8950;
}

.hero-foot {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-foot > p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-foot ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 43px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-foot li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 630;
}

.hero-foot svg {
  width: 20px;
  fill: none;
  stroke: var(--leaf-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 59px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.flow {
  background: var(--cream);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-grid > li {
  position: relative;
  min-height: 390px;
  padding: 24px 27px 30px;
  border: 1px solid rgba(23, 60, 47, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.75);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.flow-grid > li:hover {
  border-color: rgba(23, 60, 47, 0.18);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
  color: #65806f;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.step-top i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
}

.step-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 31px;
  place-items: center;
  border-radius: 24px;
}

.step-icon svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.step-icon-green {
  background: #dff1dc;
  color: #377b4c;
}

.step-icon-orange {
  background: #f5e2cc;
  color: #b56e29;
}

.step-icon-blue {
  background: #dceaf6;
  color: #397bb5;
}

.flow-grid h3 {
  margin-bottom: 13px;
  font-size: 1.46rem;
}

.flow-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin-top: 43px;
}

.section-cta p {
  margin: 0;
  color: #7c827d;
  font-size: 0.73rem;
}

.feature-band {
  position: relative;
  padding-block: clamp(88px, 11vw, 150px);
  background: var(--forest-deep);
  color: #fff;
  overflow: hidden;
}

.feature-band::before {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 199, 106, 0.14), transparent 68%);
  content: "";
}

.feature-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(520px, 1.13fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.feature-copy {
  max-width: 570px;
}

.feature-number {
  margin-bottom: 27px;
  color: var(--leaf-bright);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.15em;
}

.feature-number-green {
  color: #3f8658;
}

.feature-copy h2 {
  margin-bottom: 25px;
}

.feature-copy > p:not(.feature-number):not(.fine-print) {
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-copy-light > p:not(.feature-number):not(.fine-print) {
  color: rgba(255, 255, 255, 0.68);
}

.feature-copy-light strong {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.check-list span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(168, 232, 121, 0.13);
  color: var(--leaf-bright);
  font-size: 0.72rem;
}

.fine-print {
  max-width: 470px;
  margin: 0;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.7rem;
  line-height: 1.55;
}

.use-next-demo {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.22);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
}

.demo-header div {
  display: grid;
  gap: 3px;
}

.demo-header small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-header strong {
  font-size: 1.28rem;
}

.demo-header > span {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.7rem;
}

.leftover-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.leftover-now {
  border-color: rgba(229, 95, 70, 0.34);
  background: linear-gradient(100deg, rgba(229, 95, 70, 0.14), rgba(255, 255, 255, 0.06));
}

.food-emoji {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 1.5rem;
}

.leftover-row div {
  display: grid;
  gap: 3px;
}

.leftover-row strong {
  font-size: 0.91rem;
}

.leftover-row small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 750;
  white-space: nowrap;
}

.status-red {
  background: rgba(229, 95, 70, 0.17);
  color: #ffa795;
}

.status-orange {
  background: rgba(233, 154, 69, 0.16);
  color: #ffc180;
}

.status-green {
  background: rgba(122, 199, 106, 0.14);
  color: var(--leaf-bright);
}

.demo-tip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 21px;
  padding: 16px 18px;
  border-radius: 17px;
  background: var(--leaf-bright);
  color: var(--forest-deep);
}

.demo-tip > span:first-child {
  font-size: 1.3rem;
}

.demo-tip > span:last-child {
  font-size: 1.2rem;
}

.demo-tip p {
  display: grid;
  gap: 1px;
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.35;
}

.demo-tip strong {
  font-size: 0.8rem;
}

.recipe-story {
  background: var(--paper);
  overflow: hidden;
}

.recipe-grid {
  display: grid;
  grid-template-columns: minmax(470px, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(70px, 11vw, 145px);
}

.recipe-visual {
  position: relative;
  min-height: 700px;
}

.recipe-backdrop-card {
  position: absolute;
  top: 50%;
  left: -45px;
  width: 420px;
  height: 465px;
  border-radius: 38px;
  background: var(--forest);
  box-shadow: 0 30px 60px rgba(28, 52, 38, 0.18);
  transform: translateY(-50%) rotate(-5deg);
  overflow: hidden;
}

.recipe-backdrop-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 20, 13, 0.78));
  content: "";
}

.recipe-backdrop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-backdrop-card span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
  font-family: ui-rounded, "SF Pro Rounded", sans-serif;
  font-size: 1.45rem;
  font-weight: 760;
  line-height: 1.1;
}

.phone-recipe {
  top: 4px;
  right: 5px;
  width: 302px;
  height: 654px;
  transform: rotate(3deg);
}

.mini-feature-list {
  display: grid;
  gap: 8px;
}

.mini-feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.mini-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  font-weight: 750;
}

.mini-icon-green {
  background: #dff1dc;
  color: #377b4c;
}

.mini-icon-blue {
  background: #dceaf6;
  color: #397bb5;
}

.mini-icon-orange {
  background: #f5e2cc;
  color: #b56e29;
}

.mini-feature-list h3 {
  margin: 1px 0 5px;
  font-size: 1rem;
}

.mini-feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.bento-section {
  background: var(--cream-deep);
}

.bento-section .section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  max-width: none;
}

.bento-section .section-heading .eyebrow,
.bento-section .section-heading h2 {
  grid-column: 1;
}

.bento-section .section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  padding-bottom: 9px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 430px 365px;
  gap: 18px;
}

.bento-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border: 1px solid rgba(23, 60, 47, 0.09);
  border-radius: 30px;
  background: var(--paper);
  overflow: hidden;
}

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

.bento-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 13px;
  background: rgba(23, 60, 47, 0.08);
  color: var(--forest);
}

.bento-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.bento-copy h3 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.bento-copy p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.bento-groceries {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  background: #f9f5ec;
}

.grocery-card {
  align-self: center;
  padding: 20px;
  border: 1px solid rgba(23, 60, 47, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(38, 51, 42, 0.12);
  transform: rotate(1.5deg);
}

.grocery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 730;
}

.grocery-head i {
  margin-right: 6px;
  font-style: normal;
}

.grocery-head small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
}

.grocery-card ul {
  display: grid;
  gap: 11px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.grocery-card li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  font-size: 0.73rem;
}

.grocery-card li > span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #b8c0ba;
  border-radius: 50%;
  color: #fff;
  font-size: 0.58rem;
}

.grocery-card li small {
  color: var(--muted);
  font-size: 0.61rem;
}

.grocery-card li.checked {
  color: #909791;
  text-decoration: line-through;
}

.grocery-card li.checked > span {
  border-color: var(--forest);
  background: var(--forest);
}

.reminders-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 10px;
  background: #e7f0f9;
  color: #397bb5;
  font-size: 0.59rem;
  font-weight: 700;
}

.reminders-chip span {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: #397bb5;
  color: #fff;
  font-size: 0.5rem;
}

.bento-household {
  background: var(--forest);
  color: #fff;
}

.bento-household .bento-icon {
  background: rgba(168, 232, 121, 0.13);
  color: var(--leaf-bright);
}

.bento-household .bento-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.household-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
}

.avatar {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 3px solid var(--forest);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 760;
}

.avatar-one {
  bottom: 43px;
  left: 39px;
  background: #f4cc82;
  color: #68471f;
}

.avatar-two {
  bottom: 43px;
  left: 77px;
  background: #9dcced;
  color: #24506d;
}

.avatar-three {
  bottom: 43px;
  left: 115px;
  background: #dc9ca0;
  color: #6b333a;
}

.cloud-line {
  position: absolute;
  right: 76px;
  bottom: 67px;
  left: 155px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 232, 121, 0.4), rgba(168, 232, 121, 0.05));
}

.cloud-badge {
  position: absolute;
  right: 34px;
  bottom: 42px;
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  border: 1px solid rgba(168, 232, 121, 0.3);
  border-radius: 17px;
  background: rgba(168, 232, 121, 0.1);
  color: var(--leaf-bright);
}

.cloud-badge svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.bento-scan {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 25px;
  background: #dceaf6;
}

.bento-scan .bento-icon {
  background: rgba(57, 123, 181, 0.12);
  color: #397bb5;
}

.scan-window {
  position: relative;
  display: grid;
  width: 200px;
  height: 200px;
  place-items: center;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(57, 123, 181, 0.16);
  overflow: hidden;
}

.scan-corners {
  position: absolute;
  inset: 19px;
  border: 2px solid #397bb5;
  border-radius: 16px;
  opacity: 0.3;
}

.barcode {
  display: flex;
  align-items: stretch;
  gap: 3px;
  width: 110px;
  height: 56px;
}

.barcode span {
  width: 4px;
  background: #1c2920;
}

.barcode span:nth-child(2n) { width: 8px; }
.barcode span:nth-child(3n) { width: 2px; }

.scan-line {
  position: absolute;
  right: 25px;
  left: 25px;
  height: 2px;
  background: #e55f46;
  box-shadow: 0 0 12px #e55f46;
  animation: scan 2.8s ease-in-out infinite;
}

.bento-native {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 25px;
  background: #f3e6cc;
}

.bento-native .bento-icon {
  background: rgba(181, 110, 41, 0.11);
  color: #a46227;
}

.widget-pair {
  position: relative;
  min-height: 250px;
}

.widget {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 150px;
  height: 150px;
  padding: 18px;
  border-radius: 30px;
  box-shadow: 0 17px 40px rgba(71, 52, 27, 0.15);
}

.widget small {
  margin-bottom: auto;
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.09em;
}

.widget strong {
  margin-bottom: 3px;
  font-family: ui-rounded, "SF Pro Rounded", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.widget span {
  font-size: 0.63rem;
}

.widget-dark {
  top: 12px;
  left: 0;
  background: var(--forest);
  color: #fff;
  transform: rotate(-5deg);
}

.widget-dark strong {
  color: var(--leaf-bright);
}

.widget-light {
  right: 0;
  bottom: 2px;
  background: #fff;
  color: var(--ink);
  transform: rotate(5deg);
}

.widget-light strong {
  color: #a46227;
  font-size: 1.3rem;
}

.apple-section {
  background: var(--paper);
}

.apple-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 10vw, 130px);
}

.apple-section .section-heading {
  margin: 0;
}

.apple-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.apple-facts article {
  min-height: 175px;
  padding: 26px;
  background: var(--paper);
}

.apple-facts span {
  display: inline-block;
  margin-bottom: 28px;
  color: #3f765a;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.apple-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(55px, 10vw, 145px);
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-intro a {
  color: var(--forest);
  font-weight: 700;
}

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

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding-block: 20px;
  font-family: ui-rounded, "SF Pro Rounded", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 690px;
  margin: -6px 55px 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  position: relative;
  padding-block: clamp(85px, 10vw, 135px);
  background: var(--forest);
  color: #fff;
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.08;
}

.final-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-orb-one {
  top: -240px;
  right: -120px;
  width: 630px;
  height: 630px;
  background: radial-gradient(circle, rgba(168, 232, 121, 0.2), transparent 68%);
}

.final-orb-two {
  bottom: -270px;
  left: -160px;
  width: 570px;
  height: 570px;
  background: radial-gradient(circle, rgba(229, 95, 70, 0.13), transparent 68%);
}

.final-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: clamp(50px, 10vw, 140px);
}

.final-copy h2 {
  max-width: 750px;
  margin-bottom: 22px;
}

.final-copy > p:not(.eyebrow):not(.final-meta) {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.07rem;
}

.app-store-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--forest-deep);
  box-shadow: 0 17px 35px rgba(0, 0, 0, 0.2);
}

.app-store-button-light:hover {
  background: #f7f8f4;
}

.final-meta {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.69rem;
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.24);
  transform: rotate(2deg);
}

.download-icon {
  width: 61px;
  height: 61px;
  border-radius: 16px;
}

.download-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.download-card strong {
  font-family: ui-rounded, "SF Pro Rounded", sans-serif;
  font-size: 0.96rem;
}

.download-card span {
  color: var(--muted);
  font-size: 0.68rem;
}

.download-qr {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  margin-top: 3px;
  border-radius: 18px;
}

.site-footer {
  padding: 50px 0 25px;
  background: #0a1e17;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding-bottom: 38px;
}

.brand-footer img {
  width: 36px;
  height: 36px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
}

.footer-top nav {
  display: flex;
  gap: 25px;
}

.footer-top nav a,
.utility-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 620;
  text-decoration: none;
}

.footer-top nav a:hover,
.utility-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
}

.mobile-download {
  position: fixed;
  z-index: 900;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 9px;
  border: 1px solid rgba(23, 60, 47, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 15px 45px rgba(23, 42, 31, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(130%);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  backdrop-filter: blur(18px) saturate(140%);
}

.mobile-download.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-download img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.mobile-download > span {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.mobile-download strong {
  font-size: 0.78rem;
}

.mobile-download small {
  color: var(--muted);
  font-size: 0.62rem;
}

.mobile-download a {
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal][data-delay="1"] {
  transition-delay: 110ms;
}

[data-reveal][data-delay="2"] {
  transition-delay: 220ms;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.utility-main {
  position: relative;
  min-height: calc(100vh - 165px);
  padding: 155px 0 100px;
  overflow: hidden;
}

.utility-orb {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -200px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 199, 106, 0.23), transparent 70%);
}

.utility-hero {
  max-width: 820px;
  margin-bottom: 75px;
  text-align: center;
}

.utility-hero .eyebrow {
  justify-content: center;
}

.utility-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.utility-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-bottom: 60px;
}

.support-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 253, 248, 0.8);
}

.support-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: #4a8d61;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.11em;
}

.support-grid h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.support-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 21px;
  padding: 25px;
  border-radius: 24px;
  background: var(--forest);
  color: #fff;
}

.support-cta img {
  width: 67px;
  height: 67px;
  border-radius: 18px;
}

.support-cta h2 {
  margin: 0 0 5px;
  font-size: 1.4rem;
}

.support-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.82rem;
}

.support-cta .button-secondary {
  border: 0;
}

.utility-footer {
  padding-top: 25px;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: radial-gradient(circle at top right, #e3f0d5, var(--cream) 50%);
}

.not-found {
  max-width: 620px;
  text-align: center;
}

.not-found img {
  width: 94px;
  height: 94px;
  margin: 0 auto 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.not-found .eyebrow {
  justify-content: center;
}

.not-found h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.not-found > p:not(.eyebrow) {
  max-width: 490px;
  margin: 0 auto 28px;
  color: var(--muted);
}

@keyframes scan {
  0%, 100% { transform: translateY(-62px); }
  50% { transform: translateY(62px); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 25px;
  }

  .phone-hero {
    width: 280px;
    height: 607px;
  }

  .float-use {
    left: -4px;
  }

  .float-recipe {
    right: -20px;
  }

  .feature-band-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
    gap: 45px;
  }

  .recipe-grid {
    gap: 75px;
  }

  .recipe-backdrop-card {
    left: -70px;
  }

  .bento-grid {
    grid-template-rows: 450px 385px;
  }

  .bento-groceries {
    grid-template-columns: 1fr;
  }

  .bento-groceries .bento-copy p {
    max-width: 520px;
  }

  .grocery-card {
    position: absolute;
    right: 25px;
    bottom: 24px;
    width: 60%;
  }

  .bento-scan,
  .bento-native {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .scan-window {
    width: 170px;
    height: 170px;
  }

  .widget {
    width: 135px;
    height: 135px;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding-block: 90px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 7px;
    padding: 100px 28px 38px;
    background: var(--cream);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav > a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: ui-rounded, "SF Pro Rounded", sans-serif;
    font-size: 1.4rem;
  }

  .site-nav .button-nav {
    margin-top: 20px;
    background: var(--forest);
    color: #fff;
  }

  .nav-open .nav-toggle {
    position: fixed;
    z-index: 2;
    top: 14px;
    right: 16px;
    border-color: var(--line);
    color: var(--ink);
  }

  .nav-open .nav-toggle span:nth-last-child(2) {
    transform: translateY(3.25px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .hero {
    padding-top: 120px;
  }

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

  .hero-copy {
    max-width: 680px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 11.8vw, 6.2rem);
  }

  .hero-visual {
    min-height: 690px;
  }

  .phone-hero {
    width: 300px;
    height: 650px;
  }

  .float-use {
    left: 7%;
  }

  .float-recipe {
    right: 6%;
  }

  .ingredient-tomato {
    left: 12%;
  }

  .ingredient-one {
    right: 16%;
  }

  .hero-foot {
    align-items: flex-start;
    gap: 25px;
    padding-block: 25px;
  }

  .hero-foot ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

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

  .flow-grid > li {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 0;
    gap: 0 23px;
  }

  .step-top {
    grid-column: 1 / -1;
    margin-bottom: 25px;
  }

  .step-icon {
    grid-row: 2 / 4;
    margin: 0;
  }

  .flow-grid h3 {
    align-self: end;
  }

  .feature-band-grid,
  .recipe-grid,
  .apple-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-band-grid {
    gap: 65px;
  }

  .feature-copy {
    max-width: 650px;
  }

  .recipe-grid {
    gap: 20px;
  }

  .recipe-visual {
    order: 2;
    width: min(100%, 620px);
    min-height: 680px;
    margin-inline: auto;
  }

  .recipe-backdrop-card {
    left: 0;
  }

  .phone-recipe {
    right: 7%;
  }

  .bento-section .section-heading {
    display: block;
  }

  .bento-section .section-heading > p:last-child {
    max-width: 560px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .bento-card {
    min-height: 390px;
  }

  .bento-groceries {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .grocery-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
  }

  .bento-scan,
  .bento-native {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .apple-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .final-grid {
    grid-template-columns: 1fr 300px;
    gap: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    display: none;
  }

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

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .section {
    padding-block: 76px;
  }

  .site-header {
    padding-block: 11px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .app-store-button {
    width: 100%;
    justify-content: center;
  }

  .text-link {
    padding-left: 4px;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 9px 22px;
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 20px;
  }

  .phone-hero {
    left: 51%;
    width: 268px;
    height: 580px;
  }

  .phone-frame {
    border-radius: 42px;
  }

  .phone-frame img {
    border-radius: 34px;
  }

  .float-card {
    min-width: 0;
    padding: 10px 11px;
  }

  .float-card strong {
    font-size: 0.72rem;
  }

  .float-card small,
  .float-card em {
    font-size: 0.56rem;
  }

  .float-icon {
    width: 31px;
    height: 31px;
  }

  .float-use {
    top: 260px;
    left: -5px;
  }

  .float-recipe {
    right: -9px;
    bottom: 44px;
  }

  .hero-foot {
    display: block;
    padding-block: 25px 30px;
  }

  .hero-foot > p {
    margin-bottom: 18px;
  }

  .hero-foot ul {
    justify-content: flex-start;
    gap: 13px 22px;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .flow-grid > li {
    display: block;
    min-height: 340px;
  }

  .step-icon {
    margin-bottom: 27px;
  }

  .use-next-demo {
    padding: 18px;
  }

  .leftover-row {
    grid-template-columns: auto 1fr;
    padding: 14px;
  }

  .status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .recipe-visual {
    min-height: 580px;
  }

  .recipe-backdrop-card {
    top: 48%;
    left: -75px;
    width: 330px;
    height: 390px;
  }

  .phone-recipe {
    right: -3px;
    width: 245px;
    height: 530px;
  }

  .bento-card {
    min-height: 0;
    padding: 25px;
  }

  .bento-groceries,
  .bento-scan,
  .bento-native {
    grid-template-columns: 1fr;
  }

  .grocery-card {
    margin-top: 25px;
  }

  .bento-household {
    min-height: 430px;
  }

  .scan-window {
    order: 2;
    width: 100%;
    height: 230px;
    margin-top: 10px;
  }

  .widget-pair {
    min-height: 215px;
    margin-top: 10px;
  }

  .widget {
    width: 145px;
    height: 145px;
  }

  .apple-facts {
    grid-template-columns: 1fr;
  }

  .apple-facts article {
    min-height: 145px;
  }

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

  .faq-list details > p {
    margin-right: 38px;
  }

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

  .download-card {
    display: none;
  }

  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top nav {
    flex-wrap: wrap;
  }

  .mobile-download {
    display: grid;
  }

  .utility-download {
    min-height: 39px;
    padding: 9px 14px;
    font-size: 0.75rem;
  }

  .utility-main {
    padding-top: 130px;
  }

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

  .support-cta .button {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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