/* ──────────────────────────────────────────────────────────────────────────
   Chefless · Landing page
   Palette + type pulled from chefless-app/lib/core/theme/app_theme.dart
   ────────────────────────────────────────────────────────────────────────── */

:root {
  --bg:            #F7F4EF;   /* surfaceWarm */
  --bg-elev:      #FFFEFE;   /* surfaceElevated */
  --ink:           #1C1917;   /* textPrimaryDeep */
  --ink-2:         #44403C;
  --ink-3:         #78716C;
  --line:          rgba(28, 25, 23, 0.09);
  --line-strong:   rgba(28, 25, 23, 0.14);

  --accent:        #C45C3A;   /* accentPlayful */
  --accent-ink:    #8F3F24;
  --accent-soft:   #FDF0EB;   /* accentPlayfulLight */

  --primary:       #4361EE;
  --primary-ink:   #3730A3;

  --dark-bg:       #1C1917;
  --dark-soft:     #2A2522;

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  28px;

  --shadow-card: 0 1px 2px rgba(31,26,18,.04), 0 6px 18px rgba(31,26,18,.05);
  --shadow-hero: 0 4px 10px rgba(31,26,18,.05), 0 28px 60px rgba(31,26,18,.14);

  --container: 1180px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  background: rgba(247, 244, 239, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(247, 244, 239, 0.88);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 72px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.nav__brand img { border-radius: 8px; }
.nav__links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav__links a { position: relative; padding: 6px 0; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--btn-bg);
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(28,25,23,.18); }

.btn--primary { --btn-bg: var(--accent); --btn-fg: #fff; }
.btn--primary:hover { background: var(--accent-ink); border-color: var(--accent-ink); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--xl { padding: 16px 28px; font-size: 16px; }

.btn--app-store {
  --btn-bg: var(--ink); --btn-fg: #fff;
  padding: 8px 18px 8px 14px;
}
.btn--app-store span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn--app-store em { font-style: normal; font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; opacity: .75; }
.btn--app-store strong { font-weight: 600; font-size: 15px; }
.btn--app-store[aria-disabled="true"] { opacity: .7; cursor: not-allowed; }
.btn--app-store[aria-disabled="true"]:hover { transform: none; box-shadow: none; }

/* ── Eyebrow / labels ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
  padding: 6px 12px; border-radius: 999px; background: var(--bg-elev); border: 1px solid var(--line);
}
.eyebrow--accent { background: var(--accent-soft); color: var(--accent-ink); border-color: transparent; }
.eyebrow--light { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.14); }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 999px; background: #10B981; box-shadow: 0 0 0 4px rgba(16,185,129,.15); animation: pulse 2s infinite ease-in-out; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.15); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,.05); }
}

/* ── Display type ────────────────────────────────────────────────────── */
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 6.6vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.display--md { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.08; }
.display--lg { font-size: clamp(48px, 7.2vw, 96px); line-height: 1.02; }
.display--accent { color: var(--accent); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.display--accent-light { color: #F7C9B8; font-style: italic; }

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 54ch;
}
.lede--muted { color: var(--ink-3); }
.lede--light { color: rgba(255,255,255,.75); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .lede { margin: 14px auto 0; }
.section-head .eyebrow { margin-bottom: 18px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 56px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto auto; width: 640px; height: 640px;
  background: radial-gradient(closest-side, rgba(196,92,58,.22), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: auto auto -20% -10%; width: 540px; height: 540px;
  background: radial-gradient(closest-side, rgba(67,97,238,.12), transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.hero__copy .eyebrow { margin-bottom: 24px; }
.hero__copy .lede { margin: 22px 0 32px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero__trust {
  margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hero__trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero__trust-item strong { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.hero__trust-item span { font-size: 13px; color: var(--ink-3); }

.hero__social {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero__social-label {
  font: 600 11px 'Inter', sans-serif;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}

/* Hero device + floating chips */
.hero__device { position: relative; display: flex; justify-content: center; }
.hero__float {
  position: absolute; z-index: 2;
  background: var(--bg-elev); border-radius: 999px;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  padding: 8px 14px 8px 10px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(20px);
}
.hero__float--a { top: 8%; left: -8%; animation-delay: -1s; }
.hero__float--b { bottom: 12%; right: -10%; animation-delay: -3s; }

.chip { display: inline-flex; align-items: center; gap: 8px; }
.chip__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.chip__emoji { font-size: 15px; }
.chip--warm { color: var(--accent-ink); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .hero { padding: 32px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__copy { order: 1; }
  .hero__device { order: 2; }
  .hero__copy .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero__trust { grid-template-columns: 1fr 1fr; text-align: left; }
  .hero__social { justify-content: center; width: 100%; }
  .hero__float--a { left: -4%; top: 4%; }
  .hero__float--b { right: -4%; bottom: 8%; }
}

/* ── Phone mockup ────────────────────────────────────────────────────── */
.phone {
  position: relative;
  --phone-w: 300px;
  width: var(--phone-w);
  aspect-ratio: 9 / 19.5;
}
.phone--lg { --phone-w: 340px; }
.phone--xl { --phone-w: 380px; }
.phone__frame {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #2f2a26 0%, #1a1714 50%, #0f0d0b 100%);
  border-radius: 48px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.06),
    inset 0 2px 6px rgba(255,255,255,.05),
    0 1px 2px rgba(31,26,18,.05),
    0 30px 80px rgba(31,26,18,.28);
}
.phone__frame::before {
  /* Outer bezel glow */
  content: ''; position: absolute; inset: -1px; border-radius: 48px;
  background: linear-gradient(145deg, rgba(255,255,255,.3), transparent 30%, transparent 70%, rgba(255,255,255,.06));
  z-index: -1;
}
.phone__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 30px; background: #000; border-radius: 999px;
  z-index: 3;
}
.phone__notch::after {
  /* dynamic island highlight */
  content: ''; position: absolute; inset: 6px 10px auto auto; width: 6px; height: 6px; border-radius: 999px;
  background: radial-gradient(circle, #3a3a3a 0%, #0a0a0a 70%);
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  object-fit: cover;
  background: var(--bg);
  display: block;
}
.phone__shadow {
  position: absolute; inset: auto 8% -24px 8%; height: 40px;
  background: radial-gradient(ellipse at center, rgba(31,26,18,.22) 0%, transparent 70%);
  filter: blur(6px);
  z-index: -1;
}

/* ── Value strip ─────────────────────────────────────────────────────── */
.strip { padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.strip__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.strip__item { display: flex; gap: 16px; align-items: flex-start; }
.strip__num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; color: var(--accent); font-style: italic; line-height: 1; flex: 0 0 auto; padding-top: 2px; }
.strip__item p { font-size: 15.5px; color: var(--ink-2); max-width: 34ch; }
@media (max-width: 860px) {
  .strip__row { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Bento features ──────────────────────────────────────────────────── */
.bento { padding: 120px 0; }
.bento__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  isolation: isolate;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(31,26,18,.05), 0 32px 60px rgba(31,26,18,.14); }

.tile__art { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.tile__label {
  position: relative; z-index: 3;
  padding: 28px 30px;
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
  isolation: isolate;
}
.tile__label::before { content: none; }
.tile__label h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.tile__tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-ink);
}
.tile__tag--light { color: rgba(255,255,255,.72); }
.tile--kitchens .tile__label h3,
.tile--passport .tile__label h3,
.tile--wrapped .tile__label h3 {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.18), 0 2px 14px rgba(0,0,0,.28);
}

/* ── Grid placement ───────────────────────────────────────────────── */
.tile--kitchens { grid-column: span 3; grid-row: span 2; background: linear-gradient(160deg, #2a2420 0%, #0f0c0a 100%); border-color: rgba(255,255,255,.06); }
.tile--recipes  { grid-column: span 3; grid-row: span 1; background: radial-gradient(120% 100% at 80% 0%, #FBEFE6 0%, #F3EADE 100%); }
.tile--schedule { grid-column: span 2; grid-row: span 1; background: linear-gradient(180deg, #fff 0%, #F7F3EC 100%); }
.tile--passport { grid-column: span 1; grid-row: span 1; background: radial-gradient(120% 120% at 30% 20%, #3d2d22 0%, #1a1613 100%); border-color: rgba(255,255,255,.06); }
.tile--remix    { grid-column: span 3; grid-row: span 1; background: radial-gradient(120% 120% at 20% 80%, #FDF0EB 0%, #F7F2EA 100%); }
.tile--wrapped  { grid-column: span 3; grid-row: span 1; background: linear-gradient(135deg, #C45C3A 0%, #8F3F24 55%, #1C1917 100%); border-color: rgba(255,255,255,.06); }

/* ── Kitchens art (phone + pops) ──────────────────────────────────── */
.tile--kitchens .tile__art {
  background:
    radial-gradient(circle at 70% 30%, rgba(196,92,58,.22), transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(67,97,238,.18), transparent 55%);
}
.tile--kitchens .phone--sm { --phone-w: 180px; position: absolute; top: 28px; right: -20px; transform: rotate(6deg); }
.tile--kitchens .phone--sm .phone__frame { border-radius: 34px; padding: 8px; }
.tile--kitchens .phone--sm .phone__notch { top: 14px; width: 68px; height: 22px; }
.tile--kitchens .phone--sm .phone__screen { border-radius: 26px; }
.tile--kitchens .tile__label h3 { max-width: 60%; }

.pop {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 12px 28px rgba(0,0,0,.28);
  backdrop-filter: blur(20px);
  animation: pop-float 7s ease-in-out infinite;
}
.pop--a { top: 22%; left: 6%; animation-delay: -1s; }
.pop--b { top: 54%; left: 14%; animation-delay: -3s; }
.pop--c { bottom: 22%; left: 32%; animation-delay: -5s; background: var(--accent); color: #fff; }
.pop__dot { width: 8px; height: 8px; border-radius: 999px; background: #10B981; }
.pop__avatars { display: inline-flex; }
.pop__avatars i { display: block; width: 18px; height: 18px; border-radius: 999px; border: 2px solid #fff; }
.pop__avatars i + i { margin-left: -6px; }

@keyframes pop-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── Recipes art (fanned cards) ──────────────────────────────────── */
.tile--recipes .tile__art { display: flex; align-items: center; justify-content: flex-end; padding-right: 20px; }
.recipe-stack { position: relative; width: 240px; height: 100%; }
.rcard {
  position: absolute; right: 0; top: 50%;
  width: 180px; padding: 14px;
  background: var(--hue); color: var(--ink);
  border: 1px solid rgba(28,25,23,.08);
  border-radius: 18px;
  box-shadow: 0 2px 6px rgba(31,26,18,.06), 0 24px 40px rgba(31,26,18,.08);
  transform-origin: bottom right;
  display: flex; flex-direction: column; gap: 8px;
}
.rcard--1 { transform: translateY(-55%) translateX(-20px) rotate(-6deg); z-index: 3; }
.rcard--2 { transform: translateY(-48%) translateX(10px) rotate(3deg); z-index: 2; opacity: .95; }
.rcard--3 { transform: translateY(-40%) translateX(40px) rotate(10deg); z-index: 1; opacity: .85; }
.rcard__swatch { display: block; width: 100%; height: 70px; border-radius: 10px; }
.rcard__title { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.rcard__meta { font-size: 11px; color: rgba(0,0,0,.55); letter-spacing: 0.02em; }
.rcard__lock {
  position: absolute; top: 10px; right: 10px;
  font-size: 9.5px; font-weight: 600;
  background: rgba(255,255,255,.9); color: var(--ink);
  padding: 4px 8px; border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

/* ── Schedule art (mini week) ────────────────────────────────────── */
.tile--schedule .tile__art { padding: 26px 26px 0; }
.week {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 14px 14px 16px;
  box-shadow: 0 1px 2px rgba(31,26,18,.04), 0 12px 28px rgba(31,26,18,.08);
  transform: rotate(-1.5deg) translateY(-6px);
  font-family: 'Inter', sans-serif;
}
.week__header {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  font-size: 9px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.week__header span { text-align: center; }
.week__grid {
  display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: 22px; gap: 4px;
}
.slot {
  border-radius: 6px; background: var(--bg); font-size: 9px; font-weight: 500; color: var(--ink-2);
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
  overflow: hidden; white-space: nowrap;
}
.slot--a { background: #FDF0EB; color: var(--accent-ink); }
.slot--b { background: #FEF2D8; color: #8A5A1C; }
.slot--c { background: #E8F0FD; color: #2A4CC6; }
.slot--d { background: #ECF7EE; color: #166534; }
.slot--e { background: #FDE8E8; color: #991B1B; }
.slot--f { background: #F0E6FD; color: #5B2BC1; }
.slot--g { background: var(--accent); color: #fff; }

/* ── Passport art (stamp cloud) ──────────────────────────────────── */
.tile--passport .tile__art {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,.45), transparent 50%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 35% 85%, rgba(255,255,255,.4), transparent 50%);
}
.cloud { position: absolute; inset: 0; }
.cloud__stamp {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 34px; height: 34px; line-height: 34px; text-align: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 16px;
  backdrop-filter: blur(6px);
  animation: stamp-float 6s ease-in-out infinite;
  animation-delay: var(--d);
}
.cloud__stamp--dim { color: rgba(255,255,255,.6); font-size: 14px; }

@keyframes stamp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Remix art (tree) ────────────────────────────────────────────── */
.tile--remix .tile__art { display: flex; align-items: center; justify-content: center; padding: 16px 16px 0; }
.tree { width: 100%; max-width: 320px; height: auto; filter: drop-shadow(0 6px 12px rgba(196,92,58,.08)); }
.tree__node { transition: transform .4s var(--ease); transform-origin: center; transform-box: fill-box; }
.tile--remix:hover .tree__node--root { transform: scale(1.08); }

/* ── Wrapped art (big year) ──────────────────────────────────────── */
.tile--wrapped .tile__art {
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 80% 30%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255,255,255,.5), transparent 50%);
}
.wrap-year { position: absolute; inset: 0; overflow: hidden; }
.wrap-year__num {
  position: absolute; top: 50%; right: -24px; transform: translateY(-50%);
  display: flex; line-height: 0.85;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 200px;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.22) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}
.wrap-year__num span:first-child { opacity: .4; }

.wrap-chip {
  position: absolute;
  padding: 7px 14px;
  font-size: 12px; font-weight: 500; color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  animation: pop-float 7s ease-in-out infinite;
}
.wrap-chip--a { top: 10%; left: 6%; animation-delay: -1s; }
.wrap-chip--b { top: 28%; left: 22%; animation-delay: -3s; background: rgba(255,255,255,.22); }
.wrap-chip--c { top: 14%; left: 44%; animation-delay: -5s; }
.wrap-chip--d { top: 38%; left: 6%; animation-delay: -2s; color: #FDE9D6; background: rgba(255,255,255,.22); }

.tile--wrapped .tile__label h3 { max-width: 55%; }

/* ── Responsive bento ────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .bento__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
  .tile--kitchens { grid-column: span 4; grid-row: span 2; }
  .tile--recipes  { grid-column: span 4; }
  .tile--schedule { grid-column: span 2; }
  .tile--passport { grid-column: span 2; }
  .tile--remix    { grid-column: span 2; }
  .tile--wrapped  { grid-column: span 2; }
  .tile--kitchens .phone--sm { --phone-w: 200px; right: -10px; }
}
@media (max-width: 640px) {
  .bento { padding: 80px 0; }
  .bento__grid { grid-template-columns: 1fr; grid-auto-rows: minmax(260px, auto); gap: 14px; }
  .tile--kitchens, .tile--recipes, .tile--schedule, .tile--passport, .tile--remix, .tile--wrapped { grid-column: span 1; grid-row: auto; min-height: 320px; }
  .tile--kitchens .phone--sm { --phone-w: 180px; right: -30px; top: 20px; }
  .wrap-year__num { font-size: 150px; }
  .tile__label h3, .tile--kitchens .tile__label h3, .tile--wrapped .tile__label h3 { max-width: 100%; }
}

/* ── Showcase (alternating) ──────────────────────────────────────────── */
.showcase { padding: 100px 0; position: relative; }
.showcase--alt { background: var(--bg-elev); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showcase__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.showcase__grid--reverse .showcase__copy { order: 2; }
.showcase__grid--reverse .showcase__device { order: 1; }
.showcase__copy .eyebrow { margin-bottom: 20px; }
.showcase__copy .lede { margin: 20px 0 28px; }
.showcase__device { display: flex; justify-content: center; }

.bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.bullets li { display: flex; gap: 12px; align-items: center; color: var(--ink-2); font-size: 15.5px; }
.bullets__tick { width: 22px; height: 22px; border-radius: 999px; background: var(--accent-soft); position: relative; flex: 0 0 auto; display: grid; place-items: center; }
.bullets__tick::after {
  content: ''; width: 10px; height: 5px; border-left: 2px solid var(--accent-ink); border-bottom: 2px solid var(--accent-ink); transform: translateY(-1px) rotate(-45deg);
}

@media (max-width: 960px) {
  .showcase { padding: 72px 0; }
  .showcase__grid { grid-template-columns: 1fr; gap: 48px; }
  .showcase__grid--reverse .showcase__copy { order: 1; }
  .showcase__grid--reverse .showcase__device { order: 2; }
  .showcase__copy { text-align: center; }
  .showcase__copy .lede, .showcase__copy .bullets { margin-left: auto; margin-right: auto; }
  .bullets { max-width: 420px; }
}

/* ── Passport hero ───────────────────────────────────────────────────── */
.passport {
  background: radial-gradient(ellipse at 50% 20%, #3d2d22 0%, #1C1917 65%);
  color: #fff;
  padding: 140px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.passport::before {
  content: ''; position: absolute; inset: -20%; background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(255,255,255,.35), transparent 50%),
    radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,.3), transparent 50%),
    radial-gradient(2px 2px at 40% 90%, rgba(255,255,255,.3), transparent 50%);
  opacity: .6; pointer-events: none;
}
.passport__inner { position: relative; text-align: center; max-width: 860px; margin: 0 auto; }
.passport .eyebrow { margin-bottom: 28px; }
.passport .display { color: #fff; }
.passport .lede { margin: 22px auto 40px; color: rgba(255,255,255,.78); }

.stamps { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.stamp {
  padding: 10px 18px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.stamp--muted { opacity: .55; }

@media (max-width: 640px) { .passport { padding: 100px 0; } }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { padding: 120px 0; }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--bg-elev); overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq__item[open] { border-color: var(--line-strong); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 24px; color: var(--ink-3); transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 24px; color: var(--ink-3); font-size: 15.5px; line-height: 1.6; }

@media (max-width: 640px) { .faq { padding: 80px 0; } }

/* ── Final CTA ───────────────────────────────────────────────────────── */
.final-cta { padding: 120px 0; text-align: center; }
.final-cta__inner { max-width: 720px; margin: 0 auto; }
.final-cta .lede { margin: 18px auto 32px; }
.fine-print { margin-top: 20px; font-size: 13px; color: var(--ink-3); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { padding: 44px 0; border-top: 1px solid var(--line); background: var(--bg); }
.footer__row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; }
.footer__brand img { border-radius: 6px; }
.footer__meta { font-size: 13px; color: var(--ink-3); }
.footer__right { display: inline-flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer__social { display: inline-flex; align-items: center; gap: 8px; }
.footer__links { display: flex; gap: 20px; font-size: 13.5px; color: var(--ink-2); }
.footer__links a { transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--ink); }
@media (max-width: 640px) {
  .footer__row { justify-content: center; text-align: center; }
  .footer__meta { width: 100%; order: 3; }
}

/* ── Preview (live phone showcase) ───────────────────────────────────── */
.preview {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(67,97,238,.08), transparent 70%),
    var(--bg);
}
.preview__inner { position: relative; }
.preview__inner .section-head { margin-bottom: 64px; }
.preview__stage {
  position: relative;
  display: flex; justify-content: center;
  padding: 20px 0 40px;
}
.preview__device { position: relative; display: flex; justify-content: center; z-index: 1; }
.watch__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(420px, 56vw, 720px);
  height: clamp(420px, 56vw, 720px);
  transform: translate(-50%, -42%);
  background:
    radial-gradient(closest-side, rgba(196,92,58,.22), transparent 70%),
    radial-gradient(closest-side at 70% 70%, rgba(67,97,238,.14), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.preview__halo {
  background:
    radial-gradient(closest-side, rgba(67,97,238,.18), transparent 70%),
    radial-gradient(closest-side at 30% 70%, rgba(196,92,58,.16), transparent 65%);
}
.watch__player {
  position: relative;
  z-index: 1;
  width: clamp(260px, 38vw, 420px);
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  overflow: hidden;
  background: #0f0d0b;
  box-shadow:
    0 1px 2px rgba(31,26,18,.06),
    0 30px 80px rgba(31,26,18,.28);
}
.watch__player--hero {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
}
.watch__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--bg);
}
.watch__sound {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(28,25,23,.72);
  color: #fff;
  font: 600 12.5px 'Inter', sans-serif;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  z-index: 4;
  transition: transform .2s var(--ease), background .2s var(--ease), opacity .25s var(--ease);
}
.watch__sound:hover { background: rgba(28,25,23,.88); transform: translateX(-50%) translateY(-1px); }
.watch__sound .watch__sound-off { display: none; }
.watch__sound[data-on="true"] .watch__sound-on { display: none; }
.watch__sound[data-on="true"] .watch__sound-off { display: inline; }
@media (max-width: 640px) {
  .preview { padding: 80px 0 64px; }
  .watch__player { width: min(86vw, 320px); border-radius: 26px; }
  .watch__halo { transform: translate(-50%, -38%); width: 360px; height: 360px; }
}

/* ── Social row (landing) ────────────────────────────────────────────── */
.social-row {
  margin-top: 56px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 12px 18px 12px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}
.social-row__label {
  font: 600 12px 'Inter', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}
.social-row__icons { display: inline-flex; align-items: center; gap: 8px; }
.social-row__icons--lg { gap: 14px; margin-top: 28px; }

.social-icon {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: transform .2s var(--ease), color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.social-icon:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(196,92,58,.28);
}
.social-icon--lg { width: 52px; height: 52px; }
.social-icon--sm { width: 34px; height: 34px; }
.social-icon--sm:hover { box-shadow: 0 6px 16px rgba(196,92,58,.22); }

@media (max-width: 640px) {
  .social-row { flex-direction: column; gap: 10px; padding: 16px 20px; border-radius: 22px; }
}

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact {
  padding: 100px 0 140px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  text-align: center;
}
.contact__inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.contact__inner .eyebrow { margin-bottom: 18px; }
.contact__inner .lede { margin: 16px auto 28px; }
.contact__email {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent-ink);
  padding: 6px 4px 8px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.contact__email:hover { color: var(--accent); border-bottom-color: var(--accent); }
@media (max-width: 640px) { .contact { padding: 72px 0 96px; } }

/* ── Reveal animations ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .15s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__float { animation: none; }
  .eyebrow__dot { animation: none; }
  html { scroll-behavior: auto; }
  .phone__screen { display: none; }
}
