:root {
  --navy: #0b2545;
  --navy-light: #173d68;
  --blue: #1769ff;
  --green: #27c463;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --ink: #10233b;
  --muted: #5d6a78;
  --line: rgba(11, 37, 69, 0.13);
  --orange: #ff9b54;
  --shadow: 0 30px 80px rgba(11, 37, 69, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
.brand {
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: white;
  background: var(--navy);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 72px);
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.93rem;
  font-weight: 600;
}

.site-nav a:not(.nav-cta) {
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.65rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 4vw;
  overflow: hidden;
  padding: 140px clamp(24px, 7vw, 112px) 90px;
  color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(69, 141, 255, 0.42), transparent 23%),
    linear-gradient(135deg, #081d36 0%, #0b315d 56%, #082746 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 670px;
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 1.65rem;
  font-size: clamp(3.6rem, 6.2vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: #68de94;
  font-style: normal;
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.35vw, 1.26rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 190px;
  padding: 0.72rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  color: white;
  background: #050505;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.app-store-button svg {
  width: 29px;
  fill: currentColor;
}

.app-store-button span {
  display: flex;
  flex-direction: column;
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.05;
}

.app-store-button small {
  margin-bottom: 0.2rem;
  font-size: 0.62rem;
  font-weight: 500;
}

.text-link {
  font-size: 0.95rem;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.platform-note {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

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

.sun-shape {
  position: absolute;
  top: 3%;
  left: 8%;
  width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffb675, #ff7d55);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.18);
}

.phone {
  position: absolute;
  overflow: hidden;
  width: 310px;
  border: 10px solid #10151c;
  border-radius: 54px;
  background: #10151c;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.45);
}

.phone img {
  width: 100%;
  border-radius: 43px;
}

.phone-back {
  top: 12%;
  right: 2%;
  z-index: 1;
  transform: rotate(8deg);
  opacity: 0.94;
}

.phone-front {
  z-index: 2;
  bottom: -17%;
  left: 8%;
  width: 350px;
  transform: rotate(-4deg);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 45px rgba(10, 25, 44, 0.25);
  backdrop-filter: blur(14px);
}

.floating-note span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  line-height: 1.4;
}

.floating-note strong {
  font-size: 0.86rem;
}

.note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 800;
}

.note-top {
  top: 25%;
  left: -2%;
}

.note-bottom {
  right: 0;
  bottom: 8%;
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: -34px auto 0;
  padding: 1.7rem 2.4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-strip p {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 2rem;
  border-right: 1px solid var(--line);
  font-size: 0.8rem;
}

.trust-strip p:last-child {
  border-right: 0;
}

.trust-strip strong {
  margin-bottom: 0.2rem;
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 145px clamp(24px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 4rem;
}

.section-heading h2,
.workflow-copy h2,
.final-cta h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 4.5vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius);
}

.feature-card h3 {
  max-width: 420px;
  margin: 1.5rem 0 0.8rem;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-card p {
  max-width: 480px;
  font-size: 1rem;
}

.feature-number {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0.48;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  font-size: 1.6rem;
  font-weight: 700;
}

.feature-import {
  color: white;
  background: var(--navy);
}

.feature-import .feature-icon {
  color: var(--navy);
  background: #6de29a;
}

.feature-pantry {
  background: #ebf7ef;
}

.feature-pantry .feature-icon {
  color: white;
  background: var(--green);
}

.feature-discover {
  background: #fff0e2;
}

.feature-discover .feature-icon {
  color: white;
  background: var(--orange);
}

.feature-cook {
  color: white;
  background: #245fc7;
}

.feature-cook .feature-icon {
  color: var(--blue);
  background: white;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
}

.mini-pantry {
  display: grid;
  max-width: 330px;
  margin-top: 1.8rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 16px 40px rgba(45, 113, 68, 0.12);
}

.mini-pantry span {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #e8eee9;
  font-size: 0.84rem;
}

.mini-pantry span:last-child {
  border-bottom: 0;
}

.mini-pantry b {
  color: var(--green);
}

.ingredient-orbit {
  position: relative;
  width: 250px;
  height: 92px;
  margin-top: 2rem;
}

.ingredient-orbit span {
  position: absolute;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  color: #9c4d22;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(152, 72, 29, 0.09);
}

.ingredient-orbit span:nth-child(1) { top: 0; left: 0; }
.ingredient-orbit span:nth-child(2) { top: 43px; left: 62px; }
.ingredient-orbit span:nth-child(3) { top: 4px; left: 145px; }

.timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.timer-pill span {
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.timer-pill b {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
}

.workflow-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 850px;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.workflow-copy {
  padding: 100px clamp(24px, 7vw, 110px);
}

.workflow-copy h2 {
  max-width: 650px;
}

.workflow-list {
  max-width: 610px;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow-list li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-list strong {
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.workflow-list p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.workflow-visual {
  align-self: stretch;
  display: grid;
  place-items: end center;
  min-height: 800px;
  padding: 90px 40px 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(75, 145, 255, 0.38), transparent 34%),
    linear-gradient(145deg, #174674, #0a2b4d);
}

.workflow-visual img {
  width: min(455px, 82%);
  border: 10px solid #0e131a;
  border-bottom: 0;
  border-radius: 62px 62px 0 0;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.38);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  max-width: none;
}

.section-heading-row > p {
  margin-bottom: 0.6rem;
}

.screenshot-track {
  display: grid;
  grid-auto-columns: minmax(250px, 310px);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 1rem 2.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--navy) #e6e9ec;
}

.screenshot-track figure {
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-track img {
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(14, 41, 73, 0.11);
}

.screenshot-track figcaption {
  padding: 0.9rem 0.4rem 0;
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
}

.final-cta {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(70, 141, 255, 0.65), transparent 42%),
    var(--navy);
}

.cta-icon {
  margin-bottom: 1.8rem;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.final-cta h2 {
  margin-bottom: 0.8rem;
}

.final-cta > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.app-store-button-light {
  color: var(--navy);
  background: white;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.82rem;
}

.footer-brand {
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-page .site-header {
  position: relative;
  color: var(--navy);
}

.legal-page .site-nav a:not(.nav-cta) {
  opacity: 0.7;
}

.legal-page .nav-cta {
  color: white;
  background: var(--navy);
}

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px 130px;
}

.legal-header {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.legal-header p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  padding-top: 3.5rem;
}

.legal-content h2 {
  margin: 3.4rem 0 1rem;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 2rem 0 0.7rem;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: #3f4d5b;
}

.legal-content a {
  color: #0b58d0;
  text-decoration: underline;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.support-card {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(11, 37, 69, 0.08);
}

.support-card h2 {
  margin-top: 0;
}

.support-card .button {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 155px;
  }

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

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

  .trust-strip {
    margin-inline: 24px;
  }

  .workflow-section {
    grid-template-columns: 1fr;
  }

  .workflow-visual {
    min-height: 680px;
  }
}

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

  .menu-button {
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 12px;
    right: 12px;
    left: 12px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 72px 18px 18px;
    border-radius: 20px;
    color: white;
    background: rgba(7, 27, 50, 0.97);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding: 135px 22px 75px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 580px;
    margin-top: 2rem;
  }

  .sun-shape {
    left: 2%;
    width: 480px;
  }

  .phone {
    width: 230px;
    border-width: 7px;
    border-radius: 43px;
  }

  .phone img {
    border-radius: 35px;
  }

  .phone-front {
    bottom: -8%;
    left: 3%;
    width: 260px;
  }

  .phone-back {
    right: -6%;
  }

  .floating-note {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0.6rem 1.5rem;
  }

  .trust-strip p {
    padding: 1.1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 95px 20px;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

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

  .feature-card {
    min-height: 380px;
  }

  .workflow-copy {
    padding: 85px 22px 60px;
  }

  .workflow-visual {
    min-height: 550px;
    padding-inline: 10px;
  }

  .workflow-visual img {
    width: min(390px, 90%);
  }

  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .site-footer nav {
    justify-content: center;
  }

  .site-footer > p {
    justify-self: center;
  }

  .legal-page .menu-button {
    background: rgba(11, 37, 69, 0.08);
  }
}

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

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

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

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #08101b;
    --cream: #0e1725;
    --ink: #eef4ff;
    --muted: #98a7bb;
    --line: rgba(174, 190, 214, 0.14);
    --navy: #050f1f;
    --navy-light: #102845;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  }

  body {
    background:
      radial-gradient(circle at top, rgba(51, 102, 187, 0.14), transparent 30%),
      var(--paper);
  }

  .skip-link {
    color: var(--ink);
    background: #12243b;
  }

  .site-header {
    color: var(--ink);
  }

  .nav-cta {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    background:
      radial-gradient(circle at 72% 18%, rgba(83, 149, 255, 0.28), transparent 23%),
      linear-gradient(135deg, #050e1d 0%, #081d38 56%, #04101f 100%);
  }

  .hero-intro,
  .platform-note {
    color: rgba(238, 244, 255, 0.72);
  }

  .app-store-button {
    border-color: rgba(255, 255, 255, 0.2);
    background: #02060c;
  }

  .sun-shape {
    background: linear-gradient(145deg, #ffb260, #ff6f4f);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.12);
  }

  .phone {
    border-color: #02060c;
    background: #02060c;
  }

  .floating-note {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(10, 16, 28, 0.9);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
  }

  .note-icon {
    color: #07111f;
    background: #89e5ad;
  }

  .trust-strip,
  .site-footer,
  .support-card,
  .mini-pantry {
    background: #0b1421;
  }

  .trust-strip p,
  .site-footer,
  .legal-page .site-header,
  .support-card {
    color: var(--ink);
  }

  .feature-pantry {
    color: var(--ink);
    background: #111d2d;
  }

  .feature-pantry .feature-icon {
    color: #07111f;
    background: #8ae6ae;
  }

  .feature-discover {
    color: #f9eedf;
    background: #21150d;
  }

  .ingredient-orbit span {
    color: #ffd7bc;
    background: rgba(8, 13, 23, 0.82);
  }

  .mini-pantry span {
    border-bottom-color: #1c2939;
  }

  .timer-pill {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
  }

  .workflow-visual {
    background:
      radial-gradient(circle at 50% 45%, rgba(75, 145, 255, 0.24), transparent 34%),
      linear-gradient(145deg, #0d2540, #071729);
  }

  .workflow-visual img {
    border-color: #02060c;
  }

  .screenshot-track {
    scrollbar-color: #567fd8 #101929;
  }

  .screenshot-track img {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }

  .final-cta {
    background:
      radial-gradient(circle at 50% 0%, rgba(80, 145, 255, 0.46), transparent 42%),
      var(--navy);
  }

  .app-store-button-light {
    color: #07111f;
    background: #f4f8fd;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  }

  .legal-page {
    background: var(--paper);
  }

  .legal-page .nav-cta,
  .support-card .button {
    color: #06101d;
    background: #d9e5f7;
  }

  .legal-header p,
  .legal-content p,
  .legal-content li,
  .site-footer > p {
    color: var(--muted);
  }

  .legal-content a {
    color: #88b5ff;
  }

  .menu-button {
    background: rgba(255, 255, 255, 0.08);
  }

  .feature-import {
    background:
      linear-gradient(145deg, #12253d 0%, #0b1727 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .feature-pantry {
    background:
      linear-gradient(145deg, #123125 0%, #0a1c16 100%);
    box-shadow: inset 0 0 0 1px rgba(141, 226, 175, 0.08);
  }

  @media (max-width: 760px) {
    .site-nav {
      background: rgba(5, 10, 18, 0.98);
    }

    .legal-page .menu-button {
      background: rgba(255, 255, 255, 0.08);
    }
  }
}
