:root {
  color-scheme: light;
  --bg: #fafaf5;
  --bg-soft: #f4f4ef;
  --surface: #ffffff;
  --surface-warm: #f7f4ee;
  --ink: #1a1c19;
  --ink-strong: #2b140e;
  --muted: #40493d;
  --faint: #707a6c;
  --line: #bfcaba;
  --line-soft: rgba(112, 122, 108, 0.22);
  --green: #0d631b;
  --green-deep: #30481f;
  --green-dark: #16361d;
  --green-soft: #e6f2e7;
  --sage: #87a87a;
  --amber: #964900;
  --orange: #e56f3a;
  --yellow: #d69b19;
  --blue: #4f74d8;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow: 0 18px 55px rgba(26, 28, 25, 0.09);
  --shadow-soft: 0 10px 30px rgba(26, 28, 25, 0.07);
  --container: 1180px;
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 800;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(112, 122, 108, 0.18);
  background: rgba(250, 250, 245, 0.9);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 12px 26px rgba(48, 72, 31, 0.2);
}

.btn-primary:hover {
  background: #233a19;
}

.btn-secondary {
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: rgba(13, 99, 27, 0.38);
  color: var(--green);
}

.btn-ghost {
  min-height: 42px;
  color: var(--green);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  padding: 72px 0 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 250, 245, 0.95)),
    url("/assets/images/marketing/meal-prep.jpg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(250, 250, 245, 0), var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

.hero-grid > * {
  min-width: 0;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-head);
  font-size: clamp(3.05rem, 8vw, 6.65rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--green-deep);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  font-weight: 520;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 36px;
}

.proof-pill {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(112, 122, 108, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.proof-pill strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 900;
  color: var(--ink);
}

.proof-pill span {
  display: block;
  margin-top: 4px;
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone-frame {
  position: relative;
  width: min(318px, 72vw);
  aspect-ratio: 378 / 832;
  padding: 0;
  border: 10px solid #101410;
  border-radius: 42px;
  background: #101410;
  box-shadow: 0 38px 80px rgba(26, 28, 25, 0.24);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 66px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #101410;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 31px;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 8px;
  width: min(245px, 54vw);
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.floating-card strong {
  font-family: var(--font-head);
  font-size: 0.96rem;
  font-weight: 900;
}

.floating-card span {
  color: var(--faint);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.floating-card.top {
  top: 36px;
  right: 0;
}

.floating-card.bottom {
  left: 0;
  bottom: 80px;
}

.mini-list {
  display: grid;
  gap: 6px;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--line);
}

.mini-check.done {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 4px #fff;
}

.section {
  padding: clamp(72px, 10vw, 124px) 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background: #0d0d0d;
  color: #f2f2f2;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.legal-hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-dark .section-head h2 {
  color: #f2f2f2;
}

.section-head p,
.page-hero p,
.legal-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 520;
  line-height: 1.6;
}

.section-dark .section-head p {
  color: rgba(242, 242, 242, 0.68);
}

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

.feature-card,
.price-card,
.support-card,
.faq-item,
.story-panel,
.legal-card,
.page-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 260px;
  padding: 26px;
}

.feature-card.feature-primary {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.78fr);
  gap: 24px;
  overflow: hidden;
  background: #101410;
  color: #fff;
}

.feature-card.feature-primary p,
.section-dark .feature-card p {
  color: rgba(242, 242, 242, 0.68);
}

.feature-card h3,
.price-card h3,
.story-panel h3,
.support-card h2,
.faq-question,
.page-card h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.2;
}

.feature-card p,
.price-card p,
.story-panel p,
.support-card p,
.page-card p,
.faq-answer {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 520;
  line-height: 1.55;
}

.feature-card p,
.story-panel p,
.support-card p,
.page-card p {
  margin: 12px 0 0;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
}

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

.feature-primary .icon-box {
  background: rgba(135, 168, 122, 0.18);
  color: var(--sage);
}

.feature-visual {
  min-height: 240px;
  align-self: stretch;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.04), rgba(13, 13, 13, 0.5)),
    url("/assets/images/marketing/recipe-bowl.jpg") center/cover;
}

.workflow {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.story-stack {
  display: grid;
  gap: 16px;
}

.story-panel {
  padding: 24px;
}

.story-panel:nth-child(2) {
  margin-left: 36px;
}

.story-panel:nth-child(3) {
  margin-left: 72px;
}

.story-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
}

.workflow-demo {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.demo-header strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
}

.demo-chip {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.calendar-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.day-pill {
  min-height: 66px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.day-pill.active {
  background: var(--green-deep);
  color: #fff;
}

.meal-card {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #fff;
}

.meal-thumb {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
}

.meal-card strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 900;
}

.meal-card span {
  display: block;
  margin-top: 4px;
  color: var(--faint);
  font-size: 0.8rem;
  font-weight: 700;
}

.macro-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.macro {
  padding: 13px;
  border-radius: 18px;
  background: var(--bg-soft);
}

.macro strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
}

