/* ═══════════════════════════════════════════════════════
   TAP2ORDER — 2026 DESIGN SYSTEM
   Liquid Glass · Bento Grid · Motion First
   (Font preloaded via <link> in HTML head — not @import)
═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg:          #060608;
  --bg-2:        #0C0C10;
  --glass:       rgba(255,255,255,0.04);
  --glass-hover: rgba(255,255,255,0.07);
  --glass-border:rgba(255,255,255,0.08);
  --glass-shine: rgba(255,255,255,0.12);
  --surface:     rgba(255,255,255,0.03);
  --accent:      #F59E0B;
  --accent-2:    #FBBF24;
  --accent-dim:  rgba(245,158,11,0.12);
  --accent-glow: rgba(245,158,11,0.25);
  --text:        #FAFAFA;
  --text-2:      rgba(250,250,250,0.86);
  --text-3:      rgba(250,250,250,0.72);
  --green:       #4ade80;
  --r:           14px;
  --r-lg:        22px;
  --r-xl:        32px;
  --font:        'Inter', sans-serif;
  --ease:        cubic-bezier(0.16,1,0.3,1);
  --max:         1240px;
  --blur:        blur(24px) saturate(160%);
}

/* ── RESET ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,video { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }

/* ── NOISE OVERLAY ──────────────────────────────────── */
body::before {
  content:'';
  position:fixed;
  inset:0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events:none;
  z-index:9000;
}

/* ── GRADIENT MESH ──────────────────────────────────── */
body::after {
  content:'';
  position:fixed;
  inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(245,158,11,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(245,158,11,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 65% 85%, rgba(245,158,11,0.05) 0%, transparent 50%);
  pointer-events:none;
  z-index:0;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container { width:100%; max-width:var(--max); margin:0 auto; padding:0 24px; position:relative; z-index:1; }
section { position:relative; z-index:1; }

/* ── GLASS UTILITY ──────────────────────────────────── */
.glass {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    inset 0 1px 0 var(--glass-shine),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

/* ── KEYFRAMES ──────────────────────────────────────── */
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}
@keyframes float-slow {
  0%,100% { transform:translateY(0) rotate(0deg); }
  50%      { transform:translateY(-14px) rotate(1deg); }
}
@keyframes pulse-dot {
  0%,100% { box-shadow:0 0 0 0 rgba(74,222,128,0.5); }
  50%      { box-shadow:0 0 0 6px rgba(74,222,128,0); }
}
@keyframes border-spin {
  to { --angle: 360deg; }
}
@keyframes shimmer-btn {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@keyframes marquee-reverse {
  from { transform:translateX(-50%); }
  to   { transform:translateX(0); }
}
@keyframes glow-pulse {
  0%,100% { opacity:0.5; }
  50%      { opacity:1; }
}
@keyframes slide-up {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes scale-in {
  from { opacity:0; transform:scale(0.94); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes orb-drift {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(40px,-30px) scale(1.05); }
  66%      { transform:translate(-20px,20px) scale(0.98); }
}

/* ── SCROLL REVEAL ──────────────────────────────────── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity:1; transform:none; }
.reveal-scale { opacity:0; transform:scale(0.95); transition:opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-scale.visible { opacity:1; transform:none; }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:0.1s; }
.delay-2 { transition-delay:0.2s; }
.delay-3 { transition-delay:0.3s; }
.delay-4 { transition-delay:0.4s; }
.delay-5 { transition-delay:0.5s; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-btn 4s linear infinite;
}
.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font);
  font-weight:700;
  font-size:0.9rem;
  padding:12px 22px;
  border-radius:100px;
  border:none;
  cursor:pointer;
  transition:all 0.25s var(--ease);
  text-decoration:none;
  position:relative;
  overflow:hidden;
  letter-spacing:-0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
  background-size: 200% auto;
  color:#000;
  box-shadow: 0 0 0 0 rgba(245,158,11,0.4);
  animation: shimmer-btn 3s linear infinite;
}
.btn-primary:hover {
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 8px 32px rgba(245,158,11,0.5);
}
.btn-ghost {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: var(--text-2);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: var(--glass-hover);
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
  transform:translateY(-2px);
}
.btn-lg { font-size:1rem; padding:15px 30px; }
.btn-xl { font-size:1.05rem; padding:17px 36px; }

/* Magnetic effect target */
.btn-magnetic { will-change:transform; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:8px 0;
  transition:all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(6,6,8,0.7);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:56px; gap:20px;
}
.nav-logo {
  font-size:1.15rem; font-weight:900; letter-spacing:-0.03em; flex-shrink:0;
}
.nav-logo span { color:var(--accent); }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-links a {
  color:var(--text-3); font-size:0.85rem; font-weight:500;
  padding:6px 12px; border-radius:100px;
  transition:all 0.2s; white-space:nowrap;
}
.nav-links a:hover, .nav-links a.active { color:var(--text); background:var(--glass); }
.nav-right { display:flex; align-items:center; gap:10px; flex-shrink:0; }

/* Nav "Who's it for" dropdown */
.nav-dropdown { position:relative; }
.nav-dropdown-toggle {
  color:var(--text-3); font-size:0.85rem; font-weight:500; font-family:var(--font);
  padding:6px 12px; border-radius:100px; background:none; border:none; cursor:pointer;
  display:inline-flex; align-items:center; gap:6px; transition:all 0.2s; white-space:nowrap;
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle { color:var(--text); background:var(--glass); }
.nav-dropdown-toggle .caret { font-size:0.62rem; transition:transform 0.25s var(--ease); }
.nav-dropdown.open .nav-dropdown-toggle .caret { transform:rotate(180deg); }
.nav-dropdown-menu {
  position:absolute; top:100%; left:0; min-width:248px; margin:0; list-style:none;
  background:rgba(12,12,16,0.98); backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border); border-radius:var(--r-lg); padding:8px;
  display:flex; flex-direction:column; gap:2px;
  opacity:0; visibility:hidden; transform:translateY(8px); pointer-events:none;
  transition:opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow:0 24px 60px rgba(0,0,0,0.55); z-index:101;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }
.nav-dropdown-menu a {
  display:flex; flex-direction:column; gap:2px; padding:9px 13px; border-radius:11px;
  color:var(--text); font-size:0.86rem; font-weight:600; white-space:nowrap; background:none;
}
.nav-dropdown-menu a small { color:var(--text-3); font-size:0.7rem; font-weight:500; }
.nav-dropdown-menu a:hover { background:var(--glass); }
.nav-dropdown-menu a:hover small { color:var(--text-2); }
.countdown-chip {
  font-size:0.72rem; font-weight:700; color:var(--accent);
  background:var(--accent-dim);
  border:1px solid rgba(245,158,11,0.25);
  padding:5px 12px 5px 10px; border-radius:100px;
  white-space:nowrap; animation:glow-pulse 2s ease-in-out infinite;
}
.countdown-chip::before {
  content:''; display:inline-block;
  width:6px; height:6px; border-radius:50%;
  background:var(--accent); margin-right:7px;
  vertical-align:middle;
}
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; padding:4px;
}
.hamburger span {
  display:block; width:22px; height:2px; background:var(--text);
  border-radius:2px; transition:all 0.3s var(--ease);
}
.mobile-menu {
  display:none; position:fixed; top:72px; left:0; right:0; z-index:99;
  background:rgba(6,6,8,0.92);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom:1px solid var(--glass-border);
  padding:16px 20px 24px;
  flex-direction:column; gap:6px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  color:var(--text-2); font-size:1rem; font-weight:500;
  padding:10px 14px; border-radius:12px; transition:all 0.2s;
}
.mobile-menu a:hover { color:var(--text); background:var(--glass); }
.mobile-menu .btn-primary { margin-top:8px; text-align:center; border-radius:12px; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden; padding:100px 0 60px;
}
.hero-bg { position:absolute; inset:0; background:var(--bg); z-index:0; }
.hero-bg-video {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; opacity:0.6; z-index:1;
}
.hero-bg-image {
  position:absolute; inset:0;
  background-image:url('../images/hero.jpg');
  background-size:cover; background-position:center;
  opacity:0.34; z-index:0;
}
.hero-overlay {
  position:absolute; inset:0; z-index:2;
  background:
    linear-gradient(102deg, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.72) 44%, rgba(6,6,8,0.30) 76%, rgba(6,6,8,0.08) 100%),
    linear-gradient(to top, rgba(6,6,8,0.78) 0%, rgba(6,6,8,0) 48%);
}
/* Hero content must sit ABOVE the overlay scrim, not beneath it */
.hero .container { z-index:3; }
/* Decorative orbs */
.hero-orb {
  position:absolute; border-radius:50%;
  pointer-events:none; z-index:1;
  filter:blur(90px);
  animation:orb-drift 12s ease-in-out infinite;
}
.hero-orb-1 {
  width:500px; height:500px; right:-100px; top:-100px;
  background:radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
}
.hero-orb-2 {
  width:300px; height:300px; left:30%; bottom:0;
  background:radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%);
  animation-delay:-6s; animation-duration:15s;
}

.hero-grid {
  position:relative; z-index:3;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px; align-items:center;
}
.hero-content { max-width:620px; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--accent-dim);
  border:1px solid rgba(245,158,11,0.3);
  color:var(--accent);
  font-size:0.72rem; font-weight:700;
  padding:6px 14px; border-radius:100px;
  margin-bottom:28px;
  letter-spacing:0.12em; text-transform:uppercase;
  animation:slide-up 0.6s var(--ease) both;
}
.badge-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--green);
  animation:pulse-dot 1.5s ease-in-out infinite;
}

.hero h1 {
  font-size:clamp(2.8rem,5.5vw,4.6rem);
  font-weight:900;
  letter-spacing:-0.04em;
  line-height:1.05;
  margin-bottom:22px;
  text-shadow:0 2px 28px rgba(0,0,0,0.65);
  animation:slide-up 0.6s var(--ease) 0.1s both;
}
.hero-sub {
  font-size:clamp(1rem,1.8vw,1.15rem);
  color:rgba(250,250,250,0.84);
  line-height:1.65;
  margin-bottom:36px;
  max-width:500px;
  text-shadow:0 1px 14px rgba(0,0,0,0.6);
  animation:slide-up 0.6s var(--ease) 0.2s both;
}
.hero-ctas {
  display:flex; flex-wrap:wrap; gap:12px;
  margin-bottom:40px;
  animation:slide-up 0.6s var(--ease) 0.3s both;
}
.hero-trust {
  display:flex; gap:20px; flex-wrap:wrap;
  animation:slide-up 0.6s var(--ease) 0.4s both;
}
.hero-trust-item {
  display:flex; align-items:center; gap:6px;
  font-size:0.78rem; color:var(--text-3); font-weight:500;
}
.hero-trust-item::before { content:'✓'; color:var(--accent); font-weight:800; }

