/* ─────────────────────────────────────────────────────────
   Recipely — recipely.net/about  ·  landing styles
   Warm orange→amber brand · light + dark · live theme accents
   ───────────────────────────────────────────────────────── */

:root {
  --display: "Bricolage Grotesque", "SF Pro Display", system-ui, sans-serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "Space Grotesk", ui-monospace, "SF Mono", Menlo, monospace;

  /* Live accent — overwritten by the theme swatches */
  --brand: #E8732E;
  --brand-strong: #D5611C;
  --grad-start: #EC7B41;
  --grad-end: #F9B050;

  --r-sm: 16px;
  --r: 22px;
  --r-lg: 28px;
  --r-xl: 34px;
  --maxw: 1200px;
}
html[data-theme="light"] {
  --bg: #FBF6F0;
  --bg-alt: #F4ECE2;
  --bg-deep: #F0E5D7;
  --surface: #FFFFFF;
  --surface-2: #FFFBF6;
  --text: #221A14;
  --muted: #7D7268;
  --faint: #A89B8F;
  --border: rgba(34,26,20,0.10);
  --border-strong: rgba(34,26,20,0.16);
  --chip-bg: color-mix(in srgb, var(--grad-end) 22%, #fff);
  --chip-text: var(--brand-strong);
  --shadow-sm: 0 2px 10px rgba(60,40,20,0.06);
  --shadow-md: 0 12px 34px rgba(60,40,20,0.10);
  --shadow-lg: 0 30px 70px rgba(60,40,20,0.16);
  --on-brand: #FFFFFF;
  --nav-bg: rgba(251,246,240,0.82);
  --glass: rgba(255,255,255,0.92);
}
html[data-theme="dark"] {
  --bg: #15100C;
  --bg-alt: #1D170F;
  --bg-deep: #120D09;
  --surface: #221B13;
  --surface-2: #281F16;
  --text: #F6EFE7;
  --muted: #A89A8C;
  --faint: #786C5E;
  --border: rgba(255,245,235,0.10);
  --border-strong: rgba(255,245,235,0.16);
  --chip-bg: color-mix(in srgb, var(--brand) 26%, #15100C);
  --chip-text: var(--grad-end);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.4);
  --shadow-md: 0 14px 36px rgba(0,0,0,0.5);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.6);
  --on-brand: #1C120A;
  --nav-bg: rgba(21,16,12,0.78);
  --glass: rgba(40,31,22,0.86);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden; transition: background .4s ease, color .4s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--grad-end); color: #1C120A; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; width: 100%; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--brand); display: inline-flex; align-items: center; gap: 8px;
}
html[data-theme="dark"] .eyebrow { color: var(--grad-end); }
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: currentColor; opacity: .55; }
.grad-text { background: linear-gradient(120deg, var(--grad-start), var(--grad-end)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; border-radius: 999px; padding: 0 22px; height: 50px;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { color: var(--on-brand); background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); box-shadow: 0 8px 22px color-mix(in srgb, var(--brand) 40%, transparent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px color-mix(in srgb, var(--brand) 50%, transparent); }
.btn-ghost { color: var(--text); background: var(--surface); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand); }
.btn-sm { height: 42px; font-size: 14px; padding: 0 18px; }

/* ───────── Nav ───────── */
header.nav {
  position: sticky; top: 0; z-index: 60; background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { width: 40px; height: 40px; border-radius: 11px; background: #fff; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.brand .mark img { width: 32px; height: 32px; }
.brand .word { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.4px; }
.nav-center { display: flex; gap: 4px; margin: 0 auto; }
.nav-center a { font-weight: 600; font-size: 14.5px; color: var(--muted); padding: 9px 14px; border-radius: 999px; transition: color .2s, background .2s; }
.nav-center a:hover { color: var(--text); background: var(--bg-alt); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-link { font-weight: 600; font-size: 15px; color: var(--text); padding: 8px 4px; }
.nav-link:hover { color: var(--brand); }

.seg { display: inline-flex; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.seg button { border: none; background: transparent; color: var(--muted); font-weight: 700; font-size: 12.5px; padding: 6px 11px; border-radius: 999px; cursor: pointer; transition: color .2s, background .2s; }
.seg button.on { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }

.icon-btn { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: transform .18s, border-color .2s; }
.icon-btn:hover { transform: translateY(-2px); border-color: var(--brand); }
.theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .moon { display: block; }

/* ───────── Section scaffolding ───────── */
section.band { padding: 96px 0; position: relative; }
.sec-head { max-width: 620px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-family: var(--display); font-weight: 800; font-size: 40px; line-height: 1.08; letter-spacing: -1px; margin: 14px 0 0; }
.sec-head p { font-size: 17px; color: var(--muted); margin: 16px 0 0; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* ───────── Hero ───────── */
.hero { position: relative; padding: 80px 0 70px; }
.hero-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-glow::before { content: ""; position: absolute; top: -180px; right: -100px; width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--grad-end) 32%, transparent), transparent 68%); }
.hero-glow::after { content: ""; position: absolute; bottom: -240px; left: -160px; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--brand) 22%, transparent), transparent 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; }
.badge-row { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 6px 6px 6px 14px; box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 600; color: var(--muted); }
.badge-row .pill { background: var(--chip-bg); color: var(--chip-text); font-weight: 700; font-size: 12px; padding: 4px 10px; border-radius: 999px; }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: 58px; line-height: 1.02; letter-spacing: -1.8px; margin: 22px 0 0; }
.hero p.sub { font-size: 18px; color: var(--muted); margin: 22px 0 0; max-width: 31em; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--muted); font-size: 14px; }
.stars { display: inline-flex; gap: 2px; color: var(--grad-end); }
.avatars { display: flex; }
.avatars span { width: 36px; height: 36px; border-radius: 50%; margin-left: -10px; border: 2px solid var(--bg); background-size: cover; background-position: center; box-shadow: var(--shadow-sm); }
.avatars span:first-child { margin-left: 0; }

