/* MyFoodCraving public acquisition surfaces. Extends recipe-base.css only. */

html { scroll-padding-top: 76px; }

.landing-body {
  min-height: 100vh;
  background: var(--cream);
}

.landing-body main,
.landing-body footer { position: relative; z-index: 2; }
.landing-body .site-nav { z-index: 50; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: none; }

.site-nav { position: fixed; }

.site-nav .nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--tap-min);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.site-nav .brand img { width: 34px; height: 34px; }
.site-nav .brand em { font-family: var(--serif); font-weight: 400; }

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

.site-nav .nav-links > a:not(.nav-cta) {
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 160ms ease;
}

.site-nav .nav-links > a:not(.nav-cta):hover { color: var(--orange-text-hover); }

.nav-cta {
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  color: var(--paper);
  background: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover { background: var(--orange-text-hover); transform: translateY(-1px); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.section-eyebrow.dark {
  color: var(--cream-deep);
  background: color-mix(in srgb, var(--paper) 8%, transparent);
  border-color: color-mix(in srgb, var(--paper) 22%, transparent);
}

.landing-hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 92px;
  display: flex;
  align-items: center;
  overflow: clip;
}

.landing-hero::after {
  content: "";
  position: absolute;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  right: -16vw;
  top: 8vh;
  border: 1px dashed var(--rule-strong);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.hero-copy { position: relative; }

.hero-kicker {
  margin-left: 14px;
  font-family: var(--hand);
  font-size: 23px;
  color: var(--orange-text-hover);
  transform: rotate(-3deg);
}

.hero-title {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(49px, 6.4vw, 88px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.047em;
  text-wrap: balance;
}

.hero-title em {
  display: inline-block;
  color: var(--orange-text);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
}

.hero-lede {
  max-width: 600px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--paper);
  box-shadow: var(--pop-md);
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.landing-button:hover { transform: translate(-1px, -1px); box-shadow: var(--pop-lg); }
.landing-button.primary { color: var(--paper); background: var(--ink); }
.landing-button.primary:hover { background: var(--orange-text-hover); }
.landing-button.orange { color: var(--paper); background: var(--orange-text-hover); box-shadow: 5px 5px 0 var(--orange-deep); }
.landing-button.orange:hover { background: var(--orange-text-hover); box-shadow: 6px 6px 0 var(--orange-deep); }
.landing-button.ghost { box-shadow: none; background: transparent; border-color: var(--rule-strong); }

.hero-proof {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-proof b { color: var(--ink-soft); font-weight: 650; }

.privacy-note {
  max-width: 610px;
  margin-top: 24px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 15px;
  border-left: 3px solid var(--matcha);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--matcha-soft);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-note svg { flex: 0 0 auto; margin-top: 2px; color: var(--matcha-deep); }

.hero-product { position: relative; padding: 32px 0 22px; }

.context-label {
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.marker-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.marker-tab {
  min-height: var(--tap-min);
  padding: 9px 10px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.15;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.marker-tab:hover { transform: translateY(-1px); }
.marker-tab[aria-selected="true"] { color: var(--paper); background: var(--ink); border-color: var(--ink); }

.recipe-ticket {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: 11px 11px 0 var(--ink);
  transform: rotate(1deg);
  transform-origin: center;
}

.recipe-ticket::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 20px;
  left: -8px;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
}

.ticket-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-deep);
}

.ticket-media::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--ink) 76%, transparent));
  pointer-events: none;
}

.ticket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 150ms ease, transform 500ms cubic-bezier(.2,.8,.2,1);
}

.ticket-media img.is-changing { opacity: .2; transform: scale(1.025); }

.ticket-photo-meta {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--paper);
}

.ticket-context {
  display: block;
  margin-bottom: 4px;
  color: var(--cream-deep);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ticket-name {
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-style: italic;
  line-height: .98;
}

.ticket-match {
  min-width: 70px;
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, var(--paper) 40%, transparent);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--ink) 58%, transparent);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.ticket-body { padding: 20px 22px 22px; }

