:root {
  --brand-ink: #1a120e;
  --brand-ink-soft: #68574d;
  --brand-canvas: #fff8f2;
  --brand-canvas-warm: #f8ece5;
  --brand-surface: #ffffff;
  --brand-line: #e7d8cf;
  --brand-night: #100b08;
  --brand-night-soft: #211510;
  --brand-accent: #9a3412;
  --brand-accent-bright: #ff8a65;
  --brand-accent-wash: #fbe3d8;
  --ink: var(--brand-ink);
  --ink-soft: var(--brand-ink-soft);
  --paper: var(--brand-canvas);
  --paper-warm: var(--brand-canvas-warm);
  --surface: var(--brand-surface);
  --line: var(--brand-line);
  --dark: var(--brand-night);
  --dark-soft: var(--brand-night-soft);
  --dark-line: rgba(255, 255, 255, 0.13);
  --terracotta: var(--brand-accent);
  --terracotta-bright: var(--brand-accent-bright);
  --terracotta-wash: var(--brand-accent-wash);
  --orange: #b45f21;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --shadow-card: 0 20px 60px rgba(89, 39, 20, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--terracotta-bright);
  outline-offset: 4px;
}

::selection {
  background: var(--terracotta-bright);
  color: var(--brand-night);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-weight: 650;
  transition: transform 180ms ease;
}

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

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

.section-pad {
  padding: 132px 0;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--dark-line);
  content: "";
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(16, 11, 8, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  animation: header-down 320ms var(--ease);
}

@keyframes header-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.nav-shell {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  min-height: 82px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 1.32rem;
  font-weight: 720;
  letter-spacing: -0.05em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.nav-cta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 560;
  transition: color 180ms ease;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  align-content: center;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--terracotta-bright);
  content: "";
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.nav-cta:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 172px 0 92px;
  background:
    radial-gradient(circle at 73% 40%, rgba(255, 138, 101, 0.1), transparent 28%),
    var(--dark);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.24));
  content: "";
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 32px;
}

.eyebrow,
.section-index,
.bento-label,
.app-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--terracotta);
}

.eyebrow-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta-bright);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta-bright);
  box-shadow: 0 0 0 5px rgba(255, 138, 101, 0.11);
}

.hero h1 {
  max-width: 790px;
  margin: 28px 0 26px;
  font-size: clamp(3.7rem, 6.2vw, 6.8rem);
  font-weight: 690;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero h1 em,
.final-cta h2 em,
.not-found h1 em {
  color: var(--terracotta-bright);
  font-family: Iowan Old Style, "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 690;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 220ms var(--ease);
}

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

.button:active,
.nav-cta:active,
.menu-toggle:active {
  opacity: 0.76;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--terracotta-bright);
  color: var(--brand-night);
}

.button-primary:hover {
  background: #f07a57;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: #c9b9b0;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  font-size: 0.94rem;
  font-weight: 640;
}

.text-link-light {
  color: #fff;
}

.text-link-light:hover {
  color: var(--terracotta-bright);
}

.hero-note {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 540px;
  height: 540px;
}

.orbit-two {
  width: 700px;
  height: 700px;
  opacity: 0.55;
}

.hero-food {
  position: absolute;
  z-index: 1;
  top: 84px;
  right: -20px;
  width: 340px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
  opacity: 0.74;
  transform: rotate(-7deg);
}

.hero-food img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone {
  position: relative;
  z-index: 3;
  width: 326px;
  height: 660px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  background: var(--dark-soft);
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2.5deg);
}

.phone::before,
.phone::after {
  position: absolute;
  left: -3px;
  width: 3px;
  border-radius: 2px 0 0 2px;
  background: #3a2d27;
  content: "";
}

.phone::before {
  top: 128px;
  height: 68px;
}

.phone::after {
  top: 212px;
  height: 36px;
}

.phone-island {
  position: absolute;
  z-index: 7;
  top: 18px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #050505;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: #fffaf6;
  color: var(--ink);
}

