:root {
  color-scheme: light;
  --porcelain: #f6f1e7;
  --porcelain-deep: #ece2d0;
  --paper: #fffaf0;
  --ink: #223026;
  --ink-soft: #596553;
  --olive: #75893e;
  --olive-deep: #52652b;
  --leaf: #a5b56b;
  --orange: #df8c2e;
  --orange-deep: #b7681d;
  --rose: #b86f5e;
  --line: rgba(54, 68, 42, 0.18);
  --shadow: 0 28px 80px rgba(55, 44, 28, 0.14);
  --direct-shadow: 0 10px 28px rgba(65, 52, 32, 0.12);
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(223, 140, 46, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--paper), var(--porcelain) 42%, #f3eadb 100%);
  color: var(--ink);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 48, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 48, 38, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--orange), white 18%);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  background: rgba(246, 241, 231, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(54, 68, 42, 0.09);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(79, 58, 30, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(82, 101, 43, 0.3);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.66);
  color: var(--olive-deep);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(65, 52, 32, 0.08);
}

.hero {
  min-height: min(860px, calc(100vh - 18px));
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(80px, 10vw, 132px) clamp(22px, 5vw, 76px) clamp(76px, 8vw, 120px);
  overflow: hidden;
}

.hero-copy {
  width: min(760px, 100%);
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 76px);
  right: clamp(22px, 5vw, 76px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 101, 43, 0.24), transparent);
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  width: clamp(360px, 39vw, 680px);
  right: clamp(-50px, 2vw, 110px);
  top: clamp(92px, 16vh, 190px);
  opacity: 0.9;
  filter: drop-shadow(0 44px 72px rgba(68, 54, 32, 0.18));
  transform: rotate(-3deg);
}

.steam-line {
  position: absolute;
  width: 220px;
  height: 340px;
  border: 1px solid rgba(117, 137, 62, 0.18);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.steam-a {
  right: 35vw;
  top: 130px;
  transform: rotate(-18deg);
}

.steam-b {
  right: 20vw;
  top: 260px;
  transform: rotate(18deg) scale(0.76);
}

.dinner-ticket {
  position: absolute;
  width: 260px;
  padding: 18px;
  border: 1px solid rgba(34, 48, 38, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.83);
  box-shadow: var(--direct-shadow);
  transform: rotate(2deg);
}

.dinner-ticket span,
.section-kicker,
.eyebrow,
.plan-label {
  display: block;
  color: var(--orange-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dinner-ticket strong {
  display: block;
  margin-top: 6px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.15;
}

.dinner-ticket small {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
}

.ticket-one {
  right: 9vw;
  bottom: 16vh;
}

.ticket-two {
  right: 31vw;
  bottom: 24vh;
  transform: rotate(-4deg);
}

.eyebrow {
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 780px;
  font-size: clamp(4.2rem, 9.2vw, 9.9rem);
}

h2 {
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.hero-lede {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions,
.form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 36px;
}

.button,
.waitlist-form button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background-color 220ms var(--ease),
    border-color 220ms var(--ease);
}

.button:hover,
.waitlist-form button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.primary,
.waitlist-form button {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(34, 48, 38, 0.16);
}

.secondary {
  background: rgba(255, 250, 240, 0.72);
  border-color: rgba(82, 101, 43, 0.24);
  color: var(--olive-deep);
}

.hero-proof {
  margin: 56px 0 0;
  display: flex;
  gap: clamp(22px, 5vw, 72px);
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-width: 96px;
}

.hero-proof strong {
  display: block;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1;
  color: var(--olive-deep);
  font-weight: 500;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

section {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.positioning {
  padding: clamp(84px, 10vw, 148px) 0;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.positioning p,
.showcase-copy p,
.plus-section p,
.safety p,
.waitlist p {
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.difference-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(54, 68, 42, 0.14);
  background: rgba(34, 48, 38, 0.96);
  color: var(--paper);
}

.difference-band article {
  padding: clamp(34px, 5vw, 72px);
  border-right: 1px solid rgba(255, 250, 240, 0.12);
}

.difference-band article:last-child {
  border-right: 0;
}

.difference-band .index {
  color: var(--leaf);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.difference-band h3 {
  margin-top: 22px;
  color: var(--paper);
}

.difference-band p {
  color: rgba(255, 250, 240, 0.72);
  margin: 18px 0 0;
}

.flow-section,
.values,
.plus-section,
.safety,
.waitlist {
  padding: clamp(90px, 11vw, 158px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

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

.flow-step {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3.2vw, 42px);
  border: 1px solid rgba(54, 68, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 12px 34px rgba(65, 52, 32, 0.07);
}

.step-number {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.flow-step p {
  color: var(--ink-soft);
  margin: 22px 0 0;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) 1fr;
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
  padding: clamp(84px, 10vw, 146px) 0;
}

.meal-phone {
  position: relative;
  width: min(430px, 100%);
  min-height: 690px;
  padding: 22px;
  border: 1px solid rgba(54, 68, 42, 0.16);
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(236, 226, 208, 0.72)),
    var(--paper);
  box-shadow: var(--shadow);
}

.meal-phone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(34, 48, 38, 0.08);
  border-radius: 38px;
  pointer-events: none;
}

.phone-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 22px;
  color: var(--ink-soft);
  font-weight: 800;
}

.meal-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(34, 48, 38, 0.18);
}

.source-row,
.metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pill.ai {
  background: var(--leaf);
  color: var(--ink);
}

.pill.soft {
  background: rgba(255, 250, 240, 0.1);
  color: rgba(255, 250, 240, 0.82);
}

.meal-card h3 {
  margin-top: 42px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--paper);
}

.reason,
.safety-note {
  color: rgba(255, 250, 240, 0.7);
}

.metrics {
  margin-top: 28px;
}

.metrics span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.86);
}

.metrics strong {
  margin-right: 4px;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}

.steps {
  margin: 34px 0 0;
  padding-left: 22px;
  color: rgba(255, 250, 240, 0.86);
}

.steps li + li {
  margin-top: 14px;
}

.safety-note {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.13);
  font-size: 0.9rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset -4px -4px 0 rgba(82, 101, 43, 0.28);
}

.values-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.logo-meaning {
  display: grid;
  place-items: center;
  min-height: 480px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(117, 137, 62, 0.12), transparent 38%),
    rgba(255, 250, 240, 0.58);
  border: 1px solid rgba(54, 68, 42, 0.14);
}

