:root {
  --ink: #111310;
  --ink-soft: #555a53;
  --paper: #fbfcf8;
  --paper-warm: #f3f5ef;
  --surface: #ffffff;
  --line: #dfe3da;
  --dark: #090a09;
  --dark-soft: #141614;
  --dark-line: rgba(255, 255, 255, 0.13);
  --herb: #355e3b;
  --herb-bright: #93c47d;
  --herb-wash: #e4efe0;
  --orange: #a74718;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --shadow-card: 0 20px 60px rgba(16, 28, 14, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--herb-bright);
  color: #0a0d09;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-weight: 650;
  transition: transform 180ms ease;
}

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

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

.section-pad {
  padding: 132px 0;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--dark-line);
  content: "";
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(9, 10, 9, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  animation: header-down 320ms var(--ease);
}

@keyframes header-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.nav-shell {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  min-height: 82px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 1.32rem;
  font-weight: 720;
  letter-spacing: -0.05em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

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

.desktop-nav a,
.nav-cta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 560;
  transition: color 180ms ease;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  align-content: center;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--herb-bright);
  content: "";
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.nav-cta:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 172px 0 92px;
  background:
    radial-gradient(circle at 73% 40%, rgba(147, 196, 125, 0.1), transparent 28%),
    var(--dark);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.24));
  content: "";
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 32px;
}

.eyebrow,
.section-index,
.bento-label,
.app-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--herb);
}

.eyebrow-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--herb-bright);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--herb-bright);
  box-shadow: 0 0 0 5px rgba(147, 196, 125, 0.11);
}

.hero h1 {
  max-width: 790px;
  margin: 28px 0 26px;
  font-size: clamp(3.7rem, 6.2vw, 6.8rem);
  font-weight: 690;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero h1 em,
.final-cta h2 em {
  color: var(--herb-bright);
  font-family: Iowan Old Style, "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 690;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 220ms var(--ease);
}

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

.button:active,
.nav-cta:active,
.menu-toggle:active {
  opacity: 0.76;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--herb-bright);
  color: #0a0d09;
}

.button-primary:hover {
  background: #a8d394;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: #b7bdb1;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  font-size: 0.94rem;
  font-weight: 640;
}

.text-link-light {
  color: #fff;
}

.text-link-light:hover {
  color: var(--herb-bright);
}

.hero-note {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
}

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

.orbit-one {
  width: 540px;
  height: 540px;
}

.orbit-two {
  width: 700px;
  height: 700px;
  opacity: 0.55;
}

.phone {
  position: relative;
  z-index: 3;
  width: 326px;
  height: 660px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  background: #1b1d1a;
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2.5deg);
}

.phone::before,
.phone::after {
  position: absolute;
  left: -3px;
  width: 3px;
  border-radius: 2px 0 0 2px;
  background: #31342f;
  content: "";
}

.phone::before {
  top: 128px;
  height: 68px;
}

.phone::after {
  top: 212px;
  height: 36px;
}

.phone-island {
  position: absolute;
  z-index: 7;
  top: 18px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #050505;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: #f8f9f6;
  color: #111310;
}

.status-bar {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 24px 0;
  font-size: 0.61rem;
  font-weight: 720;
}

.status-icons {
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.app-nav {
  display: grid;
  height: 46px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #e2e4de;
  grid-template-columns: 1fr auto 1fr;
  font-size: 0.73rem;
}

.app-back {
  color: var(--herb);
  font-size: 1.3rem;
}

.app-back small {
  margin-left: 2px;
  font-size: 0.68rem;
  vertical-align: 2px;
}

.app-nav-title {
  font-weight: 700;
}

.app-more {
  justify-self: end;
  letter-spacing: 0.08em;
}

.recipe-scroll {
  height: calc(100% - 143px);
  overflow: hidden;
  padding: 23px 18px 20px;
}

.app-kicker {
  margin-bottom: 7px;
  color: var(--herb);
  font-size: 0.48rem;
}

.recipe-scroll h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.app-summary {
  margin: 10px 0 12px;
  color: #686c65;
  font-size: 0.68rem;
  line-height: 1.45;
}

.app-meta {
  display: flex;
  gap: 7px;
}

.app-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border: 1px solid #dde1d8;
  border-radius: 99px;
  background: #fff;
  font-size: 0.53rem;
  font-weight: 650;
}

