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

:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #888;
  --text-muted: #B5B2AC;
  --accent: #FF6B35;
  --accent-hover: #E85A28;
  --accent-soft: #FFE8DC;
  --warm: #FFF4EC;
  --warm-deep: #2A1A12;
  --dark: #141210;
  --dark-surface: #1F1B17;
  --dark-card: #26211C;
  --dark-border: rgba(255,255,255,0.06);
  --card-bg: #F3F2EF;
  --radius: 24px;
  --radius-lg: 40px;
  --radius-sm: 14px;
  --font: 'DM Sans', sans-serif;
  --shadow-float: 0 40px 80px -30px rgba(0,0,0,0.22), 0 14px 28px -12px rgba(0,0,0,0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Nav ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left { display: flex; align-items: center; gap: 40px; }

.logo {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links { display: flex; gap: 28px; }

.nav-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-lang { display: flex; align-items: center; gap: 2px; margin-right: 8px; }
.nav-lang-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}
.nav-lang-link:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-lang-link.active { color: var(--text); font-weight: 600; }

.mobile-lang { display: none; justify-content: center; gap: 4px; margin-top: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,53,0.25); }

.btn-outline { background: transparent; color: var(--text); border: 1.5px solid #ddd; }
.btn-outline:hover { border-color: var(--text); }

.btn-white { background: white; color: var(--text); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---- Mobile menu ---- */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 200;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ---- Hero (v2) ---- */
.hero {
  position: relative;
  padding: 160px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  background: var(--warm);
  border: 1px solid var(--accent-soft);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-hover);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.18);
}

.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 6.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 1000px;
  margin: 0 auto;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 2%; right: 2%;
  bottom: 0.03em;
  height: 0.12em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  margin: 28px auto 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #555;
  line-height: 1.6;
  font-weight: 400;
  max-width: 620px;
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note { font-size: 0.85rem; color: var(--text-secondary); font-weight: 400; }
.hero-note::before {
  content: '✓';
  display: inline-block;
  margin-right: 6px;
  color: var(--accent);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.hero-stats strong { color: var(--text); font-weight: 600; margin-right: 4px; }
.hero-stats .dot { width: 3px; height: 3px; border-radius: 50%; background: #ccc; }

/* Stage with floating cards around the phone */
.hero-stage {
  position: relative;
  margin: 80px auto 0;
  max-width: 1100px;
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-stage::before {
  content: '';
  position: absolute;
  top: 6%; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.18), transparent 60%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-stage .phone {
  position: relative;
  z-index: 2;
  width: 320px;
}

/* Floating cards (parallax targets) */
.floater {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-float);
  z-index: 3;
  will-change: transform;
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
}
.floater-title { font-size: 0.82rem; font-weight: 600; margin-bottom: 2px; }
.floater-sub { font-size: 0.72rem; color: var(--text-secondary); }
.floater-emoji {
  width: 34px; height: 34px;
  background: var(--warm);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 8px;
}

.fl-1 { top: 8%; left: 4%; max-width: 230px; }
.fl-2 { top: 22%; right: 4%; max-width: 250px; }
.fl-3 { top: 54%; left: 2%; max-width: 220px; }
.fl-4 { top: 62%; right: 3%; max-width: 240px; }
.fl-5 { bottom: 4%; left: 20%; max-width: 200px; }

.floater .chip-row { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-top: 8px; }
.floater .chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  background: var(--card-bg);
  color: var(--text-secondary);
}
.floater .chip.on { background: var(--accent); color: white; }

.floater .qr-mini {
  width: 52px; height: 52px;
  background:
    conic-gradient(from 0deg, var(--dark) 0% 25%, white 25% 50%, var(--dark) 50% 75%, white 75% 100%);
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.floater .qr-mini::after {
  content: '';
  position: absolute;
  inset: 30%;
  background: var(--accent);
  border-radius: 3px;
}

.floater .toggle {
  width: 36px; height: 20px;
  background: var(--accent);
  border-radius: 100px;
  position: relative;
  flex-shrink: 0;
}
.floater .toggle::after {
  content: '';
  position: absolute;
  right: 2px; top: 2px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
}
.floater .toggle.off { background: #e5e5e5; }
.floater .toggle.off::after { right: auto; left: 2px; }

.floater-row { display: flex; align-items: center; gap: 10px; }
.floater-row .floater-main { flex: 1; }

/* ---- Pinned scroll scene ---- */
.scene {
  position: relative;
  background: var(--bg);
  padding: 80px 0 0;
}
.scene-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 0 24px;
}
.scene-title em { color: var(--accent); font-style: normal; }
.scene-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 60px;
  padding: 0 24px;
  line-height: 1.6;
  font-weight: 400;
}

.scene-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  min-height: 280vh;
}
.scene-sticky {
  position: sticky;
  top: 80px;
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.scene-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.scene-phone-wrap .phone { width: 320px; }
.scene-phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9/18.5;
  background: white;
  overflow: hidden;
}

