:root {
  --public-ink: #173b32;
  --public-ink-soft: #34574d;
  --public-cream: #f6f3e9;
  --public-paper: #fffdf8;
  --public-lime: #cef36a;
  --public-lime-strong: #b7e846;
  --public-coral: #ed8056;
  --public-blue: #8dcbd2;
  --public-muted: #687b73;
  --public-line: #dcded5;
  --public-white: #fff;
  --public-radius-lg: 32px;
  --public-radius-md: 20px;
  --public-radius-sm: 12px;
  --public-shadow: 0 24px 70px rgba(23, 59, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.foodrok-public,
body.foodrok-membership {
  margin: 0;
  min-width: 320px;
  background: var(--public-cream);
  color: var(--public-ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.foodrok-public *,
body.foodrok-membership * {
  box-sizing: border-box;
}

body.foodrok-public button,
body.foodrok-public input,
body.foodrok-public select,
body.foodrok-membership button,
body.foodrok-membership input,
body.foodrok-membership select {
  font: inherit;
}

body.foodrok-public h1,
body.foodrok-public h2,
body.foodrok-public h3,
body.foodrok-public p,
body.foodrok-membership h1,
body.foodrok-membership h2,
body.foodrok-membership h3,
body.foodrok-membership p {
  margin-top: 0;
}

body.foodrok-public h1,
body.foodrok-public h2,
body.foodrok-public h3,
body.foodrok-public .public-brand,
body.foodrok-membership h1,
body.foodrok-membership h2,
body.foodrok-membership h3,
body.foodrok-membership .public-brand {
  font-family: "Bricolage Grotesque", sans-serif;
}

body.foodrok-public a,
body.foodrok-membership a {
  color: inherit;
  text-decoration: none;
}

body.foodrok-public :focus-visible,
body.foodrok-membership :focus-visible {
  outline: 3px solid var(--public-coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--public-white);
  color: var(--public-ink);
  font-weight: 700;
  transform: translateY(-180%);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(246, 243, 233, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 59, 50, 0.1);
  box-shadow: 0 8px 26px rgba(23, 59, 50, 0.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--public-ink);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.public-brand strong {
  color: var(--public-coral);
}

.public-brand-mark {
  width: 30px;
  height: 30px;
  padding: 7px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background: var(--public-ink);
}

.public-brand-mark span {
  width: 3px;
  border-radius: 4px;
  background: var(--public-lime);
}

.public-brand-mark span:nth-child(1) { height: 45%; }
.public-brand-mark span:nth-child(2) { height: 95%; }
.public-brand-mark span:nth-child(3) { height: 70%; }

.public-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.public-nav a {
  color: var(--public-ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.public-nav a:hover {
  color: var(--public-coral);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 46px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--public-ink);
  color: var(--public-white) !important;
  box-shadow: 0 9px 24px rgba(23, 59, 50, 0.16);
}

.button-primary:hover {
  background: #0f3028;
  box-shadow: 0 13px 30px rgba(23, 59, 50, 0.22);
}

.button-ghost {
  border-color: rgba(23, 59, 50, 0.18);
  background: transparent;
}

.button-ghost:hover {
  background: var(--public-white);
}

.button-text {
  padding-inline: 10px;
  color: var(--public-ink);
}

.button-large {
  min-height: 54px;
  padding-inline: 24px;
}

.button-lime {
  background: var(--public-lime);
  color: var(--public-ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: -220px;
  right: -130px;
  border-radius: 50%;
  background: rgba(206, 243, 106, 0.24);
  filter: blur(2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.public-eyebrow {
  margin-bottom: 18px;
  color: var(--public-coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.public-eyebrow > span {
  width: 24px;
  height: 2px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  background: currentColor;
}

.public-eyebrow-light {
  color: var(--public-lime);
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.2vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--public-coral);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--public-muted);
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-reassurance {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  color: var(--public-ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-reassurance span {
  margin-right: 5px;
  color: #3a7b4c;
}

.hero-product {
  position: relative;
  padding: 25px;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 48% 52% 46% 54%;
  background: var(--public-lime);
  transform: rotate(-5deg);
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 7px solid var(--public-white);
  border-radius: 27px;
  background: var(--public-white);
  box-shadow: var(--public-shadow);
  transform: rotate(1.5deg);
}

.product-window-bar {
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #edf0eb;
}

.product-window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8ddd7;
}

.product-window-bar small {
  margin-inline: auto;
  color: #89968f;
  font-size: 0.57rem;
}

.product-content {
  padding: 20px;
}

.product-topline,
.demo-result-header,
.demo-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-topline strong {
  margin-top: 3px;
  display: block;
  font-size: 1.08rem;
}

.mini-label {
  color: var(--public-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.budget-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef8d1;
  color: var(--public-ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.week-strip {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.week-strip > span {
  padding: 7px 2px;
  display: grid;
  place-items: center;
  gap: 3px;
  border-radius: 9px;
  color: var(--public-muted);
  font-size: 0.63rem;
  font-weight: 800;
}

.week-strip small {
  font-size: 0.6rem;
}

.week-strip .active {
  background: var(--public-ink);
  color: var(--public-white);
}

.week-strip .done {
  color: #498353;
}

.featured-meal {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--public-ink);
}

.featured-meal img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.meal-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 34, 28, 0.88), transparent 72%);
}

.featured-copy {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--public-white);
}

.featured-copy span,
.featured-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
}

.featured-copy strong {
  margin: 3px 0;
  display: block;
  font-size: 1.08rem;
}

.product-insights {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.product-insights article {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #edf0eb;
  border-radius: 12px;
}

.product-insights strong,
.product-insights small {
  display: block;
  font-size: 0.63rem;
}

.product-insights small {
  margin-top: 2px;
  color: var(--public-muted);
  font-size: 0.55rem;
}

.insight-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-weight: 900;
}

.insight-green { background: #eef8d1; }
.insight-coral { background: #fde5db; color: #a64a29; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  border: 1px solid rgba(23, 59, 50, 0.08);
  background: var(--public-white);
  box-shadow: 0 16px 36px rgba(23, 59, 50, 0.14);
}

.floating-grocery {
  right: -18px;
  bottom: -12px;
  padding: 12px 15px;
  gap: 9px;
  border-radius: 15px;
}

.floating-grocery > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--public-lime);
  font-weight: 900;
}

.floating-card strong,
.floating-card small {
  display: block;
  font-size: 0.7rem;
}

.floating-card small {
  margin-top: 2px;
  color: var(--public-muted);
  font-size: 0.59rem;
}

.floating-score {
  top: 0;
  left: -8px;
  padding: 11px 13px;
  gap: 8px;
  border-radius: 15px;
}

.floating-score > strong {
  color: var(--public-coral);
  font-size: 1.35rem;
}

.floating-score > strong small {
  display: inline;
  font-size: 0.65rem;
}

.floating-score > span {
  color: var(--public-muted);
  font-size: 0.6rem;
  font-weight: 700;
}

.signal-bar {
  padding: 18px 0;
  background: var(--public-ink);
  color: var(--public-white);
}

.signal-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-list span {
  font-size: 0.78rem;
  font-weight: 700;
}

.signal-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--public-lime);
}

.public-section {
  padding: 112px 0;
  scroll-margin-top: 72px;
}

.section-heading h2,
.benefits-copy h2,
.trust-grid h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading-split {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.section-heading-split > p,
.centered-heading > p,
.demo-heading > p,
.benefits-copy > p {
  margin-bottom: 0;
  color: var(--public-muted);
  line-height: 1.7;
}

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

.problem-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius-md);
  background: rgba(255, 253, 248, 0.7);
}

.problem-card.featured-problem {
  border-color: var(--public-ink);
  background: var(--public-ink);
  color: var(--public-white);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #a2afa8;
  font-size: 0.74rem;
  font-weight: 800;
}

.line-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 72px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e9f6c9;
  color: var(--public-ink);
  font-size: 1.4rem;
  font-weight: 900;
}

.problem-card:nth-child(2) .line-icon {
  background: #fde4da;
  color: #a94d2c;
}

.featured-problem .line-icon {
  background: var(--public-lime);
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--public-muted);
  line-height: 1.65;
}

.featured-problem p {
  color: rgba(255, 255, 255, 0.72);
}

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

.centered-heading {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.centered-heading > p {
  max-width: 580px;
  margin: 18px auto 0;
}

.steps-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: none;
  list-style: none;
}

.steps-list li {
  position: relative;
  padding: 0 38px;
  text-align: center;
}

.steps-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 102px;
  right: -28px;
  width: 56px;
  border-top: 1px dashed #a9b5ae;
}

.step-badge {
  position: absolute;
  z-index: 2;
  top: -8px;
  left: calc(50% + 64px);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid var(--public-paper);
  border-radius: 50%;
  background: var(--public-coral);
  color: var(--public-white);
  font-size: 0.7rem;
  font-weight: 900;
}

.step-visual {
  width: 184px;
  height: 184px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5da;
}

.steps-list li:nth-child(2) .step-visual { background: #fbe9df; }
.steps-list li:nth-child(3) .step-visual { background: #e3f0f1; }

.profile-visual {
  grid-template-columns: auto auto;
  gap: 10px;
}

.profile-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--public-ink);
  color: var(--public-white);
  font-weight: 800;
}

.profile-visual > span:last-child {
  display: grid;
  gap: 7px;
}

.profile-visual i {
  width: 46px;
  height: 7px;
  display: block;
  border-radius: 4px;
  background: #b7c8a1;
}

.profile-visual i:nth-child(2) { width: 34px; }
.profile-visual i:nth-child(3) { width: 41px; }

.plan-visual {
  grid-template-columns: repeat(3, 34px);
  gap: 6px;
}

.plan-visual span {
  height: 72px;
  border-radius: 10px;
  background: var(--public-white);
  box-shadow: 0 8px 18px rgba(23, 59, 50, 0.1);
}

.plan-visual span:nth-child(2) {
  height: 93px;
  background: var(--public-ink);
}

.adapt-visual {
  grid-template-columns: auto auto;
  gap: 10px;
}

.adapt-visual span,
.adapt-visual i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--public-white);
  box-shadow: 0 8px 18px rgba(23, 59, 50, 0.1);
  color: #428258;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 900;
}