.app-meta svg {
  width: 11px;
  height: 11px;
}

.app-change {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 15px;
  padding: 11px;
  border-radius: 12px;
  background: var(--herb-wash);
}

.app-change-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--herb);
  color: #fff;
}

.app-change-icon svg {
  width: 12px;
  height: 12px;
}

.app-change p {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.3;
}

.app-change small {
  display: block;
  margin-top: 3px;
  color: #5e665b;
  font-size: 0.52rem;
  line-height: 1.35;
}

.ingredients-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 5px;
  font-size: 0.66rem;
}

.ingredients-head span {
  color: #81847e;
  font-size: 0.52rem;
}

.ingredient {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e4de;
  font-size: 0.6rem;
}

.ingredient span:first-child {
  display: flex;
  flex-direction: column;
}

.ingredient small {
  margin-top: 2px;
  color: #7a7e77;
  font-size: 0.51rem;
}

.ingredient-action {
  padding: 5px 7px;
  border: 1px solid #d5d9d0;
  border-radius: 99px;
  background: #fff;
  color: #4c514a;
  font-size: 0.46rem;
}

.ingredient-adapted small {
  color: var(--herb);
}

.ingredient-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--herb-wash);
  color: var(--herb);
}

.ingredient-check svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}

.app-tabbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-around;
  padding: 4px 28px 10px;
  border-top: 1px solid #dfe2db;
  background: rgba(250, 251, 248, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.app-tabbar span {
  display: flex;
  min-width: 38px;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: #7d817a;
  font-size: 0.46rem;
}

.app-tabbar span.active {
  color: var(--herb);
}

.app-tabbar svg {
  width: 16px;
  height: 16px;
}

.source-pill,
.saving-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(27, 29, 26, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  color: #fff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.source-pill {
  min-width: 166px;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 15px;
}

.source-pill-link {
  top: 114px;
  left: -2px;
  transform: rotate(-5deg);
}

.source-pill-photo {
  top: 278px;
  right: -34px;
  transform: rotate(5deg);
}

.source-pill b,
.source-pill small,
.saving-card b,
.saving-card small {
  display: block;
}

.source-pill b {
  font-size: 0.7rem;
}

.source-pill small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.57rem;
}

.source-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: rgba(147, 196, 125, 0.14);
  color: var(--herb-bright);
}

.source-icon svg {
  width: 15px;
  height: 15px;
}

.saving-card {
  right: -12px;
  bottom: 80px;
  gap: 11px;
  padding: 13px 17px;
  border-radius: 18px;
}

.saving-card > svg {
  width: 22px;
  height: 22px;
  color: var(--herb-bright);
}

.saving-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
}

.saving-card b {
  color: var(--herb-bright);
  font-size: 0.83rem;
  font-variant-numeric: tabular-nums;
}

.source-ribbon {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.source-ribbon-grid {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.source-ribbon p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 590;
}

.source-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.source-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  font-weight: 650;
}

.source-list svg {
  width: 18px;
  height: 18px;
  color: var(--herb);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 0.5fr 1.5fr;
}

.section-index {
  color: #7b8178;
}

.display-title {
  margin: 19px 0 0;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.display-title span {
  color: #979c94;
  font-family: Iowan Old Style, "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.72;
}

.how {
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.35fr 0.65fr;
}

.section-heading > .section-lead {
  margin-bottom: 9px;
}

.steps-grid {
  display: grid;
  padding: 0;
  margin: 80px 0 0;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: #c4cbc0;
  background: #fff;
}

.step-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #9ba097;
  font-size: 0.72rem;
  font-weight: 690;
  font-variant-numeric: tabular-nums;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--herb-wash);
  color: var(--herb);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-icon-light {
  background: rgba(147, 196, 125, 0.14);
  color: var(--herb-bright);
}