.ticket-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--rule-strong);
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticket-why {
  margin-top: 16px;
  padding: 14px 15px;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--cream-soft);
}

.ticket-why strong {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-text-hover);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ticket-why p { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

.ticket-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.ticket-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ticket-tag {
  padding: 5px 8px;
  border-radius: var(--r-pill);
  background: var(--matcha-soft);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
}

.ticket-open {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  transition: transform 160ms ease, background 160ms ease;
}

.ticket-open:hover { transform: rotate(-8deg); background: var(--orange-text-hover); }

.ticket-scribble {
  position: absolute;
  z-index: 4;
  top: 4px;
  right: -4px;
  padding: 6px 11px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--orange-text-hover);
  box-shadow: var(--pop-sm);
  font-family: var(--hand);
  font-size: 19px;
  transform: rotate(5deg);
}

.sr-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loop-section {
  position: relative;
  padding: clamp(78px, 10vw, 128px) 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.loop-section::after {
  content: "from signal → to supper";
  position: absolute;
  right: -24px;
  bottom: 20px;
  color: color-mix(in srgb, var(--paper) 4%, transparent);
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 168px);
  font-style: italic;
  line-height: .8;
  white-space: nowrap;
}

.loop-intro {
  max-width: 960px;
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
}

.loop-title,
.section-title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.loop-title { color: var(--paper); }
.loop-title em,
.section-title em { color: var(--orange-text); font-family: var(--serif); font-weight: 400; }
.loop-title em { color: var(--orange); }

.loop-lede { color: var(--cream-deep); font-size: 17px; line-height: 1.55; }

.loop-grid {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
}

.loop-step {
  position: relative;
  min-height: 252px;
  padding: 28px 26px 26px 0;
  border-right: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
}

.loop-step + .loop-step { padding-left: 26px; }
.loop-step:last-child { border-right: none; }

.loop-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
}

.loop-step h3 { color: var(--paper); font-family: var(--sans); font-size: 19px; font-style: normal; font-weight: 600; }
.loop-step p { margin-top: 10px; color: var(--cream-deep); font-size: 14px; line-height: 1.55; }

.experience-section { padding: clamp(84px, 10vw, 132px) 0; }
.experience-section.soft { background: var(--cream-soft); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr);
  align-items: end;
  gap: clamp(32px, 8vw, 120px);
}

.section-heading .section-title { margin-top: 22px; }
.section-heading > p { color: var(--ink-soft); font-size: 18px; line-height: 1.55; }

.ways-stage {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.fixed-dish {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--pop-orange);
}

