:root {
  --ink: #292e2a;
  --ink-soft: #596159;
  --sage-900: #4d5b49;
  --sage-800: #5f6f59;
  --sage-700: #71806a;
  --sage-500: #919d82;
  --sage-300: #bdc5aa;
  --sage-100: #edf0e5;
  --cream: #faf7f0;
  --sand: #ede6d8;
  --clay: #cbb9a3;
  --white: #fff;
  --border: #e1e3d8;
  --shadow: 0 24px 70px rgba(77, 91, 73, 0.12);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--sage-900);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-color: rgba(221, 228, 218, 0.8);
  box-shadow: 0 8px 30px rgba(30, 42, 34, 0.04);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 210px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.desktop-nav a,
.mobile-menu a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--sage-700);
}

.nav-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 24px;
  color: var(--white);
  background: var(--sage-800);
  border: 1px solid var(--sage-800);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(54, 94, 67, 0.18);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--sage-900);
  box-shadow: 0 12px 28px rgba(54, 94, 67, 0.24);
  transform: translateY(-2px);
}

.button:focus-visible,
input:focus-visible,
.menu-button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(77, 118, 88, 0.32);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: 13px;
}

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

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 150px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 24%, rgba(237, 240, 229, 0.92) 0, rgba(237, 240, 229, 0) 30%),
    linear-gradient(180deg, #fff 0%, #fcfaf5 100%);
}

