@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --green-950: #082f28;
  --green-900: #0d4438;
  --green-800: #17604f;
  --green-700: #2f7b68;
  --green-500: #5c9f8a;
  --mint: #dcece5;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sand: #f2e5c7;
  --coral: #ff8052;
  --coral-text: #b34525;
  --coral-dark: #9f381d;
  --coral-soft: #ffe2d4;
  --olive: #9ebc75;
  --ink-soft: #5c716a;
  --line: rgba(8, 47, 40, .14);
  --line-light: rgba(255, 255, 255, .18);
  --shadow-sm: 0 12px 30px -22px rgba(8, 47, 40, .34);
  --shadow-md: 0 28px 70px -36px rgba(8, 47, 40, .42);
  --shadow-lg: 0 48px 110px -50px rgba(8, 47, 40, .62);
  --radius-card: 16px;
  --radius-control: 12px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-snap: cubic-bezier(.22, 1, .36, 1);
  --page: min(1180px, calc(100vw - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-color: var(--green-700) var(--cream);
  scrollbar-width: thin;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--green-950);
  background: var(--cream);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--paper); background: var(--green-700); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { border: 3px solid var(--cream); border-radius: 99px; background: var(--green-700); }

a { color: inherit; text-underline-offset: .25em; }
button, a { -webkit-tap-highlight-color: rgba(255, 128, 82, .18); }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Bricolage Grotesque", "Manrope", sans-serif; text-wrap: balance; }
h2 { margin-bottom: 20px; font-size: clamp(2.45rem, 5vw, 4.8rem); font-weight: 760; line-height: .98; letter-spacing: -.038em; }
h3 { line-height: 1.1; letter-spacing: -.025em; }
p { color: var(--ink-soft); }

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

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 12px; padding: 10px 14px; color: white; background: var(--green-950); border-radius: 8px; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 239, .96);
  transition: border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled { min-height: 66px; border-bottom-color: var(--line); box-shadow: 0 12px 30px -28px rgba(8, 47, 40, .5); }

.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; color: var(--green-950); font-family: "Bricolage Grotesque", sans-serif; font-size: 24px; font-weight: 780; letter-spacing: -.035em; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 11px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; color: var(--ink-soft); font-size: 13px; font-weight: 700; text-decoration: none; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; content: ""; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .32s var(--ease-out); }
.desktop-nav a:hover { color: var(--green-950); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 8px; justify-self: end; }

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius-control);
  color: white;
  background: var(--green-900);
  box-shadow: var(--shadow-sm);
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, box-shadow .35s var(--ease-out), transform .35s var(--ease-snap);
}

.button::before { position: absolute; top: -120%; left: -42%; width: 28%; height: 340%; content: ""; background: rgba(255, 255, 255, .2); transform: rotate(20deg) translateX(-260%); transition: transform .8s var(--ease-out); }
.button > * { position: relative; z-index: 1; }
.button svg { width: 19px; height: 19px; transition: transform .35s var(--ease-snap); }
.button:hover { background: var(--green-800); box-shadow: 0 20px 42px -28px rgba(8, 47, 40, .8); transform: translateY(-2px); }
.button:hover::before { transform: rotate(20deg) translateX(650%); }
.button:hover svg { transform: translateX(4px); }
.button:active { transform: translateY(1px) scale(.985); }
.button--compact { min-height: 44px; padding: 10px 16px; font-size: 13px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 11px; color: var(--green-950); background: var(--paper); }
.menu-button svg { width: 21px; height: 21px; margin: auto; }
.menu-button .close-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-icon { display: none; }
.menu-button[aria-expanded="true"] .close-icon { display: block; }
.mobile-menu { position: fixed; z-index: 90; inset: 66px 0 0; padding: 38px 24px; color: white; background: var(--green-950); }
.mobile-menu a:not(.button) { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-light); font-family: "Bricolage Grotesque", sans-serif; font-size: 28px; font-weight: 700; text-decoration: none; }
.mobile-menu .button { margin-top: 30px; color: var(--green-950); background: var(--coral); }
.header-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: transparent; }
.header-progress span { display: block; width: 100%; height: 100%; background: var(--coral); transform: scaleX(0); transform-origin: left; }