.step-card h3 {
  margin: 77px 0 10px;
  font-size: 1.36rem;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.showcase {
  background: var(--paper);
}

.showcase-heading {
  margin-bottom: 78px;
}

.bento-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.bento {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.bento::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.bento-profile,
.bento-original {
  border-color: #20241f;
  background:
    radial-gradient(circle at 80% 75%, rgba(147, 196, 125, 0.15), transparent 42%),
    var(--dark-soft);
  color: #fff;
}

.bento-profile {
  grid-column: span 7;
}

.bento-budget {
  background: var(--herb-wash);
  grid-column: span 5;
}

.bento-missing {
  grid-column: span 5;
}

.bento-original {
  grid-column: span 7;
}

.bento-global {
  min-height: 390px;
  background: var(--paper-warm);
  grid-column: span 12;
}

.bento-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.bento-label {
  margin-top: 27px;
  color: var(--herb);
  font-size: 0.65rem;
}

.bento-profile .bento-label,
.bento-original .bento-label {
  color: var(--herb-bright);
}

.bento h3 {
  max-width: 470px;
  margin: 10px 0 13px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.bento-copy > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.bento-profile .bento-copy > p:last-child,
.bento-original .bento-copy > p:last-child {
  color: rgba(255, 255, 255, 0.53);
}

.profile-stack {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 42px;
  left: 38px;
  height: 145px;
}

.profile-card {
  position: absolute;
  display: flex;
  width: min(430px, 82%);
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.profile-card-one {
  z-index: 2;
  right: 0;
  bottom: 0;
}

.profile-card-two {
  bottom: 43px;
  left: 0;
  opacity: 0.54;
  transform: rotate(-3deg);
}

.avatar {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--herb-bright);
  color: #111;
  font-weight: 740;
}

.profile-card b,
.profile-card small {
  display: block;
}

.profile-card b {
  font-size: 0.92rem;
}

.profile-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.68rem;
}

.profile-check {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--herb-bright);
  color: #111;
}

.profile-check svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.5;
}

.budget-visual {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  padding: 24px;
  border: 1px solid rgba(53, 94, 59, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 36px rgba(53, 94, 59, 0.08);
}

.budget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.8rem;
}

.budget-row span {
  color: #687267;
}

.budget-row b {
  font-variant-numeric: tabular-nums;
}

.budget-row-current b {
  color: var(--herb);
}

.budget-line {
  position: relative;
  height: 5px;
  margin: 15px 0;
  overflow: hidden;
  border-radius: 99px;
  background: #d3ddcf;
}

.budget-line span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--herb);
}

.budget-saved {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--herb);
  font-size: 0.72rem;
  font-weight: 670;
}

.budget-saved svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.3;
}

.missing-list {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.missing-list > div {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #eceee9;
}

.missing-list b,
.missing-list small {
  display: block;
}

.missing-list b {
  font-size: 0.76rem;
}

.missing-list small {
  color: #7d827a;
  font-size: 0.65rem;
}

.missing-list i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #d4d8d0;
  border-radius: 7px;
  color: transparent;
}

.missing-list i.missing-selected {
  border-color: var(--herb);
  background: var(--herb);
  color: #fff;
}

.missing-list i svg {
  width: 14px;
  height: 14px;
}

.missing-action {
  display: flex;
  width: calc(100% - 20px);
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  margin: 10px;
  background: var(--herb);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 670;
}

.missing-action svg {
  width: 15px;
  height: 15px;
}