.fixed-dish-media { position: relative; aspect-ratio: 1 / .78; overflow: hidden; }
.fixed-dish-media img { width: 100%; height: 100%; object-fit: cover; }
.fixed-dish-media::after { content: ""; position: absolute; inset: 46% 0 0; background: linear-gradient(transparent, color-mix(in srgb, var(--ink) 78%, transparent)); }
.fixed-dish-name { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 18px; color: var(--paper); }
.fixed-dish-name span { display: block; margin-bottom: 5px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.fixed-dish-name strong { font-family: var(--serif); font-size: 39px; font-style: italic; font-weight: 400; }
.fixed-dish-body { padding: 20px 22px 23px; }
.fixed-dish-body p { color: var(--ink-soft); font-size: 14px; }
.fixed-reason { margin-top: 14px; padding: 12px 13px; border-radius: var(--r-md); background: var(--matcha-soft); color: var(--ink-soft); font-size: 13px; }

.way-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.way-tab {
  min-height: 58px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  background: var(--paper);
  font-weight: 650;
  text-align: left;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.way-tab:hover { transform: translateY(-1px); }
.way-tab[aria-selected="true"] { color: var(--paper); background: var(--ink); box-shadow: var(--pop-sm); }
.way-tab svg { color: var(--orange-text); }
.way-tab[aria-selected="true"] svg { color: var(--orange); }

.way-panels { margin-top: 15px; }
.way-panel {
  min-height: 350px;
  padding: clamp(24px, 4vw, 40px);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--pop-matcha);
}

.way-panel[hidden],
.day-panel[hidden] { display: none; }

.way-panel .panel-label { color: var(--orange-text-hover); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.way-panel h3 { max-width: 590px; margin-top: 15px; font-size: clamp(29px, 3.5vw, 46px); }
.way-panel > p { max-width: 600px; margin-top: 14px; color: var(--ink-soft); font-size: 16px; }
.panel-details { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.panel-detail { min-height: 104px; padding: 15px; border: 1px solid var(--rule-strong); border-radius: var(--r-md); background: var(--cream-soft); }
.panel-detail strong { display: block; color: var(--ink); font-size: 13px; }
.panel-detail span { display: block; margin-top: 5px; color: var(--ink-muted); font-size: 12px; line-height: 1.4; }

.day-stage {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: start;
}

.day-tabs {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-tab {
  min-height: 78px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  text-align: left;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.day-tab:hover { transform: translateX(2px); }
.day-tab[aria-selected="true"] { background: var(--paper); border-color: var(--ink); box-shadow: var(--pop-sm); }
.day-time { color: var(--orange-text-hover); font-family: var(--serif); font-size: 23px; font-style: italic; }
.day-tab strong { display: block; font-size: 14px; }
.day-tab small { display: block; margin-top: 3px; color: var(--ink-muted); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.day-device {
  position: sticky;
  top: 90px;
  padding: 14px;
  border: 1.5px solid var(--ink);
  border-radius: 42px;
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--orange);
}

.device-screen {
  min-height: 566px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper);
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--rule-strong);
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.day-panel { padding-top: 42px; }
.day-panel h3 { max-width: 560px; font-size: clamp(31px, 4.2vw, 53px); }
.day-panel > p { max-width: 590px; margin-top: 14px; color: var(--ink-soft); font-size: 16px; }

.context-stack,
.cook-card,
.log-card {
  margin-top: 28px;
  padding: 20px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  background: var(--cream-soft);
  box-shadow: var(--pop-md);
}

.signal-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px dashed var(--rule); }
.signal-row:last-child { border-bottom: none; }
.signal-row strong { font-size: 14px; }
.signal-row small { display: block; margin-top: 3px; color: var(--ink-muted); font-size: 12px; }
.signal-pill { padding: 6px 9px; border-radius: var(--r-pill); background: var(--matcha-soft); color: var(--ink-soft); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }

.craving-form {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 9px 9px 17px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--pop-md);
}

.craving-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.craving-form input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-family: var(--serif); font-size: clamp(19px, 2.4vw, 28px); font-style: italic; }
.craving-form input:focus-visible { outline: 2px solid var(--orange-text); outline-offset: 6px; border-radius: var(--r-sm); }
.craving-form button { flex: 0 0 auto; width: 48px; height: 48px; border: 0; border-radius: 50%; color: var(--paper); background: var(--orange-text-hover); }
.search-suggestions { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 7px; }
.search-suggestions a { min-height: var(--tap-min); display: inline-flex; align-items: center; padding: 7px 11px; border: 1px solid var(--rule-strong); border-radius: var(--r-pill); color: var(--ink-soft); background: var(--cream-soft); font-size: 12px; }

.cook-progress { display: flex; gap: 7px; margin-bottom: 23px; }
.cook-progress span { flex: 1; height: 6px; border-radius: var(--r-pill); background: var(--cream-deep); }
.cook-progress span.done { background: var(--matcha); }
.cook-progress span.now { background: var(--orange); }
.cook-step-label { color: var(--orange-text-hover); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.cook-card h4 { margin-top: 9px; font-family: var(--serif); font-size: 31px; font-style: italic; font-weight: 400; }
.cook-card p { margin-top: 8px; color: var(--ink-soft); }
.timer-row { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border-radius: var(--r-md); color: var(--paper); background: var(--ink); }
.timer-row strong { color: var(--orange); font-family: var(--mono); font-size: 28px; }
.timer-controls { display: flex; gap: 6px; }
.timer-controls span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--paper) 24%, transparent); border-radius: 50%; font-size: 12px; }