.adapt-visual i {
  color: var(--public-coral);
}

.steps-list h3 {
  font-size: 1.35rem;
}

.steps-list p {
  color: var(--public-muted);
  line-height: 1.65;
}

.demo-section {
  overflow: hidden;
  background: var(--public-ink);
  color: var(--public-white);
}

.demo-heading {
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.demo-heading h2 {
  max-width: 700px;
}

.demo-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.demo-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  border-radius: var(--public-radius-lg);
  background: var(--public-paper);
  color: var(--public-ink);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.2);
}

.demo-controls {
  padding: 42px;
  border-right: 1px solid var(--public-line);
  background: #f4f0e5;
}

.demo-field {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.demo-field > label,
.demo-field legend,
.demo-label-row label {
  margin-bottom: 12px;
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
}

.demo-label-row output {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.demo-field input[type="range"] {
  width: 100%;
  accent-color: var(--public-coral);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--public-muted);
  font-size: 0.68rem;
}

.demo-field select,
.auth-field input,
.auth-field select {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid #cbd1ca;
  border-radius: 11px;
  background: var(--public-white);
  color: var(--public-ink);
}

.choice-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.choice-pills input {
  position: absolute;
  opacity: 0;
}

.choice-pills span {
  min-height: 43px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  border: 1px solid #cbd1ca;
  border-radius: 10px;
  background: var(--public-white);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.choice-pills input:checked + span {
  border-color: var(--public-ink);
  background: var(--public-ink);
  color: var(--public-white);
}

.choice-pills input:focus-visible + span {
  outline: 3px solid var(--public-coral);
  outline-offset: 3px;
}

.privacy-note {
  padding-top: 22px;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--public-line);
}

.privacy-note > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e5ecd1;
  font-weight: 900;
}