.macro span {
  display: block;
  margin-top: 2px;
  color: var(--faint);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.macro.calories strong { color: #da3f3f; }
.macro.protein strong { color: #2c6ed5; }
.macro.carbs strong { color: #b0791d; }
.macro.fat strong { color: #2e9b67; }

.dark-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dark-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(242, 242, 242, 0.11);
  border-radius: 28px;
  background: #1c1c1c;
}

.dark-card strong {
  display: block;
  color: #f2f2f2;
  font-family: var(--font-head);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.25;
}

.dark-card span {
  display: block;
  margin-top: 10px;
  color: rgba(242, 242, 242, 0.62);
  font-size: 0.92rem;
  font-weight: 520;
  line-height: 1.5;
}

.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.toggle-button {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
}

.toggle-button.active {
  background: var(--green-deep);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  background: #101410;
  color: #fff;
  box-shadow: 0 30px 80px rgba(26, 28, 25, 0.22);
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .price-note {
  color: rgba(242, 242, 242, 0.68);
}

.price-card .badge {
  align-self: flex-start;
  padding: 7px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card.featured .badge {
  background: rgba(135, 168, 122, 0.18);
  color: var(--sage);
}

.price {
  margin: 20px 0 4px;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--faint);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
}

.featured .price small {
  color: rgba(242, 242, 242, 0.55);
}

.price-note {
  margin: 0;
  color: var(--faint);
  font-size: 0.86rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 620;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--green-soft);
  box-shadow: inset 0 0 0 5px var(--green);
}

.price-card .btn {
  margin-top: auto;
}

.pricing-footnote {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--faint);
  font-size: 0.88rem;
  font-weight: 620;
  line-height: 1.55;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  margin: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  background: var(--green-deep);
  color: #fff;
}

.download-band {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--green-deep);
  color: #fff;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 44px;
}

.download-band h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.download-band p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.03rem;
  font-weight: 540;
  line-height: 1.6;
}

.download-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.download-panel img {
  width: 100%;
  border-radius: 24px;
}

.site-footer {
  padding: 56px 0 30px;
  background: #0d0d0d;
  color: rgba(242, 242, 242, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 0.75fr));
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(242, 242, 242, 0.1);
}

.footer-brand {
  color: #fff;
}

.footer-grid p {
  max-width: 310px;
  color: rgba(242, 242, 242, 0.54);
  font-size: 0.93rem;
  line-height: 1.55;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: rgba(242, 242, 242, 0.44);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 10px 0;
  color: rgba(242, 242, 242, 0.66);
  font-size: 0.94rem;
  font-weight: 650;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  color: rgba(242, 242, 242, 0.38);
  font-size: 0.86rem;
}

.page-shell {
  min-height: 70vh;
  padding: 70px 0 96px;
  background: var(--bg);
}

.page-hero,
.legal-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.support-card,
.page-card,
.legal-card {
  padding: 26px;
}

.support-card {
  min-height: 180px;
}

.support-card .btn {
  margin-top: 20px;
}

.page-card {
  margin-top: 18px;
}

.page-card ul,
.legal-card ul {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.page-card li,
.legal-card li {
  margin: 8px 0;
}

.legal-card {
  overflow: hidden;
}

.legal-card a,
.page-card a,
.support-card a:not(.btn) {
  color: var(--green);
  font-weight: 800;
}

.termly-embed {
  min-height: 60vh;
}

[data-custom-class="body"] {
  color: var(--muted) !important;
  font-family: var(--font-body) !important;
  line-height: 1.6;
}

[data-custom-class="title"],
[data-custom-class="title"] * {
  color: var(--ink-strong) !important;
  font-family: var(--font-head) !important;
}

[data-custom-class="heading_1"],
[data-custom-class="heading_1"] *,
[data-custom-class="heading_2"],
[data-custom-class="heading_2"] * {
  color: var(--ink) !important;
  font-family: var(--font-head) !important;
}

[data-custom-class="body_text"],
[data-custom-class="body_text"] *,
[data-custom-class="subtitle"],
[data-custom-class="subtitle"] * {
  color: var(--muted) !important;
  font-family: var(--font-body) !important;
}

[data-custom-class="link"],
[data-custom-class="link"] * {
  color: var(--green) !important;
  font-family: var(--font-body) !important;
  font-weight: 800 !important;
}

@media (max-width: 1040px) {
  .hero-grid,
  .workflow,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: auto;
    padding: 20px 0 36px;
  }

  .floating-card.top {
    right: 3%;
  }

  .floating-card.bottom {
    left: 3%;
    bottom: 18px;
  }

  .feature-grid,
  .pricing-grid,
  .dark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card.feature-primary {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu.open {
    display: grid;
    gap: 8px;
    padding: 0 20px 18px;
    background: rgba(250, 250, 245, 0.98);
  }

  .mobile-menu a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-menu .btn {
    margin-top: 8px;
  }

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

  .hero h1 {
    font-size: clamp(2.55rem, 10.8vw, 3.15rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-proof,
  .feature-grid,
  .pricing-grid,
  .dark-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .download-band .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .download-band .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .feature-card.feature-primary {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 180px;
  }

  .story-panel:nth-child(2),
  .story-panel:nth-child(3) {
    margin-left: 0;
  }

  .workflow-demo {
    min-height: auto;
    padding: 18px;
  }

  .calendar-row {
    gap: 5px;
  }

  .day-pill {
    min-height: 52px;
    border-radius: 14px;
    font-size: 0.7rem;
  }

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

  .meal-card .mini-check {
    display: none;
  }

  .meal-thumb {
    width: 54px;
    height: 54px;
  }

  .macro-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-frame {
    width: min(286px, 78vw);
    border-width: 8px;
    border-radius: 38px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}

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