.status-bar {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 24px 0;
  font-size: 0.61rem;
  font-weight: 720;
}

.status-icons {
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.app-nav {
  display: grid;
  height: 46px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #eaded7;
  grid-template-columns: 1fr auto 1fr;
  font-size: 0.73rem;
}

.app-back {
  color: var(--terracotta);
  font-size: 1.3rem;
}

.app-back small {
  margin-left: 2px;
  font-size: 0.68rem;
  vertical-align: 2px;
}

.app-nav-title {
  font-weight: 700;
}

.app-more {
  justify-self: end;
  letter-spacing: 0.08em;
}

.recipe-scroll {
  height: calc(100% - 143px);
  overflow: hidden;
  padding: 23px 18px 20px;
}

.app-kicker {
  margin-bottom: 7px;
  color: var(--terracotta);
  font-size: 0.48rem;
}

.recipe-scroll h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.app-summary {
  margin: 10px 0 12px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.45;
}

.app-meta {
  display: flex;
  gap: 7px;
}

.app-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  font-size: 0.53rem;
  font-weight: 650;
}

.app-meta svg {
  width: 11px;
  height: 11px;
}

.app-change {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 15px;
  padding: 11px;
  border-radius: 12px;
  background: var(--terracotta-wash);
}

.app-change-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
}

.app-change-icon svg {
  width: 12px;
  height: 12px;
}

.app-change p {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.3;
}

.app-change small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.52rem;
  line-height: 1.35;
}

.ingredients-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 5px;
  font-size: 0.66rem;
}

.ingredients-head span {
  color: #8a756a;
  font-size: 0.52rem;
}

.ingredient {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaded7;
  font-size: 0.6rem;
}

.ingredient span:first-child {
  display: flex;
  flex-direction: column;
}

.ingredient small {
  margin-top: 2px;
  color: #806f66;
  font-size: 0.51rem;
}

.ingredient-action {
  padding: 5px 7px;
  border: 1px solid #dfd0c7;
  border-radius: 99px;
  background: #fff;
  color: #5b4b43;
  font-size: 0.46rem;
}

.ingredient-adapted small {
  color: var(--terracotta);
}

.ingredient-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-wash);
  color: var(--terracotta);
}

.ingredient-check svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}

.app-tabbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-around;
  padding: 4px 28px 10px;
  border-top: 1px solid var(--line);
  background: rgba(255, 248, 242, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.app-tabbar span {
  display: flex;
  min-width: 38px;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: #85736a;
  font-size: 0.46rem;
}

.app-tabbar span.active {
  color: var(--terracotta);
}

.app-tabbar svg {
  width: 16px;
  height: 16px;
}

.source-pill,
.saving-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(33, 21, 16, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  color: #fff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.source-pill {
  min-width: 166px;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 15px;
}

.source-pill-link {
  top: 114px;
  left: -2px;
  transform: rotate(-5deg);
}

.source-pill-photo {
  top: 278px;
  right: -34px;
  transform: rotate(5deg);
}

.source-pill b,
.source-pill small,
.saving-card b,
.saving-card small {
  display: block;
}

.source-pill b {
  font-size: 0.7rem;
}

.source-pill small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.57rem;
}

.source-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 138, 101, 0.14);
  color: var(--terracotta-bright);
}

.source-icon svg {
  width: 15px;
  height: 15px;
}

.saving-card {
  right: -12px;
  bottom: 80px;
  gap: 11px;
  padding: 13px 17px;
  border-radius: 18px;
}

.saving-card > svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta-bright);
}

.saving-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
}

.saving-card b {
  color: var(--terracotta-bright);
  font-size: 0.83rem;
  font-variant-numeric: tabular-nums;
}

.source-ribbon {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.source-ribbon-grid {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.source-ribbon p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 590;
}

.source-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.source-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  font-weight: 650;
}

.source-list svg {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 0.5fr 1.5fr;
}

.section-index {
  color: #7d6a60;
}