.privacy-note p {
  margin: 0;
  color: var(--public-muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.privacy-note strong { color: var(--public-ink); }

.demo-result {
  padding: 42px;
}

.demo-result-header h3 {
  margin: 5px 0 0;
  font-size: 1.65rem;
}

.mini-action {
  padding: 8px 11px;
  border: 0;
  border-radius: 9px;
  background: #edf0ea;
  color: var(--public-ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.demo-meals {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.demo-meals article {
  min-height: 184px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--public-line);
  border-radius: 17px;
  background: #f8f6ef;
}

.demo-meals .demo-meal-main {
  border-color: var(--public-ink);
  background: var(--public-ink);
  color: var(--public-white);
}

.demo-meal-time {
  margin-bottom: auto;
  color: var(--public-coral);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-meals strong {
  margin-bottom: 7px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.12rem;
  line-height: 1.16;
}

.demo-meals small {
  color: var(--public-muted);
  line-height: 1.4;
}

.demo-meal-main small { color: rgba(255, 255, 255, 0.68); }

.demo-summary {
  padding: 19px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--public-line);
  border-bottom: 1px solid var(--public-line);
}

.demo-summary > div {
  padding: 0 18px;
  border-right: 1px solid var(--public-line);
}

.demo-summary > div:first-child { padding-left: 0; }
.demo-summary > div:last-child { border-right: 0; }
.demo-summary span,
.demo-summary strong { display: block; }
.demo-summary span { color: var(--public-muted); font-size: 0.68rem; }
.demo-summary strong { margin-top: 4px; font-size: 1.25rem; }
.demo-caption { margin: 14px 0 0; color: var(--public-muted); font-size: 0.73rem; }

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

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.benefits-copy > p {
  margin: 22px 0 30px;
}

.benefit-list {
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.benefit-list li > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #eaf6c8;
  color: #397d4c;
  font-weight: 900;
}

.benefit-list strong,
.benefit-list small {
  display: block;
}

.benefit-list small {
  margin-top: 3px;
  color: var(--public-muted);
  line-height: 1.5;
}

.feature-stack {
  position: relative;
  min-height: 520px;
  border-radius: 50px;
  background: #eef4d7;
}

.feature-panel {
  position: absolute;
  border: 1px solid rgba(23, 59, 50, 0.09);
  border-radius: 19px;
  background: var(--public-white);
  box-shadow: 0 19px 45px rgba(23, 59, 50, 0.12);
}

.feature-fridge {
  z-index: 2;
  top: 54px;
  left: 40px;
  width: 57%;
  padding: 23px;
  transform: rotate(-2deg);
}

.feature-list {
  z-index: 3;
  right: 34px;
  bottom: 52px;
  width: 54%;
  padding: 23px;
  transform: rotate(2.5deg);
}

.feature-follow {
  z-index: 1;
  top: 35px;
  right: 26px;
  width: 38%;
  padding: 19px;
  background: var(--public-ink);
  color: var(--public-white);
}

.feature-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eaf6c8;
  font-weight: 900;
}

.feature-panel-title strong,
.feature-panel-title small {
  display: block;
}

.feature-panel-title small {
  margin-top: 2px;
  color: var(--public-muted);
  font-size: 0.67rem;
}

.feature-fridge ul {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.feature-fridge li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #edf0eb;
  font-size: 0.75rem;
}

.feature-fridge li small { color: var(--public-coral); }

.feature-progress {
  height: 7px;
  margin: 16px 0 10px;
  overflow: hidden;
  border-radius: 8px;
  background: #e7ebe5;
}

.feature-progress span {
  width: 66%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--public-coral);
}

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

.feature-follow > strong {
  margin: 6px 0 14px;
  display: block;
  font-size: 1.05rem;
}

.feature-follow .mini-label,
.feature-follow > small {
  color: rgba(255, 255, 255, 0.65);
}

.mini-bars {
  margin-bottom: 12px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.mini-bars i {
  width: 9px;
  height: 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
}

.mini-bars i:nth-child(-n+5) { background: var(--public-lime); }
.mini-bars i:nth-child(2n) { height: 30px; }

.trust-section {
  background: #e9eee0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.trust-items {
  display: grid;
  gap: 28px;
}

.trust-intro {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--public-muted);
  line-height: 1.65;
}

.trust-items article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
}

.trust-items article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--public-paper);
  font-size: 1.25rem;
  font-weight: 900;
}