.hero { position: relative; display: grid; overflow: clip; grid-template-columns: minmax(0, .98fr) minmax(420px, .82fr); align-items: center; min-height: 780px; padding: 142px max(24px, calc((100vw - 1180px) / 2)) 96px; background: var(--cream); isolation: isolate; }
.hero-copy { position: relative; z-index: 3; max-width: 690px; }
.hero-eyebrow { display: inline-block; margin-bottom: 22px; color: var(--green-700); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0 0 26px; font-size: clamp(4.6rem, 7.6vw, 7.1rem); font-weight: 790; line-height: .83; letter-spacing: -.04em; }
.hero h1 em { color: var(--coral-text); font-style: normal; }
.hero-copy > p { max-width: 610px; margin-bottom: 31px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.button--hero { min-height: 62px; padding: 17px 24px; font-size: 16px; }
.text-link { color: var(--green-800); font-size: 14px; font-weight: 760; text-decoration-thickness: 1px; }
.text-link:hover { color: var(--coral-dark); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 11px 20px; margin-top: 25px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 12px; }
.hero-proof svg { width: 16px; height: 16px; color: var(--green-700); }

.hero-product { position: relative; z-index: 2; width: 460px; height: 620px; justify-self: end; perspective: 1200px; transform-style: preserve-3d; }
.hero-atmosphere { position: absolute; z-index: -3; top: 42px; right: -180px; width: 690px; height: 510px; object-fit: cover; border-radius: 190px 0 0 190px; opacity: 1; }
.phone-halo { position: absolute; z-index: -1; top: 110px; left: -60px; width: 510px; height: 420px; border-radius: 50%; background: var(--mint); opacity: .82; transform: rotate(-10deg); }
.phone { position: absolute; overflow: hidden; border: 8px solid #173a32; border-radius: 52px; background: #173a32; box-shadow: var(--shadow-lg); }
.phone--hero { top: 18px; right: 48px; width: 286px; height: 619px; transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0); transition: transform .55s var(--ease-out); }
.phone-top { position: absolute; z-index: 4; top: 7px; left: 50%; width: 92px; height: 23px; border-radius: 20px; background: #173a32; transform: translateX(-50%); }
.phone-top span { position: absolute; top: 8px; left: 50%; width: 34px; height: 5px; border-radius: 5px; background: rgba(255, 255, 255, .16); transform: translateX(-50%); }
.phone-screen { width: 100%; height: 100%; overflow: hidden; border-radius: 43px; background: var(--cream); }
.phone-screen img { display: block; width: 100%; height: auto; backface-visibility: hidden; }
.app-demo { position: relative; width: 100%; height: 100%; overflow: hidden; color: var(--green-950); background: linear-gradient(150deg, #f7f8f0 0%, #fff0e7 100%); font-family: "Manrope", sans-serif; }
.app-demo__header { display: flex; height: 53px; align-items: center; gap: 7px; padding: 10px 13px; border-bottom: 1px solid rgba(13, 68, 56, .1); background: rgba(255, 253, 248, .9); }
.app-demo__header img { width: 26px; height: 26px; }
.app-demo__header strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 15px; }
.app-demo__header > span { padding: 6px 8px; margin-left: auto; border: 1px solid var(--line); border-radius: 9px; background: white; font-size: 7px; font-weight: 800; }
.app-demo__content { padding: 20px 15px 62px; }
.app-demo__content h3 { margin: 0; font-size: 25px; line-height: 1; }
.app-demo__content > p { margin: 8px 0 16px; color: var(--ink-soft); font-size: 9px; line-height: 1.45; }
.app-demo__inventory { position: relative; display: grid; min-height: 54px; align-content: center; padding: 10px 34px 10px 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); box-shadow: var(--shadow-sm); }
.app-demo__inventory small { color: var(--ink-soft); font-size: 7px; }
.app-demo__inventory strong { font-size: 10px; }
.app-demo__inventory b { position: absolute; top: 50%; right: 14px; color: var(--green-700); font-size: 19px; transform: translateY(-50%); }
.app-demo__content h4 { margin: 18px 0 10px; font-size: 15px; }
.app-demo__camera { position: relative; display: flex; height: 118px; justify-content: flex-end; padding: 14px; border-radius: 15px; color: white; background: var(--green-800); flex-direction: column; box-shadow: var(--shadow-sm); }
.app-demo__camera::after { position: absolute; right: -26px; bottom: -28px; width: 112px; height: 112px; border: 27px solid rgba(255, 255, 255, .055); border-radius: 50%; content: ""; }
.app-demo__camera i { position: absolute; top: 12px; left: 12px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: white; background: var(--coral); }
.app-demo__camera i svg { width: 18px; height: 18px; }
.app-demo__camera strong { position: relative; z-index: 1; font-size: 15px; }
.app-demo__camera span { position: relative; z-index: 1; color: rgba(255, 255, 255, .72); font-size: 7px; }
.app-demo__camera b { position: absolute; right: 13px; bottom: 13px; display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 8px; }
.app-demo__choices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.app-demo__choices article { display: flex; min-height: 96px; padding: 11px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); flex-direction: column; }
.app-demo__choices svg { width: 28px; height: 28px; padding: 7px; border-radius: 9px; color: var(--green-700); background: var(--mint); }
.app-demo__choices article:nth-child(2) svg { color: #8a5a13; background: #fff0c9; }
.app-demo__choices strong { margin-top: auto; font-size: 9px; }
.app-demo__choices span { color: var(--ink-soft); font-size: 6px; }
.app-demo__trust { display: flex; align-items: center; gap: 8px; min-height: 48px; padding-top: 12px; margin-top: 10px; border-top: 1px solid var(--line); }
.app-demo__trust svg { width: 26px; height: 26px; padding: 6px; border-radius: 8px; color: var(--green-700); background: var(--mint); }
.app-demo__trust strong { font-size: 8px; line-height: 1.35; }
.app-demo__nav { position: absolute; right: 10px; bottom: 8px; left: 10px; display: grid; height: 50px; grid-template-columns: repeat(5, 1fr); place-items: center; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 253, 248, .96); box-shadow: var(--shadow-md); }
.app-demo__nav span { display: grid; gap: 2px; place-items: center; color: var(--ink-soft); font-size: 14px; line-height: 1; }
.app-demo__nav span:first-child { width: 44px; height: 40px; border-radius: 11px; color: var(--green-950); background: var(--mint); }
.app-demo__nav small { font-size: 5px; }
.floating-ticket { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; color: var(--green-950); background: var(--paper); box-shadow: var(--shadow-md); animation: ticket-float 5.6s ease-in-out infinite; }
.floating-ticket svg { flex: 0 0 37px; width: 37px; height: 37px; padding: 8px; border-radius: 10px; color: var(--green-950); background: var(--coral); }
.floating-ticket span, .floating-ticket strong, .floating-ticket small { display: block; }
.floating-ticket strong { font-size: 12px; }
.floating-ticket small { margin-top: 1px; color: var(--ink-soft); font-size: 9px; }
.floating-ticket--top { top: 95px; left: -28px; }
.floating-ticket--bottom { right: -8px; bottom: 58px; animation-delay: -2.6s; }
.floating-ticket--bottom svg { color: var(--green-950); background: var(--sand); }
.hero-orbit { position: absolute; z-index: 0; border: 1px solid var(--line); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { top: 150px; right: -210px; width: 600px; height: 600px; animation: orbit-drift 14s ease-in-out infinite alternate; }
.hero-orbit--two { top: 270px; right: -70px; width: 300px; height: 300px; border-color: rgba(255, 128, 82, .28); }
.ingredient-belt { position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; overflow: hidden; padding: 14px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: white; background: var(--green-950); }
.ingredient-belt__track { display: flex; width: max-content; align-items: center; animation: ingredient-run 28s linear infinite; }
.ingredient-belt span { padding: 0 28px; font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; font-weight: 650; }
.ingredient-belt i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }

.promise-strip { display: grid; grid-template-columns: 1fr 1.25fr auto; align-items: center; gap: 28px; width: var(--page); padding: 34px 0; margin: 0 auto; border-bottom: 1px solid var(--line); }
.promise-strip p, .promise-strip strong { margin: 0; }
.promise-strip p { font-size: 14px; }
.promise-strip strong { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.4rem, 2.5vw, 2.05rem); line-height: 1.15; letter-spacing: -.025em; }
.promise-strip > svg { width: 42px; height: 42px; color: var(--green-700); }