.log-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.log-metric { padding: 15px 10px; border-radius: var(--r-md); background: var(--paper); text-align: center; }
.log-metric strong { display: block; font-family: var(--serif); font-size: 27px; font-style: italic; font-weight: 400; }
.log-metric small { color: var(--ink-muted); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.week-row { margin-top: 18px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.week-row span { height: 11px; border-radius: var(--r-pill); background: var(--matcha); }
.week-row span:nth-child(6) { background: var(--orange); }

.trust-section { padding: clamp(82px, 10vw, 128px) 0; }
.trust-layout { margin-top: 50px; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr); gap: clamp(30px, 6vw, 76px); }

.chef-proof {
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--pop-orange);
}

.chef-video {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  background: var(--ink);
}

.chef-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink), color-mix(in srgb, var(--berry) 32%, var(--ink)));
}

.video-frame {
  position: relative;
  z-index: 2;
  width: min(82%, 430px);
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--paper) 26%, transparent);
  border-radius: var(--r-lg);
  color: var(--paper);
  background: color-mix(in srgb, var(--paper) 8%, transparent);
}

.chef-avatar { width: 66px; height: 66px; display: grid; place-items: center; border: 1.5px solid var(--paper); border-radius: 50%; color: var(--ink); background: var(--butter); font-family: var(--serif); font-size: 28px; font-style: italic; }
.video-frame h3 { margin-top: 22px; color: var(--paper); font-family: var(--sans); font-size: 24px; font-style: normal; font-weight: 600; }
.video-frame p { margin-top: 7px; color: var(--cream-deep); font-size: 14px; }
.play-line { margin-top: 22px; display: flex; align-items: center; gap: 10px; color: var(--orange); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.play-dot { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--orange); }
.chef-body { padding: 22px; }
.chef-body-row { display: flex; justify-content: space-between; gap: 16px; }
.chef-body h4 { font-size: 18px; }
.chef-body p { margin-top: 8px; color: var(--ink-soft); font-size: 14px; }
.chef-badges { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.chef-badges span { padding: 6px 9px; border-radius: var(--r-pill); color: var(--ink-soft); background: var(--matcha-soft); font-size: 10px; font-weight: 650; }

.trust-list { display: flex; flex-direction: column; gap: 12px; }
.trust-card { padding: 22px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; border: 1.5px solid var(--ink); border-radius: var(--r-lg); background: var(--paper); box-shadow: var(--pop-sm); }
.trust-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--orange-text-hover); }
.trust-card:nth-child(2) .trust-icon { background: var(--matcha-deep); }
.trust-card:nth-child(3) .trust-icon { background: var(--berry); }
.trust-card h3 { font-family: var(--sans); font-size: 18px; font-style: normal; font-weight: 650; }
.trust-card p { margin-top: 6px; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.method-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; min-height: var(--tap-min); color: var(--orange-text-hover); font-size: 14px; font-weight: 650; border-bottom: 1px solid currentColor; }

.catalog-proof {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--pop-md);
}