.trust-items h3 { margin-bottom: 6px; }
.trust-items p { margin-bottom: 0; color: var(--public-muted); line-height: 1.6; }

.final-cta {
  padding: 80px 0;
  background: var(--public-ink);
  color: var(--public-white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 { max-width: 760px; }
.final-actions { text-align: center; }
.final-actions p { margin: 13px 0 0; color: rgba(255,255,255,.68); font-size: .78rem; }
.final-actions p a { color: var(--public-white); text-decoration: underline; }

.site-footer {
  padding: 54px 0 30px;
  background: #102e27;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.public-brand-light { color: var(--public-white); }
.footer-inner p { margin: 0 auto 0 0; font-size: .82rem; }
.footer-inner nav { display: flex; gap: 24px; font-size: .78rem; font-weight: 700; }
.footer-inner nav a:hover { color: var(--public-lime); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; }

/* Membership and onboarding screens. */
.membership-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
}

.membership-aside {
  position: relative;
  overflow: hidden;
  padding: 48px;
  display: flex;
  flex-direction: column;
  background: var(--public-ink);
  color: var(--public-white);
}

.membership-aside::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--public-lime);
  opacity: .85;
}

.membership-aside .public-brand {
  position: relative;
  z-index: 1;
  color: var(--public-white);
}