.compare-card {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  display: grid;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  gap: 10px;
  grid-template-columns: 1fr auto 1fr;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.compare-card div small,
.compare-card div b {
  display: block;
}

.compare-card div small {
  margin-bottom: 4px;
  color: var(--herb-bright);
  font-size: 0.5rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.compare-card div b {
  font-size: 0.73rem;
}

.compare-arrow {
  align-self: center;
  color: rgba(255, 255, 255, 0.4);
}

.compare-arrow svg {
  width: 18px;
  height: 18px;
}

.compare-card p {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  grid-column: 1 / -1;
}

.compare-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  background: transparent;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 650;
  grid-column: 1 / -1;
  justify-self: start;
}

.bento-global .bento-copy {
  max-width: 590px;
}

.region-pills {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: flex;
  width: min(480px, calc(100% - 84px));
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.region-pills span {
  padding: 12px 17px;
  border: 1px solid #d4d9d0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  color: #686e66;
  font-size: 0.74rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.region-pills .active {
  border-color: var(--herb);
  background: var(--herb);
  color: #fff;
}

.privacy {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.privacy-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}

.privacy-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
}

.section-index-dark {
  color: rgba(255, 255, 255, 0.43);
}

.display-title-dark {
  color: #fff;
}

.display-title-dark span {
  color: var(--herb-bright);
}

.section-lead-dark {
  color: rgba(255, 255, 255, 0.56);
}

.privacy-copy .text-link {
  margin-top: 32px;
}

.privacy-list {
  border-top: 1px solid var(--dark-line);
}

.privacy-item {
  display: grid;
  min-height: 154px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--dark-line);
  gap: 22px;
  grid-template-columns: auto 1fr;
}

.privacy-item > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(147, 196, 125, 0.11);
  color: var(--herb-bright);
}

.privacy-item svg {
  width: 23px;
  height: 23px;
}

.privacy-item h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.privacy-item p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

.honesty {
  border-bottom: 1px solid var(--line);
  background: var(--herb-wash);
}

.honesty-grid {
  display: grid;
  align-items: end;
  gap: 100px;
  grid-template-columns: 1.1fr 0.9fr;
}

.honesty-copy {
  padding-left: 32px;
  border-left: 2px solid var(--herb);
}

.honesty-copy p {
  margin: 0;
  color: #414a40;
  font-size: 1.06rem;
  line-height: 1.7;
}

.honesty-copy p + p {
  margin-top: 25px;
}

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

.faq-grid {
  display: grid;
  align-items: start;
  gap: 110px;
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-heading {
  position: sticky;
  top: 128px;
}

.faq-heading .display-title {
  font-size: clamp(2.7rem, 4vw, 4.6rem);
}

.faq-heading .section-lead {
  margin-top: 22px;
}

.faq-heading .button {
  margin-top: 28px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  font-size: 1.07rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper-warm);
}

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

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

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

.faq-list details p {
  max-width: 700px;
  padding: 0 52px 28px 0;
  margin: -8px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(147, 196, 125, 0.15), transparent 38%),
    var(--dark);
  color: #fff;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: -340px;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 120px rgba(255, 255, 255, 0.018),
    0 0 0 240px rgba(255, 255, 255, 0.014);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.4);
}

.final-cta .eyebrow {
  margin-top: 32px;
}

.final-cta h2 {
  margin: 26px 0 22px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.final-cta > .container > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.98rem;
}

.coming-soon-button {
  display: inline-flex;
  min-width: 210px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 7px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin-top: 34px;
  background: #fff;
  color: #080808;
  text-align: left;
}

.coming-soon-button svg {
  width: 30px;
  height: 30px;
}

.coming-soon-button small,
.coming-soon-button b {
  display: block;
}