.proof-stat { min-height: 150px; display: grid; place-items: center; align-content: center; padding: 22px; border-right: 1px dashed var(--rule-strong); text-align: center; }
.proof-stat:last-child { border-right: none; }
.proof-stat strong { color: var(--orange-text); font-family: var(--serif); font-size: clamp(42px, 5vw, 64px); font-style: italic; font-weight: 400; line-height: .9; }
.proof-stat span { margin-top: 10px; color: var(--ink-muted); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.wellness-note { margin: 18px auto 0; max-width: 780px; color: var(--ink-muted); font-size: 12px; line-height: 1.5; text-align: center; }

.loop-section,
.experience-section,
.trust-section,
.final-cta,
.business-band,
.landing-footer {
  content-visibility: auto;
}

.loop-section { contain-intrinsic-size: auto 800px; }
.experience-section { contain-intrinsic-size: auto 1200px; }
.trust-section { contain-intrinsic-size: auto 1100px; }
.final-cta { contain-intrinsic-size: auto 520px; }
.business-band { contain-intrinsic-size: auto 160px; }
.landing-footer { contain-intrinsic-size: auto 320px; }

.final-cta { padding: 0 0 clamp(76px, 9vw, 116px); }
.cta-panel { position: relative; overflow: hidden; padding: clamp(44px, 7vw, 82px); border: 1.5px solid var(--ink); border-radius: var(--r-xl); background: var(--orange); box-shadow: 10px 10px 0 var(--ink); }
.cta-panel::after { content: "dinner, handled"; position: absolute; right: -10px; bottom: -25px; color: color-mix(in srgb, var(--paper) 18%, transparent); font-family: var(--hand); font-size: clamp(55px, 10vw, 130px); white-space: nowrap; transform: rotate(-4deg); }
.cta-content { position: relative; z-index: 2; max-width: 820px; }
.cta-title { font-size: clamp(43px, 6vw, 76px); line-height: .95; letter-spacing: -.04em; }
.cta-title em { font-family: var(--serif); font-weight: 400; }
.cta-content > p { max-width: 590px; margin-top: 18px; color: var(--ink-soft); font-size: 17px; }

.business-band { padding: 24px 0; border-top: 1px solid var(--rule-strong); background: var(--cream-deep); }
.business-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.business-band p { color: var(--ink-soft); font-size: 14px; }
.business-band a { min-height: var(--tap-min); display: inline-flex; align-items: center; color: var(--orange-text-hover); font-size: 14px; font-weight: 650; }

.landing-footer { padding: 46px 0 28px; border-top: 1.5px solid var(--ink); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: start; }
.footer-brand { min-height: var(--tap-min); display: flex; gap: 13px; align-items: center; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand strong { display: block; font-size: 18px; }
.footer-brand span { display: block; margin-top: 3px; color: var(--ink-muted); font-family: var(--serif); font-style: italic; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { min-height: var(--tap-min); display: inline-flex; align-items: center; color: var(--ink-soft); font-size: 13px; }
.footer-links a:hover { color: var(--orange-text-hover); }
.footer-bottom { margin-top: 30px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px dashed var(--rule-strong); color: var(--ink-muted); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

/* App acquisition page */
.download-main { padding-top: 64px; }
.download-hero { min-height: calc(100svh - 64px); padding: 72px 0 86px; display: grid; align-items: center; }
.download-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: clamp(44px, 8vw, 110px); align-items: center; }
.download-title { margin-top: 22px; font-size: clamp(48px, 6.5vw, 86px); line-height: .94; letter-spacing: -.045em; }
.download-title em { color: var(--orange-text); font-family: var(--serif); font-weight: 400; }
.download-lede { max-width: 590px; margin-top: 22px; color: var(--ink-soft); font-size: 19px; }
.store-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge { min-width: 178px; min-height: 59px; padding: 9px 14px; display: flex; align-items: center; gap: 11px; border: 1.5px solid var(--ink); border-radius: var(--r-md); color: var(--paper); background: var(--ink); box-shadow: var(--pop-md); }
.store-badge[aria-disabled="true"] { color: var(--ink-muted); background: var(--cream-deep); box-shadow: none; cursor: default; }
.store-badge.is-preferred { order: -1; border-color: var(--orange-text); }
.store-badge.is-live:hover { transform: translate(-1px, -1px); box-shadow: var(--pop-lg); }
.store-logo { font-size: 23px; line-height: 1; }
.store-copy { display: block; }
.store-copy small { display: block; font-family: var(--mono); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.store-copy strong { display: block; margin-top: 2px; font-size: 16px; }
.launch-state { margin-top: 14px; color: var(--ink-muted); font-family: var(--mono); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.download-preview { position: relative; min-height: 610px; display: grid; place-items: center; }
.download-phone { position: relative; width: min(78%, 360px); padding: 12px; border: 1.5px solid var(--ink); border-radius: 50px; background: var(--ink); box-shadow: 13px 13px 0 var(--orange); transform: rotate(3deg); }
.download-screen { min-height: 590px; overflow: hidden; border-radius: 39px; background: var(--paper); }
.download-screen-image { height: 260px; position: relative; overflow: hidden; }
.download-screen-image img { width: 100%; height: 100%; object-fit: cover; }
.download-screen-image::after { content: ""; position: absolute; inset: 52% 0 0; background: linear-gradient(transparent, color-mix(in srgb, var(--ink) 76%, transparent)); }
.download-screen-body { padding: 24px 20px; }
.download-screen-body .mini-label { color: var(--orange-text-hover); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.download-screen-body h2 { margin-top: 8px; font-family: var(--serif); font-size: 32px; font-style: italic; font-weight: 400; }
.download-screen-body p { margin-top: 10px; color: var(--ink-soft); font-size: 13px; }
.phone-reason { margin-top: 16px; padding: 13px; border-radius: var(--r-md); background: var(--matcha-soft); color: var(--ink-soft); font-size: 12px; }
.phone-action { margin-top: 18px; min-height: 48px; display: grid; place-items: center; border-radius: var(--r-pill); color: var(--paper); background: var(--orange-text-hover); font-size: 14px; font-weight: 650; }
.qr-card { position: absolute; z-index: 4; left: 0; bottom: 42px; width: 194px; padding: 14px; border: 1.5px solid var(--ink); border-radius: var(--r-lg); background: var(--paper); box-shadow: var(--pop-md); transform: rotate(-5deg); }
.qr-card img { width: 96px; height: 96px; margin: 0 auto; image-rendering: pixelated; }
.qr-card strong { display: block; margin-top: 10px; text-align: center; font-size: 13px; }
.qr-card span { display: block; margin-top: 4px; color: var(--ink-muted); font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-align: center; text-transform: uppercase; }

.download-proof { padding: 78px 0 94px; background: var(--ink); color: var(--paper); }
.download-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.download-proof-card { min-height: 220px; padding: 25px; border: 1px solid color-mix(in srgb, var(--paper) 22%, transparent); border-radius: var(--r-lg); background: color-mix(in srgb, var(--paper) 6%, transparent); }
.download-proof-card span { color: var(--orange); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.download-proof-card h3 { margin-top: 24px; color: var(--paper); font-size: 26px; }
.download-proof-card p { margin-top: 10px; color: var(--cream-deep); font-size: 14px; }

.download-fallback { padding: 84px 0 104px; }
.fallback-panel { padding: clamp(32px, 5vw, 56px); border: 1.5px solid var(--ink); border-radius: var(--r-xl); background: var(--paper); box-shadow: var(--pop-orange); display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.fallback-panel h2 { font-size: clamp(32px, 4.2vw, 52px); }
.fallback-panel p { max-width: 680px; margin-top: 12px; color: var(--ink-soft); }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 650ms cubic-bezier(.2,.8,.2,1), transform 650ms cubic-bezier(.2,.8,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero-grid,
  .download-grid { grid-template-columns: 1fr; }
  .landing-hero { padding-top: 118px; }
  .hero-copy { max-width: 780px; }
  .hero-product { width: min(100%, 680px); margin: 0 auto; }
  .loop-grid { grid-template-columns: repeat(2, 1fr); }
  .loop-step:nth-child(2) { border-right: none; }
  .loop-step:nth-child(-n+2) { border-bottom: 1px solid color-mix(in srgb, var(--paper) 18%, transparent); }
  .ways-stage,
  .day-stage,
  .trust-layout { grid-template-columns: 1fr; }
  .fixed-dish,
  .day-tabs,
  .day-device { position: relative; top: auto; }
  .fixed-dish { width: min(100%, 680px); }
  .day-tabs { display: grid; grid-template-columns: repeat(2, 1fr); }
  .day-device { width: min(100%, 760px); }
  .download-copy { max-width: 760px; }
  .download-preview { min-height: 680px; }
}

@media (max-width: 800px) {
  .site-nav .nav-inner { padding: 0 20px; }
  .site-nav .nav-links > a:not(.nav-cta) { display: none; }
  .hero-grid { gap: 46px; }
  .section-heading,
  .loop-intro { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 620px; }
  .panel-details,
  .download-proof-grid { grid-template-columns: 1fr; }
  .way-panel { min-height: auto; }
  .catalog-proof { grid-template-columns: 1fr; }
  .proof-stat { min-height: 122px; border-right: none; border-bottom: 1px dashed var(--rule-strong); }
  .proof-stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .fallback-panel { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .site-nav .nav-inner { padding: 0 16px; }
  .site-nav .brand { font-size: 15px; }
  .site-nav .brand img { width: 31px; height: 31px; }
  .nav-cta { padding: 8px 13px; font-size: 12px; }
  .landing-hero { min-height: auto; padding: 106px 0 78px; }
  .hero-title { font-size: clamp(43px, 13vw, 61px); }
  .hero-actions .landing-button,
  .cta-actions .landing-button { width: 100%; }
  .hero-proof { display: grid; gap: 7px; }
  .marker-tabs { grid-template-columns: 1fr; }
  .marker-tab { text-align: left; padding-left: 15px; }
  .recipe-ticket { border-radius: var(--r-lg); box-shadow: 7px 7px 0 var(--ink); transform: none; }
  .ticket-media { aspect-ratio: 1 / .82; }
  .ticket-photo-meta { left: 16px; right: 16px; bottom: 14px; }
  .ticket-match { display: none; }
  .ticket-body { padding: 17px 16px 18px; }
  .ticket-meta-row { flex-direction: column; gap: 5px; }
  .ticket-footer { align-items: flex-end; }
  .ticket-scribble { top: 10px; right: 8px; font-size: 16px; }
  .loop-grid { grid-template-columns: 1fr; border-top: 0; }
  .loop-step,
  .loop-step + .loop-step { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid color-mix(in srgb, var(--paper) 18%, transparent); }
  .loop-step:last-child { border-bottom: 0; }
  .loop-number { margin-bottom: 16px; }
  .experience-section { padding: 78px 0; }
  .section-title,
  .loop-title { font-size: clamp(38px, 11vw, 54px); }
  .ways-stage,
  .day-stage { margin-top: 36px; }
  .fixed-dish-name strong { font-size: 31px; }
  .way-tabs { grid-template-columns: 1fr; }
  .way-tab { min-height: 52px; }
  .way-panel { padding: 23px 18px; border-radius: var(--r-lg); box-shadow: var(--pop-md); }
  .panel-details { grid-template-columns: 1fr; }
  .panel-detail { min-height: auto; }
  .day-tabs { grid-template-columns: 1fr; }
  .day-tab { min-height: 65px; }
  .day-device { padding: 9px; border-radius: 31px; box-shadow: 7px 7px 0 var(--orange); }
  .device-screen { min-height: 540px; padding: 24px 17px; border-radius: 23px; }
  .day-panel { padding-top: 30px; }
  .context-stack,
  .cook-card,
  .log-card { padding: 15px; }
  .craving-form { padding-left: 13px; }
  .log-grid { grid-template-columns: 1fr; }
  .log-metric { display: flex; justify-content: space-between; align-items: center; }
  .trust-layout { margin-top: 36px; }
  .chef-video { min-height: 280px; }
  .video-frame { width: 88%; padding: 22px; }
  .trust-card { padding: 18px; grid-template-columns: 40px 1fr; gap: 12px; }
  .trust-icon { width: 40px; height: 40px; }
  .cta-panel { padding: 40px 22px; border-radius: var(--r-lg); box-shadow: 7px 7px 0 var(--ink); }
  .business-band-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 15px; }
  .download-hero { padding-top: 50px; }
  .download-title { font-size: clamp(44px, 13vw, 60px); }
  .store-badge { width: 100%; }
  .download-preview { min-height: 630px; }
  .download-phone { width: 88%; }
  .qr-card { left: 4px; bottom: 8px; width: 166px; }
  .qr-card img { width: 82px; height: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .recipe-ticket,
  .download-phone,
  .qr-card,
  .ticket-scribble { transform: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