.scene-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  padding: 0;
  pointer-events: none;
}
.scene-frame.active { opacity: 1; transform: scale(1); pointer-events: auto; }

.scene-panels { display: flex; flex-direction: column; gap: 24px; }
.scene-panel {
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  background: white;
  opacity: 0.35;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), background 0.5s var(--ease-out);
  cursor: pointer;
}
.scene-panel.right { transform: translateX(12px); }
.scene-panel h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.scene-panel p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.55; font-weight: 300; }
.scene-panel.active {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--accent-soft);
  background: var(--warm);
}

.scene-panels.left { align-items: flex-end; text-align: right; }
.scene-panels.left .scene-panel { max-width: 340px; }
.scene-panels.right .scene-panel { max-width: 340px; }

.scene-progress {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  z-index: 5;
  border: 1px solid rgba(0,0,0,0.06);
}
.scene-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d7d4cf;
  transition: width 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.scene-dot.active { width: 28px; border-radius: 8px; background: var(--accent); }

/* ---- Dark feature section ---- */
.dark-section {
  background: var(--dark);
  color: white;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,107,53,0.16), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.dark-section::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(255,107,53,0.08), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}

.dark-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.dark-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.dark-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.dark-header h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 640px;
}
.dark-header h2 em { color: var(--accent); font-style: normal; }
.dark-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 380px;
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.dark-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.3s;
}
.dark-card:hover { transform: translateY(-4px); border-color: rgba(255,107,53,0.3); }

.dark-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.dark-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}
.dark-card .visual {
  margin-bottom: 24px;
  height: 180px;
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark-card .visual:has(.mini-toggle-list) { padding: 26px 18px; }

.dark-card.span-4 { grid-column: span 4; }
.dark-card.span-3 { grid-column: span 3; }
.dark-card.span-2 { grid-column: span 2; }
.dark-card.tall .visual { height: 240px; }

/* Mini visual components for dark cards */
.mini-toggle-list { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.mini-toggle-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  font-size: 0.8rem;
  color: white;
}
.mini-toggle-row.off { color: rgba(255,255,255,0.35); }
.mini-toggle-row .ball {
  margin-left: auto;
  width: 28px; height: 16px;
  background: var(--accent); border-radius: 100px;
  position: relative;
}
.mini-toggle-row .ball::after {
  content: ''; position: absolute; right: 2px; top: 2px;
  width: 12px; height: 12px; background: white; border-radius: 50%;
}
.mini-toggle-row.off .ball { background: rgba(255,255,255,0.15); }
.mini-toggle-row.off .ball::after { right: auto; left: 2px; }

.mini-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.mini-chip {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  border: 1px solid var(--dark-border);
}
.mini-chip.on { background: var(--accent); color: white; border-color: var(--accent); }

.mini-qr {
  width: 120px; height: 120px; border-radius: 16px; background: white;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mini-qr svg { width: 80%; height: 80%; }

.mini-langs { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.mini-lang-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}
.mini-lang-row .flag {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: white;
}

.mini-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; width: 100%; height: 100%; }
.mini-gallery div {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  min-height: 0;
}

.mini-nutrition { width: 100%; }
.mini-nutrition-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--dark-border);
}
.mini-nutrition-row:last-child { border-bottom: none; }
.mini-nutrition-row span:first-child { color: rgba(255,255,255,0.5); }
.mini-nutrition-row span:last-child { color: white; font-weight: 600; }