/* Hero right — mockup side */
.hero-visual {
  position:relative;
  display:flex; justify-content:center; align-items:center;
  animation:slide-up 0.7s var(--ease) 0.2s both;
}
.hero-mockup-wrap {
  position:relative; width:100%; max-width:300px;
}
.hero-mockup-img {
  width:100%; border-radius:var(--r-lg);
  box-shadow:0 40px 80px rgba(0,0,0,0.6);
  border:1px solid var(--glass-border);
}
/* Floating pills on the mockup */
.float-pill {
  position:absolute;
  display:flex; align-items:center; gap:8px;
  padding:10px 16px;
  border-radius:100px; font-size:0.8rem; font-weight:700;
  white-space:nowrap;
}
.float-pill-orders {
  top:-20px; right:-30px;
  background:rgba(6,6,8,0.85);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  color:var(--text);
  animation:float 4s ease-in-out infinite;
}
.float-pill-revenue {
  bottom:30px; left:-40px;
  background:rgba(6,6,8,0.85);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid rgba(245,158,11,0.3);
  color:var(--accent);
  animation:float 4s ease-in-out infinite 1s;
}
.float-pill-zero {
  bottom:-20px; right:20px;
  background:rgba(6,6,8,0.85);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid rgba(74,222,128,0.3);
  color:var(--green);
  animation:float 5s ease-in-out infinite 0.5s;
}
.pill-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.pill-dot-green { background:var(--green); animation:pulse-dot 1.5s ease-in-out infinite; }
.pill-dot-amber { background:var(--accent); animation:pulse-dot 1.8s ease-in-out infinite; }

/* Hero countdown box */
.hero-countdown {
  position:relative; z-index:3;
  display:inline-block;
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r-lg);
  padding:20px 28px;
  animation:slide-up 0.7s var(--ease) 0.5s both;
  margin-top:4px;
}
.hero-countdown-label {
  font-size:0.7rem; font-weight:700; color:var(--text-3);
  text-transform:uppercase; letter-spacing:0.1em; margin-bottom:12px;
}
.countdown-timer { display:flex; gap:16px; align-items:center; }
.countdown-unit { text-align:center; }
.countdown-num {
  font-size:2.2rem; font-weight:900; letter-spacing:-0.05em;
  color:var(--accent); line-height:1; display:block;
}
.countdown-label {
  font-size:0.6rem; color:var(--text-3); font-weight:600;
  text-transform:uppercase; letter-spacing:0.1em; margin-top:3px; display:block;
}
.countdown-sep {
  font-size:1.8rem; font-weight:900; color:var(--text-3); margin-bottom:10px;
}

/* ── TICKER / MARQUEE ────────────────────────────────── */
.ticker-section {
  padding:0; overflow:hidden; border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
  background:rgba(255,255,255,0.015);
  position:relative; z-index:2;
}
.ticker-inner {
  display:flex; align-items:center;
  padding:14px 0; gap:0;
  overflow:hidden;
}
.ticker-track {
  display:flex; gap:0; width:max-content;
  animation:marquee 28s linear infinite;
}
.ticker-track:hover { animation-play-state:paused; }
.ticker-item {
  display:flex; align-items:center; gap:10px;
  padding:0 32px; white-space:nowrap;
  font-size:0.82rem; font-weight:600; color:var(--text-2);
  border-right:1px solid var(--glass-border);
}
.ticker-item span { color:var(--accent); font-weight:800; }
.ticker-dot { width:5px; height:5px; border-radius:50%; background:var(--accent); opacity:0.6; flex-shrink:0; }

/* ── SECTION COMMONS ─────────────────────────────────── */
.section-pad { padding:100px 0; }
.section-pad-sm { padding:72px 0; }
.section-header { margin-bottom:56px; }
.section-header.center { text-align:center; }
.section-header.center .section-sub { margin:0 auto; }
.section-label {
  font-size:0.72rem; font-weight:700; color:var(--accent);
  text-transform:uppercase; letter-spacing:0.14em; margin-bottom:14px;
  display:block;
}
.section-title {
  font-size:clamp(2rem,3.8vw,3rem);
  font-weight:900; letter-spacing:-0.035em; line-height:1.1;
  margin-bottom:16px;
}
.section-sub {
  font-size:1.12rem; font-weight:500; color:var(--text-2); max-width:540px; line-height:1.7;
}

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-section { background:transparent; }
.steps-wrap {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.step-card {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  padding:40px 32px 36px;
  position:relative; overflow:hidden;
  border:1px solid var(--glass-border);
  transition:background 0.3s, transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-card:hover {
  background:var(--glass-hover);
  transform:translateY(-5px);
  border-color:rgba(245,158,11,0.32);
  box-shadow:0 20px 44px -20px rgba(0,0,0,0.65), 0 0 0 1px rgba(245,158,11,0.10);
}
.step-card::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(245,158,11,0.04) 0%, transparent 60%);
  opacity:0; transition:opacity 0.3s;
}
.step-card:hover::before { opacity:1; }
.step-num-big {
  font-size:5rem; font-weight:900; letter-spacing:-0.05em;
  color:rgba(245,158,11,0.08); line-height:1;
  margin-bottom:4px; display:block;
  transition:color 0.4s var(--ease), text-shadow 0.4s var(--ease);
}
.step-card:hover .step-num-big {
  color:rgba(245,158,11,0.9);
  text-shadow:0 0 26px rgba(245,158,11,0.5);
}
.step-label {
  font-size:0.68rem; font-weight:700; color:var(--accent);
  text-transform:uppercase; letter-spacing:0.12em; margin-bottom:16px;
}
.step-video-wrap {
  width:100%; border-radius:var(--r);
  overflow:hidden; margin-bottom:20px;
  border:1px solid var(--glass-border);
  aspect-ratio:1/1; background:rgba(0,0,0,0.4);
}
.step-video-wrap video, .step-video-wrap img {
  width:100%; height:100%; object-fit:cover; display:block;
  image-rendering:auto;
}
.step-card h3 {
  font-size:1.15rem; font-weight:800;
  letter-spacing:-0.02em; margin-bottom:8px;
}
.step-card p { font-size:0.9rem; color:var(--text-2); line-height:1.6; }

/* ── BENTO FEATURES ──────────────────────────────────── */
.features-section { background:transparent; }
.bento-grid {
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.bento-card {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r-lg);
  padding:28px;
  position:relative; overflow:hidden;
  transition:all 0.35s var(--ease);
  will-change:transform;
}
.bento-card:hover {
  background:var(--glass-hover);
  border-color:rgba(255,255,255,0.13);
  transform:translateY(-3px);
  box-shadow:0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.1);
}
.bento-card::after {
  content:'';
  position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
/* Bento spans */
.b-1  { grid-column:span 4; }
.b-2  { grid-column:span 4; }
.b-3  { grid-column:span 4; }
.b-5  { grid-column:span 5; }
.b-6  { grid-column:span 6; }
.b-7  { grid-column:span 7; }
.b-8  { grid-column:span 8; }
.b-12 { grid-column:span 12; }

.bento-card.accent-card {
  background:linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(245,158,11,0.04) 100%);
  border-color:rgba(245,158,11,0.2);
}
.bento-card.accent-card:hover {
  background:linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.06) 100%);
  border-color:rgba(245,158,11,0.35);
  box-shadow:0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(245,158,11,0.08);
}
.bento-icon {
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:13px;
  background:linear-gradient(140deg, rgba(245,158,11,0.20), rgba(245,158,11,0.04));
  border:1px solid rgba(245,158,11,0.22);
  color:var(--accent);
  margin-bottom:16px;
  flex-shrink:0;
}
.bento-icon svg { width:22px; height:22px; display:block; }
.accent-card .bento-icon {
  background:rgba(0,0,0,0.28);
  border-color:rgba(245,158,11,0.4);
}
.bento-card h4 {
  font-size:1rem; font-weight:800; letter-spacing:-0.02em;
  margin-bottom:7px;
}
.bento-card p { font-size:0.85rem; color:var(--text-2); line-height:1.6; }
.bento-card.large h4 { font-size:1.3rem; margin-bottom:10px; }
.bento-card.large p { font-size:0.92rem; }
.bento-stat-number {
  font-size:3rem; font-weight:900; letter-spacing:-0.05em;
  color:var(--accent); display:block; line-height:1;
  margin-bottom:6px;
}
.bento-img {
  width:100%; border-radius:var(--r);
  margin-top:16px; object-fit:cover;
  border:1px solid var(--glass-border);
}

/* Decorative orb inside bento card */
.bento-card .card-orb {
  position:absolute; width:120px; height:120px; border-radius:50%;
  background:radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  filter:blur(30px); right:-20px; top:-20px;
  pointer-events:none; transition:opacity 0.3s;
  opacity:0;
}
.bento-card:hover .card-orb { opacity:1; }

