/* ===================================================================
   LET ME COOK — Clean app-landing redesign
   Inspired by modern recipe-app landing pages (phone-mockup forward)
   =================================================================== */

/* Design tokens are inlined in <head> (tokens-v2.css). This file is loaded
   deferred — no @import needed. */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.12; }
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 1;
  font-weight: normal; font-style: normal;
  line-height: 1; letter-spacing: normal; text-transform: none;
  display: inline-block; white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.wrap    { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }

/* ===== TYPE HELPERS ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--orange-light); color: var(--orange-deep);
  font-family: var(--font-head); font-size: 12.5px; font-weight: 400;
  letter-spacing: .04em;
  padding: 7px 16px; border-radius: var(--r-full);
}
.eyebrow .material-symbols-outlined { font-size: 15px; }
.eyebrow--green { background: var(--green-light); color: var(--green); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-title {
  font-family: var(--font-head); font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.1rem); color: var(--ink);
  line-height: 1.08; margin-top: 16px;
}
.section-sub { font-size: 1.1rem; color: var(--ink-mid); margin-top: 16px; line-height: 1.65; }
.section-head .section-sub { margin-left: auto; margin-right: auto; max-width: 560px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  padding: 14px 26px; border-radius: var(--r-full);
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent; white-space: nowrap; min-height: 44px;
}
.btn--primary { background: var(--orange); color: var(--ink); border-color: var(--orange); box-shadow: var(--sh-orange); }
.btn--primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); transform: translateY(-2px); }
.btn--ghost  { background: var(--white); color: var(--ink); border-color: var(--cream-dark); }
.btn--ghost:hover { background: var(--cream); transform: translateY(-2px); }
.btn--dark   { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: #38231a; transform: translateY(-2px); }
/* Language switch (EN · RU · UZ) — compact segmented control in the header + mobile menu. */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; background: var(--cream); border: 1px solid var(--cream-dark); border-radius: var(--r-full); padding: 3px; }
.lang-btn { appearance: none; border: 0; background: transparent; color: var(--ink-soft); font-family: var(--font-body); font-weight: 700; font-size: 12.5px; letter-spacing: .02em; padding: 7px 11px; min-height: 36px; border-radius: var(--r-full); cursor: pointer; transition: background .18s ease, color .18s ease; }
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { background: var(--orange); color: var(--ink); }
.mobile-menu .lang-switch { align-self: flex-start; margin-bottom: 6px; }
/* Fredoka (the display face) has no Cyrillic glyphs — for RU/KK, render headings in Inter (which
   carries Cyrillic) instead of an arbitrary system serif. i18n-v2.js sets <html lang>. */
html[lang="ru"], html[lang="kk"] { --font-head: 'Inter', sans-serif; }
.btn--lg { padding: 17px 34px; font-size: 16px; }