/* ---- Centerpiece ---- */
.center-section {
  padding: 140px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.center-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.center-section h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 880px;
  margin: 0 auto 28px;
}
.center-section h2 em { color: var(--accent); font-style: normal; }
.center-section > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 56px;
  font-weight: 400;
  line-height: 1.6;
}

.center-stage {
  position: relative;
  margin-top: 80px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.center-stage::before {
  content: '';
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.16), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}

.laptop {
  position: relative;
  z-index: 2;
  width: 760px;
  max-width: 92%;
  aspect-ratio: 16/10;
  background: var(--dark);
  border-radius: 18px 18px 6px 6px;
  padding: 18px 18px 10px;
  box-shadow: var(--shadow-float);
}
.laptop-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  padding: 14px;
  position: relative;
}
.laptop::after {
  content: '';
  position: absolute;
  left: -5%; right: -5%;
  bottom: -10px;
  height: 10px;
  background: #9e9a95;
  border-radius: 0 0 8px 8px;
}

.dash-bar {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}
.dash-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #e5e2dc; }
.dash-bar .dot:first-child { background: #ff5f57; }
.dash-bar .dot:nth-child(2) { background: #febc2e; }
.dash-bar .dot:nth-child(3) { background: #28c840; }
.dash-bar .url {
  margin-left: 12px;
  background: #f3f0eb;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.6rem;
  color: var(--text-secondary);
  font-family: ui-monospace, monospace;
}
.dash-pub {
  margin-left: auto;
  background: var(--accent); color: white;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.6rem; font-weight: 600;
}
.dash-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  height: calc(100% - 40px);
}
.dash-side {
  background: #f7f5f1;
  border-radius: 8px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-side-item {
  font-size: 0.65rem;
  padding: 6px 8px;
  color: var(--text-secondary);
  border-radius: 5px;
}
.dash-side-item.a { background: var(--accent); color: white; }
.dash-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  overflow: hidden;
}
.dash-tile {
  background: #f7f5f1;
  border-radius: 8px;
  padding: 8px;
  font-size: 0.55rem;
  color: var(--text);
  display: flex; flex-direction: column; justify-content: space-between;
}
.dash-tile .img {
  width: 100%; aspect-ratio: 16/10;
  border-radius: 5px;
  background-size: cover; background-position: center;
  margin-bottom: 6px;
}
.dash-tile .name { font-weight: 600; font-size: 0.6rem; }
.dash-tile .price { color: var(--accent); font-weight: 600; margin-top: 2px; }

.center-phone {
  position: absolute;
  right: 6%;
  bottom: -6%;
  width: 220px;
  z-index: 3;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.35);
  border-radius: 36px;
}

.center-qr-card {
  position: absolute;
  left: 5%;
  top: 12%;
  z-index: 3;
  padding: 18px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-float);
  text-align: center;
}
.center-qr-card .qr {
  width: 110px; height: 110px;
  background:
    conic-gradient(from 0deg, var(--dark) 0% 25%, white 25% 50%, var(--dark) 50% 75%, white 75% 100%);
  border-radius: 12px;
  margin: 0 auto 10px;
  position: relative;
}
.center-qr-card .qr::after {
  content: ''; position: absolute; inset: 35%;
  background: var(--accent); border-radius: 4px;
}
.center-qr-card .label { font-size: 0.72rem; font-weight: 600; }
.center-qr-card .sub { font-size: 0.6rem; color: var(--text-secondary); margin-top: 2px; }