.hero::before {
  position: absolute;
  right: -8%;
  bottom: -230px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(127, 155, 131, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--sage-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--sage-500);
  border: 2px solid var(--sage-100);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(185, 201, 183, 0.22);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: clamp(54px, 5.35vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

h1 em {
  color: var(--sage-700);
  font-weight: inherit;
}

.hero-body {
  max-width: 615px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.hero-body p {
  margin-bottom: 5px;
}

.hero-body .lead {
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.waitlist-form {
  max-width: 650px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(55, 75, 60, 0.1);
}

.waitlist-form.is-highlighted {
  animation: waitlist-highlight 1.8s ease-out;
}

@keyframes waitlist-highlight {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--border);
    box-shadow: 0 20px 55px rgba(55, 75, 60, 0.1);
  }

  35% {
    background: rgba(247, 250, 244, 0.98);
    border-color: rgba(77, 118, 88, 0.52);
    box-shadow:
      0 20px 55px rgba(55, 75, 60, 0.12),
      0 0 0 5px rgba(127, 155, 131, 0.12);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  position: relative;
}

.field label {
  position: absolute;
  top: 8px;
  left: 14px;
  color: #6b786d;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.field input {
  width: 100%;
  height: 60px;
  padding: 23px 14px 5px;
  color: var(--ink);
  background: #f8f9f5;
  border: 1px solid #e2e6de;
  border-radius: 11px;
  outline: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder {
  color: #9aa49b;
}

.field input:focus {
  background: var(--white);
  border-color: var(--sage-500);
  box-shadow: 0 0 0 4px rgba(127, 155, 131, 0.1);
}

.field input[aria-invalid="true"] {
  border-color: #b96d63;
}

.form-button {
  width: 100%;
}

.form-message {
  display: none;
  margin: 12px 2px 0;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 650;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  color: var(--sage-900);
  background: var(--sage-100);
}

.form-message.error {
  color: #80483f;
  background: #f8ebe7;
}

.trust-text {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 13px 5px 0;
  color: #748076;
  font-size: 11px;
  line-height: 1.5;
}

.trust-text svg {
  flex: 0 0 auto;
  width: 15px;
  margin-top: 1px;
  fill: none;
  stroke: var(--sage-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.visual-glow {
  position: absolute;
  inset: 12% 0 2% 6%;
  background: linear-gradient(145deg, #e0eadc, #f6eee3);
  border-radius: 46% 54% 52% 48% / 42% 38% 62% 58%;
  filter: blur(1px);
  transform: rotate(-4deg);
}

.phone-card {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: min(365px, 83%);
  min-height: 585px;
  padding: 25px 20px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 35px;
  box-shadow: 0 35px 75px rgba(50, 80, 58, 0.18);
  transform: translateX(-50%) rotate(2deg);
}

.phone-card::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 84px;
  height: 5px;
  background: #dfe5dc;
  border-radius: 99px;
  content: "";
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 3px 20px;
}

.phone-top > div {
  display: flex;
  flex-direction: column;
}

.mini-label {
  color: #839087;
  font-size: 10px;
}

.phone-top strong {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.avatar {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--sage-900);
  background: var(--sage-100);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 750;
}

.progress-card {
  margin-bottom: 22px;
  padding: 15px;
  color: #fff;
  background: var(--sage-800);
  border-radius: 17px;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.progress-copy strong {
  font-size: 11px;
}

.progress-track {
  height: 5px;
  margin: 10px 0 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  background: #dce7d6;
  border-radius: inherit;
}

.progress-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.collection-heading {
  display: flex;
  justify-content: space-between;
  margin: 0 3px 11px;
  font-size: 11px;
}

.collection-heading span {
  color: var(--sage-700);
  font-size: 9px;
  font-weight: 700;
}

.meal-card {
  display: grid;
  grid-template-columns: 74px 1fr 22px;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  padding: 9px;
  background: #fbfbf8;
  border: 1px solid #edf0e9;
  border-radius: 14px;
}

.meal-art {
  position: relative;
  width: 74px;
  height: 74px;
  overflow: hidden;
  background: #ddc8aa;
  border-radius: 11px;
}

.bowl {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: #eae0d0;
  border: 4px solid #faf4e9;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(70, 49, 30, 0.18);
  transform: translate(-50%, -50%);
}

.bowl i {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.bowl i:nth-child(1) { top: 4px; left: 7px; background: #76a16d; }
.bowl i:nth-child(2) { top: 6px; right: 4px; background: #c89a5b; }
.bowl i:nth-child(3) { bottom: 4px; left: 6px; background: #dfb463; }
.bowl i:nth-child(4) { right: 7px; bottom: 5px; background: #6e8d58; }
.bowl i:nth-child(5) { top: 19px; left: 18px; background: #f2e4c7; }

.breakfast-art {
  background: #d1ad7e;
}

.toast {
  position: absolute;
  left: 12px;
  top: 15px;
  width: 50px;
  height: 44px;
  background: #a86f3f;
  border: 5px solid #e3b373;
  border-radius: 13px 13px 9px 9px;
  transform: rotate(-7deg);
}

.egg {
  position: absolute;
  left: 27px;
  top: 24px;
  width: 28px;
  height: 24px;
  background: #fff8e8;
  border-radius: 55% 45% 48% 52%;
}

.egg::after {
  position: absolute;
  top: 7px;
  left: 9px;
  width: 10px;
  height: 10px;
  background: #e8ad3e;
  border-radius: 50%;
  content: "";
}

.meal-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.meal-info strong {
  overflow: hidden;
  margin: 2px 0;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meal-info span {
  color: #879087;
  font-size: 8px;
}

.meal-info .meal-tag {
  color: var(--sage-700);
  font-weight: 700;
}

.meal-card button {
  padding: 0;
  color: #758178;
  background: none;
  border: 0;
  font-size: 20px;
}

.coach-note,
.ingredient-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(220, 228, 217, 0.9);
  box-shadow: 0 18px 45px rgba(49, 75, 57, 0.14);
}

.coach-note {
  right: -18px;
  bottom: 87px;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 15px;
}

.sparkle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--sage-800);
  background: var(--sage-100);
  border-radius: 11px;
}

.coach-note div,
.ingredient-chip div {
  display: flex;
  flex-direction: column;
}

.coach-note strong,
.ingredient-chip strong {
  font-size: 11px;
}

.coach-note p,
.ingredient-chip small {
  margin: 0;
  color: #7e887f;
  font-size: 9px;
}

.ingredient-chip {
  left: -5px;
  top: 160px;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 15px;
}

.ingredient-chip > span {
  font-size: 24px;
}

.section {
  padding: 120px 0;
}

.problem {
  background: #faf7f0;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .kicker {
  margin-bottom: 16px;
}

h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e4e8e0;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  box-shadow: 0 18px 48px rgba(46, 69, 51, 0.08);
  transform: translateY(-5px);
}

.card-number {
  position: absolute;
  right: 25px;
  top: 21px;
  color: #c5cdc3;
  font-family: var(--serif);
  font-size: 13px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 45px;
  border-radius: 17px;
}

.icon-box svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.icon-sand { color: #927752; background: #f4ecdf; }
.icon-clay { color: #9e6952; background: #f3e2d9; }
.icon-sage { color: var(--sage-800); background: var(--sage-100); }

.info-card h3,
.feature-copy h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.solution {
  padding-bottom: 100px;
}

.solution-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 65px;
}

.solution-intro .section-heading h2 {
  margin-bottom: 0;
}

.solution-lead {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 16px;
}

.feature-stack {
  display: grid;
  gap: 28px;
}

.feature-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 70px;
  min-height: 500px;
  padding: 66px;
  overflow: hidden;
  background: #f8f7f1;
  border: 1px solid #e7ebe3;
  border-radius: 28px;
}

.feature-card:nth-child(2) {
  background: #f8f3eb;
}

.feature-card:nth-child(3) {
  background: #f1f3ea;
}

.feature-reverse .feature-copy {
  order: 2;
}

.feature-reverse .feature-demo {
  order: 1;
}

.feature-index {
  display: block;
  margin-bottom: 22px;
  color: var(--sage-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.06;
}

.feature-copy > p {
  margin-bottom: 27px;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #48554b;
  font-size: 13px;
  font-weight: 650;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: var(--sage-800);
  background: var(--sage-100);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
}

.feature-demo {
  width: 100%;
  min-height: 345px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 25px 55px rgba(44, 70, 51, 0.1);
}

.coach-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chat-card {
  max-width: 82%;
  padding: 16px 18px;
  border-radius: 17px;
  font-size: 12px;
  line-height: 1.55;
}

.chat-user {
  align-self: flex-end;
  margin-bottom: 12px;
  color: #fff;
  background: var(--sage-800);
  border-bottom-right-radius: 5px;
}

.chat-ai {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 15px;
  background: #f1f4ed;
  border-bottom-left-radius: 5px;
}

.chat-ai .ai-dot {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--sage-800);
  background: #dce6d8;
  border-radius: 9px;
}

.chat-ai strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.chat-ai p {
  margin: 0;
  color: #6b786e;
  font-size: 10px;
}

.quick-options {
  display: flex;
  gap: 7px;
  margin-left: 39px;
}

.quick-options span {
  padding: 7px 11px;
  color: var(--sage-700);
  background: #fff;
  border: 1px solid #dfe6dc;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
}

.cookbook-demo {
  padding: 26px;
}

.book-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e9ede6;
}

.book-nav div {
  display: flex;
  flex-direction: column;
}

.book-nav div span,
.book-count {
  color: #89938b;
  font-size: 9px;
}

.book-nav strong {
  font-family: var(--serif);
  font-size: 19px;
}

.book-count {
  padding: 5px 9px;
  background: #f1f4ed;
  border-radius: 99px;
}

.recipe-row {
  display: grid;
  grid-template-columns: 53px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  padding: 8px;
  background: #fafbf8;
  border: 1px solid #edf0ea;
  border-radius: 13px;
}

.recipe-row > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.recipe-row strong {
  font-family: var(--serif);
  font-size: 12px;
}

.recipe-row span {
  color: #8b948c;
  font-size: 8px;
}

.recipe-thumb {
  height: 49px;
  border-radius: 9px;
}

.recipe-thumb-one { background: radial-gradient(circle at 35% 35%, #d7b46f 0 13%, transparent 14%), radial-gradient(circle at 68% 64%, #6f9965 0 18%, transparent 19%), #d9c69d; }
.recipe-thumb-two { background: radial-gradient(circle at 55% 48%, #9f623f 0 22%, transparent 23%), radial-gradient(circle at 27% 65%, #87a568 0 17%, transparent 18%), #e1b873; }
.recipe-thumb-three { background: linear-gradient(135deg, transparent 40%, #d98c70 41% 65%, transparent 66%), radial-gradient(circle at 25% 36%, #73a36b 0 17%, transparent 18%), #d6c5a5; }

.insights-demo {
  padding: 27px;
}

.insights-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 21px;
  color: #849087;
  font-size: 9px;
  font-weight: 700;
}

.insight-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-score > div {
  display: flex;
  flex-direction: column;
}

.insight-score strong {
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 500;
  line-height: 1;
}

.insight-score span {
  color: #7b887e;
  font-size: 9px;
}

.insight-score .trend {
  padding: 6px 10px;
  color: var(--sage-800);
  background: var(--sage-100);
  border-radius: 99px;
  font-weight: 800;
}

.bar-chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 120px;
  margin: 25px 0 19px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e4e9e1;
}

.bar-chart span {
  width: 9%;
  min-height: 20px;
  background: #b8cbb5;
  border-radius: 6px 6px 2px 2px;
}

.bar-chart span:nth-last-child(-n + 2) {
  background: var(--sage-700);
}

.insight-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  color: #4f5f53;
  background: #f0f4ec;
  border-radius: 11px;
  font-size: 9px;
  font-weight: 650;
}

.insight-note span {
  color: var(--sage-700);
}

.founder {
  position: relative;
  overflow: clip;
  background: #f8f3eb;
}

.founder::before {
  position: absolute;
  top: 8%;
  right: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(77, 118, 88, 0.09);
  border-radius: 50%;
  content: "";
}

.founder-heading {
  max-width: 760px;
  margin-bottom: 68px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(77, 118, 88, 0.16);
}

.founder-heading .kicker {
  margin-bottom: 14px;
}

.founder-heading h2 {
  margin: 0;
  font-size: clamp(55px, 6vw, 82px);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(65px, 8vw, 120px);
}

.founder-photo {
  position: sticky;
  top: 120px;
  align-self: start;
}

.founder-image-card {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee6d9;
  border: 1px solid rgba(77, 118, 88, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(49, 57, 50, 0.1);
}

.founder-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.18);
  transform-origin: 50% 22%;
}

.founder-identity {
  display: grid;
  gap: 2px;
  padding: 22px 5px 0;
}

.founder-identity strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.founder-identity span {
  color: #7d877e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-identity em {
  margin-top: 9px;
  color: var(--sage-700);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.founder-copy {
  position: relative;
  max-width: 660px;
  padding-bottom: 12px;
}

.founder-copy > p {
  margin-bottom: 22px;
  color: #4b584e;
  font-size: 17px;
  line-height: 1.78;
}

.founder-copy .founder-opening {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.founder-questions {
  display: grid;
  gap: 0;
  margin: 36px 0;
  padding: 8px 0;
  border-top: 1px solid rgba(77, 118, 88, 0.2);
  border-bottom: 1px solid rgba(77, 118, 88, 0.2);
}

.founder-questions p {
  position: relative;
  margin: 0;
  padding: 14px 12px 14px 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
}

.founder-questions p::before {
  position: absolute;
  left: 7px;
  color: var(--sage-500);
  content: "—";
}

.founder-refrain,
.founder-coach-list {
  margin: 31px 0;
  padding-left: 24px;
  border-left: 3px solid var(--sage-300);
}

.founder-refrain p,
.founder-coach-list p {
  margin: 5px 0;
  color: var(--ink);
  font-weight: 700;
}

.founder-coach-list p {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.founder-copy blockquote {
  position: relative;
  margin: 48px 0 36px;
  padding: 48px 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--sage-900);
  border-radius: 24px;
  font-family: var(--serif);
  font-size: clamp(39px, 4.4vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-align: center;
}

.founder-copy blockquote::before {
  position: absolute;
  top: -48px;
  left: -18px;
  color: rgba(255, 255, 255, 0.07);
  content: "“";
  font-size: 190px;
  line-height: 1;
}

.founder-copy .founder-closing {
  margin: 0;
  padding-top: 28px;
  color: var(--sage-800);
  border-top: 1px solid rgba(77, 118, 88, 0.2);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.35;
}

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

.cta-panel {
  position: relative;
  padding: 95px 48px;
  overflow: hidden;
  color: #fff;
  background: var(--sage-900);
  border-radius: 30px;
  text-align: center;
}

.cta-panel .kicker {
  color: #c2d4bf;
}

.cta-panel h2 {
  margin: 0 auto 17px;
  max-width: 700px;
}

.cta-panel p {
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.7);
}

.button-light {
  color: var(--sage-900);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.button-light:hover {
  color: var(--sage-900);
  background: #f2f5ef;
}

.cta-leaf {
  position: absolute;
  width: 230px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100% 0 100% 0;
}

.leaf-one {
  left: -105px;
  bottom: -295px;
  transform: rotate(24deg);
}

.leaf-two {
  right: -105px;
  top: -290px;
  transform: rotate(205deg);
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid #edf0eb;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #7c887e;
  font-size: 11px;
}

.footer-inner .brand {
  color: var(--ink);
}

.footer-inner .brand-logo {
  width: 184px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > span {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (max-width: 1020px) {
  .brand-logo {
    width: 190px;
  }

  .desktop-nav {
    gap: 20px;
    font-size: 13px;
  }

  .hero {
    padding-top: 130px;
  }

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

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

  .hero-visual {
    width: min(600px, 100%);
    margin: 0 auto;
  }

  .feature-card {
    gap: 38px;
    padding: 46px;
  }

  .founder-grid {
    gap: 65px;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

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

  .menu-button {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 11px;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    inset: 78px 0 auto;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
  }

  .mobile-menu.open {
    max-height: 320px;
    padding-block: 15px 20px;
    border-color: var(--border);
    opacity: 1;
  }

  .mobile-menu a {
    padding: 11px 5px;
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-menu .mobile-menu-brand {
    width: fit-content;
    margin-bottom: 2px;
    padding-block: 5px 9px;
  }

  .mobile-menu-brand img {
    display: block;
    width: 190px;
    height: auto;
  }

  .solution-intro,
  .feature-card,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .solution-intro {
    gap: 18px;
  }

  .solution-lead {
    max-width: 620px;
  }

  .feature-card {
    gap: 42px;
  }

  .feature-reverse .feature-copy,
  .feature-reverse .feature-demo {
    order: initial;
  }

  .founder-photo {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .founder-copy {
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .footer-inner p {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
    padding: 119px 0 70px;
  }

  h1 {
    font-size: clamp(46px, 13.5vw, 64px);
  }

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

  .waitlist-form {
    padding: 13px;
  }

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

  .phone-card {
    width: min(350px, 88%);
    min-height: 540px;
    transform: translateX(-50%) rotate(1deg);
  }

  .coach-note {
    right: -5px;
    bottom: 18px;
  }

  .ingredient-chip {
    left: -3px;
    top: 125px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading.centered {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading p {
    margin-left: 0;
  }

  h2 {
    font-size: 42px;
  }

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

  .feature-card {
    min-height: 0;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .feature-copy h3 {
    font-size: 36px;
  }

  .feature-demo {
    min-height: 310px;
    padding: 21px;
  }

  .chat-card {
    max-width: 92%;
  }

  .quick-options {
    flex-wrap: wrap;
  }

  .founder-grid {
    gap: 55px;
  }

  .founder-heading {
    margin-bottom: 44px;
  }

  .founder-copy blockquote {
    font-size: 39px;
  }

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

  .cta-panel {
    padding: 72px 24px;
    border-radius: 22px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 188px;
  }

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

  .phone-card {
    left: 53%;
    width: 94%;
    padding-inline: 15px;
  }

  .ingredient-chip {
    display: none;
  }

  .coach-note {
    right: -4px;
    bottom: -2px;
  }

  .meal-card {
    grid-template-columns: 65px 1fr 18px;
  }

  .meal-art {
    width: 65px;
    height: 65px;
  }

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

  .footer-inner > span {
    justify-self: start;
  }
}

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

  .waitlist-form.is-highlighted {
    background: rgba(247, 250, 244, 0.98);
    border-color: rgba(77, 118, 88, 0.52);
    box-shadow:
      0 20px 55px rgba(55, 75, 60, 0.12),
      0 0 0 5px rgba(127, 155, 131, 0.12);
  }

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

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