/* ── STATS / COUNTERS ────────────────────────────────── */
.stats-section { background:transparent; }
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.stat-card {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  padding:40px 32px; text-align:center;
  border:1px solid var(--glass-border);
  transition:background 0.3s, transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stat-card:hover {
  background:var(--glass-hover);
  transform:translateY(-5px);
  border-color:rgba(245,158,11,0.32);
  box-shadow:0 20px 44px -20px rgba(0,0,0,0.65), 0 0 0 1px rgba(245,158,11,0.10);
}
.stat-value {
  font-size:clamp(2.4rem,4vw,3.5rem);
  font-weight:900; letter-spacing:-0.05em;
  color:var(--accent); display:block;
  margin-bottom:8px; line-height:1;
}
.stat-label { font-size:0.85rem; color:var(--text-2); font-weight:500; }
.stat-sub { font-size:0.72rem; color:var(--text-3); margin-top:4px; }

/* ── SOCIAL PROOF ────────────────────────────────────── */
.proof-section { background:transparent; overflow:hidden; }
.proof-scroll-wrap {
  overflow:hidden;
  user-select:none;
  margin:0 -24px;
  padding:0 24px;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.proof-track {
  display:flex;
  width:max-content;
  padding:8px 0 24px;
  will-change:transform;
}
/* seamless auto-scroll marquee (JS clones the cards, so -50% loops perfectly) */
.proof-track[data-marquee="1"] {
  animation: proof-marquee var(--marquee-duration, 48s) linear infinite;
}
.proof-scroll-wrap:hover .proof-track[data-marquee="1"],
.proof-track[data-marquee="1"]:focus-within {
  animation-play-state: paused;
}
@keyframes proof-marquee {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}
/* reduced-motion / no-JS fallback: stop the loop, allow manual scroll */
.proof-scroll-wrap.proof-static {
  overflow-x:auto;
  -webkit-mask-image:none; mask-image:none;
}
.proof-card {
  width:340px; flex-shrink:0;
  margin-right:16px;
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:all 0.35s var(--ease);
}
.proof-card:hover {
  border-color:rgba(245,158,11,0.25);
  transform:translateY(-4px);
  box-shadow:0 24px 60px rgba(0,0,0,0.5);
}
.proof-video-wrap {
  width:100%; height:200px; overflow:hidden; position:relative;
  background:rgba(0,0,0,0.4);
}
.proof-video-wrap video, .proof-video-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s var(--ease);
}
.proof-card:hover .proof-video-wrap video,
.proof-card:hover .proof-video-wrap img { transform:scale(1.04); }
.proof-body { padding:22px 24px; }
.proof-tag {
  font-size:0.68rem; font-weight:800;
  color:var(--accent); text-transform:uppercase; letter-spacing:0.12em;
  margin-bottom:10px; display:block;
}
.proof-quote {
  font-size:0.9rem; color:var(--text); line-height:1.65;
  font-style:italic; margin-bottom:14px;
}
.proof-author { font-size:0.75rem; color:var(--text-3); font-weight:600; }
.proof-stars { color:var(--accent); font-size:0.8rem; margin-bottom:6px; }

/* ── ALGO / ANALYTICS ────────────────────────────────── */
.algo-section { background:transparent; }
.algo-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.algo-visual {
  position:relative; border-radius:var(--r-xl);
}
.algo-visual video, .algo-visual img {
  width:100%; border-radius:var(--r-xl);
  border:1px solid var(--glass-border);
  box-shadow:0 40px 80px rgba(0,0,0,0.5);
}
/* even amber backlight now comes from the .dash box-shadow above */
.algo-glow { display:none; }
.algo-stats-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:32px;
}
.algo-stat {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r); padding:18px 20px;
  transition:all 0.3s var(--ease);
}
.algo-stat:hover {
  background:var(--glass-hover);
  border-color:rgba(245,158,11,0.2);
}
.algo-stat-value {
  font-size:1.4rem; font-weight:900;
  color:var(--accent); letter-spacing:-0.03em;
  display:block; margin-bottom:4px;
}
.algo-stat-label { font-size:0.78rem; color:var(--text-2); font-weight:500; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-section { background:transparent; }
.summer-banner {
  background:linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(245,158,11,0.04) 100%);
  border:1px solid rgba(245,158,11,0.25);
  border-radius:var(--r-lg);
  padding:18px 24px; margin-bottom:48px;
  display:flex; align-items:center; gap:14px;
}
.summer-banner > span { color:var(--accent); display:inline-flex; flex-shrink:0; }
.summer-banner-text strong { color:var(--accent); font-size:0.95rem; }
.summer-banner-text p { font-size:0.82rem; color:var(--text-2); margin-top:3px; }
.summer-banner-text .scarcity-progress { width:100%; height:6px; background:rgba(255,255,255,0.08); border-radius:100px; overflow:hidden; margin:12px 0 7px; }
.summer-banner-text .scarcity-text { margin-top:0; white-space:normal; }
.pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; margin-bottom:36px;
}
.pricing-card {
  border-radius:var(--r-xl);
  padding:36px 32px;
  position:relative;
  transition:all 0.35s var(--ease);
  overflow:visible;
}
/* Standard card */
.pricing-card:not(.pricing-featured) {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
}
.pricing-card:not(.pricing-featured):hover {
  background:var(--glass-hover);
  transform:translateY(-4px);
  box-shadow:0 24px 60px rgba(0,0,0,0.4);
}
/* Featured card with animated gradient border (mask technique — keeps rounded corners) */
.pricing-featured {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid rgba(245,158,11,0.14);
  box-shadow:0 0 60px rgba(245,158,11,0.1);
  transform:translateY(-6px) scale(1.02);
  z-index:1;
}
.pricing-featured::before {
  content:'';
  position:absolute; inset:0;
  border-radius:inherit;
  padding:2px;
  background:conic-gradient(from var(--angle),
    rgba(245,158,11,0.12) 0%, rgba(251,191,36,1) 25%,
    rgba(245,158,11,0.12) 50%, rgba(251,191,36,1) 75%,
    rgba(245,158,11,0.12) 100%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite:exclude;
  animation:border-spin 4s linear infinite;
  pointer-events:none;
}
.pricing-featured:hover { transform:translateY(-10px) scale(1.02); box-shadow:0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(245,158,11,0.15); }
.pricing-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,#F59E0B,#FBBF24);
  color:#000; font-size:0.68rem; font-weight:900;
  padding:5px 16px; border-radius:100px;
  text-transform:uppercase; letter-spacing:0.1em; white-space:nowrap;
}
.pricing-name { font-size:0.78rem; font-weight:700; color:var(--text-3); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:16px; }
.pricing-price { display:flex; align-items:baseline; gap:4px; margin-bottom:6px; }
.pricing-num { font-size:3rem; font-weight:900; letter-spacing:-0.05em; }
.pricing-per { font-size:0.85rem; color:var(--text-3); }
.pricing-setup { font-size:0.78rem; color:var(--text-3); margin-bottom:24px; min-height:18px; }
.pricing-setup.waived { color:var(--green); font-weight:600; }
.pricing-annual-note { text-align:center; font-size:0.92rem; color:var(--text-2); margin:24px auto 0; max-width:660px; }
.pricing-annual-note strong { color:var(--accent); }

/* ── COMPARISON TABLE (compare pages) ─────────────────── */
.cmp-table-wrap { overflow-x:auto; margin:30px 0; border:1px solid var(--glass-border); border-radius:var(--r); }
.cmp-table { width:100%; border-collapse:collapse; font-size:0.92rem; min-width:600px; }
.cmp-table th, .cmp-table td { padding:13px 18px; text-align:left; border-bottom:1px solid var(--glass-border); vertical-align:top; }
.cmp-table thead th { font-size:0.68rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-3); font-weight:800; background:rgba(255,255,255,0.02); }
.cmp-table thead th.cmp-us { color:var(--accent); }
.cmp-table td:first-child { color:var(--text-2); font-weight:600; }
.cmp-table td.cmp-us { background:rgba(245,158,11,0.06); color:var(--text); font-weight:700; }
.cmp-table tr:last-child td { border-bottom:none; }
.cmp-yes { color:var(--green); font-weight:800; }
.cmp-no { color:var(--text-3); }
.cmp-cols { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin:24px 0; }
@media (max-width:760px){ .cmp-cols { grid-template-columns:1fr; } }
.cmp-col { background:var(--surface); border:1px solid var(--glass-border); border-radius:var(--r); padding:22px 24px; }
.cmp-col h3 { font-size:1.05rem; font-weight:800; margin-bottom:10px; }
.cmp-col.cmp-col-us { border-color:rgba(245,158,11,0.3); }
.cmp-col ul { list-style:none; padding:0; margin:0; }
.cmp-col li { font-size:0.9rem; color:var(--text-2); padding:6px 0 6px 22px; position:relative; }
.cmp-col li::before { content:'→'; position:absolute; left:0; color:var(--accent); font-weight:800; }