/* Phone mockup */
.hero-stage { position: relative; display: flex; justify-content: center; }
.phone { position: relative; width: 310px; height: 632px; border-radius: 46px; background: #0c0a08; padding: 10px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.2); flex-shrink: 0; }
.phone::after { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 104px; height: 26px; background: #0c0a08; border-radius: 0 0 16px 16px; z-index: 5; }
.screen { position: relative; width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: var(--bg); display: flex; flex-direction: column; }
.scr-top { padding: 40px 18px 12px; }
.scr-title { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.4px; }
.scr-search { margin-top: 12px; height: 40px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; gap: 8px; padding: 0 14px; color: var(--faint); font-size: 13px; }
.scr-pills { display: flex; gap: 7px; margin-top: 12px; overflow: hidden; }
.scr-pill { flex-shrink: 0; font-size: 12px; font-weight: 700; padding: 7px 12px; border-radius: 999px; background: var(--bg-alt); color: var(--muted); }
.scr-pill.on { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); }
.scr-body { flex: 1; overflow: hidden; padding: 4px 18px 18px; display: flex; flex-direction: column; gap: 14px; }
.scr-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.scr-card .ph { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.scr-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.scr-card .cz { position: absolute; top: 9px; left: 9px; background: var(--glass); backdrop-filter: blur(6px); color: var(--chip-text); font-weight: 700; font-size: 10.5px; padding: 4px 9px; border-radius: 999px; }
.scr-card .bd { padding: 10px 12px 12px; }
.scr-card .bd h4 { font-family: var(--display); font-weight: 700; font-size: 14px; margin: 0; letter-spacing: -0.2px; }
.scr-card .bd .mt { display: flex; gap: 10px; margin-top: 6px; color: var(--muted); font-size: 11.5px; font-weight: 600; }
.scr-card .bd .mt .st { color: var(--grad-end); }
.scr-tab { height: 56px; border-top: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: space-around; padding: 0 8px 6px; }
.scr-tab i { width: 22px; height: 22px; border-radius: 7px; background: var(--bg-alt); display: block; }
.scr-tab i.act { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); }

/* Floating cards around phone */
.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty.d1 { animation-delay: -2s; } .floaty.d2 { animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fab { position: absolute; background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 12px 14px; z-index: 4; }
.fab-ai { top: 60px; left: -16px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 13px; }
.fab-ai .sp { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); display: flex; align-items: center; justify-content: center; }
.fab-timer { bottom: 110px; right: -22px; width: 168px; }
.fab-timer .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); }
.fab-timer .tval { font-family: var(--mono); font-weight: 700; font-size: 22px; letter-spacing: -0.5px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.fab-timer .bar { height: 5px; border-radius: 3px; background: var(--bg-alt); margin-top: 8px; overflow: hidden; }
.fab-timer .bar > i { display: block; height: 100%; width: 38%; background: linear-gradient(90deg, var(--grad-start), var(--grad-end)); }
.fab-nutri { bottom: 24px; left: -26px; display: flex; gap: 12px; }
.fab-nutri .nu { text-align: center; }
.fab-nutri .nu b { font-family: var(--display); font-size: 16px; display: block; }
.fab-nutri .nu span { font-size: 10px; color: var(--muted); font-weight: 600; }

/* ───────── Stats strip ───────── */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.marquee-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; flex-wrap: wrap; }
.marquee-inner .label { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.stat-row { display: flex; gap: 44px; flex-wrap: wrap; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -0.5px; }
.stat .cap { font-size: 13px; color: var(--muted); }

/* ───────── Bento features ───────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 20px; margin-top: 56px; }
.cell { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .25s, border-color .22s; }
.cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.cell .ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--chip-bg); color: var(--chip-text); margin-bottom: 16px; }
.cell h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.3px; margin: 0 0 8px; }
.cell p { font-size: 14.5px; color: var(--muted); margin: 0; }
.cell.tall { grid-row: span 2; }
.cell.wide { grid-column: span 2; }
.c-ai { grid-column: span 3; grid-row: span 2; background: linear-gradient(160deg, color-mix(in srgb, var(--grad-end) 14%, var(--surface)), var(--surface)); }
.c-lang { grid-column: span 3; }
.c-disc { grid-column: span 3; }
.c-time { grid-column: span 2; }
.c-coll { grid-column: span 2; }
.c-nutri { grid-column: span 2; }

/* AI demo inside bento */
.ai-demo { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.ai-prompt { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border-strong); border-radius: 14px; padding: 12px 14px; box-shadow: var(--shadow-sm); }
.ai-prompt .dot { width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); flex-shrink: 0; }
.ai-prompt .typed { font-size: 14px; font-weight: 600; color: var(--text); }
.ai-prompt .typed::after { content: "▌"; color: var(--brand); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ai-result { display: flex; gap: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 12px; opacity: 0; transform: translateY(8px); transition: opacity .5s, transform .5s; }
.ai-result.show { opacity: 1; transform: none; }
.ai-result img { width: 60px; height: 60px; border-radius: 11px; object-fit: cover; flex-shrink: 0; }
.ai-result .ttl { font-family: var(--display); font-weight: 700; font-size: 15px; }
.ai-result .tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.ai-result .tags span { font-size: 11px; font-weight: 700; color: var(--chip-text); background: var(--chip-bg); padding: 3px 8px; border-radius: 999px; }

/* lang demo */
.lang-card { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lang-col { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.lang-col .flag { font-size: 12px; font-weight: 800; letter-spacing: .5px; color: var(--brand); }
.lang-col .ln { font-size: 13px; color: var(--text); margin-top: 8px; line-height: 1.5; }
.lang-col .ln b { font-weight: 700; }

/* discover cuisines mini */
.disc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.disc-chips .dc { font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 999px; background: var(--bg); border: 1px solid var(--border); color: var(--muted); }
.disc-chips .dc.on { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); border-color: transparent; }

/* nutri ring */
.nutri-rings { display: flex; gap: 14px; margin-top: 16px; }
.ring { width: 58px; text-align: center; }
.ring .rc { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 14px; }
.ring .rl { font-size: 10.5px; color: var(--muted); font-weight: 600; margin-top: 5px; }

/* ───────── AI band (big showcase) ───────── */
.aiband { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ai-chat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-lg); }
.ai-chat .hd { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.ai-chat .hd .sp { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); display: grid; place-items: center; }
.ai-chat .hd b { font-family: var(--display); font-size: 15px; }
.ai-chat .hd span { font-size: 12px; color: var(--muted); margin-left: auto; }
.bubble { border-radius: 16px; padding: 13px 15px; font-size: 14.5px; margin-top: 14px; max-width: 86%; }
.bubble.user { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); margin-left: auto; border-bottom-right-radius: 5px; font-weight: 600; }
.bubble.bot { background: var(--bg); border: 1px solid var(--border); border-bottom-left-radius: 5px; }
.gen-card { margin-top: 14px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.gen-card .gph { position: relative; aspect-ratio: 16/8; overflow: hidden; }
.gen-card .gph img { width: 100%; height: 100%; object-fit: cover; }
.gen-card .gbd { padding: 14px; }
.gen-card .gbd h4 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 0; }
.gen-meta { display: flex; gap: 14px; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 600; }
.gen-steps { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.gen-steps .gs { display: flex; gap: 9px; font-size: 13px; color: var(--text); }
.gen-steps .gs b { color: var(--brand); font-weight: 800; }
.ai-feats { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.ai-feat { display: flex; gap: 14px; }
.ai-feat .ai-i { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: var(--chip-bg); color: var(--chip-text); display: grid; place-items: center; }
.ai-feat h4 { font-family: var(--display); font-weight: 700; font-size: 16px; margin: 0 0 3px; }
.ai-feat p { font-size: 14px; color: var(--muted); margin: 0; }

/* ───────── Discover band ───────── */
.filter-bar { display: flex; align-items: center; gap: 10px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.fchip { font-size: 14px; font-weight: 700; padding: 9px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); cursor: pointer; transition: all .18s; }
.fchip:hover { border-color: var(--brand); color: var(--text); }
.fchip.on { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); border-color: transparent; box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 34%, transparent); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.rcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .25s, opacity .35s; }
.rcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rcard.hide { display: none; }
.rcard .photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.rcard .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rcard:hover .photo img { transform: scale(1.05); }
.rcard .cuisine { position: absolute; top: 12px; left: 12px; background: var(--glass); backdrop-filter: blur(6px); color: var(--chip-text); font-weight: 700; font-size: 12px; padding: 6px 12px; border-radius: 999px; }
.rcard .fav { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: var(--glass); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: var(--brand); }
.rcard .body { padding: 16px 17px 18px; }
.rcard .body h4 { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.3px; margin: 0; }
.rcard .meta { display: flex; align-items: center; gap: 14px; margin-top: 11px; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.rcard .meta .m { display: flex; align-items: center; gap: 5px; }
.rcard .meta .rating { color: var(--text); }
.rcard .meta .star { color: var(--grad-end); }

/* ───────── Cook mode band ───────── */
.cookband { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cook-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.cook-panel .ttl { display: flex; align-items: center; justify-content: space-between; }
.cook-panel .ttl h4 { font-family: var(--display); font-weight: 700; font-size: 18px; margin: 0; }
.cook-progress { font-size: 12.5px; font-weight: 700; color: var(--brand); }
.pbar { height: 7px; border-radius: 4px; background: var(--bg-alt); margin: 12px 0 18px; overflow: hidden; }
.pbar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--grad-start), var(--grad-end)); transition: width .4s; }
.step { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step .num { width: 28px; height: 28px; border-radius: 9px; background: var(--chip-bg); color: var(--chip-text); font-weight: 800; font-size: 13px; display: grid; place-items: center; flex-shrink: 0; }
.step.done .num { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); }
.step .sx { font-size: 14px; line-height: 1.5; }
.tchip { display: inline-flex; align-items: center; gap: 5px; background: var(--chip-bg); color: var(--chip-text); font-weight: 700; font-size: 12.5px; padding: 3px 10px; border-radius: 999px; cursor: pointer; font-variant-numeric: tabular-nums; border: none; vertical-align: middle; transition: transform .15s; }
.tchip:hover { transform: scale(1.04); }
.tchip.run { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); color: var(--on-brand); }
.cook-feats { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }

/* ───────── Community band ───────── */
.creators { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.creator { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .22s, box-shadow .25s; }
.creator:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.creator .av { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px; background-size: cover; background-position: center; border: 3px solid var(--surface); box-shadow: var(--shadow-md); }
.creator .nm { font-family: var(--display); font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; gap: 6px; }
.creator .vf { color: var(--brand); display: inline-flex; }
.creator .un { font-size: 13px; color: var(--muted); margin-top: 2px; }
.creator .cstats { display: flex; justify-content: center; gap: 28px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.creator .cstats b { font-family: var(--display); font-size: 17px; display: block; }
.creator .cstats span { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.creator .follow { margin-top: 16px; width: 100%; }

/* ───────── Themes band ───────── */
.themeband { text-align: center; }
.swatches { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }
.sw { width: 92px; cursor: pointer; border: none; background: transparent; padding: 0; }
.sw .chip { display: block; width: 92px; height: 70px; border-radius: 18px; box-shadow: var(--shadow-sm); border: 3px solid transparent; transition: transform .18s, border-color .2s; position: relative; overflow: hidden; }
.sw:hover .chip { transform: translateY(-4px); }
.sw.on .chip { border-color: var(--text); }
.sw .chip::after { content: ""; position: absolute; left: 10px; bottom: 10px; width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,0.9); }
.sw .nm { font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 8px; display: block; }
.theme-note { margin-top: 30px; font-size: 14px; color: var(--muted); }

/* ───────── Download band (final) ───────── */
.download { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: var(--r-xl); padding: 70px 56px; color: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.download::before { content: ""; position: absolute; top: -60%; right: -10%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%); transform: rotate(20deg); }
.download::after { content: ""; position: absolute; bottom: -70%; left: -8%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 62%); }
.download .dl-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; opacity: .9; position: relative; }
.download h2 { font-family: var(--display); font-weight: 800; font-size: 44px; letter-spacing: -1px; margin: 14px 0 0; line-height: 1.06; position: relative; }
.download p { font-size: 17px; opacity: .95; margin: 16px auto 0; max-width: 33em; position: relative; }
.badges { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; position: relative; }
.store-badge { display: inline-flex; align-items: center; gap: 12px; background: #000; color: #fff; border-radius: 14px; padding: 12px 22px; cursor: pointer; border: 1px solid rgba(255,255,255,0.18); transition: transform .18s, box-shadow .25s; }
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,0.28); }
.store-badge .sb-glyph { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .sb-top { font-size: 10.5px; line-height: 1; opacity: .82; letter-spacing: .3px; }
.store-badge .sb-name { font-size: 18px; font-weight: 700; line-height: 1.18; letter-spacing: .2px; font-family: var(--display); }
.closing { text-align: center; padding: 40px 0 56px; color: var(--faint); font-size: 13.5px; }
.closing .brand { justify-content: center; margin-bottom: 14px; }

/* ───────── Reveal ───────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .floaty { animation: none; } }

/* ───────── Responsive ───────── */
@media (max-width: 1040px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; }
  .c-ai { grid-column: span 4; } .c-lang { grid-column: span 4; } .c-disc { grid-column: span 4; }
  .c-time, .c-coll, .c-nutri { grid-column: span 2; }
}
@media (max-width: 980px) {
  .nav-center { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero h1 { font-size: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy .badge-row, .hero-cta, .hero-trust { justify-content: center; }
  .hero-copy .sub { margin-left: auto; margin-right: auto; }
  .ai-grid, .cook-grid { grid-template-columns: 1fr; gap: 40px; }
  .ai-grid .ai-copy { order: 1; } .ai-grid .ai-chat { order: 2; }
  .creators { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-link.login { display: none; }
  .hero { padding: 52px 0 48px; }
  .hero h1 { font-size: 40px; letter-spacing: -1.2px; }
  .hero p.sub { font-size: 16.5px; }
  .hero-cta .btn { flex: 1; }
  .phone { width: 270px; height: 552px; }
  .fab-nutri { left: -6px; } .fab-timer { right: -6px; }
  section.band { padding: 64px 0; }
  .sec-head h2 { font-size: 30px; }
  .download h2 { font-size: 30px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
  .cell, .c-ai, .c-lang, .c-disc, .c-time, .c-coll, .c-nutri { grid-column: auto; grid-row: auto; min-height: 180px; }
  .cards { grid-template-columns: 1fr; }
  .creators { grid-template-columns: 1fr; }
  .download { padding: 48px 26px; }
  .badges { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .lang-card { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .hero-cta { flex-direction: column; } .hero-cta .btn { width: 100%; }
}