.display-title {
  margin: 19px 0 0;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.display-title span {
  color: #98877e;
  font-family: Iowan Old Style, "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.72;
}

.how {
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.35fr 0.65fr;
}

.section-heading > .section-lead {
  margin-bottom: 9px;
}

.steps-grid {
  display: grid;
  padding: 0;
  margin: 80px 0 0;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: #cbb9af;
  background: #fff;
}

.step-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #9b8a80;
  font-size: 0.72rem;
  font-weight: 690;
  font-variant-numeric: tabular-nums;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--terracotta-wash);
  color: var(--terracotta);
}

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

.feature-icon-light {
  background: rgba(255, 138, 101, 0.14);
  color: var(--terracotta-bright);
}

.step-card h3 {
  margin: 77px 0 10px;
  font-size: 1.36rem;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.showcase {
  background: var(--paper);
}

.showcase-heading {
  margin-bottom: 78px;
}

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

.bento {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.bento::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.bento-profile,
.bento-original {
  border-color: #2b1d17;
  background:
    radial-gradient(circle at 80% 75%, rgba(255, 138, 101, 0.15), transparent 42%),
    var(--dark-soft);
  color: #fff;
}

.bento-profile {
  grid-column: span 7;
}

.bento-budget {
  background: var(--terracotta-wash);
  grid-column: span 5;
}

.bento-missing {
  grid-column: span 5;
}

.bento-original {
  grid-column: span 7;
}

.bento-global {
  min-height: 390px;
  background: var(--paper-warm);
  grid-column: span 12;
}

.library-heading {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin: 96px 0 34px;
}

.library-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.library-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.library-feature {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
}

.library-feature h3 {
  margin: 22px 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.library-feature p {
  margin: 0;
  color: var(--ink-soft);
}

.bento-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.bento-label {
  margin-top: 27px;
  color: var(--terracotta);
  font-size: 0.65rem;
}

.bento-profile .bento-label,
.bento-original .bento-label {
  color: var(--terracotta-bright);
}

.bento h3 {
  max-width: 470px;
  margin: 10px 0 13px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.bento-copy > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.bento-profile .bento-copy > p:last-child,
.bento-original .bento-copy > p:last-child {
  color: rgba(255, 255, 255, 0.53);
}

.profile-stack {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 42px;
  left: 38px;
  height: 145px;
}

.profile-card {
  position: absolute;
  display: flex;
  width: min(430px, 82%);
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.profile-card-one {
  z-index: 2;
  right: 0;
  bottom: 0;
}

.profile-card-two {
  bottom: 43px;
  left: 0;
  opacity: 0.54;
  transform: rotate(-3deg);
}

.avatar {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-bright);
  color: #111;
  font-weight: 740;
}

.profile-card b,
.profile-card small {
  display: block;
}

.profile-card b {
  font-size: 0.92rem;
}

.profile-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.68rem;
}

.profile-check {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-bright);
  color: #111;
}

.profile-check svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.5;
}

.budget-visual {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  padding: 24px;
  border: 1px solid rgba(154, 52, 18, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 36px rgba(154, 52, 18, 0.08);
}

.budget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.8rem;
}

.budget-row span {
  color: #7b655a;
}

.budget-row b {
  font-variant-numeric: tabular-nums;
}

.budget-row-current b {
  color: var(--terracotta);
}

.budget-line {
  position: relative;
  height: 5px;
  margin: 15px 0;
  overflow: hidden;
  border-radius: 99px;
  background: #e8cfc3;
}

.budget-line span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--terracotta);
}

.budget-saved {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 670;
}

.budget-saved svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.3;
}

.missing-list {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.missing-list > div {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #eee1da;
}

.missing-list b,
.missing-list small {
  display: block;
}

.missing-list b {
  font-size: 0.76rem;
}

.missing-list small {
  color: #826f65;
  font-size: 0.65rem;
}

.missing-list i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #decfc7;
  border-radius: 7px;
  color: transparent;
}

.missing-list i.missing-selected {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
}