.coming-soon-button small {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.coming-soon-button b {
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.not-found-action {
  margin-top: 30px;
}

.site-footer {
  background: #050605;
  color: #fff;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-top {
  min-height: 130px;
  border-bottom: 1px solid var(--dark-line);
}

.brand-footer {
  color: #fff;
}

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

.footer-bottom {
  min-height: 84px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-bottom a {
  min-height: 44px;
  align-content: center;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 400ms var(--ease),
    transform 400ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-grid .reveal:nth-child(2),
.privacy-list .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.steps-grid .reveal:nth-child(3),
.privacy-list .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.steps-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

/* Interior pages */
.page-shell {
  min-height: 100vh;
  background: var(--paper);
}

.page-header {
  position: relative;
  background: var(--dark);
}

.page-main {
  padding: 170px 0 110px;
}

.page-hero {
  max-width: 790px;
  margin-bottom: 72px;
}

.page-hero .eyebrow {
  margin-bottom: 22px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.page-hero > p:last-child {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.page-layout {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 240px minmax(0, 760px);
}

.page-aside {
  position: sticky;
  top: 112px;
}

.page-aside p {
  margin: 0 0 12px;
  color: #61675f;
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-aside nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-aside a {
  min-height: 40px;
  align-content: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
  transition: color 180ms ease;
}

.page-aside a:hover {
  color: var(--herb);
}

.prose {
  min-width: 0;
}

.prose section {
  padding: 0 0 55px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.prose section + section {
  padding-top: 55px;
}

.prose section:last-child {
  border-bottom: 0;
}

.prose h2 {
  margin: 0 0 19px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.prose h3 {
  margin: 32px 0 10px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  color: #4d534c;
  font-size: 0.96rem;
  line-height: 1.78;
}

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

.prose ul,
.prose ol {
  padding-left: 21px;
  margin: 17px 0;
}

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

.prose a {
  color: var(--herb);
  font-weight: 620;
  text-decoration: underline;
  text-decoration-color: rgba(53, 94, 59, 0.36);
  text-underline-offset: 3px;
}

.notice {
  padding: 21px 23px;
  border: 1px solid #d2dccd;
  border-radius: var(--radius-sm);
  margin: 0 0 28px;
  background: var(--herb-wash);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.notice p {
  margin: 0;
  color: #465145;
  font-size: 0.88rem;
}

.support-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}

.support-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.support-card .feature-icon {
  margin-bottom: 48px;
}

.support-card h2 {
  margin: 0 0 7px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.support-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.support-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--herb);
  font-size: 0.85rem;
  font-weight: 660;
}

.support-card a svg {
  width: 16px;
  height: 16px;
}

.support-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1px solid #ead8ca;
  border-radius: var(--radius-sm);
  margin-top: 34px;
  background: #fbf2eb;
}

.support-status svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--orange);
}

.support-status p {
  margin: 0;
  color: #6c4c39;
  font-size: 0.87rem;
}

.support-details {
  margin-top: 92px;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .source-pill-link {
    left: -20px;
  }

  .source-pill-photo {
    right: -30px;
  }

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

  .step-card {
    min-height: 275px;
  }

  .bento {
    min-height: 540px;
  }

  .bento-global {
    min-height: 440px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 100px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    place-items: center;
  }

  .menu-toggle svg {
    width: 21px;
    height: 21px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 82px 0 0;
    display: flex;
    height: calc(100dvh - 82px);
    flex-direction: column;
    padding: 32px 24px;
    background: rgba(9, 10, 9, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    display: flex;
    min-height: 62px;
    align-items: center;
    border-bottom: 1px solid var(--dark-line);
    font-size: 1.15rem;
    font-weight: 630;
  }

  .hero {
    padding-top: 142px;
  }

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

  .hero-copy {
    max-width: 760px;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead,
  .hero-note {
    margin-inline: auto;
  }

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

  .phone {
    transform: none;
  }

  .source-pill-link {
    left: calc(50% - 280px);
  }

  .source-pill-photo {
    right: calc(50% - 290px);
  }

  .saving-card {
    right: calc(50% - 280px);
  }

  .source-ribbon-grid {
    min-height: 126px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .source-list {
    width: 100%;
    justify-content: space-between;
  }

  .intro-grid,
  .section-heading,
  .privacy-grid,
  .honesty-grid,
  .faq-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .section-heading > .section-lead {
    margin: 0;
  }

  .bento-profile,
  .bento-budget,
  .bento-missing,
  .bento-original,
  .bento-global {
    grid-column: span 12;
  }

  .bento {
    min-height: 500px;
  }

  .bento-global {
    min-height: 470px;
  }

  .privacy-grid-bg {
    mask-image: linear-gradient(0deg, transparent, #000);
  }

  .honesty-copy {
    max-width: 760px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading .section-lead {
    margin-top: 20px;
  }

  .page-layout {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .page-aside {
    position: static;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .page-aside nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 18px;
  }
}

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

  .section-pad {
    padding: 80px 0;
  }

  .nav-shell {
    min-height: 72px;
  }

  .mobile-nav {
    inset: 72px 0 0;
    height: calc(100dvh - 72px);
  }

  .hero {
    min-height: 0;
    padding: 124px 0 72px;
  }

  .hero h1 {
    margin: 24px 0 22px;
    font-size: clamp(3.05rem, 14.5vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

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

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    width: 570px;
    height: 570px;
  }

  .phone {
    width: 278px;
    height: 566px;
    border-radius: 43px;
  }

  .phone-screen {
    border-radius: 35px;
  }

  .phone-island {
    top: 17px;
    width: 78px;
    height: 21px;
  }

  .status-bar {
    height: 38px;
  }

  .recipe-scroll {
    height: calc(100% - 136px);
    padding: 18px 15px;
  }

  .recipe-scroll h2 {
    font-size: 1.75rem;
  }

  .app-change {
    margin-top: 12px;
  }

  .ingredients-head {
    margin-top: 13px;
  }

  .source-pill {
    min-width: 144px;
    padding: 8px 10px;
  }

  .source-pill-link {
    top: 104px;
    left: -4px;
  }

  .source-pill-photo {
    top: 261px;
    right: -8px;
  }

  .saving-card {
    right: -4px;
    bottom: 44px;
    padding: 10px 12px;
  }

  .source-list {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .source-ribbon-grid {
    padding: 25px 0;
  }

  .intro-grid {
    gap: 32px;
  }

  .display-title {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .section-lead {
    margin-top: 26px;
    font-size: 1rem;
  }

  .steps-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 270px;
  }

  .showcase-heading {
    margin-bottom: 52px;
  }

  .bento {
    min-height: 520px;
    padding: 27px;
    border-radius: 28px;
  }

  .bento h3 {
    font-size: 2.2rem;
  }

  .profile-stack,
  .budget-visual,
  .missing-list,
  .compare-card {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

  .profile-card {
    width: 90%;
  }

  .bento-budget {
    min-height: 545px;
  }

  .bento-missing {
    min-height: 600px;
  }

  .bento-original {
    min-height: 590px;
  }

  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

  .bento-global {
    min-height: 570px;
  }

  .region-pills {
    right: 26px;
    bottom: 26px;
    left: 26px;
    width: auto;
    justify-content: flex-start;
  }

  .honesty-copy {
    padding-left: 21px;
  }

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

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta {
    padding: 105px 0;
  }

  .final-cta h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

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

  .footer-top {
    padding: 30px 0;
  }

  .footer-bottom {
    min-height: 130px;
    padding: 22px 0;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 5px 20px;
  }

  .page-main {
    padding: 128px 0 80px;
  }

  .page-hero {
    margin-bottom: 52px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .prose section {
    padding-bottom: 42px;
  }

  .prose section + section {
    padding-top: 42px;
  }

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

  .step-card p,
  .bento-copy > p:last-child,
  .privacy-item p,
  .honesty-copy p,
  .prose p,
  .prose li,
  .support-card p,
  .support-status p {
    font-size: 1rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-soft: #343834;
    --line: #afb5aa;
  }

  .hero-lead,
  .section-lead-dark,
  .privacy-item p,
  .bento-profile .bento-copy > p:last-child,
  .bento-original .bento-copy > p:last-child {
    color: rgba(255, 255, 255, 0.78);
  }
}