/* ===== HEADER ===== */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.hdr.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-xs); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__icon { height: 38px; width: auto; }
.brand__word { font-family: var(--font-logo); font-weight: 400; font-size: 1.22rem; color: var(--ink); white-space: nowrap; line-height: 1; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 15px; font-weight: 600; color: var(--ink-mid); transition: color .2s; }
.nav a:hover { color: var(--orange); }
.hdr__cta { display: flex; align-items: center; gap: 14px; }
.hdr__login { font-size: 15px; font-weight: 600; color: var(--ink-mid); }
.hdr__login:hover { color: var(--orange); }
.burger {
  display: none; background: none; border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-sm); width: 42px; height: 42px;
  align-items: center; justify-content: center; cursor: pointer; color: var(--ink);
}
.mobile-menu { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 150px 0 90px;
  background:
    radial-gradient(1100px 540px at 78% 18%, var(--orange-light) 0%, transparent 60%),
    radial-gradient(900px 520px at 8% 90%, var(--green-light) 0%, transparent 58%),
    var(--white);
  overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__text { max-width: 560px; }
.hero h1 {
  font-family: var(--font-head); font-weight: 400;
  font-size: clamp(2.7rem, 5.6vw, 4.4rem); line-height: 1.04;
  color: var(--ink); margin: 22px 0 0;
}
.hero h1 .script-accent { color: var(--orange); display: block; }
.hero__sub { font-size: 1.18rem; color: var(--ink-mid); line-height: 1.6; margin: 22px 0 0; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatars { display: flex; }
.avatars .avatar { margin-left: -10px; border: 2.5px solid var(--white); transition: transform .25s ease, margin-left .25s ease; }
.avatars .avatar:first-child { margin-left: 0; }
.hero__proof:hover .avatars .avatar { transform: scale(1.22) translateY(-4px); }
.hero__proof:hover .avatars .avatar:not(:first-child) { margin-left: -2px; }
.avatars .avatar:hover { transform: scale(1.45) translateY(-6px); z-index: 6; box-shadow: var(--sh-md); }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 400; color: #fff; font-size: 14px;
}
.av-1 { background: linear-gradient(135deg,#F0A93C,#E8940A); }
.av-2 { background: linear-gradient(135deg,#8BC44A,#4F7A1E); }
.av-3 { background: linear-gradient(135deg,#F2877B,#D4604C); }
.av-4 { background: linear-gradient(135deg,#7FB0E0,#3B6A9A); }
.av-5 { background: linear-gradient(135deg,#C49BE0,#8B5FB0); }
.hero__proof-txt { font-size: .95rem; color: var(--ink-mid); line-height: 1.4; }
.hero__proof-txt b { color: var(--ink); font-weight: 700; }
.hero__proof-stars { color: var(--orange); letter-spacing: 1px; font-size: .9rem; }
.hero__perk { margin-top: 16px; font-size: 1rem; color: var(--ink-mid); font-weight: 500; }
.hero__perk .perk-amt { color: var(--orange); font-weight: 800; }

.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 560px; }

/* ===== HERO — CENTERED RECIME-STYLE SHOWCASE ===== */
.hero--center { padding: 140px 0 96px; background: radial-gradient(120% 80% at 50% 12%, #FFF4E1 0%, var(--cream) 58%); }
.hero--center .wrap { display: flex; flex-direction: column; align-items: center; }
.hero__text--center { max-width: 720px; margin: 0 auto; text-align: center; }
.hero__text--center .hero h1, .hero--center .hero h1 { margin-left: auto; margin-right: auto; }
.hero__text--center .hero__sub { margin-left: auto; margin-right: auto; max-width: 600px; }
.hero__text--center .hero__cta,
.hero__text--center .hero__proof { justify-content: center; }

.hero__showcase {
  position: relative; width: 100%; max-width: 760px;
  margin: 60px auto 0; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.hero__showcase .phone { position: relative; z-index: 2; }

/* warm food backdrop + floating dish photos */
.hs-blob { position: absolute; z-index: 0; filter: blur(2px); opacity: .92; }
.hs-blob1 { width: 320px; height: 320px; top: 0; left: 5%; background: linear-gradient(150deg, #FFE3A8, #F8C25A); border-radius: 64% 36% 57% 43% / 47% 56% 44% 53%; }
.hs-blob2 { width: 270px; height: 270px; bottom: 0; right: 6%; background: linear-gradient(150deg, #DCEFC0, #AFD982); border-radius: 58% 42% 47% 53% / 53% 44% 56% 47%; }
.food-bubble { position: absolute; z-index: 3; border-radius: 50%; background-size: cover; background-position: center; border: 5px solid #fff; box-shadow: var(--sh-md); animation: floatY 6s ease-in-out infinite; }
.fb1 { width: 88px; height: 88px; top: 6px; right: 3%; background-image: image-set(url('assets/dish-laghman.webp') type('image/webp'), url('assets/dish-laghman-opt.jpg') type('image/jpeg')); animation-delay: -1.2s; }
.fb2 { width: 104px; height: 104px; bottom: 30px; right: 9%; background-image: image-set(url('assets/dish-steak.webp') type('image/webp'), url('assets/dish-steak-opt.jpg') type('image/jpeg')); animation-delay: -2.8s; }

/* “Cook with me” pill */
.hero-cook-pill { position: absolute; z-index: 5; bottom: 16px; left: 50%; margin-left: -84px; display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--ink); font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: var(--r-full); box-shadow: 0 12px 26px var(--orange-glow); white-space: nowrap; animation: floatY 5s ease-in-out infinite; animation-delay: -2s; }
.hero-cook-pill .material-symbols-outlined { font-size: 19px; }

/* floating cards */
.float-card {
  position: absolute; z-index: 4; background: var(--white);
  border-radius: 18px; box-shadow: var(--sh-md);
  padding: 13px 15px; transform: rotate(var(--rot, 0deg));
  animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-13px) rotate(var(--rot, 0deg)); }
}
.fc-dish { --rot: -5deg; top: 56px; left: 8px; width: 214px; display: flex; align-items: center; gap: 11px; }
.fc-thumb { width: 44px; height: 44px; border-radius: 11px; flex: none; }
.fc-thumb--photo { background: image-set(url('assets/dish-manty.webp') type('image/webp'), url('assets/dish-manty-opt.jpg') type('image/jpeg')) center/cover no-repeat; }
.fc-title { font-family: var(--font-head); font-weight: 400; font-size: 13.5px; color: var(--ink); line-height: 1.15; }
.fc-meta { font-size: 11px; color: var(--ink-soft); margin-top: 3px; }
.fc-coach { --rot: 4deg; top: 132px; right: -6px; width: 198px; display: flex; align-items: flex-start; gap: 10px; animation-delay: -1.8s; }
.fc-cat { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.fc-cat .material-symbols-outlined { font-size: 17px; }
.fc-coach-txt { font-size: 12px; color: var(--ink-mid); line-height: 1.42; }
.fc-xp { --rot: 5deg; bottom: 86px; left: 0; width: 196px; animation-delay: -3.4s; }
.fc-xp-row { display: flex; align-items: center; justify-content: space-between; }
.fc-xp-big { font-family: var(--font-head); font-weight: 400; font-size: 21px; color: var(--orange); line-height: 1; }
.fc-xp-ic { color: var(--orange); font-size: 22px; }
.fc-xp-lbl { font-size: 11px; color: var(--ink-soft); margin: 4px 0 9px; }
.fc-xp-track { height: 7px; background: var(--cream-mid); border-radius: 99px; overflow: hidden; }
.fc-xp-fill { width: 78%; height: 100%; background: linear-gradient(90deg, var(--orange), var(--green-mid)); border-radius: 99px; }

/* ===== BLOB (soft color shape behind phones) ===== */
.blob {
  position: absolute; z-index: 0;
  width: 440px; height: 440px;
  border-radius: 64% 36% 57% 43% / 47% 56% 44% 53%;
  filter: blur(.5px);
}
.blob--orange { background: linear-gradient(150deg, #FFE3A8, #F8C25A); }
.blob--green  { background: linear-gradient(150deg, #DCEFC0, #AFD982); }
.blob--cream  { background: var(--cream-mid); }
.blob--sm { width: 320px; height: 320px; }

/* ===== PHONE MOCKUP ===== */
.phone {
  position: relative; z-index: 2;
  width: 280px; aspect-ratio: 280 / 580;
  background: #1b120c; border-radius: 46px;
  padding: 11px; box-shadow: var(--sh-lg), 0 0 0 2px rgba(36,23,16,.04);
}
.phone--tilt { transform: rotate(-3deg); }
.phone__screen {
  position: relative; width: 100%; height: 100%;
  background: var(--cream); border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone__notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 23px; background: #1b120c; border-radius: var(--r-full); z-index: 10;
}

/* ----- app screen shell ----- */
.app { display: flex; flex-direction: column; height: 100%; font-size: 12px; color: var(--ink); }
.app__status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px 6px; font-size: 11px; font-weight: 700; color: var(--ink);
}
.app__status .dots { display: flex; gap: 4px; }
.app__status .material-symbols-outlined { font-size: 13px; }
.app__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 16px 12px;
}
.app__bar h4 { font-family: var(--font-head); font-weight: 400; font-size: 17px; }
.app__bar .material-symbols-outlined { font-size: 20px; color: var(--ink-mid); }
.app__body { flex: 1; padding: 0 16px 16px; overflow: hidden; display: flex; flex-direction: column; gap: 9px; }

/* chips */
.app-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.app-chip { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-full); padding: 5px 11px; font-size: 10.5px; font-weight: 600; color: var(--ink-mid); }
.app-chip.on { background: var(--orange); border-color: var(--orange); color: var(--ink); }

/* dish cards (Choose) */
.appdish { display: flex; gap: 11px; background: var(--white); border-radius: 16px; padding: 9px; box-shadow: var(--sh-xs); border: 1.5px solid transparent; }
.appdish.sel { border-color: var(--orange); box-shadow: 0 6px 18px var(--orange-glow); }
.appdish__img { width: 62px; height: 62px; border-radius: 11px; flex-shrink: 0; }
.thumb-1 { background: linear-gradient(140deg,#F4C77A,#E89A3C); }
.thumb-2 { background: linear-gradient(140deg,#BFE08C,#7FAF4A); }
.thumb-3 { background: linear-gradient(140deg,#F2A99B,#DC7361); }
.thumb-4 { background: linear-gradient(140deg,#E7C7F0,#B98FD0); }
.appdish__main { display: flex; flex-direction: column; justify-content: center; gap: 3px; min-width: 0; }
.appdish__name { font-family: var(--font-head); font-weight: 400; font-size: 13.5px; line-height: 1.15; }
.appdish__meta { font-size: 10.5px; color: var(--ink-soft); display: flex; gap: 8px; }
.appdish__meta .star { color: var(--orange); }

/* cook screen */
.appcook-prog { display: flex; align-items: center; gap: 8px; }
.appcook-prog .track { flex: 1; height: 6px; background: var(--cream-mid); border-radius: 99px; overflow: hidden; }
.appcook-prog .fill { width: 50%; height: 100%; background: var(--orange); border-radius: 99px; }
.appcook-prog .lbl { font-size: 10px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.appcook-step { font-family: var(--font-head); font-size: 10px; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; }
.appcook-inst { font-family: var(--font-head); font-weight: 400; font-size: 19px; line-height: 1.22; margin-top: 2px; }
.appcook-timer {
  margin: 4px auto; width: 108px; height: 108px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: conic-gradient(var(--orange) 62%, var(--cream-mid) 0);
}
.appcook-timer .inner { width: 86px; height: 86px; border-radius: 50%; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.appcook-timer .t { font-family: var(--font-head); font-weight: 400; font-size: 22px; }
.appcook-timer .s { font-size: 9px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }
.appcoach { display: flex; gap: 8px; align-items: flex-start; background: var(--green-light); border-radius: 13px; padding: 10px 11px; }
.appcoach .cat { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.appcoach .cat .material-symbols-outlined { font-size: 15px; }
.appcoach p { font-size: 10.5px; color: var(--green); line-height: 1.4; }
.appbtn { margin-top: auto; background: var(--orange); color: var(--ink); border-radius: 13px; text-align: center; padding: 12px; font-family: var(--font-head); font-weight: 400; font-size: 14px; display: block; text-decoration: none; }
.appcook-photo { position: relative; width: 100%; height: 116px; border-radius: 14px; background-size: cover; background-position: center; box-shadow: var(--sh-xs); }
.appcook-photo__chip { position: absolute; bottom: 8px; right: 8px; display: inline-flex; align-items: center; gap: 4px; background: rgba(36,23,16,.62); color: #fff; font-weight: 600; font-size: 11px; padding: 4px 9px; border-radius: 99px; }
.appcook-photo__chip .material-symbols-outlined { font-size: 13px; }

/* level up screen */
.applevel-xp { font-family: var(--font-head); font-weight: 400; font-size: 34px; color: var(--orange); line-height: 1; }
.applevel-sub { font-size: 11px; color: var(--ink-mid); }
.applevel-card { background: var(--white); border-radius: 14px; padding: 13px; box-shadow: var(--sh-xs); display: flex; flex-direction: column; gap: 7px; }
.applevel-card h5 { font-family: var(--font-head); font-weight: 400; font-size: 13px; }
.applevel-track { height: 8px; background: var(--cream-mid); border-radius: 99px; overflow: hidden; }
.applevel-fill { width: 78%; height: 100%; background: linear-gradient(90deg, var(--orange), var(--green-mid)); border-radius: 99px; }
.applevel-tier { font-size: 10px; font-weight: 700; color: var(--ink-soft); }
.applevel-skills { display: flex; flex-direction: column; gap: 7px; }
.applevel-skill { display: flex; align-items: center; gap: 9px; background: var(--white); border-radius: 11px; padding: 8px 10px; box-shadow: var(--sh-xs); }
.applevel-skill .ic { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.applevel-skill .ic .material-symbols-outlined { font-size: 16px; }
.ic--o { background: var(--orange-light); color: var(--orange-deep); }
.ic--g { background: var(--green-light); color: var(--green); }
.applevel-skill .nm { font-size: 11px; font-weight: 700; flex: 1; }
.applevel-skill .lv { font-size: 9.5px; color: var(--ink-soft); }

.feature--cream { background: var(--cream); }
.feature--cream .feature__media .blob--cream { background: var(--white); }

/* ===== STAT BAND ===== */
.stats { background: var(--ink); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 0; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: var(--font-head); font-weight: 400; font-size: clamp(2rem,3.4vw,2.8rem); color: var(--orange); line-height: 1; }
.stat__lbl { font-size: .9rem; color: rgba(255,255,255,.62); margin-top: 8px; }
.stats .section { padding: 56px 0; }

/* ===== FEATURE ROWS ===== */
.feature { padding: 96px 0; }
.feature:nth-child(even) { background: var(--cream); }
.feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature--rev .feature__media { order: 2; }
.feature__media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 540px; }
.feature__text { max-width: 480px; }
.feature__text h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.9rem,3.6vw,2.7rem); color: var(--ink); margin: 16px 0 0; line-height: 1.1; }
.feature__text p { font-size: 1.08rem; color: var(--ink-mid); margin: 16px 0 0; line-height: 1.62; }
.feature__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 0; }
.feature__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.feature__list .material-symbols-outlined { font-size: 21px; color: var(--green); flex: none; }
.feature__cta { margin-top: 30px; }

/* ===== PROCESS (animated, no devices) ===== */
.proc { background: var(--white); }
.proc__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.proc-card {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 30px 34px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.proc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.proc-num { font-family: var(--font-head); font-size: 13px; color: var(--orange); letter-spacing: .12em; }
.proc-anim { height: 230px; margin: 4px 0 20px; display: flex; align-items: center; justify-content: center; }
.proc-card h3 { font-family: var(--font-head); font-weight: 400; font-size: 1.55rem; color: var(--ink); }
.proc-card p { font-size: 1.02rem; color: var(--ink-mid); margin-top: 8px; line-height: 1.5; }

/* 01 — Choose: a hand taps and the middle dish pops + gets a check */
.anim-choose { position: relative; display: flex; gap: 15px; align-items: flex-end; justify-content: center; width: 100%; height: auto; transform: scale(1.5); }
.ac-card { width: 74px; height: 102px; border-radius: 17px; background: var(--white); border: 2px solid var(--line); box-shadow: var(--sh-sm); position: relative; }
.ac-card::after { content: ''; position: absolute; bottom: 9px; left: 9px; width: 36px; height: 6px; border-radius: 3px; background: var(--cream-dark); }
.ac-thumb { position: absolute; top: 6px; left: 6px; right: 6px; height: 68px; border-radius: 12px; background-size: cover; background-position: center; }
.ac-card-a .ac-thumb { background-image: image-set(url('assets/dish-manty.webp') type('image/webp'), url('assets/dish-manty-opt.jpg') type('image/jpeg')); }
.ac-card-b .ac-thumb { background-image: image-set(url('assets/dish-laghman.webp') type('image/webp'), url('assets/dish-laghman-opt.jpg') type('image/jpeg')); }
.ac-card-c .ac-thumb { background-image: image-set(url('assets/dish-steak.webp') type('image/webp'), url('assets/dish-steak-opt.jpg') type('image/jpeg')); }
.ac-card-b { animation: acLift 3s ease-in-out infinite; }
@keyframes acLift {
  0%, 28%   { transform: translateY(0) scale(1); border-color: var(--line); box-shadow: var(--sh-xs); }
  46%, 82%  { transform: translateY(-14px) scale(1.1); border-color: var(--orange); box-shadow: 0 12px 22px var(--orange-glow); }
  100%      { transform: translateY(0) scale(1); border-color: var(--line); box-shadow: var(--sh-xs); }
}
.ac-badge { position: absolute; top: -10px; right: -10px; width: 25px; height: 25px; border-radius: 50%; background: var(--green); color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; transform: scale(0); animation: acBadge 3s ease-in-out infinite; }
@keyframes acBadge { 0%, 40% { transform: scale(0); } 52%, 80% { transform: scale(1); } 100% { transform: scale(0); } }
.ac-hand { position: absolute; bottom: -4px; left: 50%; color: var(--ink); font-size: 36px; opacity: 0; animation: acTap 3s ease-in-out infinite; }
@keyframes acTap {
  0%, 26%  { transform: translate(-50%, 10px); opacity: 0; }
  38%      { transform: translate(-50%, 0); opacity: .92; }
  46%      { transform: translate(-50%, 5px); opacity: .92; }
  58%, 100%{ transform: translate(-50%, 10px); opacity: 0; }
}

/* 02 — Prep: real chopping GIF (zooms in on hover) */
.anim-prep { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 14px; cursor: pointer; }
.prep-gif { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; box-shadow: var(--sh-sm); display: block; transform: scale(1); transition: transform .65s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.proc-card:hover .prep-gif { transform: scale(1.1); }
.pk-shadow { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); width: 168px; height: 14px; background: radial-gradient(ellipse at center, rgba(60,30,10,.16), transparent 70%); }
.pk-board { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); width: 150px; height: 15px; background: linear-gradient(180deg, #D6A971, #B0814B); border-radius: 8px; box-shadow: 0 3px 7px rgba(60,30,10,.16); }
.pk-board::after { content: ''; position: absolute; top: 4px; left: 12px; right: 12px; height: 1.5px; background: rgba(60,30,10,.13); border-radius: 2px; }
/* cream bowl of herbs */
.pk-bowl { position: absolute; bottom: 30px; right: 2px; width: 50px; height: 25px; background: linear-gradient(180deg, #FBF6EC, #ECDFC6); border: 2px solid #E0CEA8; border-top: none; border-radius: 0 0 40px 40px / 0 0 25px 25px; box-shadow: var(--sh-xs); opacity: 0; animation: pkBowl 5s ease-in-out infinite; }
.pk-bowl::before { content: ''; position: absolute; top: -5px; left: -2px; right: -2px; height: 9px; background: #FFFBF2; border: 2px solid #E0CEA8; border-radius: 50%; }
.pk-bowl-herb { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 30px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 28% 50%, #7FAF4A 0 3px, transparent 3.5px), radial-gradient(circle at 58% 38%, #6FA63C 0 2.6px, transparent 3px), radial-gradient(circle at 82% 62%, #8BC44A 0 2.6px, transparent 3px); }
/* whole veg placed on the board */
.pk-veg { position: absolute; bottom: 33px; left: 36px; width: 21px; height: 17px; border-radius: 50%; background: radial-gradient(circle at 38% 32%, #F0907E, #D84A35); box-shadow: inset 0 -2px 3px rgba(120,20,10,.3); transform-origin: center bottom; animation: pkVeg 5s ease-in-out infinite; }
.pk-veg::after { content: ''; position: absolute; top: -3px; left: 50%; transform: translateX(-50%); width: 7px; height: 5px; background: #5E9D33; border-radius: 60% 60% 40% 40%; }
/* chopped pieces accumulating */
.pk-bit { position: absolute; bottom: 34px; width: 8px; height: 8px; border-radius: 50%; opacity: 0; box-shadow: inset 0 -1.5px 0 rgba(0,0,0,.13); }
.pk-b1 { left: 64px;  background: #7FAF4A; animation: pkBit 5s ease-out infinite; animation-delay: 1.6s; }
.pk-b2 { left: 76px;  background: #E8463A; animation: pkBit 5s ease-out infinite; animation-delay: 2.1s; }
.pk-b3 { left: 88px;  background: #E89A3C; animation: pkBit 5s ease-out infinite; animation-delay: 2.6s; }
.pk-b4 { left: 100px; background: #6FA63C; animation: pkBit 5s ease-out infinite; animation-delay: 3.0s; }
/* knife gently rocking */
.pk-knife { position: absolute; top: 30px; left: 42px; transform-origin: 84% 90%; animation: pkChop 5s ease-in-out infinite; }
.pk-blade { display: block; width: 46px; height: 14px; background: linear-gradient(180deg, #EEF2F5, #AEB8C0); border-radius: 4px 6px 9px 15px; box-shadow: 0 1px 2px rgba(0,0,0,.16); }
.pk-handle { position: absolute; right: -20px; top: 3px; width: 22px; height: 8px; background: #3a2a20; border-radius: 3px; }
@keyframes pkChop {
  0%, 22%   { transform: rotate(-15deg) translateY(-9px); }
  30%       { transform: rotate(0deg) translateY(0); }
  37%       { transform: rotate(-11deg) translateY(-6px); }
  44%       { transform: rotate(0deg) translateY(0); }
  51%       { transform: rotate(-11deg) translateY(-6px); }
  58%       { transform: rotate(0deg) translateY(0); }
  66%, 100% { transform: rotate(-15deg) translateY(-9px); }
}
@keyframes pkVeg {
  0%   { opacity: 0; transform: translateY(-16px) scale(.9); }
  10%  { opacity: 1; transform: translateY(0) scale(1); }
  52%  { opacity: 1; transform: translateY(0) scaleX(1); }
  64%  { opacity: 0; transform: translateY(0) scaleX(.35); }
  100% { opacity: 0; }
}
@keyframes pkBit {
  0%   { opacity: 0; transform: scale(0) translateY(-3px); }
  14%  { opacity: 1; transform: scale(1) translateY(0); }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes pkBowl {
  0%, 10% { opacity: 0; transform: translateY(8px); }
  24%     { opacity: 1; transform: translateY(0); }
  92%     { opacity: 1; transform: translateY(0); }
  100%    { opacity: 0; transform: translateY(0); }
}

/* 03 — Cook: real cooking GIF (zooms in on hover) */
.anim-cook { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 14px; cursor: pointer; transform: none; }
.cook-gif { width: 100%; height: 100%; object-fit: cover; object-position: center 66%; border-radius: 14px; box-shadow: var(--sh-sm); display: block; transform: scale(1); transition: transform .65s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.proc-card:hover .cook-gif { transform: scale(1.1); }
.ck-shadow { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); width: 104px; height: 12px; background: radial-gradient(ellipse at center, rgba(60,30,10,.16), transparent 70%); }
.ck-pot { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); width: 86px; height: 30px; background: linear-gradient(180deg, #3a2a20, #241710); border-radius: 0 0 46px 46px / 0 0 26px 26px; box-shadow: var(--sh-sm); }
.ck-pot::before { content: ''; position: absolute; top: -6px; left: -2px; right: -2px; height: 14px; background: #4a3527; border-radius: 50%; }
.ck-sauce { position: absolute; top: -2px; left: 8px; right: 8px; height: 11px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #F3A64E, #D8531F); overflow: hidden; }
.ck-bub { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,225,180,.85); top: 3px; opacity: 0; }
.ck-bub1 { left: 18px; animation: ckBub 2s ease-in-out infinite 0s; }
.ck-bub2 { left: 38px; animation: ckBub 2s ease-in-out infinite .7s; }
.ck-bub3 { left: 56px; animation: ckBub 2s ease-in-out infinite 1.3s; }
.ck-handle { position: absolute; right: -34px; top: 8px; width: 38px; height: 7px; background: #3a2a20; border-radius: 99px; }
.ck-spoon { position: absolute; bottom: 30px; left: 50%; transform-origin: 50% 86%; animation: ckStir 3s ease-in-out infinite; }
.ck-spoon-stick { display: block; width: 7px; height: 52px; margin: 0 auto; background: linear-gradient(90deg, #B0814B, #8A6234); border-radius: 99px; }
.ck-spoon-head { position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 18px; height: 13px; background: #B0814B; border-radius: 50%; box-shadow: inset 0 -2px 2px rgba(60,30,10,.3); }
.cook-steam { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); width: 56px; height: 50px; z-index: 2; }
.cook-steam span { position: absolute; bottom: 0; width: 6px; border-radius: 99px; background: linear-gradient(180deg, rgba(160,130,100,0), rgba(160,130,100,.5)); opacity: 0; animation: steam 2.6s ease-in-out infinite; }
.cook-steam span:nth-child(1) { left: 12px; height: 24px; animation-delay: 0s; }
.cook-steam span:nth-child(2) { left: 26px; height: 32px; animation-delay: .6s; }
.cook-steam span:nth-child(3) { left: 40px; height: 24px; animation-delay: 1.2s; }
@keyframes ckStir { 0%, 100% { transform: rotate(-16deg); } 50% { transform: rotate(16deg); } }
@keyframes ckBub { 0%, 100% { opacity: 0; transform: translateY(2px) scale(.5); } 45% { opacity: .9; transform: translateY(-2px) scale(1); } 60% { opacity: 0; transform: translateY(-4px) scale(.6); } }
@keyframes steam { 0% { opacity: 0; transform: translateY(6px) scaleY(.6); } 35% { opacity: .85; } 100% { opacity: 0; transform: translateY(-22px) scaleY(1.1); } }

/* 04 — Level up: XP bar fills and a skill tier unlocks */
.anim-level { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; transform: scale(1.45); }
.lv-xp { font-family: var(--font-head); font-weight: 400; color: var(--orange); font-size: 26px; line-height: 1; opacity: 0; animation: lvXp 3.6s ease-out infinite; }
.lv-bar { position: relative; width: 156px; height: 14px; background: var(--cream-mid); border-radius: 99px; overflow: hidden; box-shadow: inset 0 1px 2px rgba(60,30,10,.08); }
.lv-bar-fill { position: absolute; inset: 0; width: 24%; background: linear-gradient(90deg, #E8940A, #8BC44A); border-radius: 99px; overflow: hidden; animation: lvBar 3.6s ease-in-out infinite; }
.lv-bar-shine { position: absolute; top: 0; bottom: 0; width: 26px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent); transform: skewX(-18deg); animation: lvShine 3.6s ease-in-out infinite; }
.lv-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--line); border-radius: 99px; padding: 7px 13px; font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: var(--sh-sm); opacity: 0; transform: scale(.8); animation: lvBadge 3.6s ease-out infinite; }
.lv-badge .material-symbols-outlined { font-size: 17px; color: var(--orange); }
@keyframes lvXp { 0%, 8% { opacity: 0; transform: translateY(8px) scale(.8); } 24%, 86% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; } }
@keyframes lvBar { 0%, 8% { width: 24%; } 58%, 86% { width: 100%; } 100% { width: 24%; } }
@keyframes lvShine { 0%, 12% { transform: translateX(-30px) skewX(-18deg); } 54% { transform: translateX(150px) skewX(-18deg); } 100% { transform: translateX(150px) skewX(-18deg); } }
@keyframes lvBadge { 0%, 56% { opacity: 0; transform: scale(.8); } 68% { opacity: 1; transform: scale(1.14); } 78%, 88% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(.8); } }

/* ===== BENEFITS ===== */
.benefits { background: var(--white); }
.benefits__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.benefit-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.benefit-icon { width: 50px; height: 50px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon .material-symbols-outlined { font-size: 24px; }
.bi--orange { background: var(--orange-light); color: var(--orange-deep); }
.bi--green  { background: var(--green-light); color: var(--green); }
.benefit-card h3 { font-family: var(--font-head); font-weight: 400; font-size: 1.2rem; color: var(--ink); }
.benefit-card p  { font-size: .96rem; color: var(--ink-mid); margin-top: 8px; line-height: 1.55; }

/* ===== WHY IT WORKS (mascot-led) ===== */
.whyworks { background: var(--cream); }
.ww-head { text-align: center; max-width: 760px; margin: 0 auto; }
.ww-guide { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-full); padding: 10px 22px 10px 12px; box-shadow: var(--sh-sm); text-align: left; }
.ww-guide__cat { width: 54px; height: 54px; flex: none; }
.ww-guide__bubble { font-size: 1.02rem; color: var(--ink-mid); max-width: 440px; line-height: 1.4; }
.ww-guide__bubble b { color: var(--ink); }

.ww-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 42px; }
.ww-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.ww-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.ww-visual { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); min-height: 132px; padding: 18px; display: flex; flex-direction: column; justify-content: center; margin-bottom: 18px; }

/* card 1 — recipe step */
.ww-step__top { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink); }
.ww-step__top .ic { font-size: 19px; color: var(--orange); }
.ww-step__n { margin-left: auto; color: var(--ink-soft); }
.ww-step__txt { font-size: 12.5px; color: var(--ink-mid); line-height: 1.45; margin: 11px 0 12px; }
.ww-dots { display: flex; gap: 5px; }
.ww-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--cream-dark); }
.ww-dots span.on { background: var(--orange); }

/* card 2 — skill bars */
.ww-skills { display: flex; flex-direction: column; gap: 11px; }
.ww-skill { display: flex; align-items: center; gap: 11px; }
.ww-skill .ic { width: 31px; height: 31px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex: none; }
.ic--o { background: var(--orange-light); color: var(--orange-deep); }
.ic--g { background: var(--green-light); color: var(--green); }
.ww-skill__bar { flex: 1; height: 8px; background: var(--cream-mid); border-radius: 99px; overflow: hidden; }
.ww-skill__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--orange), var(--green-mid)); border-radius: 99px; }

/* card 3 — prep checklist */
.ww-check { display: flex; flex-direction: column; gap: 9px; }
.ww-check__row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-soft); }
.ww-check__row .material-symbols-outlined { font-size: 19px; color: var(--cream-dark); }
.ww-check__row.done { color: var(--ink); }
.ww-check__row.done .material-symbols-outlined { color: var(--green); }

/* card 4 — XP feedback */
.ww-xp__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ww-xp__big { font-family: var(--font-head); font-weight: 400; color: var(--orange); font-size: 23px; line-height: 1; }
.ww-xp__badge { display: inline-flex; align-items: center; gap: 5px; background: var(--green-light); color: var(--green); font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 99px; }
.ww-xp__badge .material-symbols-outlined { font-size: 14px; }
.ww-xp__bar { height: 9px; background: var(--cream-mid); border-radius: 99px; overflow: hidden; margin: 13px 0 9px; }
.ww-xp__bar i { display: block; height: 100%; width: 78%; background: linear-gradient(90deg, var(--orange), var(--green-mid)); border-radius: 99px; }
.ww-xp__lbl { font-size: 12px; color: var(--ink-soft); font-weight: 600; }

/* card 4 — finished-dish photo result */
.ww-visual--photo { justify-content: flex-start; gap: 10px; }
.ww-result { position: relative; width: 100%; height: 96px; border-radius: 12px; background-size: cover; background-position: center; box-shadow: var(--sh-xs); overflow: hidden; }
.ww-result::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,23,16,.05), rgba(36,23,16,.32)); }
.ww-result__xp { position: absolute; top: 9px; left: 9px; z-index: 1; font-family: var(--font-head); font-weight: 400; font-size: 16px; color: #fff; background: rgba(36,23,16,.55); backdrop-filter: blur(2px); padding: 3px 11px; border-radius: 99px; }
.ww-result__badge { position: absolute; bottom: 9px; right: 9px; z-index: 1; display: inline-flex; align-items: center; gap: 5px; background: var(--white); color: var(--green); font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 99px; box-shadow: var(--sh-sm); }
.ww-result__badge .material-symbols-outlined { font-size: 14px; color: var(--orange); }
.ww-result__lbl { font-size: 12px; color: var(--ink-soft); font-weight: 600; text-align: center; }

/* card text + mascot speech */
.ww-card h3 { font-family: var(--font-head); font-weight: 400; font-size: 1.28rem; color: var(--ink); }
.ww-card p { font-size: .96rem; color: var(--ink-mid); margin-top: 7px; line-height: 1.5; }
.ww-say { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.ww-say img { width: 32px; height: 32px; flex: none; }
.ww-say span { background: var(--cream-mid); color: var(--ink); font-size: 12.5px; font-weight: 600; border-radius: 4px 13px 13px 13px; padding: 7px 12px; }

/* ===== TESTIMONIALS ===== */
.tst { background: var(--cream); }
.tst__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

/* carousel */
.tst__carousel { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.tst__track { display: flex; width: max-content; animation: tstScroll 32s linear infinite; }
.tst__carousel:hover .tst__track { animation-play-state: paused; }
.tst__track .tcard { width: 370px; flex: none; margin-right: 22px; }
@keyframes tstScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.tcard { background: var(--white); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; overflow: hidden; }
.tcard__photo { height: 168px; margin: -28px -24px 20px; background-size: cover; background-position: center; }
.tcard__stars { color: var(--orange); letter-spacing: 2px; font-size: 1rem; }
.tcard__quote { font-size: 1.04rem; color: var(--ink); line-height: 1.6; margin: 14px 0 22px; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 12px; }
.tcard__who .avatar { width: 44px; height: 44px; }
.tcard__name { font-weight: 700; font-size: .98rem; }
.tcard__role { font-size: .85rem; color: var(--ink-soft); }

/* ===== PRICING ===== */
.pricing { background: var(--white); }
.billing-toggle { display: flex; justify-content: center; gap: 8px; margin: -24px auto 32px; padding: 6px; width: max-content; max-width: 100%; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-full); }
.billing-option { min-height: 44px; border: 0; border-radius: var(--r-full); padding: 0 18px; background: transparent; color: var(--ink-mid); font-family: var(--font-body); font-size: 14px; font-weight: 800; cursor: pointer; }
.billing-option span { color: var(--green); margin-left: 4px; }
.billing-option.is-active { background: var(--orange); color: var(--ink); box-shadow: var(--sh-xs); }
.billing-option.is-active span { color: var(--ink); }
.billing-option:focus-visible, .btn:focus-visible { outline: 3px solid var(--green-mid); outline-offset: 3px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 760px; margin: 0 auto; align-items: stretch; }
.price-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: 34px 24px; position: relative; display: flex; flex-direction: column; min-height: 100%; }
.price-card--featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), var(--sh-md); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--ink); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 18px; border-radius: var(--r-full); white-space: nowrap; }
.price-tier { font-family: var(--font-head); font-weight: 400; font-size: 1.6rem; color: var(--ink); margin-top: 8px; line-height: 1; }
.price-amount { font-family: var(--font-head); font-weight: 400; font-size: 3rem; margin: 14px 0 4px; line-height: 1; }
.price-amount small { font-size: 1rem; font-weight: 500; opacity: .6; }
.price-save { display: inline-flex; align-items: center; min-height: 28px; width: max-content; margin: 8px 0 0; padding: 3px 10px; border-radius: var(--r-full); background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.price-list { margin: 0 0 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.price-list .price-check { font-size: 19px; color: var(--green); flex: none; margin-top: 1px; }
.price-list .price-dash { font-size: 16px; color: var(--ink-soft); flex: none; margin-top: 2px; width: 19px; text-align: center; }
/* Excluded-benefit row (e.g. "Contains ads") — muted so it never reads as a green check. */
.price-list li.price-off { color: var(--ink-soft); }
.price-card .btn { width: 100%; }
.price-note { font-size: 12px; font-weight: 600; color: var(--ink-soft); margin: 6px 0 0; }
.price-footer-note { text-align: center; font-size: .88rem; color: var(--ink-soft); max-width: 640px; margin: 28px auto 0; }
.lifetime-callout { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin: 24px auto 0; max-width: 920px; padding: 28px; border-radius: var(--r-xl); background: var(--cream); border: 1.5px solid var(--line); }
.lifetime-callout h3 { font-family: var(--font-head); font-weight: 400; font-size: 2rem; margin: 14px 0 8px; color: var(--ink); }
.lifetime-callout p { color: var(--ink-mid); line-height: 1.6; max-width: 620px; }
.lifetime-price { display: grid; gap: 8px; min-width: 190px; text-align: center; }
.lifetime-price strong { font-family: var(--font-head); font-weight: 400; font-size: 3.1rem; line-height: 1; color: var(--ink); }
.lifetime-price span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq-row { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; }
.faq-row summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; font-family: var(--font-head); font-weight: 400; font-size: 1.12rem;
  color: var(--ink); cursor: pointer; list-style: none; gap: 18px;
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-mid); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; color: var(--ink-mid); transition: all .25s ease; }
.faq-row[open] summary { color: var(--orange); }
.faq-row[open] .faq-icon { background: var(--orange-light); color: var(--orange); transform: rotate(45deg); }
.faq-row p { font-size: 1rem; color: var(--ink-mid); line-height: 1.7; padding: 0 24px 24px; }

/* ===== WAITLIST CTA ===== */
.waitlist { background: var(--white); }
.wl-card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 360px at 88% 20%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(135deg, #E8940A, #C47908);
  border-radius: var(--r-xl); padding: 64px 56px; text-align: center;
  box-shadow: var(--sh-md);
}
.wl-card .eyebrow { background: rgba(255,255,255,.22); color: #fff; }
.wl-card h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(2rem,4vw,3rem); color: #fff; margin: 18px 0 0; }
.wl-card p { color: rgba(255,255,255,.9); font-size: 1.12rem; margin: 14px auto 0; max-width: 520px; line-height: 1.6; }
.wl-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 32px auto 0; max-width: 520px; }
.wl-form input { flex: 1 1 260px; border: none; background: var(--white); border-radius: var(--r-full); padding: 16px 24px; font-family: var(--font-body); font-size: 1rem; color: var(--ink); outline: none; box-shadow: 0 0 0 0 rgba(255,255,255,.5); transition: box-shadow .2s; }
.wl-form input:focus { box-shadow: 0 0 0 4px rgba(255,255,255,.4); }
.wl-form .btn--dark { background: var(--ink); border-color: var(--ink); }
.wl-note { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78); margin-top: 16px; }
.wl-form[hidden] { display: none; }   /* the [hidden] attr alone loses to .wl-form's display:flex — force it */
.wl-success { margin: 32px auto 0; max-width: 520px; font-family: var(--font-head); font-weight: 400; font-size: clamp(1.5rem, 3.2vw, 2.1rem); color: #fff; line-height: 1.22; }
.wl-success small { display: block; margin-top: 12px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: rgba(255,255,255,.82); }
.wl-proof { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 24px auto 0; }
.wl-faces { display: flex; }
.wl-face { width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: center; border: 2.5px solid #fff; margin-left: -12px; box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.wl-face:first-child { margin-left: 0; }
.wl-proof-txt { font-size: 14px; color: rgba(255,255,255,.92); }
.wl-proof-txt b { color: #fff; }

/* ===== FOOTER ===== */
.ftr { background: var(--ink); color: rgba(255,255,255,.6); padding: 66px 0 30px; }
.ftr__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 46px; }
.ftr__brand { max-width: 320px; }
.ftr__brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.ftr__hat { width: 34px; height: 34px; filter: brightness(0) invert(1); opacity: .92; }
.ftr__brand-name { font-family: var(--font-logo); font-weight: 400; font-size: 1.2rem; color: #fff; }
.ftr__brand p { font-size: .94rem; line-height: 1.6; color: rgba(255,255,255,.45); }
.ftr__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.ftr__col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.32); margin-bottom: 15px; }
.ftr__col a { display: block; font-size: .94rem; color: rgba(255,255,255,.6); margin-bottom: 11px; transition: color .2s; }
.ftr__col a:hover { color: var(--orange); }
.ftr__bar { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,.35); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
[id] { scroll-margin-top: 90px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .hero { padding: 132px 0 72px; }
  .hero--center { padding: 120px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero__showcase { transform: scale(.9); margin-top: 36px; }
  .hero__text { max-width: 600px; margin: 0 auto; }
  .hero__cta, .hero__proof { justify-content: center; }
  .hero__visual { min-height: 0; margin-top: 30px; order: 2; }
  .feature__inner { grid-template-columns: 1fr; gap: 24px; }
  .feature--rev .feature__media { order: 0; }
  .feature__media { min-height: 0; order: 0; margin-bottom: 12px; }
  .feature__text { max-width: 600px; margin: 0 auto; text-align: center; }
  .feature__list { display: inline-flex; text-align: left; }
  .benefits__grid { grid-template-columns: repeat(2,1fr); }
  .proc__grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .tst__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { display: none; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .feature { padding: 64px 0; }
  .hero--center { padding: 104px 0 56px; }
  .hero__showcase { transform: scale(.82); min-height: 540px; margin-top: 8px; }
  .float-card, .food-bubble, .hero-cook-pill { display: none; }
  .hs-blob1 { left: -4%; width: 240px; height: 240px; }
  .hs-blob2 { right: -4%; width: 200px; height: 200px; }
  /* Hide the WHOLE desktop CTA on mobile, not just the login link: the language switch + "Sign up"
     collided with the burger and clipped ("Sig…"). The burger menu already contains the language
     switch, Log in and Sign up (page-v2.js toggles it), so nothing is lost. */
  .hdr__cta { display: none; }
  .burger { display: flex; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .ww-grid { grid-template-columns: 1fr; }
  .ww-guide { flex-direction: column; text-align: center; border-radius: var(--r-lg); padding: 18px 22px; }
  .proc__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .billing-toggle { width: 100%; justify-content: stretch; }
  .billing-option { flex: 1; padding: 0 12px; }
  .billing-option span { display: block; margin-left: 0; font-size: 11px; line-height: 1.2; }
  .lifetime-callout { grid-template-columns: 1fr; text-align: left; padding: 24px; }
  .lifetime-price { text-align: left; min-width: 0; }
  .wl-card { padding: 44px 24px; }
  .brand__word { font-size: 1.1rem; }
  .mobile-menu.open {
    display: block; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line); padding: 14px 28px;
  }
  .mobile-menu a { display: block; padding: 13px 0; font-weight: 600; font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .phone--tilt { transform: none; }
  .float-card { animation: none !important; }
  .tst__track { animation: none !important; }
  .ac-card-b, .ac-badge, .ac-hand, .pk-knife, .pk-veg, .pk-bit, .pk-bowl, .lv-bar-fill, .lv-bar-shine, .lv-xp, .lv-badge { animation: none !important; }
  .ac-badge { transform: scale(1); }
  .pk-veg { opacity: 0; }
  .pk-bit, .pk-bowl { opacity: 1; }
  .lv-bar-fill { width: 100%; }
  .lv-xp, .lv-badge { opacity: 1; transform: none; }
}

/* ── Accessibility & polish ─────────────────────────────────────── */
/* Visible keyboard focus ring (WCAG 2.4.7) — shown only for keyboard users,
   not on mouse click, thanks to :focus-visible. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 8px;
}
/* Footer link contrast — lift from rgba(255,255,255,.6) (fails WCAG AA) to a readable level. */
.ftr__col a,
.ftr__bar a { color: rgba(255, 255, 255, 0.82); }
.ftr__col a:hover,
.ftr__bar a:hover { color: #fff; }
.ftr__legal a { text-decoration: underline; }
