/* ═══════════════════════════════════════════════════
   ISLE — Landing Page Styles v3 (Luxury)
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #fff;
  color: #0a0a0a;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --surface:      #f7f5f2;
  --raised:       #f0ede8;
  --border:       #e8e5e0;
  --border-dark:  rgba(255,255,255,0.1);
  --text:         #0a0a0a;
  --muted:        #6b6460;
  --faint:        #b8b3ae;
  --accent-loss:  #b91c1c;
  --accent-win:   #15803d;
  --gold:         #d4a14e;
  --gold-bright:  #e8be72;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);
  --section-pad: 120px;
  --max-w: 1200px;
}

/* ── Utilities ──────────────────────────────────────── */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.form-col { max-width: 620px; }
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.eyebrow-light { color: rgba(255,255,255,0.5); }
.section-h2 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.section-sub {
  font-size: 19px; color: var(--muted);
  max-width: 560px; margin-bottom: 64px;
  font-weight: 400; line-height: 1.65;
}
.section-h2-light { color: #fff; }
.section-sub-light { color: rgba(255,255,255,0.6); }
.hidden { display: none !important; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  border-radius: 9999px; padding: 14px 32px;
  transition: all 220ms ease; white-space: nowrap;
}
.btn-primary { background: #0a0a0a; color: #fff; }
.btn-primary:hover { background: #2a2a2a; }
.btn-ghost { background: transparent; color: #0a0a0a; border: 1px solid var(--border); }
.btn-ghost:hover { border-color: #0a0a0a; }
.btn-outline { background: transparent; color: #0a0a0a; border: 1px solid var(--border); border-radius: 8px; }
.btn-outline:hover { border-color: #0a0a0a; }
.btn-outline-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; }
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.6); }
.btn-nav { background: #0a0a0a; color: #fff; padding: 10px 24px; font-size: 13px; }
.btn-nav:hover { background: #2a2a2a; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost {
  background: transparent; color: #0a0a0a; padding: 10px 22px; font-size: 13px;
  border: 1px solid var(--border);
}
.btn-nav-ghost:hover { border-color: #0a0a0a; background: #0a0a0a; color: #fff; }
.btn-full { width: 100%; justify-content: center; border-radius: 8px; }
.hero-btn-primary { background: #fff; color: #0a0a0a; }
.hero-btn-primary:hover { background: #f0f0f0; }
.hero-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.hero-btn-ghost:hover { border-color: rgba(255,255,255,0.85); }

/* ── Reveal Animations ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); transition-delay: var(--delay, 0s); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); transition-delay: var(--delay, 0s); }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-expo); transition-delay: var(--delay, 0s); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(-8px);
  animation: nav-in 400ms var(--ease-expo) 100ms forwards;
}
@keyframes nav-in { to { opacity: 1; transform: none; } }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: #0a0a0a; }
.nav-logo:hover { opacity: 0.7; }
.nav-logo-mark { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.nav-logo-rule { width: 26px; height: 1px; background: #0a0a0a; }
.nav-wordmark { font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: 0.34em; color: #0a0a0a; }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
#hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; }
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.32) 50%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 48px 60px; max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 28px;
  animation: fade-up 700ms var(--ease-expo) 200ms both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-headline {
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.035em;
  margin-bottom: 28px; color: #fff; max-width: 860px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.35);
  animation: fade-up 700ms var(--ease-expo) 280ms both;
}
.hero-headline strong { font-weight: 700; }
.hero-sub {
  font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,0.8);
  max-width: 580px; margin-bottom: 40px; line-height: 1.65; font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  animation: fade-up 700ms var(--ease-expo) 360ms both;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; animation: fade-up 600ms var(--ease-expo) 440ms both; }
.hero-social {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  color: rgba(255,255,255,0.5); animation: fade-up 600ms var(--ease-expo) 520ms both;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Stat Row */
.stat-row {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #fff; border-top: 1px solid var(--border);
}
.stat-item {
  padding: 44px 48px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 300; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 12px; color: #0a0a0a;
}
.stat-num.stat-loss { color: var(--accent-loss); }
.stat-num.stat-win { color: var(--accent-win); }
.stat-label {
  font-size: 15px; color: var(--muted);
  line-height: 1.55; font-weight: 400; max-width: 220px;
}

/* ══════════════════════════════════════════════════════
   PAIN — Light warm surface, hover inversion
   ══════════════════════════════════════════════════════ */
#pain {
  background: var(--surface);
  padding: var(--section-pad) 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 44px;
  position: relative; z-index: 1;
  transition: transform 380ms var(--ease-expo), background 380ms ease,
    color 380ms ease, box-shadow 380ms ease, border-color 380ms ease, opacity 380ms ease;
  cursor: default;
}
.pain-grid:hover .pain-card { opacity: 0.42; transform: scale(0.97); }
.pain-card:hover {
  opacity: 1 !important;
  transform: scale(1.04) !important;
  background: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 28px 72px rgba(0,0,0,0.18);
  z-index: 2;
}
.pain-card h3 {
  font-size: 21px; font-weight: 500; margin-bottom: 16px;
  line-height: 1.25; transition: color 380ms ease;
}
.pain-card p {
  font-size: 15px; color: var(--muted); line-height: 1.72;
  transition: color 380ms ease;
}
.pain-card:hover h3 { color: #fff; }
.pain-card:hover p { color: rgba(255,255,255,0.62); }

/* ══════════════════════════════════════════════════════
   SCENES — 3 sticky product demos on dark bg
   ══════════════════════════════════════════════════════ */
#scenes { position: relative; height: 360vh; background: #0a0a0a; }
.scenes-sticky {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden; background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
}

/* Scene panels */
.scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 700ms var(--ease-expo);
}
.scene.active { opacity: 1; pointer-events: all; }

.scene-layout {
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Scene text column */
.scene-text-col {}
.scene-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.scene-h2 {
  font-size: clamp(34px, 4vw, 52px); font-weight: 300;
  line-height: 1.1; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 20px;
}
.scene-sub {
  font-size: 17px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 32px; max-width: 440px;
}
.scene-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.scene-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 7px 16px; border-radius: 9999px;
  background: rgba(212,161,78,0.08);
  border: 1px solid rgba(212,161,78,0.35);
  color: var(--gold);
  cursor: default;
  transition: transform 280ms var(--ease-expo), background 280ms ease,
    border-color 280ms ease, color 280ms ease, box-shadow 280ms ease;
}
.scene-tag:hover {
  transform: translateY(-3px);
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 10px 28px rgba(212,161,78,0.35), 0 0 0 1px rgba(232,190,114,0.4);
}

/* Scene device column */
.scene-device-col {
  display: flex; align-items: center; justify-content: center;
}

/* ── Scene 1: Phone mockup ───────────────────────────── */
.scene-phone-outer {
  position: relative;
  animation: scene-float 4s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
}
@keyframes scene-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.scene-phone {
  width: 260px; height: 520px;
  background: #0f0f0f; border-radius: 40px;
  border: 1.5px solid #2a2a2a;
  box-shadow: 0 0 0 1px #000, 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(79,139,255,0.08);
  overflow: hidden; position: relative;
}
.scene-phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 108px; height: 32px;
  background: #0f0f0f; border-radius: 0 0 20px 20px; z-index: 10;
}
.scene-phone-screen { position: absolute; inset: 0; border-radius: 38px; overflow: hidden; }

/* Mini restaurant site inside phone */
.mini-site { height: 100%; display: flex; flex-direction: column; background: #0d0d0d; }
.mini-site-hero { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.mini-site-hero img { width: 100%; height: 100%; object-fit: cover; }
.mini-site-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding-bottom: 20px;
}
.mini-site-name {
  font-size: 20px; font-weight: 700; letter-spacing: 0.4em;
  color: #fff; margin-bottom: 10px; text-indent: 0.4em;
}
.mini-site-reserve {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  padding: 7px 16px; background: #fff; color: #000; border-radius: 4px;
}
.mini-site-info { padding: 16px; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid #1a1a1a; }
.mini-site-row { font-size: 10px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.mini-site-menu { padding: 14px 16px; flex: 1; }
.mini-site-menu-label { font-size: 9px; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 10px; }
.mini-site-dish { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1a1a1a; }
.mini-site-dish span { font-size: 10px; color: rgba(255,255,255,0.65); }
.mini-site-dish span:last-child { color: rgba(255,255,255,0.35); }

/* ── Scene 2: Browser + chat ────────────────────────── */
.scene-browser-wrap { width: 100%; max-width: 500px; }
.scene-browser {
  background: #111; border-radius: 12px; overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(218,165,32,0.05);
}
.scene-browser-bar {
  height: 38px; background: #1a1a1a; border-bottom: 1px solid #222;
  display: flex; align-items: center; padding: 0 14px; gap: 12px;
}
.browser-url-sm {
  flex: 1; max-width: 200px; background: #111; border: 1px solid #2a2a2a;
  border-radius: 5px; padding: 4px 10px; font-family: var(--mono);
  font-size: 10px; color: #555; text-align: center;
}
.scene-browser-body { position: relative; height: 320px; overflow: hidden; }
.scene-site-bg { position: absolute; inset: 0; }
.scene-site-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(3px) brightness(0.25); transform: scale(1.06); }

/* Chat widget floating */
.scene-chat-widget {
  position: absolute; right: 12px; bottom: 12px; top: 12px;
  width: 200px;
  background: #0d0d0d; border: 1px solid #222;
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.scene-chat-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; background: #111; border-bottom: 1px solid #1a1a1a;
  flex-shrink: 0;
}
.scene-chat-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; flex-shrink: 0;
}
.scene-chat-name { font-size: 11px; font-weight: 600; color: #fff; margin-bottom: 1px; }
.scene-chat-online { font-size: 9px; color: #555; display: flex; align-items: center; gap: 4px; }
.online-dot { width: 5px; height: 5px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }
.scene-chat-msgs { flex: 1; padding: 10px 10px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
.scene-msg {
  font-size: 10px; line-height: 1.4; padding: 7px 10px; border-radius: 12px; max-width: 90%;
}
.scene-msg.bot { background: #1a1a1a; color: #ddd; border-radius: 12px 12px 12px 3px; align-self: flex-start; }
.scene-msg.user { background: #fff; color: #000; border-radius: 12px 12px 3px 12px; align-self: flex-end; }
.scene-msg strong { color: #fff; }
/* Overlay text in browser (restaurant name) */
.scene-site-name-overlay {
  position: absolute; top: 50%; left: 20px; transform: translateY(-50%);
  font-size: 22px; font-weight: 700; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.15); pointer-events: none;
}

/* ── Scene 3: Voice call phone ───────────────────────── */
.scene-call-outer {
  position: relative;
  animation: scene-float 4s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
  animation-delay: 1s;
}
.scene-call-phone {
  width: 260px; height: 520px;
  background: linear-gradient(160deg, #1a0d0d 0%, #0a0a0a 100%);
  border-radius: 40px; border: 1.5px solid #2a2a2a;
  box-shadow: 0 0 0 1px #000, 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(34,197,94,0.06);
  overflow: hidden; position: relative; display: flex; flex-direction: column;
  padding: 44px 20px 24px;
}
.scene-call-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 108px; height: 32px; background: #0a0a0a;
  border-radius: 0 0 20px 20px; z-index: 10;
}
.scene-call-status {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); margin-bottom: 12px; font-family: var(--mono);
}
.scene-call-name { font-size: 17px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 3px; }
.scene-call-label { font-size: 10px; color: rgba(255,255,255,0.35); text-align: center; margin-bottom: 16px; }
.scene-waveform {
  display: flex; gap: 4px; align-items: center; justify-content: center;
  height: 36px; margin-bottom: 16px; flex-shrink: 0;
}
.scene-waveform span {
  display: block; width: 3px; background: #22c55e; border-radius: 2px;
  animation: wave 1.3s ease-in-out infinite;
}
.scene-waveform span:nth-child(1) { height: 10px; }
.scene-waveform span:nth-child(2) { height: 22px; animation-delay: 0.16s; }
.scene-waveform span:nth-child(3) { height: 36px; animation-delay: 0.32s; }
.scene-waveform span:nth-child(4) { height: 22px; animation-delay: 0.16s; }
.scene-waveform span:nth-child(5) { height: 10px; }
@keyframes wave { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.2); } }
.scene-transcript {
  flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px;
  padding: 0 2px;
}
.scene-tline .speaker {
  font-size: 8px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 2px; display: block;
}
.scene-tline p { font-size: 10px; line-height: 1.5; }
.scene-tline.caller .speaker { color: rgba(255,255,255,0.3); }
.scene-tline.agent .speaker { color: #22c55e; }
.scene-tline.caller p { color: rgba(255,255,255,0.5); }
.scene-tline.agent p { color: rgba(255,255,255,0.85); }

/* Scene dots nav */
.scenes-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; align-items: center; z-index: 10;
}
.scene-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 300ms ease, transform 300ms ease;
  cursor: pointer;
}
.scene-dot.active { background: #fff; transform: scale(1.4); }

/* Scene enter animation */
.scene.active .scene-phone-outer,
.scene.active .scene-browser-wrap,
.scene.active .scene-call-outer {
  animation-play-state: running;
}

/* ══════════════════════════════════════════════════════
   DEMO SECTION
   ══════════════════════════════════════════════════════ */
#demo { padding: var(--section-pad) 0; text-align: center; background: #fff; }
#demo .section-inner { text-align: center; }
#demo .section-sub { margin: 0 auto 64px; }

.laptop-wrap { margin: 0 auto; max-width: 860px; padding: 0 48px; }
.laptop-screen {
  background: #f0ede8; border: 2px solid #d8d3ce;
  border-radius: 12px 12px 0 0; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
}
.browser-chrome {
  height: 40px; background: #e8e3de; border-bottom: 1px solid #d8d3ce;
  display: flex; align-items: center; padding: 0 14px; gap: 14px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #ff5f57; } .dot-yellow { background: #ffbd2e; } .dot-green { background: #28c840; }
.browser-url {
  flex: 1; max-width: 280px; background: #fff; border: 1px solid #d0cbc5;
  border-radius: 6px; padding: 5px 12px; font-family: var(--mono);
  font-size: 11px; color: #888; text-align: left;
}
.laptop-viewport { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.laptop-viewport img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px) brightness(0.55); transform: scale(1.04); }
.laptop-scrim { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.18); }
.laptop-scrim .btn { background: #fff; color: #000; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.laptop-scrim .btn:hover { background: #f0ede8; }
.laptop-chin {
  background: #e0dbd6; border: 2px solid #d0cbc5; border-top: none;
  border-radius: 0 0 8px 8px; height: 26px; margin: 0 -36px;
  display: flex; align-items: center; justify-content: center;
}
.laptop-trackpad { width: 72px; height: 11px; background: #ccc; border: 1px solid #bbb; border-radius: 3px; }
.demo-card-mobile { display: none; }

/* ══════════════════════════════════════════════════════
   DEMO OVERLAY — Ember Restaurant
   ══════════════════════════════════════════════════════ */
#demo-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: #080808; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: scale(0.97);
  transition: opacity 360ms var(--ease-expo), transform 360ms var(--ease-expo);
}
#demo-overlay.open { opacity: 1; pointer-events: all; transform: scale(1); }
.demo-header {
  flex-shrink: 0; height: 56px; background: #080808;
  border-bottom: 1px solid #1a1a1a;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; gap: 16px;
}
.demo-tabs { display: flex; gap: 4px; background: #111; border: 1px solid #222; border-radius: 9999px; padding: 4px; }
.demo-tab { font-size: 13px; font-weight: 500; padding: 7px 18px; border-radius: 9999px; color: #666; transition: all 200ms; }
.demo-tab:hover { color: #fff; }
.demo-tab.active { background: #fff; color: #000; }
.demo-close {
  width: 36px; height: 36px; border-radius: 50%; background: #111; border: 1px solid #222;
  color: #666; font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: all 200ms; flex-shrink: 0;
}
.demo-close:hover { background: #222; color: #fff; }
.demo-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; position: relative; }
.demo-panel { display: none; }
.demo-panel.active { display: block; }
.demo-footnote { font-size: 13px; color: #333; text-align: center; line-height: 1.6; }

/* ── Ember Site ─────────────────────────────────────── */
.ember-site { font-family: 'Inter', sans-serif; color: #fff; background: #0a0a0a; min-height: 100%; }

.ember-hero { position: relative; height: 82vh; min-height: 520px; overflow: hidden; }
.ember-hero img,
.ember-hero video { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 9s ease; }
.ember-site.animate-in .ember-hero img,
.ember-site.animate-in .ember-hero video { transform: scale(1.06); }
.ember-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.78) 100%);
  display: flex; flex-direction: column;
}
.ember-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 56px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 600ms ease 200ms, transform 600ms ease 200ms;
}
.ember-site.animate-in .ember-nav { opacity: 1; transform: none; }
.ember-wordmark { font-weight: 300; letter-spacing: 0.5em; font-size: 15px; color: #fff; }
.ember-links { display: flex; gap: 40px; }
.ember-links a { font-size: 12px; letter-spacing: 0.1em; opacity: 0.65; transition: opacity 200ms; }
.ember-links a:hover { opacity: 1; }
.ember-hero-body {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 48px 56px; gap: 0;
}
.ember-hero-body .ember-title {
  font-size: clamp(60px, 10vw, 120px); font-weight: 200;
  letter-spacing: 0.5em; line-height: 1; margin-bottom: 12px; text-indent: 0.5em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 800ms ease 400ms, transform 800ms var(--ease-expo) 400ms;
}
.ember-site.animate-in .ember-hero-body .ember-title { opacity: 1; transform: none; }
.ember-hero-body .ember-tagline {
  font-size: 13px; letter-spacing: 0.18em; opacity: 0; color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  transition: opacity 700ms ease 700ms;
}
.ember-site.animate-in .ember-hero-body .ember-tagline { opacity: 1; }
.ember-btn {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6);
  font-weight: 400; font-size: 12px; letter-spacing: 0.18em;
  padding: 14px 40px; border-radius: 2px; transition: all 300ms;
  opacity: 0;
  transition: opacity 600ms ease 900ms, background 300ms ease, border-color 300ms ease;
}
.ember-site.animate-in .ember-btn { opacity: 1; }
.ember-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.ember-section { padding: 88px 64px; border-bottom: 1px solid #141414; }
.ember-h2 {
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; margin-bottom: 56px; color: rgba(255,255,255,0.35);
}

/* Menu */
.ember-dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.ember-dish { overflow: hidden; }
.ember-dish img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: 2px; margin-bottom: 20px; background: #1a1a1a;
  transition: transform 600ms ease;
}
.ember-dish:hover img { transform: scale(1.04); }
.dish-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.dish-name { font-size: 16px; font-weight: 400; letter-spacing: 0.02em; }
.dish-price { font-size: 15px; color: rgba(255,255,255,0.4); }
.dish-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* Gallery */
.ember-gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; height: 400px; }
.ember-gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; transition: opacity 300ms ease; }
.ember-gallery-grid img:hover { opacity: 0.85; }
.ember-gallery-grid img:first-child { grid-row: 1 / 3; }

/* Reservation */
.ember-reserve-form {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end;
  margin-bottom: 16px;
}
.ember-field { display: flex; flex-direction: column; gap: 8px; }
.ember-field label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.ember-field input, .ember-field select {
  background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 14px; padding: 10px 0; outline: none;
  transition: border-color 200ms;
}
.ember-field input:focus, .ember-field select:focus { border-bottom-color: rgba(255,255,255,0.6); }
.ember-field input::placeholder { color: rgba(255,255,255,0.25); }
.ember-reserve-note { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }

/* Team */
.ember-team-photo { width: 100%; height: 420px; object-fit: cover; object-position: center 30%; border-radius: 2px; margin-bottom: 32px; }
.ember-body { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.85; max-width: 560px; font-weight: 300; }

/* Hours */
.hours-list { margin-bottom: 32px; }
.hours-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #141414; font-size: 15px; font-weight: 300; }
.hours-row:first-child { border-top: 1px solid #141414; }
.hours-row span:last-child { color: rgba(255,255,255,0.4); }
.ember-address { font-size: 13px; color: rgba(255,255,255,0.25); margin-bottom: 32px; margin-top: 24px; letter-spacing: 0.06em; }
.ember-footer-bar { padding: 32px 64px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.2); background: #060606; letter-spacing: 0.06em; }
.ember-footer-bar strong { color: rgba(255,255,255,0.4); }

/* ── Chat Demo ──────────────────────────────────────── */
.chat-wrap { max-width: 520px; margin: 0 auto; padding: 40px 24px; display: flex; flex-direction: column; gap: 20px; }
.chat-window { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.chat-header { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid #1a1a1a; background: #080808; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #000; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.chat-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; color: #fff; }
.chat-status { font-size: 12px; color: #555; display: flex; align-items: center; gap: 6px; }
.chat-messages { padding: 20px 16px; display: flex; flex-direction: column; gap: 8px; min-height: 260px; max-height: 360px; overflow-y: auto; }
.chat-bubble { max-width: 78%; padding: 10px 14px; border-radius: 18px; font-size: 14px; line-height: 1.5; animation: bubble-in 250ms var(--ease-expo) both; }
.chat-bubble.bot { background: #1a1a1a; border-radius: 18px 18px 18px 4px; align-self: flex-start; color: #ddd; }
.chat-bubble.user { background: #fff; color: #000; border-radius: 18px 18px 4px 18px; align-self: flex-end; }
@keyframes bubble-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; background: #1a1a1a; border-radius: 18px 18px 18px 4px; width: fit-content; align-self: flex-start; }
.chat-typing span { width: 6px; height: 6px; background: #444; border-radius: 50%; animation: typing 1s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 80%, 100% { opacity: 0.3; transform: scale(1); } 40% { opacity: 1; transform: scale(1.2); } }
.chat-footer { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid #1a1a1a; background: #080808; }
.chat-input { flex: 1; background: #1a1a1a; border: 1px solid #222; border-radius: 9999px; padding: 10px 16px; font-size: 14px; color: #555; outline: none; }
.chat-send { width: 36px; height: 36px; border-radius: 50%; background: #1a1a1a; color: #555; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Call Demo ──────────────────────────────────────── */
.call-wrap { max-width: 520px; margin: 0 auto; padding: 40px 24px; display: flex; flex-direction: column; gap: 24px; }
.call-phone { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 20px; padding: 32px 28px; text-align: center; }
.call-status { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; color: #555; margin-bottom: 20px; font-family: var(--mono); }
.call-dot-green { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.call-restaurant-name { font-size: 22px; font-weight: 600; margin-bottom: 4px; color: #fff; }
.call-agent-label { font-size: 13px; color: #555; margin-bottom: 24px; }
.waveform { display: flex; gap: 5px; align-items: center; justify-content: center; height: 52px; margin-bottom: 20px; }
.waveform span { display: block; width: 4px; background: #22c55e; border-radius: 2px; animation: wave 1.3s ease-in-out infinite; }
.waveform span:nth-child(1) { height: 18px; } .waveform span:nth-child(2) { height: 34px; animation-delay: 0.16s; } .waveform span:nth-child(3) { height: 50px; animation-delay: 0.32s; } .waveform span:nth-child(4) { height: 34px; animation-delay: 0.16s; } .waveform span:nth-child(5) { height: 18px; }
.call-caption { font-size: 13px; color: #555; }
.call-transcript { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 14px; min-height: 160px; }
.transcript-line { font-size: 14px; line-height: 1.5; animation: bubble-in 250ms var(--ease-expo) both; }
.transcript-line .speaker { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.transcript-line.caller .speaker { color: #444; } .transcript-line.agent .speaker { color: #22c55e; }
.transcript-line.caller p { color: #666; } .transcript-line.agent p { color: #ccc; }

/* ══════════════════════════════════════════════════════
   LIFESTYLE BREAK
   ══════════════════════════════════════════════════════ */
#lifestyle { }
.lifestyle-bg { background-size: cover; background-position: center 40%; background-attachment: fixed; min-height: 540px; display: flex; align-items: center; justify-content: center; }
.lifestyle-overlay { width: 100%; min-height: 540px; background: rgba(0,0,0,0.52); display: flex; align-items: center; justify-content: center; padding: 100px 48px; }
.lifestyle-quote { font-size: clamp(28px, 4.5vw, 56px); font-weight: 200; letter-spacing: -0.02em; line-height: 1.2; text-align: center; color: #fff; max-width: 780px; }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS — 4 steps
   ══════════════════════════════════════════════════════ */
#how { padding: var(--section-pad) 0; background: #fff; border-top: 1px solid var(--border); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 72px;
}
.step { padding: 0 36px; border-right: 1px solid var(--border); }
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }
.step:nth-child(2), .step:nth-child(3) { }
.step-num { display: block; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 20px; }
.step-new .step-num { color: #0a0a0a; }
.step h3 { font-size: 18px; font-weight: 500; margin-bottom: 12px; line-height: 1.3; }
.step h3 em { font-style: normal; color: var(--muted); font-weight: 400; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-new-badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: #0a0a0a; color: #fff;
  padding: 3px 8px; border-radius: 3px; margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════
   PRICING — Dark section
   ══════════════════════════════════════════════════════ */
#pricing { padding: var(--section-pad) 0; background: #0a0a0a; }
#pricing .eyebrow { color: rgba(255,255,255,0.35); }
#pricing .section-h2 { color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.pricing-card {
  background: #0f0f0f; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 40px 36px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 350ms var(--ease-expo), box-shadow 350ms ease,
    border-color 350ms ease, background 350ms ease;
}
.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  background: linear-gradient(160deg, #161616 0%, #0f0f0f 100%);
}
.pricing-card.featured {
  background: #ffffff; border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 100px rgba(255,255,255,0.08), 0 0 0 1px rgba(255,255,255,0.2);
  background: #ffffff;
}
.featured-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  background: #0a0a0a; color: #fff; padding: 4px 10px; border-radius: 4px;
  margin-bottom: 24px; align-self: flex-start;
}
.tier-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.pricing-card.featured .tier-label { color: rgba(0,0,0,0.4); }
.tier-name { font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 16px; color: #fff; }
.pricing-card.featured .tier-name { color: #0a0a0a; }
.tier-price { font-size: 42px; font-weight: 200; letter-spacing: -0.03em; margin-bottom: 4px; line-height: 1; color: #fff; }
.pricing-card.featured .tier-price { color: #0a0a0a; }
.tier-cad { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.3); }
.pricing-card.featured .tier-cad { color: rgba(0,0,0,0.4); }
.tier-once { font-size: 13px; color: rgba(255,255,255,0.25); margin-bottom: 32px; }
.pricing-card.featured .tier-once { color: rgba(0,0,0,0.4); }
.tier-features { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 12px; }
.tier-features li { font-size: 14px; color: rgba(255,255,255,0.5); padding-left: 22px; position: relative; line-height: 1.45; }
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: rgba(255,255,255,0.2); font-size: 12px; }
.pricing-card.featured .tier-features li { color: rgba(0,0,0,0.65); }
.pricing-card.featured .tier-features li::before { color: rgba(0,0,0,0.25); }
.tier-addon { font-size: 12px; color: rgba(255,255,255,0.2); padding: 14px 0 28px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 4px; }
.pricing-card.featured .tier-addon { border-top-color: rgba(0,0,0,0.08); color: rgba(0,0,0,0.35); }
.scarcity { text-align: center; margin-top: 44px; font-size: 14px; color: rgba(255,255,255,0.3); }
.scarcity strong { color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════════════════
   WAITLIST FORM
   ══════════════════════════════════════════════════════ */
#waitlist { padding: var(--section-pad) 0; background: var(--surface); border-top: 1px solid var(--border); }
.waitlist-form { display: flex; flex-direction: column; gap: 24px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label { font-size: 13px; font-weight: 500; color: #555; }
.req { color: var(--muted); } .opt { color: var(--faint); font-weight: 400; }
.fg input[type="text"], .fg input[type="email"], .fg textarea {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 18px; color: #0a0a0a; font-size: 15px; outline: none;
  transition: border-color 200ms;
}
.fg input:focus, .fg textarea:focus { border-color: #0a0a0a; }
.fg textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-col { display: flex; flex-direction: column; gap: 10px; }
.radio-opt {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; cursor: pointer;
  padding: 12px 16px; background: #fff; border: 1px solid var(--border); border-radius: 8px;
  transition: border-color 200ms, background 200ms;
}
.radio-opt:hover { border-color: #0a0a0a; }
.radio-opt input[type="radio"] { accent-color: #0a0a0a; width: 15px; height: 15px; flex-shrink: 0; }
.field-err { font-size: 12px; color: #dc2626; min-height: 16px; }
#submit-btn { margin-top: 8px; padding: 18px; font-size: 15px; border-radius: 8px; letter-spacing: 0.04em; }
#submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success { text-align: center; padding: 56px 0; }
.success-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #0a0a0a; color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.form-success h3 { font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.form-success p { font-size: 16px; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   FOOTER — Dark
   ══════════════════════════════════════════════════════ */
#footer { padding: 52px 0 40px; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-logo:hover { opacity: 0.65; }
.footer-logo-rule { width: 26px; height: 1px; background: #fff; }
.footer-wordmark { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.34em; color: #fff; }
.footer-right { display: flex; gap: 28px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-right a { color: rgba(255,255,255,0.3); transition: color 200ms; }
.footer-right a:hover { color: rgba(255,255,255,0.8); }
.footer-legal { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; font-size: 12px; color: rgba(255,255,255,0.15); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .step { padding: 0 0 48px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .step:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--border); }
  .step:last-child, .step:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .scene-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 0 32px; }
  .scene-device-col { order: -1; }
  .scene-text-col { }
  .scene-sub { margin: 0 auto 32px; }
  .scene-tags { justify-content: center; }
  .scene-phone { width: 200px; height: 400px; }
  .scene-call-phone { width: 200px; height: 400px; }
  .scene-browser-wrap { max-width: 380px; }
}

@media (max-width: 960px) {
  :root { --section-pad: 80px; }
  .section-inner { padding: 0 32px; }
  .hero-content { padding: 130px 32px 48px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-item { padding: 32px 32px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  #pain { padding: 64px 32px; }
  .pain-grid:hover .pain-card { opacity: 1; transform: none; }
  .pain-card:hover { transform: none !important; }
  .laptop-wrap { display: none; }
  .demo-card-mobile { display: block; position: relative; border-radius: 12px; overflow: hidden; max-width: 600px; margin: 0 auto; }
  .demo-card-mobile img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(0.5); }
  .demo-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 24px; }
  .demo-card-overlay p { font-size: 14px; color: #fff; }
  .demo-card-overlay .btn { background: #fff; color: #000; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .ember-dishes { grid-template-columns: 1fr; }
  .ember-section { padding: 60px 32px; }
  .ember-nav { padding: 20px 28px; }
  .ember-links { display: none; }
  .ember-hero-body { padding: 0 24px 36px; }
  .ember-footer-bar { padding: 24px 32px; }
  .ember-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; height: 360px; }
  .ember-gallery-grid img:first-child { grid-row: auto; }
  .ember-reserve-form { grid-template-columns: 1fr 1fr; }
  .footer-inner { padding: 0 32px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-legal { padding: 0 32px; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-inner { padding: 0 24px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .hero-content { padding: 110px 24px 40px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .section-inner { padding: 0 24px; }
  #pain { padding: 52px 24px; }
  .demo-tabs { gap: 2px; }
  .demo-tab { padding: 6px 10px; font-size: 12px; }
  .demo-header { padding: 0 14px; }
  .ember-hero { height: 55vh; }
  .ember-hero-body .ember-title { font-size: 40px; }
  .lifestyle-bg, .lifestyle-overlay { min-height: 400px; }
  .lifestyle-quote { font-size: 26px; }
  .pricing-grid { padding: 0; }
  .radio-row { flex-direction: column; }
  .footer-inner { padding: 0 24px; }
  .footer-legal { padding: 0 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step, .step:nth-child(even) { padding: 0 0 40px; border-left: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  #scenes { height: 300vh; }
  .scene-phone { width: 160px; height: 320px; border-radius: 28px; }
  .scene-call-phone { width: 160px; height: 320px; border-radius: 28px; }
  .scene-h2 { font-size: 28px; }
  .scene-browser-wrap { max-width: 280px; }
  .scene-browser-body { height: 200px; }
}

/* ══════════════════════════════════════════════════════
   DEMO QUALITY UPGRADE v4
   ══════════════════════════════════════════════════════ */

/* In-demo scroll reveals (root = .demo-body) */
.demo-reveal {
  opacity: 0; transform: translateY(38px);
  transition: opacity 800ms var(--ease-out), transform 900ms var(--ease-expo);
  transition-delay: var(--d, 0s);
}
.demo-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .demo-reveal { opacity: 1; transform: none; transition: none; }
}

/* Gold accent line under EMBER hero title */
.ember-hero-divider {
  width: 0; height: 1px; background: var(--gold);
  margin: 0 auto 28px; opacity: 0;
  transition: width 900ms var(--ease-expo) 750ms, opacity 600ms ease 750ms;
}
.ember-site.animate-in .ember-hero-divider { width: 80px; opacity: 0.9; }

/* Refined section heading with gold tick */
.ember-h2 { position: relative; display: inline-block; padding-left: 0; }
.ember-h2::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--gold);
  vertical-align: middle; margin-right: 14px; opacity: 0.8;
}

/* Menu dish — richer hover */
.ember-dish { transition: transform 500ms var(--ease-expo); }
.ember-dish:hover { transform: translateY(-6px); }
.ember-dish .dish-price { color: var(--gold); }

/* Gold reservation focus + buttons */
.ember-field input:focus, .ember-field select:focus { border-bottom-color: var(--gold); }
.ember-btn:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }
.ember-btn { transition: opacity 600ms ease 900ms, background 300ms ease, border-color 300ms ease, color 300ms ease; }

/* Footer signature accent */
.ember-footer-bar strong { color: var(--gold); }

/* ── Exploding deconstructed dish ─────────────────────── */
.ember-explode { text-align: center; background: radial-gradient(ellipse at center, #111 0%, #0a0a0a 70%); }
.explode-intro { max-width: 480px; margin: 0 auto 16px; }
.explode-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.explode-title {
  font-size: clamp(28px, 4vw, 46px); font-weight: 200; letter-spacing: -0.02em;
  color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.explode-sub { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 8px; }

.explode-stage {
  position: relative; height: 540px; max-width: 720px; margin: 24px auto 0;
}
.explode-center {
  position: absolute; top: 50%; left: 50%;
  width: 300px; height: 300px; border-radius: 50%; overflow: hidden;
  transform: translate(-50%, -50%) scale(0.86);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,161,78,0.18);
  transition: transform 1100ms var(--ease-expo);
  z-index: 2;
}
.explode-center img { width: 100%; height: 100%; object-fit: cover; }
.explode-stage.exploded .explode-center { transform: translate(-50%, -50%) scale(1); }

.explode-orb {
  position: absolute; top: 50%; left: 50%;
  width: var(--size, 110px); height: var(--size, 110px);
  border-radius: 50%; overflow: hidden;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 2px rgba(255,255,255,0.06);
  transition: transform 1200ms var(--ease-expo), opacity 800ms ease;
  transition-delay: var(--d, 0s);
  z-index: 3;
}
.explode-orb img { width: 100%; height: 100%; object-fit: cover; }
.explode-stage.exploded .explode-orb {
  transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(var(--rot, 0deg)) scale(1);
  opacity: 1;
}
.explode-label {
  position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); opacity: 0;
  transition: opacity 600ms ease 900ms;
}
.explode-stage.exploded .explode-label { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .explode-orb { opacity: 1; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1); }
}

@media (max-width: 760px) {
  .explode-stage { height: 380px; max-width: 340px; transform: scale(0.72); transform-origin: center; }
}

/* Nav actions responsive */
@media (max-width: 640px) {
  .btn-nav-ghost { display: none; }
}

/* ══════════════════════════════════════════════════════
   AI CONCIERGE — add-on plan (in dark pricing section)
   ══════════════════════════════════════════════════════ */
.ai-addon {
  max-width: 1000px; margin: 72px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 52px; border-radius: 18px;
  border: 1px solid rgba(212,161,78,0.32);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(212,161,78,0.10), transparent 55%),
    rgba(255,255,255,0.02);
}
.ai-addon-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.ai-addon-pitch h3 {
  font-size: clamp(27px, 3vw, 38px); font-weight: 300; line-height: 1.14;
  letter-spacing: -0.01em; color: #fff; margin-bottom: 20px;
}
.ai-addon-pitch p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.55); }

.ai-addon-offer {
  background: #0f0f0f; border: 1px solid rgba(212,161,78,0.28);
  border-radius: 14px; padding: 32px;
}
.ai-addon-name {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.ai-addon-price { font-size: 38px; font-weight: 300; color: #fff; letter-spacing: -0.02em; }
.ai-addon-price span { font-size: 14px; color: var(--muted); letter-spacing: 0; }
.ai-addon-retainer { font-size: 13px; color: rgba(255,255,255,0.45); margin: 4px 0 22px; }
.ai-addon-features { list-style: none; margin: 0 0 24px; padding: 0; }
.ai-addon-features li {
  position: relative; padding-left: 26px; margin-bottom: 11px;
  font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.45;
}
.ai-addon-features li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700;
}
.ai-addon-alt {
  font-size: 12.5px; color: rgba(255,255,255,0.4); margin-top: 16px; text-align: center;
}
.ai-addon-alt strong { color: rgba(255,255,255,0.7); font-weight: 500; }

@media (max-width: 820px) {
  .ai-addon { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; margin-top: 52px; }
}

/* ── Scenes scroll performance (mobile smoothness) ── */
@media (max-width: 860px) {
  .scene-phone-outer, .scene-call-outer { animation: none !important; transform: none !important; will-change: auto; }
  .scene-phone, .scene-call-phone { box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
  .scene { transition: opacity 380ms ease; }
}
@media (prefers-reduced-motion: reduce) {
  .scene-phone-outer, .scene-call-outer { animation: none !important; }
}

/* ══════════════════════════════════════════════════════
   DEMO v5 — Beef Wellington, video-rich, multi-color
   ══════════════════════════════════════════════════════ */

/* Constrain content width inside demo sections */
.ember-section { padding: 110px 64px; border-bottom: none; }
.ember-section > * { max-width: 1120px; margin-left: auto; margin-right: auto; }

/* Color bands */
.sec-dark  { background: #0a0a0a; color: #fff; }
.sec-cream { background: #f5efe4; color: #181512; }
.sec-gold  { background: linear-gradient(135deg, #ecc479 0%, #d6a24e 100%); color: #1c1408; }

/* Hero kicker */
.ember-hero-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 18px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 700ms ease 250ms, transform 700ms var(--ease-expo) 250ms;
}
.ember-site.animate-in .ember-hero-kicker { opacity: 1; transform: none; }
.ember-hero-body .ember-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

/* Section heading on cream */
.sec-cream .ember-h2 { color: rgba(0,0,0,0.5); }
.sec-cream .ember-h2::before { background: #c2914a; }

/* ── Feature (signature dish / craft): text + video ── */
.ember-feature {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center;
}
.ember-feature.reverse .feature-video { order: -1; }

.feature-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px); font-weight: 400; line-height: 1.02;
  letter-spacing: -0.01em; margin-bottom: 26px; color: #fff;
}
.feature-body {
  font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.55);
  max-width: 440px; margin-bottom: 18px; font-weight: 300;
}
.feature-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.feature-meta span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,161,78,0.4);
  padding: 7px 14px; border-radius: 9999px;
}

.feature-video { border-radius: 6px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.55); }
.feature-video video { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
/* Beef Wellington explosion — black-bg video, let it float, no frame */
.feature-video.contain { background: transparent; box-shadow: none; border-radius: 0; }
.feature-video.contain video { aspect-ratio: auto; height: auto; max-height: 64vh; object-fit: contain; }

/* ── Experience band (cream, asymmetric) ── */
.exp-band {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: center;
  margin-bottom: 64px;
}
.exp-band:last-child { margin-bottom: 0; }
.exp-band.reverse { grid-template-columns: 1fr 1.35fr; }
.exp-band.reverse .exp-video { order: 2; }
.exp-video { border-radius: 6px; overflow: hidden; box-shadow: 0 30px 70px rgba(60,45,20,0.22); }
.exp-video video { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.exp-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 400; line-height: 1.1;
  color: #181512; margin-bottom: 16px;
}
.exp-text p { font-size: 16px; line-height: 1.8; color: rgba(0,0,0,0.55); max-width: 400px; font-weight: 300; }

/* ── Statement band (gold) ── */
.ember-statement { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.statement-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 60px); font-weight: 400; line-height: 1.08;
  letter-spacing: -0.01em; color: #1c1408;
}
.statement-rule { width: 64px; height: 2px; background: #1c1408; opacity: 0.4; margin: 28px 0 32px; }
.statement-video { border-radius: 6px; overflow: hidden; box-shadow: 0 36px 90px rgba(120,80,15,0.4); }
.statement-video video { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Dark button variant (for gold/cream backgrounds) */
.ember-btn-dark { border-color: #1c1408; color: #1c1408; }
.ember-btn-dark:hover { background: #1c1408; color: #ecc479; border-color: #1c1408; }

/* Cream overrides for reused components */
.sec-cream .hours-row { border-color: #e4dac6; }
.sec-cream .hours-row:first-child { border-top-color: #e4dac6; }
.sec-cream .hours-row span:last-child { color: rgba(0,0,0,0.5); }
.sec-cream .ember-address { color: rgba(0,0,0,0.45); }
.sec-cream .ember-body { color: rgba(0,0,0,0.55); }

/* ── Demo v5 responsive ── */
@media (max-width: 860px) {
  .ember-section { padding: 64px 28px; }
  .ember-feature,
  .ember-feature.reverse,
  .ember-statement { grid-template-columns: 1fr; gap: 32px; }
  .exp-band,
  .exp-band.reverse { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
  .ember-feature.reverse .feature-video,
  .exp-band.reverse .exp-video { order: 0; }
  .feature-body, .exp-text p { max-width: none; }
  .feature-video.contain video { max-height: 48vh; }
  .ember-statement .statement-video { order: -1; }
}

/* ══════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════════════════ */
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 0;
  color: var(--muted);
  background: transparent; border: 1px solid var(--border);
  border-radius: 9999px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}
.lang-btn:hover { color: var(--text); border-color: var(--text); }
.lang-btn svg { flex-shrink: 0; }
.lang-btn .lang-chevron { display: none; }
.lang-switcher.open .lang-btn { color: var(--text); border-color: var(--text); }
.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 180px; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  overflow: hidden; z-index: 200;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
  display: block; width: 100%; text-align: left;
  padding: 11px 18px; font-size: 13px; color: var(--text);
  background: none; border: none; cursor: pointer;
  transition: background 100ms;
}
.lang-option:hover { background: var(--surface); }
.lang-option.active { font-weight: 600; color: var(--gold); }