.membership-promise {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-block: auto;
}

.membership-promise h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.membership-promise > p {
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.membership-promise ul {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.membership-promise li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.membership-promise li span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--public-lime);
  color: var(--public-ink);
}

.membership-back {
  position: relative;
  z-index: 2;
  font-size: .78rem;
  font-weight: 700;
}

.membership-main {
  padding: 64px clamp(30px, 7vw, 100px);
  display: grid;
  align-items: center;
  background: var(--public-paper);
}

.auth-card {
  width: min(580px, 100%);
  margin-inline: auto;
}

.auth-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.auth-intro {
  margin-bottom: 32px;
  color: var(--public-muted);
  line-height: 1.6;
}

.auth-welcome {
  margin: -10px 0 24px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  border: 1px solid #bdd8ad;
  border-radius: 14px;
  background: #edf7e7;
  color: #285f37;
  font-size: .78rem;
  line-height: 1.5;
}

.auth-welcome strong {
  color: var(--public-ink);
  font-size: .9rem;
}

.auth-reassurance {
  margin: -12px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.auth-reassurance span {
  padding: 6px 9px;
  border: 1px solid #d9ded7;
  border-radius: 999px;
  background: var(--public-white);
  color: var(--public-muted);
  font-size: .66rem;
  font-weight: 700;
}

.auth-form {
  display: grid;
  gap: 18px;
}

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

.auth-field label,
.auth-field > span:first-child {
  margin-bottom: 7px;
  display: block;
  font-size: .8rem;
  font-weight: 800;
}

.auth-field small {
  margin-top: 6px;
  display: block;
  color: var(--public-muted);
  font-size: .68rem;
}

.auth-password-field {
  position: relative;
}

.auth-password-field input {
  padding-right: 86px;
}

.auth-password-field button {
  position: absolute;
  top: 50%;
  right: 7px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: #eef1ec;
  color: var(--public-ink);
  font-size: .7rem;
  font-weight: 800;
  transform: translateY(-50%);
  cursor: pointer;
}

.auth-password-rules {
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  list-style: none;
  color: var(--public-muted);
  font-size: .66rem;
}

.auth-password-rules li::before {
  content: "○";
  margin-right: 4px;
}

.auth-password-rules li.is-met {
  color: #285f37;
}

.auth-password-rules li.is-met::before {
  content: "✓";
}

.auth-forgotten {
  margin-top: 7px;
  display: inline-block;
  color: var(--public-ink);
  font-size: .72rem;
  font-weight: 750;
  text-decoration: underline;
}

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--public-muted);
  font-size: .75rem;
  line-height: 1.45;
}

.auth-check input { margin-top: 3px; accent-color: var(--public-ink); }
.auth-check a { color: var(--public-ink); text-decoration: underline; }
.auth-check-optional { padding-top: 2px; }
.auth-submit { width: 100%; border: 0; }
.auth-switch { margin: 22px 0 0; color: var(--public-muted); text-align: center; font-size: .82rem; }
.auth-switch a { color: var(--public-ink); font-weight: 800; text-decoration: underline; }

.auth-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #eef3e3;
  font-size: .78rem;
  line-height: 1.5;
}