.logo-meaning img {
  width: min(330px, 70%);
  filter: drop-shadow(0 28px 46px rgba(68, 54, 32, 0.17));
}

.meaning-list {
  display: grid;
  gap: 1px;
  background: rgba(54, 68, 42, 0.16);
  border: 1px solid rgba(54, 68, 42, 0.16);
}

.meaning-list article {
  padding: clamp(24px, 3.4vw, 42px);
  background: rgba(255, 250, 240, 0.7);
}

.meaning-list p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.plus-section {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 460px);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.plus-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(54, 68, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--direct-shadow);
}

.plus-panel ul {
  margin: 26px 0;
  padding-left: 20px;
}

.plus-panel li + li {
  margin-top: 12px;
}

.safety {
  text-align: center;
  max-width: 920px;
}

.safety .section-kicker {
  margin-bottom: 18px;
}

.waitlist {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  margin-bottom: clamp(50px, 7vw, 86px);
  padding-inline: clamp(26px, 4vw, 58px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.waitlist p {
  color: rgba(255, 250, 240, 0.72);
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form label {
  font-weight: 800;
}

.waitlist-form input {
  flex: 1 1 240px;
  min-height: 54px;
  min-width: 0;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.09);
  color: var(--paper);
  font: inherit;
  font-size: 1rem;
}

.waitlist-form input::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.waitlist-form button {
  background: var(--orange);
  color: var(--ink);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.form-message.error {
  color: #ffd7c9;
}

.site-footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(54, 68, 42, 0.14);
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 22px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-logo {
    right: -130px;
    opacity: 0.28;
  }

  .dinner-ticket {
    display: none;
  }

  .positioning,
  .showcase,
  .values-layout,
  .plus-section,
  .waitlist {
    grid-template-columns: 1fr;
  }

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

  .difference-band article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  }

  .meal-phone {
    margin-inline: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.5rem);
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .hero-proof strong {
    font-size: 2rem;
  }

  .hero-proof span {
    font-size: 0.8rem;
  }

  section,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .meal-phone {
    min-height: auto;
    border-radius: 34px;
  }

  .meal-card {
    border-radius: 22px;
  }

  .form-row {
    align-items: stretch;
  }

  .waitlist-form button {
    width: 100%;
  }
}

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