.missing-list i svg {
  width: 14px;
  height: 14px;
}

.missing-action {
  display: flex;
  width: calc(100% - 20px);
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  margin: 10px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 670;
}

.missing-action svg {
  width: 15px;
  height: 15px;
}

.compare-card {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  display: grid;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  gap: 10px;
  grid-template-columns: 1fr auto 1fr;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.compare-card div small,
.compare-card div b {
  display: block;
}

.compare-card div small {
  margin-bottom: 4px;
  color: var(--terracotta-bright);
  font-size: 0.5rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.compare-card div b {
  font-size: 0.73rem;
}

.compare-arrow {
  align-self: center;
  color: rgba(255, 255, 255, 0.4);
}

.compare-arrow svg {
  width: 18px;
  height: 18px;
}

.compare-card p {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  grid-column: 1 / -1;
}

.compare-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  background: transparent;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 650;
  grid-column: 1 / -1;
  justify-self: start;
}

.bento-global .bento-copy {
  max-width: 590px;
}

.region-pills {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: flex;
  width: min(480px, calc(100% - 84px));
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.region-pills span {
  padding: 12px 17px;
  border: 1px solid #decfc7;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  color: #78675f;
  font-size: 0.74rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.region-pills .active {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
}

.privacy {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.privacy-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}

.privacy-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
}

.section-index-dark {
  color: rgba(255, 255, 255, 0.43);
}

.display-title-dark {
  color: #fff;
}

.display-title-dark span {
  color: var(--terracotta-bright);
}

.section-lead-dark {
  color: rgba(255, 255, 255, 0.56);
}

.privacy-copy .text-link {
  margin-top: 32px;
}

.privacy-list {
  border-top: 1px solid var(--dark-line);
}

.privacy-item {
  display: grid;
  min-height: 154px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--dark-line);
  gap: 22px;
  grid-template-columns: auto 1fr;
}

.privacy-item > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 138, 101, 0.11);
  color: var(--terracotta-bright);
}

.privacy-item svg {
  width: 23px;
  height: 23px;
}

.privacy-item h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.privacy-item p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

.honesty {
  border-bottom: 1px solid var(--line);
  background: var(--terracotta-wash);
}

.honesty-grid {
  display: grid;
  align-items: end;
  gap: 100px;
  grid-template-columns: 1.1fr 0.9fr;
}

.honesty-copy {
  padding-left: 32px;
  border-left: 2px solid var(--terracotta);
}

.honesty-copy p {
  margin: 0;
  color: #5a463c;
  font-size: 1.06rem;
  line-height: 1.7;
}

.honesty-copy p + p {
  margin-top: 25px;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 110px;
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-heading {
  position: sticky;
  top: 128px;
}

.faq-heading .display-title {
  font-size: clamp(2.7rem, 4vw, 4.6rem);
}

.faq-heading .section-lead {
  margin-top: 22px;
}

.faq-heading .button {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  font-size: 1.07rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper-warm);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  content: "";
  transition: transform 200ms var(--ease);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 52px 28px 0;
  margin: -8px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 138, 101, 0.15), transparent 38%),
    var(--dark);
  color: #fff;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: -340px;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 120px rgba(255, 255, 255, 0.018),
    0 0 0 240px rgba(255, 255, 255, 0.014);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.4);
}

.final-cta .eyebrow {
  margin-top: 32px;
}

.final-cta h2,
.not-found h1 {
  margin: 26px 0 22px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.final-cta > .container > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.98rem;
}