/* ── TL;DR SKIM BAND (industry pages, after hero) ─────── */
.skim { max-width:980px; margin:0 auto; text-align:center; }
.skim .section-label { margin-bottom:22px; display:inline-block; }
.skim-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:0 0 22px; text-align:left; }
@media (max-width:760px){ .skim-grid { grid-template-columns:1fr; } }
.skim-item {
  background:var(--glass); border:1px solid var(--glass-border); border-radius:14px;
  padding:22px 22px 24px;
  transition:transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.skim-item:hover {
  transform:translateY(-4px); background:var(--glass-hover);
  border-color:rgba(245,158,11,0.28);
  box-shadow:0 18px 38px -20px rgba(0,0,0,0.6);
}
.skim-icon {
  width:36px; height:36px; border-radius:11px; margin-bottom:14px;
  display:flex; align-items:center; justify-content:center;
  background:var(--accent-dim); border:1px solid rgba(245,158,11,0.22); color:var(--accent);
}
.skim-icon svg { width:18px; height:18px; }
.skim-item h3 { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.09em; color:var(--accent); font-weight:800; margin-bottom:7px; }
.skim-item p { font-size:0.92rem; color:var(--text-2); line-height:1.6; }
.skim-stat { font-size:0.82rem; color:var(--text-3); margin:0 auto 20px; max-width:700px; line-height:1.6; }
.pricing-divider { height:1px; background:var(--glass-border); margin:24px 0; }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.pricing-features li { display:flex; align-items:flex-start; gap:10px; font-size:0.875rem; color:var(--text-2); }
.pricing-features li::before { content:'✓'; color:var(--accent); font-weight:900; flex-shrink:0; margin-top:1px; }
.pricing-cta { width:100%; border-radius:12px; }
.pricing-note { text-align:center; font-size:0.78rem; color:var(--text-3); }

/* Scarcity bar */
.scarcity-bar {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid rgba(245,158,11,0.2);
  border-radius:var(--r);
  padding:18px 24px;
  display:flex; align-items:center; gap:16px;
  margin-bottom:48px;
}
.scarcity-progress {
  flex:1; height:6px; background:rgba(255,255,255,0.08);
  border-radius:100px; overflow:hidden;
}
.scarcity-fill {
  height:100%; width:68%;
  background:linear-gradient(90deg,#F59E0B,#FBBF24);
  border-radius:100px;
  box-shadow:0 0 8px rgba(245,158,11,0.5);
}
.scarcity-text { font-size:0.82rem; font-weight:700; color:var(--text-2); white-space:nowrap; }
.scarcity-text strong { color:var(--accent); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section { background:transparent; }
.faq-wrap { max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:8px; }
.faq-item {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:border-color 0.3s;
}
.faq-item.open { border-color:rgba(245,158,11,0.25); }
.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; text-align:left; background:none; border:none;
  cursor:pointer; font-family:var(--font); font-size:0.95rem;
  font-weight:700; color:var(--text); gap:16px; transition:color 0.2s;
}
.faq-q:hover { color:var(--accent); }
.faq-icon {
  width:24px; height:24px; border-radius:50%;
  background:var(--accent-dim); border:1px solid rgba(245,158,11,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; color:var(--accent); flex-shrink:0;
  transition:transform 0.3s var(--ease), background 0.3s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:rgba(245,158,11,0.2); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height:640px; }
.mobile-menu-label {
  font-size:0.68rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--text-3); padding:12px 14px 4px;
}
.faq-a-inner { padding:0 24px 20px; font-size:0.9rem; color:var(--text-2); line-height:1.7; }

/* ── CTA / CONTACT ───────────────────────────────────── */
.cta-section { background:transparent; }
.cta-card {
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r-xl);
  padding:72px 60px;
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-card::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events:none;
}
.cta-card h2 { font-size:clamp(2rem,4vw,3rem); font-weight:900; letter-spacing:-0.035em; margin-bottom:16px; }
.cta-card p { font-size:1.05rem; color:var(--text-2); max-width:520px; margin:0 auto 36px; line-height:1.7; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* Contact form */
.contact-form { display:flex; flex-direction:column; gap:14px; text-align:left; max-width:560px; margin:0 auto; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group label { display:block; font-size:0.75rem; color:var(--text-3); font-weight:600; margin-bottom:6px; letter-spacing:0.05em; text-transform:uppercase; }
.form-input {
  width:100%;
  background:var(--glass);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r);
  padding:13px 16px;
  color:var(--text); font-family:var(--font); font-size:0.9rem;
  outline:none; transition:border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance:none;
}
.form-input:focus { border-color:rgba(245,158,11,0.5); box-shadow:0 0 0 3px rgba(245,158,11,0.1); }
.form-input::placeholder { color:var(--text-3); }
.form-input option { background:var(--bg-2); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background:var(--bg-2);
  border-top:1px solid var(--glass-border);
  padding:60px 0 32px;
}
.footer-grid {
  display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:44px; margin-bottom:48px;
}
.footer-address {
  font-style:normal; font-size:0.82rem; color:var(--text-3);
  line-height:1.75; margin-top:16px;
}
.footer-brand h3 { font-size:1.1rem; font-weight:900; letter-spacing:-0.02em; margin-bottom:12px; }
.footer-brand h3 span { color:var(--accent); }
.footer-brand p { font-size:0.875rem; color:var(--text-2); line-height:1.65; max-width:280px; }
.footer-col h5 { font-size:0.68rem; font-weight:800; color:var(--text-3); text-transform:uppercase; letter-spacing:0.14em; margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:0.85rem; color:var(--text-2); transition:color 0.2s; }
.footer-links a:hover { color:var(--text); }
.footer-bottom {
  border-top:1px solid var(--glass-border); padding-top:24px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:0.78rem; color:var(--text-3); }
.footer-cities strong { color:var(--accent); }

/* ── INDUSTRY HERO OVERRIDES ─────────────────────────── */
.hero-bar .hero-bg-image   { background-image:url('../images/hero-bar.jpg'); }
.hero-cafe .hero-bg-image  { background-image:url('../images/hero-cafe.jpg'); }
.hero-restaurant .hero-bg-image { background-image:url('../images/hero-restaurant.jpg'); }
.hero-foodtruck .hero-bg-image  { background-image:url('../images/hero-foodtruck.jpg'); }
.hero-qsr .hero-bg-image   { background-image:url('../images/hero-qsr.jpg'); }
.hero-brewery .hero-bg-image    { background-image:url('../images/hero-brewery.jpg'); }
.hero-nyc .hero-bg-image        { background-image:url('../images/hero.jpg'); }

/* Neighborhood chips (NYC page) */
.hood-grid { display:flex; flex-wrap:wrap; gap:10px; }
.hood {
  font-size:0.82rem; font-weight:700;
  padding:8px 16px; border-radius:100px;
  background:var(--glass); border:1px solid var(--glass-border);
  color:var(--text-3);
}
.hood.active {
  background:var(--accent-dim); border-color:rgba(245,158,11,0.35);
  color:var(--accent);
}
.hood.active::before { content:'● '; font-size:0.6em; vertical-align:middle; }

/* Industry pages have no hero video — let the venue photo carry the atmosphere */
body[class*="hero-"] .hero-bg-image { opacity:1; }
body[class*="hero-"] .hero { min-height:88vh; }
@media (max-width:1080px) {
  body[class*="hero-"] .hero-bg-image { opacity:0.78; }
}

/* ── INDUSTRY PAIN POINTS ────────────────────────────── */
.pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.pain-card {
  background:var(--glass);
  backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  border-radius:var(--r-lg); padding:28px 24px;
  transition:all 0.3s var(--ease);
}
.pain-card:hover { background:var(--glass-hover); border-color:rgba(245,158,11,0.15); transform:translateY(-2px); }
.pain-card h4 { font-size:1rem; font-weight:800; margin-bottom:8px; }
.pain-card p { font-size:0.875rem; color:var(--text-2); line-height:1.6; }
.pain-stat-row {
  background:var(--glass);
  backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur);
  border:1px solid rgba(245,158,11,0.18);
  border-radius:var(--r-lg); padding:24px 28px;
  display:flex; align-items:center; gap:24px; margin-top:32px;
}
.pain-stat-big { font-size:2.8rem; font-weight:900; color:var(--accent); letter-spacing:-0.04em; flex-shrink:0; }
.pain-stat-row p { font-size:0.88rem; color:var(--text-2); line-height:1.65; }

/* ── DEVICE PHONE MOCKUP ─────────────────────────────── */
.device-phone {
  position:relative;
  width:296px; max-width:80vw;
  aspect-ratio:296/620;
  background:linear-gradient(155deg,#2a2a30,#0a0a0c 55%);
  border-radius:54px;
  padding:8px;
  box-shadow:
    0 50px 90px rgba(0,0,0,0.65),
    0 0 0 2px rgba(255,255,255,0.06),
    0 0 0 3.5px rgba(0,0,0,0.5),
    inset 0 1px 1px rgba(255,255,255,0.18);
}
/* Dynamic Island */
.device-phone::before {
  content:'';
  position:absolute; top:15px; left:50%; transform:translateX(-50%);
  width:92px; height:27px; background:#000;
  border-radius:16px; z-index:4;
}
.device-screen {
  width:100%; height:100%;
  background:linear-gradient(180deg,#0d0d11,#131318);
  border-radius:46px;
  overflow:hidden;
  display:flex; flex-direction:column;
  position:relative;
}
.app-top {
  padding:40px 18px 10px;
  display:flex; align-items:flex-start; justify-content:space-between;
}
.app-brand { font-size:0.84rem; font-weight:900; letter-spacing:-0.03em; line-height:1.1; }
.app-brand span { color:var(--accent); }
.app-loc { font-size:0.56rem; color:var(--text-3); font-weight:600; margin-top:2px; }
.app-status {
  font-size:0.54rem; font-weight:800; color:var(--green);
  display:flex; align-items:center; gap:4px;
  background:rgba(74,222,128,0.1); border:1px solid rgba(74,222,128,0.2);
  padding:3px 8px; border-radius:100px;
}
.app-status::before {
  content:''; width:5px; height:5px; border-radius:50%;
  background:var(--green); animation:pulse-dot 1.6s ease-in-out infinite;
}
.app-cats { display:flex; gap:5px; padding:6px 18px 10px; }
.app-cat {
  font-size:0.56rem; font-weight:800; padding:5px 10px;
  border-radius:100px; background:rgba(255,255,255,0.05);
  color:var(--text-3); white-space:nowrap;
}
.app-cat.on { background:var(--accent); color:#000; }
.app-items { flex:1; padding:2px 14px; display:flex; flex-direction:column; gap:7px; }
.app-item {
  display:flex; align-items:center; gap:9px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:13px; padding:9px;
}
.app-item-thumb {
  width:40px; height:40px; border-radius:9px; flex-shrink:0;
  background:linear-gradient(135deg, rgba(245,158,11,0.4), rgba(245,158,11,0.08));
  display:flex; align-items:center; justify-content:center; font-size:1rem;
  overflow:hidden;
}
.app-item-thumb img { width:100%; height:100%; object-fit:cover; border-radius:inherit; display:block; }
.app-item-info { flex:1; min-width:0; }
.app-item-name { font-size:0.66rem; font-weight:800; letter-spacing:-0.01em; }
.app-item-desc { font-size:0.52rem; color:var(--text-3); margin-top:1px; }
.app-item-price { font-size:0.66rem; font-weight:800; color:var(--accent); }
.app-add {
  width:21px; height:21px; border-radius:50%;
  background:var(--accent); color:#000;
  font-weight:900; font-size:0.8rem; line-height:1;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.app-cart {
  margin:9px 14px 16px;
  background:linear-gradient(135deg,#F59E0B,#FBBF24);
  color:#000; border-radius:13px;
  padding:11px 14px;
  display:flex; align-items:center; justify-content:space-between;
  font-weight:900; font-size:0.68rem; letter-spacing:-0.01em;
}
.app-cart-count {
  background:rgba(0,0,0,0.25); border-radius:100px;
  padding:2px 8px; font-size:0.6rem;
}

/* ── ANALYTICS DASHBOARD MOCKUP (styled as a modern iPad) ─ */
.dash {
  position:relative; z-index:1;
  background:linear-gradient(150deg,#34343d,#0c0c11 62%);
  border-radius:32px;
  padding:26px;
  overflow:hidden;
  box-shadow:
    0 0 100px -8px rgba(245,158,11,0.20),
    0 50px 90px rgba(0,0,0,0.6),
    0 0 0 2px rgba(255,255,255,0.07),
    0 0 0 3.5px rgba(0,0,0,0.55),
    inset 0 1px 1px rgba(255,255,255,0.18);
  display:flex; flex-direction:column; gap:13px;
}
/* iPad screen — sits inside the bezel and contains all content */
.dash::before {
  content:''; position:absolute; inset:12px;
  background:linear-gradient(180deg,#0b0b10,#15151c);
  border-radius:21px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 2px 16px rgba(0,0,0,0.6);
  z-index:0; pointer-events:none;
}
/* iPad front camera — centered in the top bezel */
.dash::after {
  content:''; position:absolute; top:4.5px; left:50%; transform:translateX(-50%);
  width:5px; height:5px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #4a4a55, #050508 70%);
  box-shadow:0 0 0 1px rgba(0,0,0,0.5);
  z-index:3; pointer-events:none;
}
.dash-head { display:flex; align-items:center; justify-content:space-between; }
.dash-title { font-size:0.92rem; font-weight:900; letter-spacing:-0.02em; }
.dash-title span { color:var(--accent); }
.dash-live {
  font-size:0.6rem; font-weight:800; color:var(--green);
  display:flex; align-items:center; gap:5px;
}
.dash-live::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--green); animation:pulse-dot 1.6s ease-in-out infinite;
}
.dash-tiles { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.dash-tile {
  background:rgba(255,255,255,0.03);
  border:1px solid var(--glass-border);
  border-radius:var(--r); padding:13px 15px;
}
.dash-tile-val { font-size:1.55rem; font-weight:900; color:var(--accent); letter-spacing:-0.04em; line-height:1; }
.dash-tile-lbl { font-size:0.6rem; color:var(--text-3); font-weight:700; margin-top:5px; }
.dash-tile-trend { font-size:0.58rem; color:var(--green); font-weight:800; margin-top:3px; }
.dash-panel {
  background:rgba(255,255,255,0.03);
  border:1px solid var(--glass-border);
  border-radius:var(--r); padding:15px 16px;
}
.dash-panel-lbl {
  font-size:0.58rem; font-weight:800; color:var(--text-3);
  text-transform:uppercase; letter-spacing:0.1em; margin-bottom:12px;
}
.dash-bar-row { display:flex; align-items:center; gap:10px; margin-bottom:9px; }
.dash-bar-row:last-child { margin-bottom:0; }
.dash-bar-name { font-size:0.6rem; color:var(--text-2); font-weight:600; width:74px; flex-shrink:0; }
.dash-bar-track { flex:1; height:8px; background:rgba(255,255,255,0.05); border-radius:100px; overflow:hidden; }
.dash-bar-fill {
  height:100%; border-radius:100px;
  background:linear-gradient(90deg,#D97706,#FBBF24);
  transform-origin:left;
  animation:grow-bar 1.1s var(--ease) both;
}
.dash-bar-val { font-size:0.6rem; font-weight:800; color:var(--text-2); width:28px; text-align:right; }
.dash-heat-wrap { display:flex; gap:8px; }
.dash-heat-days { display:flex; flex-direction:column; justify-content:space-around; }
.dash-heat-days span { font-size:0.52rem; color:var(--text-3); font-weight:700; }
.dash-heat { flex:1; display:grid; grid-template-columns:repeat(8,1fr); gap:4px; }
.dash-heat-cell { aspect-ratio:1; border-radius:3px; background:var(--accent); }
.dash-spark { width:100%; height:auto; display:block; overflow:visible; }

@keyframes grow-bar { from { transform:scaleX(0); } to { transform:scaleX(1); } }

/* ── MINI UI (time-based menu card) ──────────────────── */
.minui {
  margin-top:18px;
  background:rgba(0,0,0,0.4);
  border:1px solid var(--glass-border);
  border-radius:var(--r);
  padding:14px 16px;
  display:flex; flex-direction:column; gap:9px;
}
.minui-head {
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:11px; border-bottom:1px solid var(--glass-border);
}
.minui-tag {
  font-size:0.56rem; font-weight:900; letter-spacing:0.08em;
  background:var(--accent); color:#000;
  padding:4px 9px; border-radius:100px;
}
.minui-time {
  font-size:0.62rem; color:var(--text-2); font-weight:800;
  display:flex; align-items:center; gap:6px;
}
.minui-time::before {
  content:''; width:5px; height:5px; border-radius:50%;
  background:var(--accent); flex-shrink:0;
}
.minui-row { display:flex; align-items:center; justify-content:space-between; }
.minui-row > span:first-child { font-size:0.72rem; color:var(--text-2); font-weight:600; }
.minui-price { font-size:0.72rem; font-weight:900; }
.minui-price .was { color:var(--text-3); text-decoration:line-through; margin-right:7px; font-weight:600; font-size:0.62rem; }
.minui-price .now { color:var(--accent); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width:1080px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .algo-grid { grid-template-columns:1fr; gap:48px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .bento-grid .b-7 { grid-column:span 8; }
  .bento-grid .b-5 { grid-column:span 4; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
  .section-pad { padding:72px 0; }
  .nav-links, .nav-right .countdown-chip { display:none; }
  .hamburger { display:flex; }
  .steps-wrap { grid-template-columns:1fr; background:none; gap:12px; }
  .step-card { border-radius:var(--r-lg); }
  .bento-grid {
    grid-template-columns:1fr 1fr;
  }
  .bento-grid .b-7, .bento-grid .b-8, .bento-grid .b-5, .bento-grid .b-6 { grid-column:span 2; }
  .bento-grid .b-1,.bento-grid .b-2,.bento-grid .b-3 { grid-column:span 1; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr; }
  .pricing-featured { transform:none; order:-1; }
  .proof-card { width:290px; }
  .algo-grid { grid-template-columns:1fr; }
  .hero-ctas { flex-direction:column; }
  .hero-ctas .btn { width:100%; justify-content:center; }
  .cta-card { padding:48px 28px; }
  .form-row { grid-template-columns:1fr; }
  .pain-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .scarcity-bar { flex-wrap:wrap; }
  .scarcity-text { white-space:normal; text-align:center; flex-basis:100%; }
}

@media (max-width:480px) {
  .container { padding:0 16px; }
  .bento-grid { grid-template-columns:1fr; }
  .bento-grid [class*="b-"] { grid-column:span 1; }
  .bento-card.b-12 { flex-direction:column; align-items:flex-start; gap:20px; }
  .bento-card.b-12 img { width:100%; height:auto; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .countdown-timer { gap:10px; }
  .countdown-num { font-size:1.7rem; }
  .hero-trust { display:none; }
  .cta-card { padding:40px 20px; }
  .dash-tiles { grid-template-columns:1fr; }
  .dash { padding:18px; border-radius:27px; }
  .dash::before { inset:9px; border-radius:19px; }
}

/* ── ACCESSIBILITY ───────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.faq-q:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:6px;
}

/* ── ROI CALCULATOR ─────────────────────────────────── */
.roi-section { background:transparent; }
.roi-calc {
  max-width:780px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:32px;
  padding:36px;
  border-radius:var(--r-xl);
}
.roi-inputs { display:flex; flex-direction:column; gap:22px; }
.roi-input label {
  display:block; font-size:0.78rem; font-weight:700;
  color:var(--text-2); margin-bottom:10px; letter-spacing:-0.005em;
}
.roi-input-row { display:flex; align-items:center; gap:14px; }
.roi-input input[type="range"] {
  flex:1; -webkit-appearance:none; appearance:none;
  height:6px; border-radius:100px;
  background:rgba(255,255,255,0.08); outline:none;
}
.roi-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance:none; appearance:none;
  width:22px; height:22px; border-radius:50%;
  background:linear-gradient(135deg,#F59E0B,#FBBF24);
  cursor:pointer; box-shadow:0 4px 12px rgba(245,158,11,0.4);
}
.roi-input input[type="range"]::-moz-range-thumb {
  width:22px; height:22px; border-radius:50%; border:none;
  background:linear-gradient(135deg,#F59E0B,#FBBF24);
  cursor:pointer; box-shadow:0 4px 12px rgba(245,158,11,0.4);
}
.roi-val {
  font-size:1.05rem; font-weight:900; color:var(--accent);
  min-width:64px; text-align:right; letter-spacing:-0.02em;
}
.roi-result {
  background:linear-gradient(140deg, rgba(245,158,11,0.10), rgba(245,158,11,0.02));
  border:1px solid rgba(245,158,11,0.22);
  border-radius:var(--r-lg);
  padding:24px;
  display:flex; flex-direction:column; gap:8px;
  justify-content:center;
}
.roi-line { font-size:0.88rem; color:var(--text-2); }
.roi-line strong { color:var(--text); font-weight:800; }
.roi-line.big { font-size:1.05rem; }
.roi-line.big strong { color:var(--accent); font-size:1.6rem; letter-spacing:-0.03em; }
.roi-payback {
  margin-top:12px; padding-top:14px;
  border-top:1px solid rgba(245,158,11,0.2);
  font-size:0.92rem; color:var(--text); font-weight:600;
}
.roi-payback strong { color:var(--accent); font-weight:900; }
.roi-disclaimer { text-align:center; font-size:0.72rem; color:var(--text-3); margin-top:18px; }
@media (max-width:768px) {
  .roi-calc { grid-template-columns:1fr; padding:24px; gap:24px; }
}

/* ── FOUNDER SECTION ────────────────────────────────── */
.founder-section { background:transparent; }
.founder-card {
  display:flex; align-items:center; gap:40px;
  max-width:920px; margin:0 auto;
  padding:40px;
  border-radius:var(--r-xl);
}
.founder-photo {
  width:140px; height:140px; flex-shrink:0;
  border-radius:50%;
  background:linear-gradient(135deg,#F59E0B,#FBBF24);
  display:flex; align-items:center; justify-content:center;
  font-size:3.4rem; font-weight:900; color:#000;
  letter-spacing:-0.04em;
  box-shadow:0 12px 40px rgba(245,158,11,0.32);
  overflow:hidden;
}
.founder-photo img { width:100%; height:100%; object-fit:cover; }
.founder-body { flex:1; }
.founder-body .section-label { display:block; margin-bottom:8px; }
.founder-body h2 {
  font-size:clamp(1.6rem,2.6vw,2.1rem);
  font-weight:900; letter-spacing:-0.03em;
  margin-bottom:14px; line-height:1.15;
}
.founder-body p { font-size:0.98rem; color:var(--text-2); line-height:1.65; margin-bottom:20px; }
.founder-meta {
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.founder-phone {
  font-size:0.95rem; font-weight:800; color:var(--accent);
  letter-spacing:-0.01em;
}
.founder-phone:hover { text-decoration:underline; }
@media (max-width:768px) {
  .founder-card { flex-direction:column; text-align:center; gap:24px; padding:32px 24px; }
  .founder-photo { width:110px; height:110px; font-size:2.6rem; }
  .founder-meta { justify-content:center; }
}

/* ── PROOF STARS REMOVED (honesty pass) ─────────────── */
.proof-stars { display:none; }

/* ── PHONE LINK IN NAV ──────────────────────────────── */
.nav-phone {
  font-size:0.82rem; font-weight:700; color:var(--text);
  padding:6px 12px; border-radius:100px;
  background:rgba(255,255,255,0.04); border:1px solid var(--glass-border);
  transition:all 0.2s var(--ease);
  white-space:nowrap;
}
.nav-phone:hover { background:rgba(245,158,11,0.12); border-color:rgba(245,158,11,0.3); color:var(--accent); }
@media (max-width:1080px) { .nav-phone { display:none; } }

/* ── STICKY MOBILE CTA BAR ──────────────────────────── */
.mobile-cta {
  display:none;
  position:fixed; left:0; right:0; bottom:0;
  z-index:200;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(6,6,8,0.92);
  backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur);
  border-top:1px solid var(--glass-border);
  gap:8px;
}
.mobile-cta a {
  display:inline-flex; align-items:center; justify-content:center;
  gap:6px; padding:13px 14px;
  border-radius:12px; font-weight:800; font-size:0.92rem;
  transition:all 0.2s var(--ease);
}
.mobile-cta-call {
  background:rgba(255,255,255,0.08);
  border:1px solid var(--glass-border);
  color:var(--text); flex-shrink:0; min-width:78px;
}
.mobile-cta-book {
  flex:1;
  background:linear-gradient(135deg,#F59E0B,#FBBF24);
  color:#000;
  box-shadow:0 8px 24px rgba(245,158,11,0.3);
}
@media (max-width:768px) {
  .mobile-cta { display:flex; }
  body { padding-bottom:70px; }
}

/* ── GUARANTEE BADGE ────────────────────────────────── */
.guarantee {
  display:flex; align-items:center; gap:14px;
  max-width:760px; margin:32px auto 0;
  background:linear-gradient(135deg, rgba(74,222,128,0.08), rgba(74,222,128,0.02));
  border:1px solid rgba(74,222,128,0.22);
  border-radius:var(--r-lg);
  padding:16px 22px;
  color:var(--text);
}
.guarantee svg { color:var(--green); flex-shrink:0; }
.guarantee span { font-size:0.88rem; line-height:1.55; color:var(--text-2); }
.guarantee strong { color:var(--text); }
@media (max-width:768px) { .guarantee { flex-direction:column; text-align:center; padding:18px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .reveal, .reveal-scale, .reveal-left, .reveal-right { opacity:1 !important; transform:none !important; }
}

/* ═══════════════════════════════════════════════════════
   CREDIBILITY / SOURCING ADDITIONS (2026 overhaul)
═══════════════════════════════════════════════════════ */

/* Source attribution under stats */
.stat-source {
  display:block;
  font-size:0.62rem;
  color:var(--text-3);
  margin-top:8px;
  letter-spacing:0.02em;
  font-weight:500;
}
.stat-source::before { content:"Source: "; opacity:0.6; }

/* Inline source label inside bento cards */
.inline-source {
  display:block;
  font-size:0.66rem;
  color:var(--text-3);
  margin-top:10px;
  font-weight:500;
}

/* Proof / scenario disclaimer banner */
.proof-disclaimer {
  max-width:760px;
  margin:8px auto 0;
  text-align:center;
  font-size:0.74rem;
  line-height:1.55;
  color:var(--text-3);
  padding:10px 18px;
  border:1px dashed var(--glass-border);
  border-radius:var(--r);
  background:var(--surface);
}

/* Scenario cards (replacing fake testimonials) */
.proof-scenario-lead {
  font-size:0.7rem; font-weight:700; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--text-3); margin-bottom:6px; display:block;
}
.proof-scenario {
  font-size:0.92rem; color:var(--text); line-height:1.6;
  margin-bottom:14px; font-style:normal;
}
.proof-stat-chip {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.72rem; font-weight:700; color:var(--accent);
  background:var(--accent-dim); border:1px solid rgba(245,158,11,0.22);
  padding:5px 10px; border-radius:999px; margin-bottom:10px;
}
.proof-stat-chip .src { color:var(--text-3); font-weight:500; }

/* "Sample" label on product mockups */
.mockup-label {
  position:absolute; top:10px; left:10px; z-index:5;
  font-size:0.64rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--accent); background:var(--accent-dim);
  border:1px solid rgba(245,158,11,0.34); border-radius:999px;
  padding:4px 11px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  box-shadow:0 0 18px -4px rgba(245,158,11,0.35);
  pointer-events:none;
}
.algo-visual { position:relative; isolation:isolate; }

/* ── SAMPLE DASHBOARD: caption above (no longer overlaps the title) ── */
.mockup-label {
  position:relative; display:inline-block; margin:0 0 12px 2px; z-index:2;
}
.mockup-caption {
  position:relative; z-index:2; margin-bottom:14px;
  display:flex; flex-direction:column; align-items:flex-start; gap:8px;
}
.mockup-caption .mockup-label { margin:0 0 0 2px; }
.mockup-demo-link {
  display:block; margin-left:2px; max-width:430px; line-height:1.45;
  font-size:0.85rem; font-weight:600; color:var(--text-2); text-decoration:none;
  transition:color .2s var(--ease);
}
.mockup-demo-link span { color:var(--accent); font-weight:800; white-space:nowrap; }
.mockup-demo-link:hover { color:var(--text); }
.mockup-demo-link:hover span { text-decoration:underline; }

/* ── DASHBOARD "BOOT-UP" LOAD-IN (scroll-triggered via .dash.loaded) ── */
.dash > * { opacity:0; transform:translateY(12px); position:relative; z-index:1; }
.dash.loaded > * { opacity:1; transform:none; transition:opacity .5s var(--ease), transform .5s var(--ease); }
.dash.loaded > *:nth-child(1){ transition-delay:.04s; }
.dash.loaded > *:nth-child(2){ transition-delay:.14s; }
.dash.loaded > *:nth-child(3){ transition-delay:.26s; }
.dash.loaded > *:nth-child(4){ transition-delay:.40s; }
.dash.loaded > *:nth-child(5){ transition-delay:.54s; }

/* Top-seller bars grow left→right (override the old auto animation) */
.dash-bar-fill { animation:none; transform:scaleX(0); transform-origin:left; }
.dash.loaded .dash-bar-fill { transform:scaleX(1); transition:transform .9s var(--ease); }
.dash.loaded .dash-bar-row:nth-of-type(1) .dash-bar-fill{ transition-delay:.42s; }
.dash.loaded .dash-bar-row:nth-of-type(2) .dash-bar-fill{ transition-delay:.55s; }
.dash.loaded .dash-bar-row:nth-of-type(3) .dash-bar-fill{ transition-delay:.68s; }
.dash.loaded .dash-bar-row:nth-of-type(4) .dash-bar-fill{ transition-delay:.81s; }

/* Peak-hours heatmap: amber(quiet) → red(busy) intensity from --i, pops in by column */
.dash-heat-cell {
  background:hsla(calc(35deg - var(--i,0)*26deg), 88%, 53%, calc(0.16 + var(--i,0)*0.84));
  transform:scale(.4); opacity:0;
}
.dash.loaded .dash-heat-cell { transform:scale(1); opacity:1; transition:transform .45s var(--ease), opacity .45s var(--ease); }
.dash.loaded .dash-heat-cell:nth-child(8n+1){ transition-delay:.50s; }
.dash.loaded .dash-heat-cell:nth-child(8n+2){ transition-delay:.53s; }
.dash.loaded .dash-heat-cell:nth-child(8n+3){ transition-delay:.56s; }
.dash.loaded .dash-heat-cell:nth-child(8n+4){ transition-delay:.59s; }
.dash.loaded .dash-heat-cell:nth-child(8n+5){ transition-delay:.62s; }
.dash.loaded .dash-heat-cell:nth-child(8n+6){ transition-delay:.65s; }
.dash.loaded .dash-heat-cell:nth-child(8n+7){ transition-delay:.68s; }
.dash.loaded .dash-heat-cell:nth-child(8n+8){ transition-delay:.71s; }

/* Avg-order trend: green "growth" line that draws itself */
.dash-spark polyline { stroke:var(--green); stroke-dasharray:620; stroke-dashoffset:620; }
.dash.loaded .dash-spark polyline { stroke-dashoffset:0; transition:stroke-dashoffset 1.5s ease .55s; }
.dash-spark path { fill:rgba(74,222,128,0.13); opacity:0; }
.dash.loaded .dash-spark path { opacity:1; transition:opacity .8s ease .65s; }
.dash-spark circle { fill:var(--green); opacity:0; }
.dash.loaded .dash-spark circle { opacity:1; transition:opacity .4s ease 1.9s; animation:pulse-dot 1.8s ease-in-out 2.3s infinite; }

@media (prefers-reduced-motion: reduce) {
  .dash > *, .dash-bar-fill, .dash-heat-cell, .dash-spark polyline, .dash-spark path, .dash-spark circle { opacity:1 !important; transform:none !important; stroke-dashoffset:0 !important; }
}

/* Sources / methodology disclosure */
.sources-disclosure {
  max-width:var(--max); margin:48px auto 0; padding:0 24px;
}
.sources-disclosure details {
  border:1px solid var(--glass-border); border-radius:var(--r);
  background:var(--surface); padding:0 18px;
}
.sources-disclosure summary {
  cursor:pointer; font-size:0.8rem; font-weight:600; color:var(--text-2);
  padding:14px 0; list-style:none; user-select:none;
}
.sources-disclosure summary::-webkit-details-marker { display:none; }
.sources-disclosure summary::before { content:"\203A  "; color:var(--accent); }
.sources-disclosure details[open] summary::before { content:"\2304  "; }
.sources-disclosure ul { margin:0 0 16px; padding:0 0 0 4px; list-style:none; }
.sources-disclosure li {
  font-size:0.74rem; color:var(--text-3); line-height:1.6; padding:4px 0;
  border-top:1px solid var(--glass-border);
}
.sources-disclosure li:first-child { border-top:none; }
.sources-disclosure a { color:var(--text-2); text-decoration:underline; text-underline-offset:2px; }
.sources-disclosure a:hover { color:var(--accent); }

/* Form inline validation */
.form-input[aria-invalid="true"] { border-color:#ef4444; }
.form-error {
  display:none; font-size:0.7rem; color:#f87171; margin-top:5px;
}
.form-group.invalid .form-error { display:block; }
.form-trust {
  font-size:0.72rem; color:var(--text-3); text-align:center; margin-top:8px;
}
.form-trust strong { color:var(--text-2); }
.hp-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* Global keyboard focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, .faq-q:focus-visible,
.nav-dropdown-toggle:focus-visible {
  outline:2px solid var(--accent); outline-offset:2px; border-radius:6px;
}

/* Exit-intent modal */
.exit-overlay {
  position:fixed; inset:0; z-index:9600; background:rgba(0,0,0,0.7);
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  display:none; align-items:center; justify-content:center; padding:20px;
  opacity:0; transition:opacity 0.3s var(--ease);
}
.exit-overlay.show { display:flex; opacity:1; }
.exit-card {
  position:relative; max-width:460px; width:100%;
  background:linear-gradient(180deg,#15151b,#0b0b0e);
  border:1px solid var(--glass-border); border-radius:var(--r-xl);
  padding:40px 32px; text-align:center;
  box-shadow:0 40px 100px rgba(0,0,0,0.7);
  transform:translateY(16px) scale(0.98); transition:transform 0.35s var(--ease);
}
.exit-overlay.show .exit-card { transform:none; }
.exit-card .section-label { display:block; margin-bottom:10px; }
.exit-card h3 { font-size:1.6rem; font-weight:900; letter-spacing:-0.02em; line-height:1.15; }
.exit-card p { color:var(--text-2); font-size:0.92rem; margin:10px 0 20px; }
.exit-close {
  position:absolute; top:14px; right:16px; background:none; border:none; cursor:pointer;
  color:var(--text-3); font-size:1.4rem; line-height:1; padding:4px; transition:color 0.2s;
}
.exit-close:hover { color:var(--text); }
.exit-form { display:flex; gap:8px; flex-wrap:wrap; }
.exit-form input { flex:1; min-width:200px; background:rgba(255,255,255,0.05); border:1px solid var(--glass-border); border-radius:10px; padding:13px 15px; color:var(--text); font-family:var(--font); font-size:0.92rem; }
.exit-form input:focus { outline:none; border-color:rgba(245,158,11,0.5); }
.exit-note { font-size:0.72rem; color:var(--text-3); margin-top:14px; }
.exit-note button { background:none; border:none; color:var(--text-3); text-decoration:underline; cursor:pointer; font-family:var(--font); font-size:0.72rem; }

/* Founding Partner section */
.founding-section { background:transparent; }
.founding-card {
  position:relative; overflow:hidden;
  border:1px solid rgba(245,158,11,0.3); border-radius:var(--r-xl);
  background:linear-gradient(135deg, rgba(245,158,11,0.10), rgba(245,158,11,0.02));
  padding:48px 44px;
}
.founding-card .card-orb { position:absolute; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(245,158,11,0.18),transparent 70%); filter:blur(40px); right:-80px; top:-80px; pointer-events:none; }
.founding-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:48px; align-items:center; position:relative; z-index:1; }
.founding-badge { display:inline-flex; align-items:center; gap:8px; font-size:0.72rem; font-weight:800; text-transform:uppercase; letter-spacing:0.1em; color:var(--accent); background:var(--accent-dim); border:1px solid rgba(245,158,11,0.3); padding:6px 13px; border-radius:999px; margin-bottom:18px; }
.founding-card h2 { font-size:clamp(1.7rem,3vw,2.4rem); font-weight:900; letter-spacing:-0.03em; line-height:1.1; margin-bottom:14px; }
.founding-card > .founding-grid p { color:var(--text-2); font-size:0.98rem; line-height:1.65; }
.founding-list { list-style:none; margin:18px 0 0; display:flex; flex-direction:column; gap:10px; }
.founding-list li { display:flex; align-items:flex-start; gap:10px; font-size:0.92rem; color:var(--text); }
.founding-list li svg { color:var(--accent); flex-shrink:0; margin-top:2px; }
.founding-cta { background:var(--surface); border:1px solid var(--glass-border); border-radius:var(--r-lg); padding:28px 24px; text-align:center; }
.founding-spots { font-size:3rem; font-weight:900; color:var(--accent); letter-spacing:-0.04em; line-height:1; }
.founding-spots-lbl { font-size:0.85rem; color:var(--text-2); margin:4px 0 18px; display:block; }
.founding-cta .btn { width:100%; justify-content:center; }
.founding-cta-sub { font-size:0.72rem; color:var(--text-3); margin-top:12px; }
@media (max-width:860px){ .founding-grid { grid-template-columns:1fr; gap:32px; } .founding-card { padding:34px 24px; } }

/* Onboarding timeline */
.timeline-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:44px; counter-reset:step; }
.timeline-step { position:relative; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--r-lg); padding:26px 22px; }
.timeline-step::before { counter-increment:step; content:counter(step); position:absolute; top:-14px; left:22px; width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#1a1205; font-weight:900; font-size:0.9rem; display:flex; align-items:center; justify-content:center; }
.timeline-day { font-size:0.7rem; font-weight:800; text-transform:uppercase; letter-spacing:0.1em; color:var(--accent); margin:8px 0 6px; }
.timeline-step h4 { font-size:1rem; font-weight:800; margin-bottom:6px; }
.timeline-step p { font-size:0.84rem; color:var(--text-2); line-height:1.55; }
@media (max-width:860px){ .timeline-grid { grid-template-columns:1fr 1fr; gap:24px 16px; } }
@media (max-width:480px){ .timeline-grid { grid-template-columns:1fr; } }

/* ── FIRMER "LIQUID GLASS" CARDS (squarer, less bubbly — premium/iOS feel) ──
   Scoped override placed late so it wins by source order. Intentionally does
   NOT touch: pricing cards, the scarcity glow bar, the exit-intent modal,
   or any gradients — those stay exactly as they are. */
.bento-card, .howtap-card, .proof-card, .founding-card, .timeline-step,
.stat-card, .stats-grid, .faq-item, .pain-card, .pain-stat-row, .founder-card,
.leadmagnet-card, .minui, .step-card,
.proof-video-wrap, .step-video-wrap, .roi-calc, .sources-disclosure details,
.bento-card img, .founder-body img {
  border-radius: 14px;
}
.form-input { border-radius: 12px; }
/* squircle (rounded-square) icon badges instead of full circles — iOS look */
.bento-icon, .howtap-card .ic { border-radius: 13px; }

/* How-the-tap-works explainer */
.howtap-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:40px; }
.howtap-card { background:var(--glass); backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur); border:1px solid var(--glass-border); border-radius:var(--r-lg); padding:26px 22px; transition:all .35s var(--ease); }
.howtap-card:hover { border-color:rgba(245,158,11,0.25); transform:translateY(-3px); }
.howtap-card .ic { margin-bottom:14px; display:flex; width:46px; height:46px; align-items:center; justify-content:center; border-radius:12px; background:var(--accent-dim); border:1px solid rgba(245,158,11,0.22); }
.howtap-card .ic svg { width:24px; height:24px; color:var(--accent); }
.howtap-card h4 { font-size:1rem; font-weight:800; margin-bottom:8px; letter-spacing:-0.01em; }
.howtap-card p { font-size:0.85rem; color:var(--text-2); line-height:1.6; }
.howtap-card strong { color:var(--text); }
@media (max-width:880px){ .howtap-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .howtap-grid { grid-template-columns:1fr; } }

/* Lead-magnet capture */
.leadmagnet { max-width:680px; margin:0 auto; text-align:center; }
.leadmagnet-card { background:var(--glass); backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur); border:1px solid var(--glass-border); border-radius:var(--r-xl); padding:36px 28px; }
.leadmagnet-card h3 { font-size:1.3rem; font-weight:800; letter-spacing:-0.02em; }
.leadmagnet-card p { color:var(--text-2); font-size:0.9rem; margin:8px 0 18px; }
.leadmagnet-form { display:flex; gap:8px; max-width:440px; margin:0 auto; flex-wrap:wrap; }
.leadmagnet-form input { flex:1; min-width:200px; background:rgba(255,255,255,0.04); border:1px solid var(--glass-border); border-radius:10px; padding:13px 15px; color:var(--text); font-family:var(--font); font-size:0.9rem; }
.leadmagnet-form input:focus { outline:none; border-color:rgba(245,158,11,0.5); }
.leadmagnet-note { font-size:0.72rem; color:var(--text-3); margin-top:12px; }
.leadmagnet-ok { color:var(--green); font-weight:700; font-size:0.95rem; }

/* Legal pages */
.legal-wrap { max-width:820px; margin:0 auto; padding:120px 24px 80px; position:relative; z-index:1; }
.legal-wrap h1 { font-size:clamp(1.8rem,4vw,2.6rem); font-weight:900; letter-spacing:-0.03em; margin-bottom:8px; }
.legal-updated { color:var(--text-3); font-size:0.85rem; margin-bottom:32px; }
.legal-wrap h2 { font-size:1.15rem; font-weight:800; margin:32px 0 10px; }
.legal-wrap h3 { font-size:0.98rem; font-weight:700; margin:20px 0 6px; color:var(--text); }
.legal-wrap p, .legal-wrap li { color:var(--text-2); font-size:0.92rem; line-height:1.7; }
.legal-wrap ul { margin:8px 0 8px 22px; }
.legal-wrap li { margin-bottom:6px; }
.legal-wrap a { color:var(--accent); text-decoration:underline; text-underline-offset:2px; }
.legal-wrap strong { color:var(--text); }
.legal-note { background:var(--surface); border:1px solid var(--glass-border); border-radius:var(--r); padding:14px 18px; font-size:0.85rem; color:var(--text-3); margin:20px 0; }
.legal-back { display:inline-flex; align-items:center; gap:6px; font-size:0.85rem; color:var(--text-2); margin-bottom:24px; }
.legal-back:hover { color:var(--accent); }

/* Cookie consent banner */
.consent-banner {
  position:fixed; left:16px; right:16px; bottom:16px; z-index:9500; max-width:680px; margin:0 auto;
  background:rgba(12,12,16,0.96); backdrop-filter:blur(20px); border:1px solid var(--glass-border);
  border-radius:var(--r-lg); box-shadow:0 24px 60px rgba(0,0,0,0.6); padding:18px 22px;
  display:none; align-items:center; gap:16px; flex-wrap:wrap;
}
.consent-banner.show { display:flex; }
.consent-banner p { font-size:0.82rem; color:var(--text-2); line-height:1.55; flex:1; min-width:240px; margin:0; }
.consent-banner a { color:var(--accent); text-decoration:underline; }
.consent-actions { display:flex; gap:8px; flex-shrink:0; }
.consent-actions button {
  font-family:var(--font); font-weight:700; font-size:0.82rem; border-radius:9px; padding:9px 16px; cursor:pointer; border:1px solid var(--glass-border); white-space:nowrap;
}
.consent-accept { background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#1a1205; border:none; }
.consent-decline { background:transparent; color:var(--text-2); }
@media (max-width:560px){ .consent-banner{ bottom:84px; } .consent-actions{ width:100%; } .consent-actions button{ flex:1; } }

/* Founder image graceful fallback (image overlays monogram; onerror removes it) */
.founder-photo { position:relative; }
.founder-photo img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; border-radius:inherit;
}

/* ═══════════════════════════════════════════════════════
   MOTION & MICRO-INTERACTION LAYER (premium polish pass)
   Pure CSS/JS, transform/opacity only, reduced-motion safe.
═══════════════════════════════════════════════════════ */

/* Scroll progress bar */
.scroll-progress {
  position:fixed; top:0; left:0; height:3px; width:0; z-index:300;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow:0 0 12px var(--accent-glow); pointer-events:none;
  transition:width .08s linear;
}
/* Smart hide/show nav */
.nav { will-change:transform; }
.nav.nav-hidden { transform:translateY(-100%); }

/* Heading reveal: eyebrow → title de-blurs → subtext (staggered) */
.section-header.reveal { opacity:1; transform:none; }
.section-header.reveal .section-label,
.section-header.reveal .section-title,
.section-header.reveal .section-sub {
  opacity:0; transform:translateY(16px);
  transition:opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease);
}
.section-header.reveal .section-title { filter:blur(9px); }
.section-header.reveal.visible .section-label { opacity:1; transform:none; }
.section-header.reveal.visible .section-title { opacity:1; transform:none; filter:blur(0); transition-delay:.1s; }
.section-header.reveal.visible .section-sub { opacity:1; transform:none; transition-delay:.22s; }

/* Hero load-in (first paint) */
@keyframes rise-in { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.hero-content > * { animation:rise-in .7s var(--ease) both; }
.hero-content > .hero-badge      { animation-delay:.05s; }
.hero-content > h1               { animation-delay:.16s; }
.hero-content > .hero-sub        { animation-delay:.30s; }
.hero-content > .hero-ctas       { animation-delay:.42s; }
.hero-content > .hero-trust      { animation-delay:.52s; }
.hero-content > .hero-countdown  { animation-delay:.62s; }

/* Gentle continuous shimmer on the hero gradient word */
.gradient-text { background-size:200% auto; animation:shimmer-btn 6s linear infinite; }

/* Unified premium card hover (cards that lacked it) */
.howtap-card, .timeline-step, .pain-card, .founding-card, .faq-item, .leadmagnet-card {
  transition:transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .3s;
}
.howtap-card:hover, .timeline-step:hover, .pain-card:hover, .leadmagnet-card:hover {
  transform:translateY(-5px); border-color:rgba(245,158,11,0.28);
  box-shadow:0 20px 44px rgba(0,0,0,0.42);
}
.founding-card:hover { border-color:rgba(245,158,11,0.45); box-shadow:0 24px 60px rgba(245,158,11,0.1); }
.faq-item:hover { border-color:rgba(245,158,11,0.2); background:var(--glass-hover); }
.howtap-card .ic { transition:transform .35s var(--ease); }
.howtap-card:hover .ic { transform:translateY(-3px) scale(1.06); }
.timeline-step:hover::before { transform:scale(1.12); transition:transform .3s var(--ease); }

/* Primary button sheen sweep on hover */
.btn-primary::after {
  content:''; position:absolute; top:0; left:0; width:100%; height:100%;
  background:linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.42) 50%, transparent 65%);
  transform:translateX(-130%); transition:transform .65s var(--ease); pointer-events:none;
}
.btn-primary:hover::after { transform:translateX(130%); }

/* Arrow / ghost button polish */
.btn-ghost { transition:all .25s var(--ease); }
.btn-ghost:hover { transform:translateY(-2px); }

/* Animated underlines on nav + footer links */
.nav-links > li > a, .footer-links a { position:relative; }
.nav-links > li > a::after, .footer-links a::after {
  content:''; position:absolute; left:0; bottom:-2px; height:1.5px; width:100%;
  background:var(--accent); transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease);
}
.nav-links > li > a:hover::after, .footer-links a:hover::after { transform:scaleX(1); }
.footer-links a { transition:color .2s; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation:none !important; opacity:1 !important; transform:none !important; }
  .section-header.reveal .section-label,
  .section-header.reveal .section-title,
  .section-header.reveal .section-sub { opacity:1 !important; transform:none !important; filter:none !important; }
  .gradient-text { animation:none !important; }
  .scroll-progress { display:none; }
  .nav.nav-hidden { transform:none !important; }
}

/* ── READABILITY TUNING — larger, less-thin body copy (overrides earlier sizes) ── */
.bento-card p { font-size:0.92rem; }
.pain-card p { font-size:0.92rem; }
.timeline-step p { font-size:0.9rem; }
.step-card p { font-size:0.95rem; }
.faq-a-inner { font-size:0.95rem; }
.leadmagnet-card p { font-size:0.95rem; }
.roi-line { font-size:0.92rem; }
.proof-scenario { font-size:0.95rem; }
.mockup-demo-link { font-size:0.9rem; }

/* CTA contact line (direct email/phone in the #contact section) */
.cta-contact-line { font-size:0.95rem; color:var(--text-2); margin:-6px 0 22px; }
.cta-contact-line a { color:var(--accent); font-weight:700; }
.cta-contact-line a:hover { text-decoration:underline; }

/* ── HERO SCROLL CUE (soft "learn more" → at-a-glance) ── */
.hero-scroll {
  position:absolute; left:50%; bottom:22px; transform:translateX(-50%);
  z-index:4; display:flex; flex-direction:column; align-items:center; gap:5px;
  color:var(--text-2); font-size:0.66rem; font-weight:800;
  text-transform:uppercase; letter-spacing:0.16em;
  transition:color .25s var(--ease); cursor:pointer;
}
.hero-scroll:hover { color:var(--accent); }
.hero-scroll-chevron { display:flex; animation:heroScrollBounce 1.8s var(--ease) infinite; }
.hero-scroll-chevron svg { width:22px; height:22px; }
@keyframes heroScrollBounce { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(6px); } }
@media (max-width:900px){ .hero-scroll { display:none; } }
@media (prefers-reduced-motion: reduce){ .hero-scroll-chevron { animation:none; } }

/* Anchor scroll offset so in-page jumps (e.g. Learn more → At a glance) clear the fixed nav */
section[id], [id].section-pad { scroll-margin-top:90px; }
/* More breathing room around the SAMPLE DASHBOARD pill + caption */
.mockup-caption { gap:13px; margin-bottom:22px; }
.mockup-caption .mockup-label { margin:0 0 3px 2px; }

#at-a-glance { position:relative; }

/* At-a-glance fills the screen so "Learn more" lands on it cleanly (How It Works stays below the fold) */
@media (min-width:900px){
  #at-a-glance { min-height:90vh; display:flex; align-items:center; }
  #at-a-glance > .container { width:100%; }
}
/* Two balanced CTAs in the At-a-glance band */
.skim-ctas { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:4px; }

/* Make the hero "Learn more" cue an obvious amber button (was too small/dim at the bottom edge) */
.hero-scroll { bottom:30px; gap:8px; color:var(--text); }
.hero-scroll-label { color:var(--text); font-size:0.68rem; }
.hero-scroll-chevron {
  width:42px; height:42px; border-radius:50%;
  align-items:center; justify-content:center;
  border:1.5px solid rgba(245,158,11,0.55);
  background:rgba(245,158,11,0.12);
  color:var(--accent);
  box-shadow:0 0 22px -6px rgba(245,158,11,0.5);
}
.hero-scroll-chevron svg { width:22px; height:22px; }
.hero-scroll:hover .hero-scroll-chevron { background:rgba(245,158,11,0.22); border-color:var(--accent); }

/* Fill exactly the viewport minus the nav so How It Works sits just past the fold on landing */
@media (min-width:900px){ #at-a-glance { min-height:calc(100vh - 88px); } }

/* ── AT-A-GLANCE: liquid-glass cards (Apple-style) + proper source citation ── */
.skim-item {
  border-radius:18px;
  padding:26px 24px 28px;
  box-shadow:
    0 10px 34px rgba(0,0,0,0.4),
    inset 0 1px 0 var(--glass-shine),
    inset 0 -1px 0 rgba(0,0,0,0.18);
  overflow:hidden;
}
.skim-item > * { position:relative; z-index:1; }
/* glossy top-edge highlight */
.skim-item::after {
  content:''; position:absolute; top:0; left:0; right:0; height:1px; z-index:2;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
}
/* soft amber orb that warms on hover */
.skim-item::before {
  content:''; position:absolute; z-index:0; width:170px; height:170px; border-radius:50%;
  right:-34px; top:-40px; pointer-events:none;
  background:radial-gradient(circle, rgba(245,158,11,0.20) 0%, transparent 70%);
  filter:blur(34px); opacity:0; transition:opacity .45s var(--ease);
}
.skim-item:hover {
  transform:translateY(-6px);
  background:var(--glass-hover);
  border-color:rgba(245,158,11,0.30);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(245,158,11,0.12),
    inset 0 1px 0 var(--glass-shine);
}
.skim-item:hover::before { opacity:1; }
/* slightly richer icon badge to match */
.skim-icon {
  background:linear-gradient(140deg, rgba(245,158,11,0.22), rgba(245,158,11,0.05));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Proper source citation under the stat */
.skim-sources { font-size:0.74rem; color:var(--text-3); margin:8px auto 22px; max-width:680px; line-height:1.6; }
.skim-sources a { color:var(--accent); font-weight:700; white-space:nowrap; }
.skim-sources a:hover { text-decoration:underline; }
.skim-stat strong { color:var(--text); font-weight:800; }

/* ── MOBILE MENU: collapsible "Who's it for" dropdown ── */
.mobile-dropdown { display:flex; flex-direction:column; }
.mobile-dropdown-toggle {
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  width:100%; text-align:left; cursor:pointer;
  background:none; border:none; font-family:var(--font);
  color:var(--text-2); font-size:1rem; font-weight:500;
  padding:10px 14px; border-radius:12px; transition:all .2s;
}
.mobile-dropdown-toggle:hover { color:var(--text); background:var(--glass); }
.mobile-dropdown-toggle .m-caret { color:var(--accent); font-size:0.8rem; transition:transform .25s var(--ease); }
.mobile-dropdown.open .mobile-dropdown-toggle .m-caret { transform:rotate(180deg); }
.mobile-dropdown-menu {
  display:flex; flex-direction:column; gap:4px;
  max-height:0; overflow:hidden; transition:max-height .3s var(--ease);
}
.mobile-dropdown.open .mobile-dropdown-menu { max-height:520px; }
.mobile-dropdown-menu a { padding-left:28px; font-size:0.95rem; }