.section { width: var(--page); padding: 132px 0; margin: 0 auto; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 72px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading p { max-width: 48ch; margin-bottom: 7px; font-size: 17px; }

.pass-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(350px, .72fr); gap: 82px; align-items: start; }
.pass-visual { position: sticky; top: 104px; }
.pass-window { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); background: #e2ded4; box-shadow: var(--shadow-md); }
.pass-window > img { width: 100%; aspect-ratio: 1.38 / 1; object-fit: cover; object-position: center top; }
.pass-window--current { position: relative; min-height: 520px; isolation: isolate; background: var(--green-950); }
.pass-window--current::after { position: absolute; z-index: 0; inset: 0; content: ""; background: rgba(9, 59, 48, .16); }
.pass-window--current .pass-window__scene { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.pass-window__device { position: absolute; z-index: 2; top: 26px; right: 34px; width: 205px; height: 444px; overflow: hidden; border: 6px solid var(--green-950); border-radius: 34px; background: var(--cream); box-shadow: 0 30px 70px rgba(8, 53, 43, .3); }
.pass-window__device > img { width: 100%; height: auto; aspect-ratio: auto; transform: translateY(-43px); }
.app-demo--shopping { border-radius: 27px; }
.app-demo--shopping .app-demo__header { height: 42px; padding: 7px 10px; }
.app-demo--shopping .app-demo__header img { width: 23px; height: 23px; }
.app-demo--shopping .app-demo__header strong { font-size: 13px; }
.app-demo--shopping .app-demo__content { padding: 18px 12px; }
.app-demo--shopping .app-demo__content h3 { font-size: 20px; }
.app-demo--shopping .app-demo__content > p { margin: 7px 0 12px; font-size: 7px; }
.shopping-demo__voice { display: grid; min-height: 66px; place-items: center; padding: 9px; border: 1px solid rgba(24, 113, 92, .2); border-radius: 12px; background: var(--mint); text-align: center; }
.shopping-demo__voice svg { width: 29px; height: 29px; padding: 7px; border-radius: 9px; color: white; background: var(--green-700); }
.shopping-demo__voice strong { font-size: 8px; }
.app-demo--shopping label { display: block; margin: 12px 0 5px; font-size: 7px; font-weight: 850; }
.shopping-demo__input { min-height: 57px; padding: 9px; border: 1px solid var(--line); border-radius: 10px; color: var(--green-950); background: var(--paper); font-size: 8px; line-height: 1.45; }
.shopping-demo__fit { display: flex; align-items: center; gap: 8px; min-height: 46px; padding: 8px; margin-top: 9px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 253, 248, .86); }
.shopping-demo__fit svg { width: 29px; height: 29px; padding: 7px; border-radius: 8px; color: white; background: var(--green-700); }
.shopping-demo__fit strong, .shopping-demo__fit small { display: block; }
.shopping-demo__fit strong { font-size: 8px; }
.shopping-demo__fit small { color: var(--ink-soft); font-size: 6px; }
.app-demo--shopping button { display: flex; width: 100%; min-height: 39px; align-items: center; justify-content: center; gap: 6px; padding: 8px; margin-top: 9px; border: 0; border-radius: 10px; color: white; background: var(--green-900); font: 800 8px "Manrope", sans-serif; }
.app-demo--shopping button svg { width: 14px; height: 14px; }
.pass-window__badge { position: absolute; z-index: 3; bottom: 27px; left: 27px; display: inline-flex; align-items: center; gap: 9px; padding: 11px 14px; border-radius: 12px; color: var(--green-950); background: var(--coral); box-shadow: var(--shadow-md); font-size: 10px; font-weight: 850; }
.pass-window__badge svg { width: 18px; height: 18px; }
.pass-caption { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 16px 2px; border-bottom: 1px solid var(--line); }
.pass-caption span { color: var(--coral-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pass-caption strong { max-width: 330px; font-size: 13px; text-align: right; }
.pass-list { position: relative; padding: 0; margin: 0; list-style: none; }
.pass-list::before { position: absolute; top: 34px; bottom: 40px; left: 25px; width: 1px; content: ""; background: var(--line); }
.pass-step { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 24px; min-height: 190px; }
.pass-step__marker { z-index: 1; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--green-700); background: var(--paper); box-shadow: var(--shadow-sm); transition: color .35s ease, background-color .35s ease, transform .45s var(--ease-snap); }
.pass-step__marker svg { width: 21px; }
.pass-step.is-inview .pass-step__marker { color: white; background: var(--green-800); transform: rotate(-4deg) scale(1.06); }
.pass-step h3 { margin: 4px 0 10px; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.pass-step p { max-width: 47ch; margin: 0; font-size: 14px; }

.mode-showcase { padding-top: 98px; }
.mode-stage { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.mode-card { position: relative; overflow: hidden; min-height: 520px; padding: 48px; border-radius: var(--radius-card); }
.mode-card--inventory { color: white; background: var(--green-900); box-shadow: var(--shadow-lg); }
.mode-card--shopping { border: 1px solid rgba(159, 56, 29, .13); background: var(--coral-soft); box-shadow: var(--shadow-md); }
.mode-card__number { position: absolute; top: 20px; right: 27px; color: rgba(255,255,255,.1); font-family: "Bricolage Grotesque", sans-serif; font-size: 78px; font-weight: 800; line-height: 1; }
.mode-card--shopping .mode-card__number { color: rgba(159,56,29,.1); }
.mode-card__label { display: inline-block; padding-bottom: 7px; border-bottom: 2px solid var(--coral); color: var(--coral); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.mode-card--shopping .mode-card__label { color: var(--coral-dark); border-bottom-color: var(--coral-dark); }
.mode-card h3 { max-width: 13ch; margin: 60px 0 18px; font-size: clamp(2.25rem, 4vw, 3.75rem); line-height: .98; }
.mode-card--inventory h3 { color: white; }
.mode-card p { max-width: 53ch; font-size: 14px; }
.mode-card--inventory p { color: #bed1cb; }
.mode-card ul { padding: 0; margin: 31px 0 34px; list-style: none; }
.mode-card li { display: flex; align-items: flex-start; gap: 9px; padding: 9px 0; border-top: 1px solid currentColor; font-size: 12px; opacity: .88; }
.mode-card li svg { flex: 0 0 17px; width: 17px; height: 17px; color: var(--coral); }
.mode-card > a { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; text-decoration-thickness: 1px; }
.mode-card > a svg { width: 17px; transition: transform .25s var(--ease-snap); }
.mode-card > a:hover svg { transform: translateX(4px); }
.mode-stage__bridge { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 82px; height: 82px; place-items: center; border: 8px solid var(--cream); border-radius: 50%; color: var(--green-950); background: var(--coral); box-shadow: var(--shadow-md); transform: translate(-50%, -50%) rotate(-5deg); }
.mode-stage__bridge svg { width: 25px; }
.mode-stage__bridge span { position: absolute; bottom: -22px; padding: 2px 6px; color: var(--green-950); background: var(--cream); font-size: 8px; font-weight: 850; text-transform: uppercase; }
.conversion-note { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 32px; padding: 25px 28px; margin-top: 17px; border: 1px solid var(--line); border-radius: var(--radius-control); background: var(--paper); }
.conversion-note > div strong, .conversion-note > div span { display: block; }
.conversion-note > div strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; }
.conversion-note > div span { margin-top: 2px; color: var(--ink-soft); font-size: 11px; }
.conversion-note__price { color: var(--green-900); font-family: "Bricolage Grotesque", sans-serif; font-size: 32px; font-weight: 800; line-height: .9; white-space: nowrap; }
.conversion-note__price small { display: block; margin-top: 8px; color: var(--ink-soft); font-family: "Manrope", sans-serif; font-size: 8px; font-weight: 700; text-align: right; text-transform: uppercase; }

.selection { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 84px; align-items: center; width: 100%; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); color: white; background: var(--green-950); }
.selection::before { position: absolute; top: 0; right: 0; width: 17%; height: 7px; content: ""; background: var(--coral); }
.selection-copy h2 { margin-bottom: 28px; color: white; font-size: clamp(2.8rem, 5.3vw, 5rem); }
.selection-copy > p { color: #b9cec7; font-size: 17px; }
.check-list { padding: 0; margin: 38px 0 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 13px; padding: 15px 0; border-top: 1px solid var(--line-light); color: #c9d9d4; font-size: 13px; }
.check-list li:last-child { border-bottom: 1px solid var(--line-light); }
.check-list svg { width: 21px; height: 21px; color: var(--coral); }
.check-list strong { color: white; }
.selection-browser { position: relative; overflow: hidden; border-radius: var(--radius-card); background: #e2ded4; box-shadow: 0 40px 90px -50px #000; transition: transform .7s var(--ease-out); }
.selection-browser:hover { transform: translateY(-3px); }
.browser-crop { height: 520px; overflow: hidden; background: var(--cream); }
.browser-crop img { width: 213%; max-width: none; height: auto; transform: translate(-26.6%, -11.1%); }
.proposal-showcase { position: relative; isolation: isolate; background: var(--green-950); }
.proposal-showcase::after { position: absolute; z-index: -1; inset: 0; content: ""; background: rgba(5, 54, 43, .34); }
.proposal-showcase .proposal-showcase__image { position: absolute; z-index: -2; inset: 0; width: 100%; max-width: none; height: 100%; object-fit: cover; transform: none; }
.proposal-stack { position: absolute; inset: 34px 34px 78px; display: grid; align-content: center; gap: 12px; }
.proposal-card { display: grid; gap: 6px; padding: 18px 20px; border: 1px solid rgba(255, 255, 255, .56); border-radius: 15px; color: var(--green-950); background: rgba(255, 253, 248, .93); box-shadow: 0 16px 44px rgba(8, 53, 43, .14); backdrop-filter: blur(10px); }
.proposal-card span { color: var(--coral-text); font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.proposal-card strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 19px; line-height: 1.1; }
.proposal-card small { color: var(--ink-soft); font-size: 9px; }
.proposal-card--active { border: 2px solid var(--green-700); background: rgba(242, 250, 245, .97); transform: translateX(-12px); }
.selection-callout { position: absolute; right: 22px; bottom: 20px; display: flex; align-items: center; gap: 10px; max-width: 280px; padding: 12px 14px; border-radius: 12px; color: var(--green-950); background: var(--paper); box-shadow: var(--shadow-md); font-size: 11px; font-weight: 750; }
.selection-callout svg { flex: 0 0 28px; width: 28px; color: var(--coral); }

.feature-ledger { padding-bottom: 78px; }
.feature-ledger__heading { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; gap: 70px; margin-bottom: 64px; }
.feature-ledger__heading > span { padding-top: 10px; color: var(--coral-text); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.feature-ledger__heading h2 { margin: 0; font-size: clamp(2.75rem, 5.2vw, 5.2rem); }
.feature-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.feature-block { grid-column: span 5; min-height: 360px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--paper); }
.feature-block--wide { grid-column: span 7; }
.feature-block--mint { border: 0; background: var(--mint); }
.feature-block--coral { grid-column: span 4; border: 0; background: var(--coral-soft); }
.feature-block--dark { grid-column: span 8; border: 0; color: white; background: var(--green-950); }
.feature-block--library { display: grid; grid-column: 1 / -1; grid-template-columns: .78fr 1.22fr; align-items: stretch; gap: 45px; min-height: 390px; padding: 28px; background: var(--paper); }
.feature-block--library .feature-block__copy { padding: 18px 0 18px 18px; }
.feature-block--library .feature-block__copy h3 { margin-top: 50px; }
.feature-block__index { color: var(--coral-text); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.feature-block--dark .feature-block__index { color: var(--coral); }
.feature-block h3 { max-width: 16ch; margin: 64px 0 14px; font-size: clamp(2rem, 3.3vw, 3.3rem); }
.feature-block--dark h3 { color: white; }
.feature-block p { max-width: 58ch; margin-bottom: 0; font-size: 14px; }
.feature-block--dark p { color: #bdd0ca; }
.stock-demo { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 12px; padding: 13px 15px; margin-top: 35px; border: 1px solid var(--line); border-radius: 11px; background: var(--cream); font-size: 10px; }
.stock-demo strong { font-variant-numeric: tabular-nums; }
.stock-demo i { color: var(--coral-dark); font-style: normal; }
.stock-demo b { padding: 6px 8px; border-radius: 7px; color: var(--green-800); background: var(--mint); }
.level-switch { display: flex; gap: 5px; margin-top: 35px; padding: 5px; border: 1px solid rgba(8,47,40,.12); border-radius: 11px; background: rgba(255,255,255,.48); }
.level-switch span { flex: 1; padding: 8px 5px; border-radius: 7px; color: var(--ink-soft); font-size: 8px; font-weight: 750; text-align: center; }
.level-switch .active { color: white; background: var(--green-800); }
.memory-toggle { display: flex; align-items: center; gap: 11px; margin-top: 34px; }
.memory-toggle > span { font-size: 11px; font-weight: 750; }
.memory-toggle i { position: relative; width: 44px; height: 24px; border-radius: 20px; background: var(--green-700); }
.memory-toggle i::after { position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; border-radius: 50%; content: ""; background: white; }
.memory-toggle strong { color: var(--coral); font-size: 9px; }
.library-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.library-chips span { padding: 8px 12px; border-radius: 99px; font-size: 9px; font-weight: 800; }
.library-chips span:first-child { color: white; background: var(--green-800); }
.library-chips .breakfast { color: #8a5a13; background: #fff0c9; }
.library-chips .lunch { color: #9b452d; background: #fde3d8; }
.library-chips .dinner { color: #405f86; background: #e3edf8; }
.library-chips .dessert { color: #844c70; background: #f6e1ef; }
.library-visual { position: relative; overflow: hidden; min-height: 330px; border-radius: 17px; background: var(--cream); }
.library-visual::after { position: absolute; inset: 0; content: ""; background: rgba(255, 249, 238, .08); pointer-events: none; }
.library-visual img { width: 100%; height: 100%; object-fit: cover; }
.library-visual__search { position: absolute; z-index: 2; top: 22px; right: 22px; left: 22px; padding: 13px 16px; border: 1px solid rgba(13, 68, 56, .15); border-radius: 12px; color: var(--ink-soft); background: rgba(255, 253, 248, .94); box-shadow: var(--shadow-sm); font-size: 10px; }
.library-visual__tags { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; display: flex; justify-content: center; gap: 7px; padding: 8px; border-radius: 99px; background: rgba(255, 253, 248, .92); box-shadow: var(--shadow-sm); }
.library-visual__tags span { padding: 7px 10px; border-radius: 99px; font-size: 8px; font-weight: 850; }
.library-visual__tags span:nth-child(1) { color: #8a5a13; background: #fff0c9; }
.library-visual__tags span:nth-child(2) { color: #9b452d; background: #fde3d8; }
.library-visual__tags span:nth-child(3) { color: #405f86; background: #e3edf8; }

.recipe-proof { width: min(1050px, calc(100vw - 48px)); }
.recipe-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 60px; margin-bottom: 62px; }
.recipe-heading h2 { margin: 0; }
.recipe-heading p { margin: 0 0 7px; font-size: 16px; }
.recipe-sheet { overflow: hidden; border-radius: var(--radius-card); color: white; background: var(--green-900); box-shadow: var(--shadow-lg); }
.recipe-sheet__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px 42px; border-bottom: 1px solid var(--line-light); }
.recipe-sheet__top span { color: #a9c5bc; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.recipe-sheet__top h3 { margin: 7px 0 0; font-size: clamp(2rem, 4vw, 3.45rem); }
.recipe-sheet__top small { display: block; margin-top: 10px; color: #bfd0cb; font-size: 9px; }
.meal-demo-label { padding: 3px 7px; border-radius: 99px; color: #8a5a13; background: #fff0c9; font-weight: 850; }
.favorite-demo { display: grid; width: 54px; height: 54px; flex: 0 0 54px; padding: 0; place-items: center; border: 1px solid var(--line-light); border-radius: 14px; color: white; background: transparent; cursor: pointer; transition: color .25s ease, background-color .25s ease, transform .35s var(--ease-snap); }
.favorite-demo:hover, .favorite-demo[aria-pressed="true"] { color: var(--coral); background: rgba(255, 128, 82, .1); transform: scale(1.06) rotate(-4deg); }
.favorite-demo[aria-pressed="true"] svg { fill: currentColor; }
.recipe-sheet__body { display: grid; grid-template-columns: 1.25fr .75fr; }
.recipe-steps { padding: 24px 42px 36px; }
.recipe-steps article { display: grid; grid-template-columns: 37px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid var(--line-light); }
.recipe-steps article:last-child { border-bottom: 0; }
.recipe-steps article > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line-light); border-radius: 10px; color: var(--coral); font-size: 12px; font-weight: 800; }
.recipe-steps p { margin: 3px 0 0; color: #d4e0dc; font-size: 14px; }
.macro-panel { display: grid; grid-template-columns: 1fr 1fr; align-content: center; padding: 28px; color: var(--green-950); background: var(--sand); }
.macro-panel > div { padding: 21px; border-right: 1px solid rgba(8, 47, 40, .14); border-bottom: 1px solid rgba(8, 47, 40, .14); }
.macro-panel > div:nth-child(2n) { border-right: 0; }
.macro-panel > div:nth-child(n+3) { border-bottom: 0; }
.macro-panel span, .macro-panel strong, .macro-panel small { display: block; }
.macro-panel span { color: var(--ink-soft); font-size: 10px; font-weight: 700; }
.macro-panel strong { margin-top: 2px; font-family: "Bricolage Grotesque", sans-serif; font-size: 32px; line-height: 1; }
.macro-panel small { margin-top: 3px; color: var(--green-700); font-size: 10px; }
.macro-panel p { grid-column: 1 / -1; margin: 18px 4px 0; font-size: 9px; }

.personalization { padding-top: 40px; }
.personalization-title { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.personalization-title h2, .personalization-title p { margin-bottom: 0; }
.personalization-title p { font-size: 16px; }
.preference-comparison { position: relative; display: grid; grid-template-columns: 1fr 86px 1fr; align-items: stretch; }
.preference-column { min-height: 410px; padding: 44px; border-radius: var(--radius-card); }
.preference-column h3 { margin: 28px 0 12px; font-size: clamp(2rem, 3.5vw, 3.2rem); }
.preference-column p { max-width: 43ch; }
.preference-column--dark { color: white; background: var(--green-900); }
.preference-column--dark p { color: #bfd0cb; }
.preference-column--light { border: 1px solid var(--line); background: var(--paper); }
.preference-label { color: var(--coral-text); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.preference-column--dark .preference-label { color: var(--coral); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag-cloud span { padding: 8px 11px; border: 1px solid currentColor; border-radius: 99px; font-size: 11px; font-weight: 700; opacity: .82; }
.preference-connector { z-index: 2; display: grid; width: 70px; height: 70px; margin: auto -35px; place-items: center; border: 8px solid var(--cream); border-radius: 50%; color: var(--green-950); background: var(--coral); box-shadow: var(--shadow-md); }
.preference-connector svg { width: 27px; }
.privacy-note { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 15px; max-width: 760px; padding: 24px 0; margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.privacy-note svg { width: 30px; color: var(--green-700); }
.privacy-note p { margin: 0; font-size: 12px; }
.privacy-note strong { color: var(--green-950); }

.pricing { padding-top: 78px; }
.pricing-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.pricing-heading > div:first-child > span { display: block; margin-bottom: 13px; color: var(--coral-text); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pricing-heading h2 { margin: 0; }
.billing-toggle { display: flex; flex: 0 0 auto; gap: 4px; padding: 5px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.billing-toggle button { min-height: 40px; padding: 8px 13px; border: 0; border-radius: 8px; color: var(--ink-soft); background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; }
.billing-toggle button small { display: block; font-size: 7px; font-weight: 700; }
.billing-toggle button.active { color: white; background: var(--green-900); }
.trial-pass { display: grid; grid-template-columns: 66px minmax(220px, .8fr) minmax(290px, 1fr) auto; align-items: center; gap: 25px; padding: 25px; margin-bottom: 16px; border-radius: var(--radius-card); color: white; background: var(--green-950); box-shadow: var(--shadow-lg); }
.trial-pass__mark { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 16px; color: var(--green-950); background: var(--coral); }
.trial-pass__mark svg { width: 28px; }
.trial-pass span { color: var(--coral); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.trial-pass h3 { margin: 3px 0 5px; color: white; font-size: 25px; }
.trial-pass p { margin: 0; color: #bdd0ca; font-size: 10px; }
.trial-pass ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 15px; padding: 0; margin: 0; list-style: none; }
.trial-pass li { position: relative; padding-left: 13px; color: #d8e5e1; font-size: 9px; }
.trial-pass li::before { position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; content: ""; background: var(--coral); }
.trial-pass__buy { min-width: 145px; text-align: right; }
.trial-pass__buy strong, .trial-pass__buy small { display: block; }
.trial-pass__buy strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 28px; }
.trial-pass__buy small { margin: 0 0 9px; color: #bdd0ca; font-size: 7px; }
.trial-pass__buy .button { min-height: 40px; padding: 9px 12px; color: var(--green-950); background: var(--coral); font-size: 10px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.price-card { position: relative; display: flex; min-height: 510px; padding: 33px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--paper); flex-direction: column; }
.price-card--featured { border: 2px solid var(--green-800); background: #f0f7f3; box-shadow: var(--shadow-md); }
.price-card__flag { position: absolute; top: 14px; right: 18px; padding: 7px 10px; border-radius: 99px; color: white; background: var(--green-800); font-size: 7px; font-weight: 850; line-height: 1; }
.price-card__name { color: var(--coral-text); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { display: flex; align-items: flex-end; gap: 7px; min-height: 64px; margin: 29px 0 15px; }
.price-card h3 strong { font-size: 39px; line-height: 1; font-variant-numeric: tabular-nums; }
.price-card h3 small { padding-bottom: 4px; color: var(--ink-soft); font-family: "Manrope", sans-serif; font-size: 9px; }
.price-card > p { min-height: 52px; margin-bottom: 20px; font-size: 11px; }
.price-card ul { padding: 18px 0 0; margin: 0 0 24px; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding: 7px 0 7px 18px; color: var(--ink-soft); font-size: 10px; }
.price-card li::before { position: absolute; top: 13px; left: 2px; width: 6px; height: 6px; border-radius: 50%; content: ""; background: var(--green-700); }
.price-card > a { display: inline-flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; margin-top: auto; border-top: 1px solid var(--line); color: var(--green-900); font-size: 11px; font-weight: 850; }
.price-card > a svg { width: 17px; transition: transform .25s var(--ease-snap); }
.price-card > a:hover svg { transform: translateX(4px); }
.yearly-saving { min-height: 16px; margin-top: 8px; color: var(--coral-text); font-size: 8px; font-weight: 800; }
.pricing-note { display: flex; align-items: flex-start; gap: 11px; max-width: 800px; margin: 23px auto 0; font-size: 10px; }
.pricing-note svg { flex: 0 0 20px; width: 20px; color: var(--green-700); }

.install { width: 100%; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); background: var(--coral-soft); }
.install-intro { display: grid; grid-template-columns: 1.22fr .78fr; align-items: end; gap: 70px; max-width: 1180px; margin: 0 auto 64px; }
.install-intro h2, .install-intro p { margin-bottom: 0; }
.install-intro p { color: #684c42; font-size: 16px; }
.install-shell { max-width: 1180px; min-height: 590px; margin: 0 auto; overflow: hidden; border: 1px solid rgba(126, 63, 39, .15); border-radius: var(--radius-card); background: var(--paper); box-shadow: var(--shadow-md); }
.install-tabs { display: grid; grid-template-columns: repeat(3, 1fr); padding: 10px; border-bottom: 1px solid var(--line); background: #f8f3e9; }
.install-tabs button { min-height: 48px; border: 0; border-radius: 10px; color: var(--ink-soft); background: transparent; font-weight: 750; cursor: pointer; transition: color .25s ease, background-color .25s ease, transform .3s var(--ease-snap); }
.install-tabs button:hover { color: var(--green-950); }
.install-tabs button[aria-selected="true"] { color: white; background: var(--green-900); box-shadow: var(--shadow-sm); }
.install-panel { display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; align-items: center; min-height: 510px; padding: 54px 64px; }
.install-panel.is-active { animation: panel-arrive .5s var(--ease-out) both; }
.install-device { position: relative; display: flex; width: 250px; height: 350px; align-items: center; justify-content: center; margin: auto; border: 8px solid var(--green-950); color: var(--green-950); background: var(--mint); box-shadow: var(--shadow-lg); flex-direction: column; }
.install-device--ios { border-radius: 46px; }
.install-device--android { border-radius: 25px; }
.install-device--desktop { width: 320px; height: 230px; border-width: 7px; border-radius: 14px; }
.install-device--desktop::after { position: absolute; bottom: -39px; width: 110px; height: 38px; content: ""; background: var(--green-950); clip-path: polygon(38% 0, 62% 0, 68% 76%, 100% 76%, 100% 100%, 0 100%, 0 76%, 32% 76%); }
.install-device img { width: 76px; height: 76px; margin-bottom: 19px; border-radius: 20px; box-shadow: var(--shadow-sm); }
.install-device strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 27px; }
.install-device small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; }
.device-status { position: absolute; top: 18px; padding: 4px 9px; border-radius: 99px; color: white; background: var(--green-700); font-size: 9px; font-weight: 800; }
.install-panel ol { padding: 0; margin: 0; list-style: none; }
.install-panel li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.install-panel li:last-child { border-bottom: 0; }
.install-panel li > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; color: var(--green-950); background: var(--coral); font-size: 11px; font-weight: 800; }
.install-panel strong { display: block; margin-bottom: 3px; font-size: 14px; }
.install-panel p { max-width: 58ch; margin: 0; font-size: 13px; }
.install-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1180px; padding: 24px 0 0; margin: 0 auto; }
.install-cta > div { display: flex; align-items: center; gap: 13px; }
.install-cta > div > svg { width: 34px; height: 34px; color: var(--coral-dark); }
.install-cta span, .install-cta strong, .install-cta small { display: block; }
.install-cta strong { font-size: 13px; }
.install-cta small { color: #76574b; font-size: 10px; }
.button--light { color: var(--green-950); background: var(--paper); }
.button--light:hover { color: white; background: var(--green-800); }

.android-launch { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; overflow: hidden; width: min(1180px, calc(100vw - 48px)); padding: 80px; color: white; background: var(--green-900); border-radius: var(--radius-card); box-shadow: var(--shadow-lg); }
.android-launch::after { position: absolute; right: -140px; bottom: -190px; width: 430px; height: 430px; border: 80px solid rgba(255, 255, 255, .045); border-radius: 50%; content: ""; }
.android-launch__signal { position: absolute; top: 32px; right: 36px; display: flex; align-items: flex-end; gap: 6px; height: 28px; }
.android-launch__signal span { display: block; width: 7px; border-radius: 6px; background: var(--coral); animation: signal 1.5s ease-in-out infinite alternate; }
.android-launch__signal span:nth-child(1) { height: 9px; }
.android-launch__signal span:nth-child(2) { height: 17px; animation-delay: -.4s; }
.android-launch__signal span:nth-child(3) { height: 27px; animation-delay: -.8s; }
.android-launch > div > p { margin-bottom: 10px; color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.android-launch h2 { margin: 0; color: white; font-size: clamp(2.6rem, 5vw, 4.6rem); }
.android-launch__copy { align-self: end; }
.android-launch__copy p { max-width: 54ch; color: #bfd0cb; font-size: 15px; }
.android-launch__copy a { display: inline-flex; align-items: center; gap: 9px; margin-top: 12px; color: white; font-weight: 760; }
.android-launch__copy a svg { width: 18px; }

.faq { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; }
.faq-heading { position: sticky; top: 110px; align-self: start; }
.faq-heading h2 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
.faq-heading p { max-width: 38ch; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 4px; font-family: "Bricolage Grotesque", sans-serif; font-size: 19px; font-weight: 700; line-height: 1.25; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 10px; left: 3px; width: 16px; height: 2px; content: ""; background: var(--coral); transition: transform .3s var(--ease-snap); }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 68ch; padding: 0 50px 25px 4px; margin: 0; font-size: 14px; }

.final-cta { position: relative; overflow: hidden; width: min(1180px, calc(100vw - 48px)); padding: 104px 80px; color: white; background: var(--green-950); border-radius: var(--radius-card); text-align: center; box-shadow: var(--shadow-lg); }
.final-cta__mark { display: grid; width: 72px; height: 72px; margin: 0 auto 30px; place-items: center; border-radius: 20px; background: var(--paper); transform: rotate(-4deg); }
.final-cta__mark img { width: 54px; height: 54px; }
.final-cta h2 { position: relative; z-index: 2; margin-bottom: 26px; color: white; font-size: clamp(3.2rem, 7vw, 6rem); }
.final-cta > p { position: relative; z-index: 2; max-width: 640px; margin: 0 auto 34px; color: #bfd0cb; font-size: 16px; }
.final-cta__eyebrow { position: relative; z-index: 2; display: block; margin-bottom: 15px; color: var(--coral); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.button--coral { position: relative; z-index: 2; color: var(--green-950); background: var(--coral); }
.button--coral:hover { color: white; background: var(--coral-dark); }
.final-cta__ingredients span { position: absolute; z-index: 0; color: rgba(255, 255, 255, .055); font-family: "Bricolage Grotesque", sans-serif; font-size: 66px; font-weight: 800; }
.final-cta__ingredients span:nth-child(1) { top: 44px; left: -22px; transform: rotate(-12deg); }
.final-cta__ingredients span:nth-child(2) { top: 70px; right: 28px; transform: rotate(9deg); }
.final-cta__ingredients span:nth-child(3) { bottom: 20px; left: 80px; transform: rotate(5deg); }
.final-cta__ingredients span:nth-child(4) { right: -15px; bottom: 18px; transform: rotate(-8deg); }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 50px; width: var(--page); padding: 54px 0 45px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 12px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; }
.footer-brand span { color: var(--ink-soft); font-size: 10px; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.site-footer > p { margin: 0; font-size: 11px; }

.motion-ready .reveal { opacity: 0; clip-path: inset(0 0 12% 0); transform: translateY(36px); transition: opacity .8s var(--ease-out), clip-path .9s var(--ease-out), transform .9s var(--ease-out); }
.motion-ready .reveal.is-inview { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
.motion-ready .selection-browser.reveal { clip-path: inset(0 6% 0 0 round 16px); transform: translateX(56px); }
.motion-ready .selection-browser.reveal.is-inview { clip-path: inset(0 0 0 0 round 16px); transform: translateX(0); }
.motion-ready .recipe-sheet.reveal { clip-path: inset(4% 3% 4% 3% round 16px); transform: scale(.965); }
.motion-ready .recipe-sheet.reveal.is-inview { clip-path: inset(0 0 0 0 round 16px); transform: scale(1); }
.motion-ready .pass-visual.reveal { clip-path: inset(0 14% 0 0 round 16px); transform: translateX(-42px); }
.motion-ready .pass-visual.reveal.is-inview { clip-path: inset(0 0 0 0 round 16px); transform: translateX(0); }
.motion-ready .final-cta.reveal { clip-path: inset(7% 5% 7% 5% round 16px); transform: scale(.975); }
.motion-ready .final-cta.reveal.is-inview { clip-path: inset(0 0 0 0 round 16px); transform: scale(1); }

@keyframes ingredient-run { to { transform: translateX(-50%); } }
@keyframes ticket-float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes orbit-drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-28px, 16px, 0) scale(1.06); } }
@keyframes panel-arrive { from { opacity: .5; filter: blur(8px); transform: translateY(16px); } to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes signal { from { opacity: .45; transform: scaleY(.7); } to { opacity: 1; transform: scaleY(1); } }
@keyframes page-progress { to { transform: scaleX(1); } }

@supports (animation-timeline: scroll()) {
  .header-progress span {
    animation: page-progress linear both;
    animation-timeline: scroll(root);
  }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 390px; }
  .hero h1 { font-size: clamp(4.2rem, 8vw, 6.2rem); }
  .hero-product { width: 390px; transform: scale(.9); transform-origin: right center; }
  .pass-layout { gap: 50px; }
  .selection { gap: 50px; }
  .browser-crop { height: 470px; }
  .install-panel { gap: 40px; padding: 50px 40px; }
  .install-device { transform: scale(.9); }
  .android-launch { padding: 65px; gap: 60px; }
}

@media (max-width: 860px) {
  :root { --page: min(100% - 36px, 720px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 66px; padding: 9px 18px; }
  .desktop-nav, .header-actions > .button { display: none; }
  .menu-button { display: grid; }
  .brand { font-size: 22px; }
  .brand img { width: 36px; height: 36px; }
  .hero { display: block; min-height: auto; padding: 112px 18px 88px; }
  .hero-copy { max-width: 700px; margin: 0 auto; }
  .hero h1 { font-size: clamp(4.1rem, 15vw, 7rem); }
  .hero-copy > p { max-width: 600px; }
  .hero-product { width: 430px; height: 650px; margin: 65px auto 0; justify-self: center; transform: none; }
  .hero-atmosphere { right: 50%; width: 660px; opacity: 1; transform: translateX(50%); }
  .phone--hero { right: 50%; transform: translateX(50%); }
  .phone-halo { left: 50%; transform: translateX(-50%) rotate(-8deg); }
  .floating-ticket--top { left: -12px; }
  .floating-ticket--bottom { right: -8px; }
  .hero-orbit--one { top: 55%; right: -280px; }
  .hero-orbit--two { top: 64%; }
  .promise-strip { grid-template-columns: 1fr auto; }
  .promise-strip p { grid-column: 1 / -1; }
  .section { padding: 96px 0; }
  .section-heading, .recipe-heading, .personalization-title, .install-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .pass-layout { grid-template-columns: 1fr; }
  .mode-stage { grid-template-columns: 1fr; }
  .mode-stage__bridge { top: 50%; transform: translate(-50%, -50%) rotate(90deg); }
  .conversion-note { grid-template-columns: 1fr auto; }
  .conversion-note .button { grid-column: 1 / -1; }
  .feature-ledger__heading { grid-template-columns: 1fr; gap: 20px; }
  .feature-block, .feature-block--wide, .feature-block--coral, .feature-block--dark { grid-column: span 6; }
  .feature-block--library { grid-column: 1 / -1; }
  .feature-block--library { grid-template-columns: 1fr; gap: 26px; }
  .feature-block--library .feature-block__copy { padding: 18px 18px 0; }
  .library-visual { min-height: 390px; }
  .pricing-heading { align-items: flex-start; flex-direction: column; }
  .trial-pass { grid-template-columns: 58px 1fr auto; }
  .trial-pass ul { grid-column: 2 / -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .pass-visual { position: static; }
  .pass-list { max-width: 620px; }
  .selection { grid-template-columns: 1fr; padding: 96px 18px; }
  .selection-copy { max-width: 640px; }
  .recipe-sheet__body { grid-template-columns: 1fr; }
  .preference-comparison { grid-template-columns: 1fr; gap: 0; }
  .preference-connector { width: 60px; height: 60px; margin: -30px auto; border-width: 7px; transform: rotate(90deg); }
  .preference-column { min-height: 360px; }
  .install { padding: 96px 18px; }
  .install-panel { grid-template-columns: 1fr; gap: 55px; }
  .install-device { margin-top: 10px; }
  .install-cta { align-items: flex-start; flex-direction: column; }
  .android-launch { grid-template-columns: 1fr; gap: 35px; padding: 64px 45px; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .faq-heading { position: static; }
  .site-footer { grid-template-columns: 1fr; gap: 25px; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 28px); }
  body { font-size: 15px; }
  h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .hero { padding-right: 14px; padding-left: 14px; }
  .hero h1 { margin-top: 24px; font-size: clamp(3.55rem, 17.4vw, 5.2rem); line-height: .88; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button--hero { width: 100%; }
  .text-link { align-self: center; }
  .hero-proof { display: grid; grid-template-columns: 1fr; }
  .hero-product { width: min(100%, 390px); height: 590px; margin-top: 50px; }
  .phone--hero { width: 286px; height: 584px; border-width: 7px; border-radius: 45px; }
  .phone-screen { border-radius: 37px; }
  .phone-halo { top: 90px; width: 380px; height: 330px; }
  .floating-ticket { min-width: 158px; padding: 10px 11px; }
  .floating-ticket svg { flex-basis: 32px; width: 32px; height: 32px; }
  .floating-ticket--top { top: 90px; left: 0; }
  .floating-ticket--bottom { right: 0; bottom: 65px; }
  .ingredient-belt span { padding: 0 18px; font-size: 15px; }
  .promise-strip { gap: 18px; padding: 28px 0; }
  .promise-strip strong { font-size: 22px; }
  .promise-strip > svg { width: 34px; }
  .section { padding: 78px 0; }
  .mode-card { min-height: 0; padding: 34px 24px 40px; }
  .mode-card h3 { margin-top: 50px; font-size: clamp(2.3rem, 12vw, 3.3rem); }
  .mode-stage__bridge { width: 66px; height: 66px; border-width: 6px; }
  .conversion-note { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .conversion-note__price small { text-align: left; }
  .conversion-note .button { grid-column: auto; width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-block, .feature-block--wide, .feature-block--coral, .feature-block--dark, .feature-block--library { grid-column: 1; min-height: 0; padding: 29px 23px 34px; }
  .feature-block h3 { margin-top: 43px; }
  .stock-demo { grid-template-columns: 1fr auto; }
  .stock-demo i, .stock-demo b { text-align: right; }
  .pricing-heading { gap: 25px; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; }
  .trial-pass { grid-template-columns: 48px 1fr; padding: 22px; }
  .trial-pass__mark { width: 46px; height: 46px; }
  .trial-pass ul, .trial-pass__buy { grid-column: 1 / -1; }
  .trial-pass__buy { text-align: left; }
  .trial-pass__buy .button { width: 100%; }
  .price-card { padding: 28px 24px; }
  .section-heading p { font-size: 15px; }
  .pass-window > img { aspect-ratio: .86 / 1; object-position: center top; }
  .pass-window--current { min-height: 490px; }
  .pass-window--current .pass-window__scene { height: 100%; aspect-ratio: auto; object-position: 44% center; }
  .pass-window__device { top: 24px; right: 22px; width: 200px; height: 432px; }
  .pass-window__device > img { aspect-ratio: auto; transform: translateY(-41px); }
  .pass-window__badge { bottom: 22px; left: 22px; }
  .pass-caption { align-items: flex-start; flex-direction: column; gap: 7px; }
  .pass-caption strong { text-align: left; }
  .pass-step { grid-template-columns: 45px 1fr; gap: 15px; min-height: 180px; }
  .pass-list::before { left: 22px; }
  .pass-step__marker { width: 45px; height: 45px; border-radius: 12px; }
  .selection { padding: 78px 14px; }
  .selection-copy h2 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  .selection-copy > p { font-size: 15px; }
  .browser-crop { height: 360px; }
  .proposal-stack { inset: 20px 20px 68px; gap: 9px; }
  .proposal-card { padding: 13px 15px; }
  .proposal-card strong { font-size: 16px; }
  .proposal-card--active { transform: translateX(-6px); }
  .selection-callout { right: 12px; bottom: 12px; left: 12px; max-width: none; }
  .feature-block--library { padding: 18px; }
  .feature-block--library .feature-block__copy { padding: 11px 5px 0; }
  .feature-block--library .feature-block__copy h3 { margin-top: 43px; }
  .library-visual { min-height: 290px; }
  .library-visual__search { top: 14px; right: 14px; left: 14px; }
  .library-visual__tags { right: 14px; bottom: 14px; left: 14px; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .library-visual__tags::-webkit-scrollbar { display: none; }
  .recipe-proof { width: var(--page); }
  .recipe-sheet__top { padding: 28px 22px; }
  .recipe-sheet__top h3 { font-size: 28px; }
  .favorite-demo { width: 46px; height: 46px; flex-basis: 46px; }
  .recipe-steps { padding: 18px 22px 28px; }
  .macro-panel { padding: 20px; }
  .macro-panel > div { padding: 17px; }
  .preference-column { min-height: 0; padding: 32px 24px 52px; }
  .preference-column--light { padding-top: 60px; }
  .privacy-note { grid-template-columns: 32px 1fr; }
  .install { padding: 78px 14px; }
  .install-tabs { overflow-x: auto; }
  .install-tabs button { min-width: 92px; }
  .install-panel { min-height: 0; padding: 38px 20px; }
  .install-device { width: 215px; height: 305px; }
  .install-device--desktop { width: 250px; height: 180px; margin-bottom: 30px; }
  .install-device img { width: 64px; height: 64px; }
  .install-panel li { gap: 12px; }
  .install-panel p { font-size: 14px; line-height: 1.55; }
  .install-cta .button { width: 100%; }
  .android-launch { width: var(--page); padding: 50px 24px; }
  .android-launch h2 { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .faq-list summary { padding: 21px 2px; font-size: 17px; }
  .faq-list details p { padding-right: 16px; }
  .final-cta { width: var(--page); padding: 76px 22px; }
  .final-cta h2 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .final-cta__ingredients span { font-size: 44px; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ingredient-belt__track { transform: none; }
  .motion-ready .reveal { opacity: 1; filter: none; clip-path: none; transform: none; }
}