.auth-status:empty { display: none; }
.auth-status.is-error { background: #fde5dc; color: #7b301d; }
.auth-status.is-success { background: #e5f3d8; color: #285f37; }
.auth-submit[disabled] { opacity: .58; cursor: wait; }
.auth-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.onboarding-progress {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.onboarding-progress span {
  height: 5px;
  overflow: hidden;
  border-radius: 9px;
  background: #e1e5df;
}

.onboarding-progress span::after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--public-coral);
  transition: width 220ms ease;
}

.onboarding-progress span.is-complete::after,
.onboarding-progress span.is-current::after { width: 100%; }

.onboarding-step[hidden] { display: none; }
.onboarding-step h2 { margin-bottom: 8px; font-size: 1.5rem; }
.onboarding-step > p { margin-bottom: 24px; color: var(--public-muted); }
.onboarding-actions { margin-top: 26px; display: flex; justify-content: space-between; gap: 10px; }

@media (max-width: 1050px) {
  .public-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 40px; }
  .floating-card { display: none; }
  .benefits-grid { gap: 55px; }
  .membership-shell { grid-template-columns: .62fr 1fr; }
}

@media (max-width: 820px) {
  .public-container { width: min(100% - 30px, 680px); }
  .header-inner { min-height: 68px; }
  .header-login { display: none; }
  .hero { padding-top: 54px; }
  .hero-grid,
  .section-heading-split,
  .demo-heading,
  .benefits-grid,
  .trust-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 60px; }
  .hero-product { max-width: 560px; margin-inline: auto; }
  .section-heading-split,
  .demo-heading { gap: 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .line-icon { margin-bottom: 38px; }
  .steps-list { grid-template-columns: 1fr; gap: 48px; }
  .steps-list li:not(:last-child)::after { display: none; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-controls { border-right: 0; border-bottom: 1px solid var(--public-line); }
  .trust-grid { gap: 50px; }
  .final-cta-inner { text-align: center; }
  .membership-shell { display: block; }
  .membership-aside { min-height: 300px; padding: 32px; }
  .membership-promise { margin-top: 70px; }
  .membership-promise h2 { font-size: 3rem; }
  .membership-promise ul { display: none; }
}

@media (max-width: 580px) {
  .header-register { min-height: 42px; padding: 8px 13px; font-size: .76rem; }
  .public-brand { font-size: 1.16rem; }
  .public-brand-mark { width: 27px; height: 27px; }
  .hero { padding: 44px 0 70px; }
  .hero h1 { font-size: clamp(2.9rem, 14.5vw, 4.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-reassurance { display: grid; }
  .hero-product { padding: 14px; }
  .product-content { padding: 12px; }
  .featured-meal { height: 165px; }
  .product-insights { grid-template-columns: 1fr; }
  .signal-list { justify-content: center; flex-wrap: wrap; }
  .signal-list i { display: none; }
  .public-section { padding: 78px 0; }
  .section-heading h2,
  .benefits-copy h2,
  .trust-grid h2,
  .final-cta h2 { font-size: 2.5rem; }
  .problem-card { padding: 24px; }
  .steps-list li { padding-inline: 0; }
  .demo-controls,
  .demo-result { padding: 27px 20px; }
  .demo-result-header { align-items: flex-start; flex-direction: column; }
  .demo-meals { grid-template-columns: 1fr; }
  .demo-meals article { min-height: 140px; }
  .demo-summary { grid-template-columns: 1fr; gap: 14px; }
  .demo-summary > div,
  .demo-summary > div:first-child {
    padding: 0;
    border-right: 0;
  }
  .feature-stack { min-height: 460px; }
  .feature-fridge { top: 32px; left: 15px; width: 76%; }
  .feature-follow { top: 10px; right: 10px; width: 44%; }
  .feature-list { right: 16px; bottom: 38px; width: 72%; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer-inner p { margin: 0; }
  .footer-inner nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
  .membership-aside { min-height: 245px; padding: 24px; }
  .membership-promise { margin-top: 55px; }
  .membership-promise h2 { font-size: 2.45rem; }
  .membership-promise > p { display: none; }
  .membership-main { padding: 45px 20px; }
  .auth-grid { grid-template-columns: 1fr; }
  .onboarding-actions { align-items: stretch; flex-direction: column-reverse; }
  .onboarding-actions .button { width: 100%; }
}

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