.testflight-button {
  display: inline-flex;
  min-width: 210px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 7px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin-top: 34px;
  background: #fff;
  color: #080808;
  text-align: left;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.testflight-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.testflight-button:active {
  opacity: 0.76;
}

.testflight-button svg {
  width: 30px;
  height: 30px;
}

.testflight-button small,
.testflight-button b {
  display: block;
}

.testflight-button small {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testflight-button b {
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.not-found-action {
  margin-top: 30px;
}

.site-footer {
  background: #0b0705;
  color: #fff;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-top {
  min-height: 130px;
  border-bottom: 1px solid var(--dark-line);
}

.brand-footer {
  color: #fff;
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
}

.footer-social span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-social a {
  min-height: 44px;
  align-content: center;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
  text-decoration-color: var(--terracotta-bright);
}

.footer-bottom {
  min-height: 84px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 25px;
}

.footer-bottom a {
  min-height: 44px;
  align-content: center;
  transition: color 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 400ms var(--ease),
    transform 400ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-grid .reveal:nth-child(2),
.privacy-list .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.steps-grid .reveal:nth-child(3),
.privacy-list .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.steps-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

/* Interior pages */
.page-shell {
  min-height: 100vh;
  background: var(--paper);
}

.page-header {
  position: relative;
  background: var(--dark);
}

.page-main {
  padding: 170px 0 110px;
}

.page-hero {
  max-width: 790px;
  margin-bottom: 72px;
}

.page-hero .eyebrow {
  margin-bottom: 22px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.page-hero > p:last-child {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.page-layout {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 240px minmax(0, 760px);
}

.page-aside {
  position: sticky;
  top: 112px;
}

.page-aside p {
  margin: 0 0 12px;
  color: #6f5d54;
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-aside nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-aside a {
  min-height: 40px;
  align-content: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
  transition: color 180ms ease;
}

.page-aside a:hover {
  color: var(--terracotta);
}

.prose {
  min-width: 0;
}

.prose section {
  padding: 0 0 55px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.prose section + section {
  padding-top: 55px;
}

.prose section:last-child {
  border-bottom: 0;
}

.prose h2 {
  margin: 0 0 19px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.prose h3 {
  margin: 32px 0 10px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  color: #5f4d45;
  font-size: 0.96rem;
  line-height: 1.78;
}

.prose p {
  margin: 0 0 16px;
}

.prose ul,
.prose ol {
  padding-left: 21px;
  margin: 17px 0;
}

.prose li + li {
  margin-top: 9px;
}

.prose a {
  color: var(--terracotta);
  font-weight: 620;
  text-decoration: underline;
  text-decoration-color: rgba(154, 52, 18, 0.36);
  text-underline-offset: 3px;
}

.notice {
  padding: 21px 23px;
  border: 1px solid #e1c7ba;
  border-radius: var(--radius-sm);
  margin: 0 0 28px;
  background: var(--terracotta-wash);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.notice p {
  margin: 0;
  color: #5d463b;
  font-size: 0.88rem;
}

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

.support-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.support-card .feature-icon {
  margin-bottom: 48px;
}

.support-card h2 {
  margin: 0 0 7px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.support-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.support-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 660;
}

.support-card a svg {
  width: 16px;
  height: 16px;
}

.support-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1px solid #ead8ca;
  border-radius: var(--radius-sm);
  margin-top: 34px;
  background: #fbf2eb;
}

.support-status svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--orange);
}

.support-status p {
  margin: 0;
  color: #6c4c39;
  font-size: 0.87rem;
}

.support-status a {
  color: var(--terracotta);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: rgba(154, 52, 18, 0.36);
  text-underline-offset: 3px;
}

.support-details {
  margin-top: 92px;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .source-pill-link {
    left: -20px;
  }

  .source-pill-photo {
    right: -30px;
  }

  .hero-food {
    right: -48px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card {
    min-height: 275px;
  }

  .bento {
    min-height: 540px;
  }

  .bento-global {
    min-height: 440px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 100px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    place-items: center;
  }

  .menu-toggle svg {
    width: 21px;
    height: 21px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 82px 0 0;
    display: flex;
    height: calc(100dvh - 82px);
    flex-direction: column;
    padding: 32px 24px;
    background: rgba(16, 11, 8, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    display: flex;
    min-height: 62px;
    align-items: center;
    border-bottom: 1px solid var(--dark-line);
    font-size: 1.15rem;
    font-weight: 630;
  }

  .mobile-nav .mobile-nav-cta {
    min-height: 54px;
    justify-content: center;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    margin: 20px 0 8px;
    background: var(--terracotta-bright);
    color: var(--brand-night);
    font-size: 1rem;
  }

  .hero {
    padding-top: 142px;
  }

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

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

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead,
  .hero-note {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 710px;
  }

  .hero-food {
    right: calc(50% - 300px);
  }

  .phone {
    transform: none;
  }

  .source-pill-link {
    left: calc(50% - 280px);
  }

  .source-pill-photo {
    right: calc(50% - 290px);
  }

  .saving-card {
    right: calc(50% - 280px);
  }

  .source-ribbon-grid {
    min-height: 126px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .source-list {
    width: 100%;
    justify-content: space-between;
  }

  .intro-grid,
  .section-heading,
  .privacy-grid,
  .honesty-grid,
  .faq-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .section-heading > .section-lead {
    margin: 0;
  }

  .bento-profile,
  .bento-budget,
  .bento-missing,
  .bento-original,
  .bento-global {
    grid-column: span 12;
  }

  .bento {
    min-height: 500px;
  }

  .bento-global {
    min-height: 470px;
  }

  .library-features {
    grid-template-columns: 1fr;
  }

  .privacy-grid-bg {
    mask-image: linear-gradient(0deg, transparent, #000);
  }

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

  .faq-heading {
    position: static;
  }

  .faq-heading .section-lead {
    margin-top: 20px;
  }

  .page-layout {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .page-aside {
    position: static;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .page-aside nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 18px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-pad {
    padding: 80px 0;
  }

  .nav-shell {
    min-height: 72px;
  }

  .mobile-nav {
    inset: 72px 0 0;
    height: calc(100dvh - 72px);
  }

  .hero {
    min-height: 0;
    padding: 124px 0 72px;
  }

  .hero h1 {
    margin: 24px 0 22px;
    font-size: clamp(3.05rem, 14.5vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-visual {
    min-height: 605px;
    margin-top: 20px;
  }

  .hero-food {
    top: 62px;
    right: calc(50% - 225px);
    width: 276px;
    border-radius: 22px;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    width: 570px;
    height: 570px;
  }

  .phone {
    width: 278px;
    height: 566px;
    border-radius: 43px;
  }

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

  .phone-island {
    top: 17px;
    width: 78px;
    height: 21px;
  }

  .status-bar {
    height: 38px;
  }

  .recipe-scroll {
    height: calc(100% - 136px);
    padding: 18px 15px;
  }

  .recipe-scroll h2 {
    font-size: 1.75rem;
  }

  .app-change {
    margin-top: 12px;
  }

  .ingredients-head {
    margin-top: 13px;
  }

  .source-pill {
    min-width: 144px;
    padding: 8px 10px;
  }

  .source-pill-link {
    top: 104px;
    left: -4px;
  }

  .source-pill-photo {
    top: 261px;
    right: -8px;
  }

  .saving-card {
    right: -4px;
    bottom: 44px;
    padding: 10px 12px;
  }

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

  .source-ribbon-grid {
    padding: 25px 0;
  }

  .intro-grid {
    gap: 32px;
  }

  .display-title {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .section-lead {
    margin-top: 26px;
    font-size: 1rem;
  }

  .steps-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 270px;
  }

  .showcase-heading {
    margin-bottom: 52px;
  }

  .bento {
    min-height: 520px;
    padding: 27px;
    border-radius: 28px;
  }

  .bento h3 {
    font-size: 2.2rem;
  }

  .profile-stack,
  .budget-visual,
  .missing-list,
  .compare-card {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

  .profile-card {
    width: 90%;
  }

  .bento-budget {
    min-height: 545px;
  }

  .bento-missing {
    min-height: 600px;
  }

  .bento-original {
    min-height: 590px;
  }

  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

  .bento-global {
    min-height: 570px;
  }

  .region-pills {
    right: 26px;
    bottom: 26px;
    left: 26px;
    width: auto;
    justify-content: flex-start;
  }

  .honesty-copy {
    padding-left: 21px;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 0.98rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta {
    padding: 105px 0;
  }

  .final-cta h2,
  .not-found h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-top {
    padding: 30px 0;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  .footer-social span {
    flex-basis: 100%;
  }

  .footer-bottom {
    min-height: 130px;
    padding: 22px 0;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 5px 20px;
  }

  .page-main {
    padding: 128px 0 80px;
  }

  .page-hero {
    margin-bottom: 52px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .prose section {
    padding-bottom: 42px;
  }

  .prose section + section {
    padding-top: 42px;
  }

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

  .step-card p,
  .bento-copy > p:last-child,
  .privacy-item p,
  .honesty-copy p,
  .prose p,
  .prose li,
  .support-card p,
  .support-status p {
    font-size: 1rem;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --ink-soft: #3d2d26;
    --line: #bfaea5;
  }

  .hero-lead,
  .section-lead-dark,
  .privacy-item p,
  .bento-profile .bento-copy > p:last-child,
  .bento-original .bento-copy > p:last-child {
    color: rgba(255, 255, 255, 0.78);
  }
}

/* Real product imagery and locale navigation */
.desktop-nav .locale-link {
  display: inline-flex;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  text-align: center;
}

.desktop-nav .locale-link::after {
  display: none;
}

.desktop-nav .locale-link:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.phone-screenshot {
  height: auto;
  overflow: visible;
  background: #080706;
}

.phone-screenshot picture,
.phone-screenshot img {
  width: 100%;
}

.phone-screenshot picture {
  display: block;
}

.phone-screenshot img {
  height: auto;
  border-radius: 42px;
  background: var(--brand-canvas);
}

.hero-screen-label {
  position: absolute;
  z-index: 7;
  right: 50%;
  bottom: -2px;
  margin: 0;
  padding: 8px 12px;
  transform: translateX(50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(16, 11, 8, 0.9);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 640;
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.screenshots {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(154, 52, 18, 0.1), transparent 28%),
    var(--paper-warm);
}

.screenshots-heading {
  margin-bottom: 64px;
}

.screenshots-grid {
  display: grid;
  overflow-x: auto;
  padding: 10px 8px 34px;
  gap: 24px;
  grid-auto-columns: minmax(238px, 278px);
  grid-auto-flow: column;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 8px;
  scroll-snap-type: inline proximity;
  scrollbar-color: var(--terracotta) rgba(154, 52, 18, 0.12);
  scrollbar-width: thin;
}

.screenshots-grid::-webkit-scrollbar {
  height: 8px;
}

.screenshots-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(154, 52, 18, 0.1);
}

.screenshots-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--terracotta);
}

.screenshot-card {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-frame {
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(26, 18, 14, 0.22);
  border-radius: 42px;
  background: #080706;
  box-shadow:
    0 28px 70px rgba(89, 39, 20, 0.16),
    0 3px 10px rgba(26, 18, 14, 0.12);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 35px;
  background: var(--brand-canvas);
}

.screenshot-card figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 8px 0;
  color: var(--ink);
}

.screenshot-card figcaption span {
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.screenshot-card figcaption strong {
  font-size: 0.92rem;
}

.screenshots-note {
  margin: 24px 8px 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .hero-visual {
    min-height: 720px;
  }

  .phone-screenshot {
    height: auto;
  }

  .screenshots-grid {
    grid-auto-columns: minmax(232px, 42vw);
  }
}

@media (max-width: 640px) {
  .hero-visual {
    min-height: 630px;
  }

  .phone-screenshot {
    width: 278px;
    height: auto;
    border-radius: 43px;
  }

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

  .hero-screen-label {
    bottom: -8px;
  }

  .screenshots-heading {
    margin-bottom: 42px;
  }

  .screenshots-grid {
    margin-right: -16px;
    padding-right: 16px;
    grid-auto-columns: minmax(236px, 72vw);
  }
}