/* ---- Final CTA on warm ---- */
.cta-section {
  padding: 40px 40px 100px;
}

/* ---- Scroll animations ---- */
@media (prefers-reduced-motion: reduce) {
  .floater, .scene-frame, .scene-panel, .dark-card, .reveal { transition: none !important; animation: none !important; }
}

/* ---- End new sections ---- */

/* ---- Phone mockup ---- */
.phone-container { display: flex; justify-content: center; position: relative; }

.phone {
  width: 300px;
  background: var(--dark);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.2);
}

.phone-screen { background: var(--bg); border-radius: 32px; overflow: hidden; aspect-ratio: 9/18.5; text-align: left; }

.ph { padding: 44px 16px 12px; background: white; display: flex; align-items: center; gap: 10px; }
.ph-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 10px; flex-shrink: 0; }
.ph-icon + div { min-width: 0; flex: 1; overflow: hidden; }
.ph-name { font-size: 0.7rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-addr { font-size: 0.5rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-tabs { display: flex; gap: 6px; padding: 10px 14px; background: white; border-bottom: 1px solid #eee; }
.ph-tab { padding: 5px 12px; border-radius: 100px; font-size: 0.5rem; font-weight: 500; color: var(--text-secondary); }
.ph-tab.a { background: var(--accent); color: white; }
.ph-list { padding: 10px 12px; }
.ph-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: white; border-radius: 14px; margin-bottom: 6px; }
.ph-img { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; overflow: hidden; background: var(--card-bg); }
.ph-img img { width: 100%; height: 100%; object-fit: cover; }
.ph-title { font-size: 0.6rem; font-weight: 600; }
.ph-desc { font-size: 0.42rem; color: var(--text-secondary); margin-top: 2px; }
.ph-price { margin-left: auto; font-size: 0.6rem; font-weight: 600; white-space: nowrap; }
.ph-tag { display: inline-block; margin-top: 3px; padding: 2px 6px; font-size: 0.35rem; font-weight: 600; border-radius: 4px; background: #E8F5E9; color: #2E7D32; }

/* ---- Metrics ---- */
.metrics {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric { background: white; border-radius: var(--radius); padding: 32px 28px; text-align: center; }
.metric-num { font-size: 2rem; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 6px; }
.metric-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 400; }

/* ---- Feature sections ---- */
.feature {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }

.feature-visual {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-visual-inner {
  width: 70%;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.08);
}

.feature-text h2 { font-size: 2.2rem; font-weight: 600; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; }
.feature-text p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.65; font-weight: 300; max-width: 440px; }
.feature-text p + p { margin-top: 16px; }

/* Availability toggle */
.fv-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.fv-row + .fv-row { border-top: 1px solid #f0f0ee; }
.fv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.fv-dot.on { background: #34C759; }
.fv-dot.off { background: #ccc; }
.fv-name { font-size: 0.8rem; font-weight: 500; flex: 1; }
.fv-toggle { width: 36px; height: 20px; border-radius: 10px; position: relative; }
.fv-toggle.on { background: #34C759; }
.fv-toggle.off { background: #ddd; }
.fv-toggle::after { content: ''; position: absolute; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.fv-toggle.on::after { left: 18px; }
.fv-toggle.off::after { left: 2px; }

/* QR visual */
.qr-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.qr-card { background: white; border-radius: 20px; padding: 24px; text-align: center; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.08); }
.qr-placeholder { width: 120px; height: 120px; background: var(--dark); border-radius: 12px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
.qr-placeholder svg { width: 80px; height: 80px; }
.qr-label { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.qr-sublabel { font-size: 0.7rem; color: #bbb; margin-top: 2px; }

/* Allergen visual */
.allergen-visual { width: 75%; background: white; border-radius: 20px; padding: 24px; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.08); }
.allergen-header { font-size: 0.75rem; font-weight: 600; margin-bottom: 16px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.allergen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.allergen-chip { padding: 8px 10px; background: var(--card-bg); border-radius: 10px; font-size: 0.65rem; font-weight: 500; text-align: center; color: var(--text); }
.allergen-chip.active { background: #FFF0E9; color: var(--accent); font-weight: 600; }

/* Photos visual */
.photos-visual { width: 85%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.photo-card { border-radius: 16px; aspect-ratio: 1; overflow: hidden; position: relative; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.photo-badge { position: absolute; bottom: 10px; left: 10px; font-size: 0.55rem; font-weight: 600; color: white; background: rgba(0,0,0,0.45); backdrop-filter: blur(8px); padding: 4px 10px; border-radius: 100px; }

/* Lang visual */
.lang-visual-inner { width: 75%; background: white; border-radius: 20px; padding: 24px; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.08); }
.lang-selector { display: flex; gap: 6px; margin-bottom: 20px; }
.lang-pill { padding: 6px 14px; border-radius: 100px; font-size: 0.7rem; font-weight: 500; color: var(--text-secondary); background: var(--card-bg); }
.lang-pill.active { background: var(--accent); color: white; }
.lang-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; font-size: 0.8rem; }
.lang-row + .lang-row { border-top: 1px solid #f0f0ee; }
.lang-row-name { font-weight: 500; }
.lang-row-price { font-weight: 600; }

/* Nutrition visual */
.nutrition-visual { width: 70%; background: white; border-radius: 20px; padding: 24px; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.08); }
.nutrition-item-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.nutrition-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.75rem; }
.nutrition-row + .nutrition-row { border-top: 1px solid #f0f0ee; }
.nutrition-row span:first-child { color: var(--text-secondary); font-weight: 400; }
.nutrition-row span:last-child { font-weight: 600; }

/* ---- Steps ---- */
.steps-section { max-width: 1200px; margin: 0 auto; padding: 80px 40px 0; }
.steps-section h2 { font-size: 2.4rem; font-weight: 300; letter-spacing: -0.03em; text-align: center; margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { background: white; border-radius: var(--radius); padding: 36px 28px; }
.step-num { font-size: 2.5rem; font-weight: 300; color: var(--accent); margin-bottom: 16px; }
.step-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

/* ---- CTA ---- */
.cta-section { max-width: 1200px; margin: 60px auto 0; padding: 0 40px; }

.cta-box { background: var(--dark); border-radius: var(--radius-lg); padding: 80px 60px; text-align: center; }
.cta-box h2 { font-size: 2.8rem; font-weight: 300; color: white; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-box h2 strong { font-weight: 600; }
.cta-box p { color: #999; font-size: 1.1rem; font-weight: 300; max-width: 420px; margin: 0 auto 36px; line-height: 1.6; }

.cta-buttons { display: flex; gap: 12px; justify-content: center; }
.cta-note { color: #666; font-size: 0.8rem; margin-top: 20px; font-weight: 400; }

/* ---- Footer ---- */
footer { max-width: 1200px; margin: 0 auto; padding: 40px 40px 60px; }

.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; padding-top: 32px; border-top: 1px solid #eee; }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-secondary); text-decoration: none; padding: 4px 0; }
.footer-col a:hover { color: var(--text); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid #eee; font-size: 0.8rem; color: var(--text-secondary); }

/* ---- Legal pages ---- */
.legal-page { max-width: 760px; margin: 0 auto; padding: 140px 40px 80px; }
.legal-page h1 { font-size: 2.4rem; font-weight: 300; letter-spacing: -0.03em; margin-bottom: 8px; }
.legal-page h1 strong { font-weight: 600; }
.legal-updated { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.25rem; font-weight: 600; margin: 40px 0 12px; }
.legal-page p, .legal-page li { font-size: 1rem; line-height: 1.7; color: #444; font-weight: 300; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; margin-bottom: 12px; }
.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-draft { background: #FFF8E6; border: 1px solid #F5D87A; border-radius: 12px; padding: 14px 18px; font-size: 0.85rem; color: #8A6D12; margin-bottom: 32px; }

@media (max-width: 900px) {
  .legal-page { padding: 110px 24px 60px; }
  .legal-page h1 { font-size: 1.8rem; }
}

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-inner { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-right .btn-outline { display: none; }
  .nav-right .nav-lang { display: none; }
  .nav-burger { display: block; }
  .mobile-lang { display: flex; }

  .hero { padding: 120px 24px 40px; }
  .hero h1 { font-size: clamp(2.3rem, 7.5vw, 4.2rem); line-height: 1.02; }
  .hero h1 em::after { height: 0.16em; }
  .hero-sub { font-size: 1.02rem; margin: 20px auto 0; }
  .hero-cta { justify-content: center; margin-top: 28px; }
  .hero-stats { gap: 18px; margin-top: 20px; font-size: 0.82rem; }
  .hero-stats .dot { display: none; }

  .hero-stage { margin-top: 56px; min-height: 560px; padding: 0; }
  .hero-stage .phone { width: 260px; }
  .hero-stage::before { filter: blur(40px); }
  .floater { padding: 10px 14px; border-radius: 14px; max-width: 180px; }
  .floater-title { font-size: 0.74rem; }
  .floater-sub { font-size: 0.66rem; }
  .floater-emoji { width: 28px; height: 28px; margin-bottom: 6px; font-size: 0.9rem; }
  .fl-1 { top: -2%; left: 0; }
  .fl-2 { top: 14%; right: 0; }
  .fl-3 { top: 60%; left: 0; }
  .fl-4 { top: 66%; right: 0; }
  .fl-5 { display: none; }
  .floater .qr-mini { width: 42px; height: 42px; margin-bottom: 6px; }

  /* Scene mobile: flatten everything, no stick, no overlap */
  .scene { padding: 56px 0 0; }
  .scene-title { font-size: 1.7rem; padding: 0 20px; margin-bottom: 14px; }
  .scene-subtitle { font-size: 0.95rem; margin-bottom: 36px; padding: 0 20px; }
  .scene-track { padding: 0 20px 48px; min-height: 0 !important; }
  .scene-sticky {
    position: static !important;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    top: auto;
  }
  .scene-progress { display: none; }
  .scene-phone-wrap { order: -1; margin-bottom: 8px; }
  .scene-phone-wrap .phone { width: 260px; margin: 0 auto; }
  .scene-panels { gap: 12px; }
  .scene-panels.left { align-items: stretch; text-align: left; }
  .scene-panels.left .scene-panel, .scene-panels.right .scene-panel { max-width: none; }
  .scene-panel { opacity: 1 !important; transform: none !important; padding: 20px 22px; background: var(--warm); border-color: var(--accent-soft); }
  .scene-panel h3 { font-size: 1.05rem; }
  .scene-panel p { font-size: 0.9rem; }
  .scene-frame { position: relative; inset: auto; opacity: 1; transform: none; }
  .scene-frame:not(:first-child) { display: none; }

  /* Dark section mobile */
  .dark-section { padding: 72px 20px; }
  .dark-header { flex-direction: column; gap: 16px; align-items: flex-start; margin-bottom: 36px; }
  .dark-header h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .dark-header p { font-size: 0.95rem; }
  .dark-grid { grid-template-columns: 1fr; gap: 14px; }
  .dark-card { padding: 24px 22px; border-radius: 22px; }
  .dark-card.span-4, .dark-card.span-3, .dark-card.span-2 { grid-column: span 1; }
  .dark-card .visual { height: 160px; padding: 18px 14px; margin-bottom: 18px; }
  .dark-card .visual:has(.mini-toggle-list) { padding: 22px 14px; }
  .dark-card h3 { font-size: 1.1rem; }
  .dark-card p { font-size: 0.88rem; }
  .mini-qr { width: 100px; height: 100px; }

  /* Centerpiece mobile */
  .center-section { padding: 72px 20px; }
  .center-section h2 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .center-section > p { font-size: 1rem; margin-bottom: 36px; }
  .center-stage { margin-top: 24px; height: 280px; }
  .center-stage::before { display: none; }
  .laptop { width: 100%; max-width: 100%; padding: 8px 8px 4px; border-radius: 8px 8px 3px 3px; }
  .laptop::after { display: none; }
  .dash-bar { padding-bottom: 6px; margin-bottom: 8px; }
  .dash-bar .dot { width: 6px; height: 6px; }
  .dash-bar .url { font-size: 0.44rem; padding: 2px 5px; margin-left: 6px; }
  .dash-pub { font-size: 0.44rem; padding: 3px 8px; }
  .dash-grid { grid-template-columns: 54px 1fr; gap: 6px; height: calc(100% - 28px); }
  .dash-side { padding: 4px; gap: 3px; }
  .dash-side-item { font-size: 0.42rem; padding: 3px 4px; }
  .dash-main { gap: 4px; }
  .dash-tile { padding: 4px; font-size: 0.4rem; }
  .dash-tile .name { font-size: 0.44rem; }
  .dash-tile .price { font-size: 0.42rem; }
  .center-phone { width: 100px; right: -4%; bottom: -10%; padding: 5px; border-radius: 18px; }
  .center-phone .phone-screen { border-radius: 14px; }
  .center-qr-card { padding: 10px; left: -2%; top: -6%; border-radius: 14px; }
  .center-qr-card .qr { width: 56px; height: 56px; }
  .center-qr-card .label { font-size: 0.56rem; }
  .center-qr-card .sub { font-size: 0.48rem; }

  /* Existing sections still in use */
  .steps-section { padding: 56px 24px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-section h2 { font-size: 1.8rem; margin-bottom: 32px; }

  .cta-section { padding: 48px 20px 64px; }
  .cta-box { padding: 48px 24px; border-radius: 28px; }
  .cta-box h2 { font-size: 1.9rem; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 32px 20px 48px; }
}

/* Phone-specific extra tightening */
@media (max-width: 480px) {
  .hero { padding: 100px 16px 24px; }
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.8rem); letter-spacing: -0.04em; }
  .hero-sub { font-size: 0.98rem; }
  .hero-cta .btn { padding: 12px 24px; font-size: 0.9rem; }
  .hero-cta .btn-outline { padding: 12px 24px; }
  .hero-stats { gap: 14px; font-size: 0.78rem; row-gap: 6px; }

  .hero-stage { margin-top: 40px; min-height: 480px; }
  .hero-stage .phone { width: 220px; }
  .fl-1 { max-width: 138px; top: -4%; }
  .fl-2 { max-width: 138px; top: 12%; }
  .fl-3 { max-width: 130px; top: 64%; }
  .fl-4 { max-width: 140px; top: 72%; }

  .scene-phone-wrap .phone { width: 230px; }

  .dark-section { padding: 56px 16px; }
  .dark-card { padding: 22px 18px; }
  .dark-card .visual { height: 150px; }

  .center-section { padding: 56px 16px; }
  .center-stage { height: 220px; }
  .center-phone { width: 80px; }
  .center-qr-card .qr { width: 46px; height: 46px; }

  .steps-section { padding: 48px 16px 0; }
  .cta-section { padding: 40px 16px 48px; }
  .cta-box { padding: 40px 20px; }
  .cta-box h2 { font-size: 1.65rem; }
  footer { padding: 28px 16px 40px; }
}
