/* ========================================
   buddy. — Premium Smart Security
   Enhanced Design System v2
======================================== */

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

:root {
  --bg-primary: #f2f2f7;
  --bg-secondary: #e8e8ed;
  --bg-card: rgba(255,255,255,0.7);
  --bg-card-hover: rgba(255,255,255,0.9);
  --border: rgba(0,0,0,0.08);
  --border-glow: rgba(59,130,246,0.35);

  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #999;

  --accent: #3B82F6;
  --accent-bright: #2563EB;
  --accent-glow: rgba(59,130,246,0.12);

  --gradient-main: linear-gradient(135deg, #3B82F6 0%, #06B6D4 50%, #8B5CF6 100%);
  --gradient-card-img: linear-gradient(to bottom, transparent 50%, #e8e8ed 100%);

  --img-bg: #e0e0e5;
  --img-bg-dark: #d0d0d5;

  --nav-h: 72px;
  --section-pad: clamp(72px, 9vw, 160px);
  --container-max: 1200px;
  --font-main: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); }
.section { padding: var(--section-pad) 0; }

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-main); font-weight: 600; font-size: 0.9rem;
  padding: 12px 24px; border-radius: 10px; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.25s var(--ease-fast);
  letter-spacing: 0.01em; white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main); color: white;
  box-shadow: 0 4px 24px rgba(59,130,246,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(59,130,246,0.5); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-bright); background: var(--accent-glow); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid rgba(0,0,0,0.2); }
.btn-outline:hover { border-color: rgba(0,0,0,0.5); background: rgba(0,0,0,0.04); transform: translateY(-2px); }
.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn-xl { padding: 18px 40px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; border-radius: 8px; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(242,242,247,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-color: var(--border);
}
/* Light hero nav override */
.nav-light:not(.scrolled) .nav-logo,
.nav-light:not(.scrolled) .nav-links a,
.nav-light:not(.scrolled) .nav-hamburger { color: #1a1a1a; }
.nav-light:not(.scrolled) .nav-links a:hover { color: #3b82f6; }
.nav-light:not(.scrolled) .btn-backer { color: #1a1a1a; border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.05); }
.nav-light:not(.scrolled) .cart-btn { color: #1a1a1a; }
.nav-inner {
  max-width: 100%; padding: 0 clamp(20px, 4vw, 60px);
  height: 100%; display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary); text-decoration: none; letter-spacing: -0.03em;
}
.nav-logo .dot { color: #1a1a1a; }
.nav-links { display: flex; list-style: none; gap: 28px; flex: 1; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { margin-left: auto; }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.25s; }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 20px 24px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile > a:not(.btn) {
  color: #1a1a1a; text-decoration: none;
  font-size: 1.15rem; font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}
.nav-mobile > a:not(.btn):last-of-type { border-bottom: none; }
.nav-mobile > a:not(.btn):hover { color: #3B82F6; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
  padding: calc(var(--nav-h) + 20px) 24px 60px;
}

/* ── LIGHT HERO ─────────────────────────────── */
.hero.hero-light {
  background: #f2f2f7 !important;
  min-height: 100vh;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.hero-light-inner {
  text-align: center;
  padding: calc(var(--nav-h) + 20px) 24px 40px;
  width: 100%;
}
.hero-light-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1;
}
.hero-light-dot { color: #1a1a1a; }
.hero-light-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  isolation: isolate;
}
.hero-light-img {
  height: clamp(360px, 58vh, 660px);
  width: auto;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-light-glow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 8%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.12) 40%, transparent 75%);
  filter: blur(18px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}


.hero-light-sub {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: #6e6e73;
  margin: 24px 0 0 0;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .hero-light-inner { padding: calc(var(--nav-h) + 12px) 20px 24px; }
  .hero-light-title { font-size: 2.6rem; margin-bottom: 16px; }
  .hero-light-img { height: clamp(320px, 50vh, 480px); }
  .hero-light-sub { font-size: 1.15rem; margin-top: 18px; }
}
/* Short-height laptops (≤820px tall) — keep hero proportional, avoid clipping */
@media (min-width: 601px) and (max-height: 820px) {
  .hero-light-title { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 12px; }
  .hero-light-img { height: 56vh; max-height: 500px; min-height: 260px; }
  .hero-light-sub { font-size: clamp(1rem, 1.6vw, 1.25rem); margin-top: 14px; }
  .hero-light-inner { padding: calc(var(--nav-h) + 4px) 24px 24px; }
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59,130,246,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%); top: -150px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%); top: 10%; right: -80px; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,182,212,0.09) 0%, transparent 70%); bottom: 0; left: 40%; }

.hero-inner {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: var(--container-max);
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px; padding: 6px 16px; font-size: 0.8rem; font-weight: 500;
  color: var(--accent-bright); margin-bottom: 24px; letter-spacing: 0.02em;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(1.3); } }

.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 32px; max-width: 480px;
}
@media (max-width: 900px) { .hero-sub { margin: 0 auto 32px; } }
.hero-sub strong { color: var(--text-primary); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
@media (max-width: 900px) { .hero-actions { justify-content: center; } }

.hero-stats {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; backdrop-filter: blur(10px); width: fit-content;
}
@media (max-width: 900px) { .hero-stats { margin: 0 auto; } }
.stat { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
@media (max-width: 900px) { .stat { align-items: center; } }
.stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.03em; }
.stat-plus { font-size: 0.9rem; color: var(--accent-bright); }
.stat-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero product image */
.hero-image { position: relative; }

/* Phone mockup hero */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone-img {
  width: 100%; max-width: 580px; height: auto; display: block;
  animation: float-product 7s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 60px rgba(59,130,246,0.18)) drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
.hero-phone-glow {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 60px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.4) 0%, transparent 70%);
  filter: blur(20px); border-radius: 50%; pointer-events: none; z-index: 0;
}

/* Animated alert notification */
.hero-alert {
  position: absolute;
  bottom: 14%;
  left: -10px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(8,12,28,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 18px;
  padding: 12px 16px;
  min-width: 230px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 10;
  animation: alert-slide-in 0.7s cubic-bezier(0.34,1.56,0.64,1) 1.8s both,
             alert-float 4s ease-in-out 2.8s infinite;
}
.hero-alert-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(239,68,68,0.3), rgba(239,68,68,0.1));
  border: 1px solid rgba(239,68,68,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #f87171; flex-shrink: 0;
  box-shadow: 0 0 12px rgba(239,68,68,0.2);
}
.hero-alert-icon svg { animation: alert-bell 2s ease-in-out 3s infinite; }
@keyframes alert-bell {
  0%,100%{ transform: rotate(0); }
  10%    { transform: rotate(-12deg); }
  20%    { transform: rotate(12deg); }
  30%    { transform: rotate(-8deg); }
  40%    { transform: rotate(8deg); }
  50%    { transform: rotate(0); }
}
.hero-alert-text {
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.hero-alert-title {
  font-size: 0.72rem; font-weight: 700; color: var(--text-primary); letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 6px;
}
.hero-alert-title::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 6px #ef4444;
  animation: pulse-red 1.5s ease-in-out 3s infinite;
}
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 4px #ef4444; opacity: 1; }
  50%      { box-shadow: 0 0 12px #ef4444; opacity: 0.7; }
}
.hero-alert-body {
  font-size: 0.69rem; color: var(--text-secondary); line-height: 1.4;
}
.hero-alert-time {
  font-size: 0.6rem; color: rgba(148,163,184,0.6); align-self: flex-start; white-space: nowrap; margin-top: 1px;
}
@keyframes alert-slide-in {
  from { opacity: 0; transform: translateX(-40px) scale(0.85); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes alert-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Old frame styles kept for compatibility */
.hero-img-frame { position: relative; background: transparent; padding: 20px; }
.hero-img-frame img {
  width: 100%; height: auto; display: block;
  animation: float-product 7s ease-in-out infinite;
  will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  position: relative; z-index: 1;
}
.hero-img-frame::before {
  content: ''; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 65%; height: 30px; background: rgba(0,0,0,0.4);
  filter: blur(22px); border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-img-glow {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 65%; height: 40px;
  background: rgba(59,130,246,0.3); filter: blur(22px); border-radius: 50%; pointer-events: none;
}

/* Floating tags */
.hero-floating-tag {
  position: absolute; background: rgba(7,12,28,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,0.25); border-radius: 100px;
  padding: 6px 14px; font-size: 0.72rem; font-weight: 600;
  color: var(--accent-bright); display: flex; align-items: center; gap: 6px;
  white-space: nowrap; animation: float-tag 4s ease-in-out infinite;
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); }
/* Top row */
.tag-1 { top: 2%;  left: 8%;   animation-delay: 0s; }    /* AI Doorbell — top left */
.tag-2 { top: 2%;  right: 8%;  animation-delay: 1.3s; }  /* Outdoor Camera — top right */

/* Middle row */
.tag-5 { top: 46%; left: -10px;  animation-delay: 1.9s; } /* Chime — mid left */
.tag-4 { top: 46%; right: -10px; animation-delay: 0.7s; } /* Indoor Camera — mid right */

/* Bottom row */
.tag-7 { bottom: 2%; left: 8%;   animation-delay: 2.0s; } /* Open/Close Sensor — bottom left */
.tag-6 { bottom: 2%; right: 8%;  animation-delay: 3.2s; } /* 12-in-1 Room Sensor — bottom right */
@keyframes float-tag {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 900px) { .hero-floating-tag { display: none; } }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; z-index: 1;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--text-muted), transparent); animation: scroll-drop 2s ease-in-out infinite; }
@keyframes scroll-drop { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* === MARQUEE === */
.marquee-strip {
  width: 100%; overflow: hidden;
  background: rgba(59,130,246,0.05);
  border-top: 1px solid rgba(59,130,246,0.12);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  padding: 14px 0;
}
.marquee-track { display: flex; align-items: center; gap: 20px; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track span { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; }
.marquee-track .sep { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { display: inline-block; font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-bright); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* === PRODUCTS === */
.products-section { background: var(--bg-secondary); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative; background: #ffffff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s var(--ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.product-card.featured { border-color: rgba(59,130,246,0.3); }
.product-card.featured:hover { border-color: rgba(59,130,246,0.5); }

.product-card-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 160px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.product-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--gradient-main); color: white;
  font-size: 0.68rem; font-weight: 700; padding: 4px 11px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Product image area */
.product-image-wrap {
  position: relative;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  line-height: 0;
}

/* Floating accent glow beneath the product */
.product-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 55%; height: 14px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.08) 0%, transparent 75%);
  filter: blur(6px);
  border-radius: 50%;
  transition: width 0.5s var(--ease), opacity 0.5s;
}
.product-card:hover .product-image-wrap::after {
  width: 70%;
  opacity: 0.9;
}

.product-img {
  width: 100%; height: auto; display: block;
  position: relative; z-index: 1;
  transition: transform 0.5s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.product-card:nth-child(even) .product-img { animation-delay: -2.5s; }
.product-card:nth-child(3n) .product-img { animation-delay: -1.2s; }

.product-card:hover .product-img {
  transform: scale(1.03);
}


@keyframes float-product {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

.product-img-overlay { display: none; }

/* Product info */
.product-info { padding: 8px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.product-desc { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }

/* Spec pills */
.product-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.pill {
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px; padding: 3px 10px; font-size: 0.72rem; font-weight: 600;
  color: #555; white-space: nowrap;
}

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.07);
}
.product-price {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  color: #1a1a1a; letter-spacing: -0.03em;
}

/* === BUNDLE === */
.bundle-card {
  position: relative; background: rgba(59,130,246,0.05);
  border: 1px solid rgba(59,130,246,0.25); border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr; align-items: center;
}
@media (max-width: 768px) { .bundle-card { grid-template-columns: 1fr; } }

.bundle-glow {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bundle-img-side {
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; min-height: 340px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
@media (max-width: 768px) { .bundle-img-side { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); min-height: 240px; padding: 32px; } }
.bundle-img-side img {
  width: 100%; max-width: 360px; height: auto;
  transition: transform 0.6s var(--ease);
  animation: float-product 6s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative; z-index: 1;
}
.bundle-img-side::before {
  content: '';
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 50%; height: 24px;
  background: rgba(0,0,0,0.4);
  filter: blur(18px);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
  transition: width 0.5s;
}
.bundle-card:hover .bundle-img-side::before { width: 65%; }
/* shadow beneath bundle */
.bundle-img-side::after {
  content: '';
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 50%; height: 20px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.3) 0%, transparent 75%);
  filter: blur(10px); border-radius: 50%;
  transition: width 0.5s;
}
.bundle-card:hover .bundle-img-side img {
  transform: scale(1.05) translateY(-10px);
  filter: drop-shadow(0 28px 60px rgba(0,0,0,0.7)) drop-shadow(0 10px 24px rgba(59,130,246,0.3));
  animation-play-state: paused;
}
.bundle-card:hover .bundle-img-side::after { width: 65%; }

.bundle-text-side { padding: 48px 44px; }
@media (max-width: 768px) { .bundle-text-side { padding: 32px 28px; } }
.bundle-badge {
  display: inline-flex; background: var(--gradient-main); color: white;
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}
.bundle-text-side h3 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.2;
}
.bundle-text-side p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.bundle-items { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 28px; }
@media (max-width: 500px) { .bundle-items { grid-template-columns: 1fr; } }
.bundle-items li { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-secondary); }
.bundle-items li span { color: var(--accent); font-weight: 700; font-size: 0.75rem; }

.bundle-action { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.bundle-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.bundle-price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.04em; }
.bundle-sub { font-size: 0.75rem; color: var(--text-muted); }

/* === SPOTLIGHT SECTIONS === */
.spotlight-section {
  position: relative; padding: var(--section-pad) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}
.spotlight-section:nth-of-type(even) { background: var(--bg-secondary); }
.spotlight-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.spotlight-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .spotlight-inner { grid-template-columns: 1fr; gap: 48px; } }
.spotlight-reverse .spotlight-inner { }

/* Product image frame */
.spotlight-img-frame {
  position: relative;
  background: transparent;
  padding: 40px; display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
@media (max-width: 900px) { .spotlight-img-frame { min-height: 260px; padding: 20px; } }
.spotlight-img-frame img {
  width: 100%; max-width: 380px; height: auto; display: block;
  transition: transform 0.6s var(--ease);
  animation: float-product 6s ease-in-out infinite;
  animation-delay: -1s;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative; z-index: 1;
}
.spotlight-img-frame::before {
  content: '';
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 55%; height: 28px;
  background: rgba(0,0,0,0.4);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.spotlight-section:hover .spotlight-img-frame img {
  transform: scale(1.04) translateY(-12px);
  filter: drop-shadow(0 36px 80px rgba(0,0,0,0.7)) drop-shadow(0 12px 28px rgba(59,130,246,0.32));
  animation-play-state: paused;
}
.spotlight-img-glow {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 55%; height: 30px;
  background: rgba(59,130,246,0.3); filter: blur(20px); border-radius: 50%; pointer-events: none;
  transition: width 0.5s, opacity 0.5s;
}
.spotlight-section:hover .spotlight-img-glow { width: 70%; }

/* Spotlight text */
.spotlight-content h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin: 12px 0 18px;
}
.spotlight-content p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }

/* Specs row */
.spec-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
@media (max-width: 600px) { .spec-row { grid-template-columns: repeat(2, 1fr); } }
.spec-item {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px; text-align: center; transition: border-color 0.2s;
}
.spec-item:hover { border-color: var(--border-glow); }
.spec-val { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.03em; }
.spec-lbl { display: block; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.spotlight-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.spotlight-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--text-secondary); padding: 10px 14px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px;
}
.spotlight-list li::before { content: '◆'; color: var(--accent); font-size: 0.55rem; flex-shrink: 0; }

.spotlight-footer { display: flex; align-items: center; gap: 24px; }
.spotlight-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.04em; }

/* === FEATURES === */
.features-section { background: var(--bg-primary); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-glow); background: var(--bg-card-hover); }
.feature-icon-wrap { margin-bottom: 16px; }
.feature-icon { width: 44px; height: 44px; color: var(--accent-bright); }
.feature-card h3 { font-family: var(--font-display); font-size: 0.97rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.855rem; color: var(--text-secondary); line-height: 1.7; }

/* === AI SPOTLIGHT === */
.ai-spotlight {
  position: relative; padding: var(--section-pad) 0; overflow: hidden;
  background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ai-bg { position: absolute; inset: 0; pointer-events: none; }
.ai-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.ai-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); top: -100px; left: -100px; }
.ai-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%); bottom: -100px; right: 0; }
.ai-content {
  width: 100%; display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 0; align-items: center;
}
@media (max-width: 768px) { .ai-content { grid-template-columns: 1fr; gap: 40px; } }
.ai-left {
  padding: 0 clamp(24px, 5vw, 80px);
}
.ai-left h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 20px; }
.ai-left p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }
.ai-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.ai-list li { display: flex; gap: 14px; align-items: flex-start; }
.ai-check { width: 24px; height: 24px; border-radius: 50%; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.35); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: var(--accent-bright); flex-shrink: 0; margin-top: 2px; }
.ai-list li div { display: flex; flex-direction: column; gap: 3px; }
.ai-list li strong { font-size: 0.92rem; font-weight: 600; }
.ai-list li span { font-size: 0.83rem; color: var(--text-secondary); }
.ai-right { display: flex; align-items: center; justify-content: flex-end; overflow: hidden; }
/* === APP PHONE MOCKUP === */
.app-phone-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-float 5s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.app-phone-glow {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.25) 0%, transparent 70%);
  filter: blur(30px);
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.app-phone-screen {
  width: 260px;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
  display: block;
  position: relative; z-index: 1;
}

/* Notification alert popup */
.app-alert-popup {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  background: rgba(15,20,40,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  width: 240px;
  z-index: 3;
  animation: alert-slide-in 0.6s cubic-bezier(0.34,1.56,0.64,1) both,
             alert-float 4s 0.6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.1);
}
@keyframes alert-slide-in {
  0% { opacity: 0; transform: translateX(-50%) translateY(-20px) scale(0.9); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
@keyframes alert-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}
.app-alert-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-alert-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.app-alert-title { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); }
.app-alert-sub { font-size: 0.65rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-alert-time { font-size: 0.6rem; color: var(--text-muted, #4a5568); flex-shrink: 0; }

/* Person Detected badge */
.app-detection-badge {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  background: rgba(15,20,40,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--accent-bright);
  display: flex; align-items: center; gap: 6px;
  z-index: 3;
  white-space: nowrap;
  animation: badge-pulse 2.5s ease-in-out infinite;
}
.app-detection-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: dot-blink 1.2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(59,130,246,0); }
}
@keyframes dot-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* === ECOSYSTEM === */
.ecosystem-section { background: var(--bg-primary); }
.ecosystem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 72px; }
@media (max-width: 900px) { .ecosystem-grid { grid-template-columns: repeat(2, 1fr); } }
.eco-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 28px 20px; text-align: center; transition: transform 0.3s var(--ease), border-color 0.3s; }
.eco-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.eco-logo { width: 48px; height: 48px; margin: 0 auto 14px; }
.eco-logo.apple { color: #c8cdd5; }
.eco-logo.google { color: #4285F4; }
.eco-logo.alexa { color: #00CAFF; }
.eco-logo.matter { color: var(--accent-bright); }
.eco-logo svg { width: 100%; height: 100%; }
.eco-card h4 { font-family: var(--font-display); font-size: 0.97rem; font-weight: 600; margin-bottom: 8px; }
.eco-card p { font-size: 0.81rem; color: var(--text-secondary); line-height: 1.6; }

/* App section */
.app-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 28px; padding: 56px; overflow: hidden; }
@media (max-width: 768px) { .app-section { padding: 32px 24px; } }
.app-content { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
@media (max-width: 900px) { .app-content { grid-template-columns: 1fr; } }
.app-left h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 2.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 16px; }
.app-left p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.75; margin-bottom: 24px; max-width: 440px; }
.app-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.app-features li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text-secondary); }
.app-features li span { color: var(--accent); font-weight: 700; }
.app-platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.platform-badge { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 6px 14px; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }

/* App section real screenshots */
.app-phone-wrap {
  position: relative; display: flex; justify-content: flex-end; align-items: center;
  width: 100%;
}
.app-phone-img {
  width: 100%; max-width: 100%; height: auto; display: block;
  animation: float-product 7s ease-in-out infinite;
  will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 50px rgba(59,130,246,0.2)) drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.app-phone-glow {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 60px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.4) 0%, transparent 70%);
  filter: blur(20px); border-radius: 50%; pointer-events: none; z-index: 0;
}
.app-alert-card {
  position: absolute; top: 30%; left: -10px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(8,12,28,0.92); backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(59,130,246,0.25); border-radius: 18px;
  padding: 12px 16px; min-width: 230px; z-index: 10;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0; transform: translateX(-40px) scale(0.9);
  transition: none;
}
.app-alert-card.alert-visible {
  animation: alert-slide-in 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards,
             alert-float 4s ease-in-out 0.9s infinite;
}
.app-alert-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(239,68,68,0.3), rgba(239,68,68,0.1));
  border: 1px solid rgba(239,68,68,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #f87171; box-shadow: 0 0 12px rgba(239,68,68,0.2);
  animation: alert-bell 2s ease-in-out 2s infinite;
}
.app-alert-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.app-alert-title {
  font-size: 0.7rem; font-weight: 700; color: var(--text-primary);
  display: flex; align-items: center; gap: 6px;
}
.app-alert-title::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 6px #ef4444;
  animation: pulse-red 1.5s ease-in-out 2s infinite;
}
.app-alert-body { font-size: 0.68rem; color: var(--text-secondary); }
.app-alert-time { font-size: 0.6rem; color: rgba(148,163,184,0.6); align-self: flex-start; white-space: nowrap; }

/* Phone mockup (CSS-built, kept for compatibility) */
.phone-mockup { position: relative; }
.phone-frame { width: 230px; background: #1a1a2e; border-radius: 40px; border: 2px solid rgba(59,130,246,0.25); overflow: hidden; box-shadow: 0 0 0 8px rgba(59,130,246,0.04), 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(59,130,246,0.12); }
.phone-glow { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); width: 150px; height: 50px; background: rgba(59,130,246,0.18); filter: blur(20px); border-radius: 50%; }
.phone-screen { padding: 14px 0 0; }
.phone-status-bar { display: flex; justify-content: space-between; align-items: center; padding: 0 14px 8px; font-size: 0.62rem; color: var(--text-secondary); }
.phone-icons { display: flex; gap: 4px; align-items: center; font-size: 0.58rem; }
.phone-app-header { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px 12px; border-bottom: 1px solid var(--border); }
.phone-logo { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.phone-notif { width: 18px; height: 18px; background: var(--accent); border-radius: 50%; font-size: 0.6rem; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; }
.phone-camera-feed { position: relative; height: 150px; background: #1a1a2e; overflow: hidden; }
.feed-label { position: absolute; top: 7px; left: 9px; font-size: 0.58rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.feed-live { position: absolute; top: 7px; right: 9px; font-size: 0.56rem; color: #ef4444; font-weight: 700; }
.feed-scan-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(59,130,246,0.35); animation: scan 4s linear infinite; }
@keyframes scan { from { top: 0; } to { top: 100%; } }
.feed-grid { position: absolute; inset: 0; }
.feed-grid-line { position: absolute; background: rgba(59,130,246,0.1); }
.feed-grid-line.h { left: 0; right: 0; height: 1px; top: 33%; }
.feed-grid-line.v { top: 0; bottom: 0; width: 1px; left: 33%; }
.feed-ai-box { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(59,130,246,0.18); border: 1px solid rgba(59,130,246,0.5); border-radius: 4px; padding: 3px 8px; font-size: 0.56rem; font-weight: 600; color: var(--accent-bright); white-space: nowrap; animation: ai-detect 3s ease-in-out infinite; }
@keyframes ai-detect { 0%,100% { opacity: 0.7; } 50% { opacity: 1; border-color: rgba(59,130,246,0.9); } }
.phone-controls { display: flex; justify-content: space-around; padding: 12px 10px 18px; border-top: 1px solid var(--border); }
.ctrl-btn { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.ctrl-btn.active { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.4); color: var(--accent-bright); }

/* === WHY === */
.why-section { background: var(--bg-secondary); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 32px 26px; transition: transform 0.3s var(--ease), border-color 0.3s; }
.why-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.why-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.04em; margin-bottom: 12px; opacity: 0.4; }
.why-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.7; }

/* === COMPARISON === */
.comparison-section { padding: var(--section-pad) 0; background: var(--bg-primary); }
.comparison-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.comp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid var(--border); }
.comp-row:last-child { border-bottom: none; }
.comp-row.header { background: rgba(59,130,246,0.06); border-bottom-color: rgba(59,130,246,0.18); }
.comp-buddy, .comp-others, .comp-feature { padding: 15px 22px; font-size: 0.855rem; }
.comp-row.header .comp-buddy { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #1a1a1a; }
.comp-row.header .comp-others { color: var(--text-muted); font-weight: 600; }
.comp-feature { color: var(--text-secondary); font-weight: 500; font-size: 0.82rem; }
.comp-buddy { color: var(--text-primary); font-weight: 500; }
.comp-others { color: var(--text-muted); }
.check { color: #22c55e; margin-right: 6px; font-weight: 700; }
.cross { color: #ef4444; margin-right: 6px; }
.comp-row:hover { background: rgba(255,255,255,0.015); }
@media (max-width: 600px) { .comp-buddy, .comp-others, .comp-feature { padding: 11px 12px; font-size: 0.76rem; } }

/* === CTA === */
.cta-section { position: relative; padding: var(--section-pad) 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.cta-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); }
.cta-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,0.13) 0%, transparent 70%); bottom: -100px; right: 0; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 20px; }
.cta-content p { font-size: 1rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 0.78rem; color: var(--text-muted); }

/* === FOOTER === */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 44px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; }
.footer-logo .dot { color: var(--accent); }
.footer-brand p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.footer-socials a:hover { color: var(--accent-bright); border-color: var(--border-glow); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
@media (max-width: 560px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary); margin-bottom: 4px; }
.footer-col a { font-size: 0.855rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-secondary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.79rem; color: var(--text-muted); }

/* === BACKER BUTTON (NAV) === */
.btn-backer {
  display: flex; align-items: center;
  height: 42px; padding: 0 16px; border-radius: 12px;
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.15);
  color: #1a1a1a; font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; letter-spacing: 0.01em;
  transition: all 0.2s var(--ease); flex-shrink: 0;
}
.btn-backer:hover {
  background: rgba(0,0,0,0.09); border-color: rgba(0,0,0,0.25);
}
@media (max-width: 768px) { .btn-backer { display: none; } }

/* === CART BUTTON (NAV) === */
.cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18);
  color: var(--text-secondary); cursor: pointer; transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.cart-btn:hover { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.35); color: var(--text-primary); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-primary);
  transition: transform 0.2s var(--ease);
}
.cart-badge.hidden { display: none; }
.cart-btn:hover .cart-badge { transform: scale(1.1); }

/* === BACKER MODAL === */
.backer-overlay {
  position: fixed; inset: 0; background: rgba(3,6,16,0.8);
  backdrop-filter: blur(8px); z-index: 1100;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.backer-overlay.open { opacity: 1; pointer-events: all; }

.backer-modal {
  background: #ffffff; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 24px; padding: 44px 40px 36px;
  width: 100%; max-width: 460px; position: relative;
  box-shadow: 0 0 0 1px rgba(139,92,246,0.1), 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(139,92,246,0.08);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  text-align: center;
}
.backer-overlay.open .backer-modal { transform: scale(1) translateY(0); }

.backer-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.backer-close:hover { background: rgba(0,0,0,0.06); color: var(--text-primary); }

.backer-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 24px;
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
}
.backer-logo {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.03em; color: #fff;
}
.backer-logo-dot { color: #fff; }
.backer-modal h2 {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 10px; color: var(--text-primary);
}
.backer-modal > p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 28px;
}

.backer-form-group { text-align: left; margin-bottom: 14px; }
.backer-form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.backer-form-group input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
  padding: 13px 16px; font-size: 0.92rem; color: var(--text-primary);
  outline: none; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s;
}
.backer-form-group input::placeholder { color: var(--text-muted); }
.backer-form-group input:focus {
  border-color: rgba(139,92,246,0.45);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}

.btn-activate {
  width: 100%; padding: 14px; border-radius: 12px; font-size: 0.95rem; font-weight: 700;
  background: rgba(139,92,246,0.2); border: 1px solid rgba(139,92,246,0.2);
  color: rgba(196,181,253,0.4); cursor: not-allowed; letter-spacing: 0.01em;
  font-family: inherit; margin-bottom: 16px;
}

.backer-note {
  font-size: 0.76rem !important; color: var(--text-muted) !important;
  margin-bottom: 0 !important; line-height: 1.5 !important;
}

/* === CART OVERLAY === */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(3,6,16,0.7);
  backdrop-filter: blur(6px); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* === CART DRAWER === */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: #ffffff; border-left: 1px solid rgba(0,0,0,0.08);
  z-index: 1101; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  flex-shrink: 0; position: relative;
}
.cart-header-left { display: flex; align-items: center; gap: 10px; color: var(--accent-bright); }
.cart-header-left h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.cart-close {
  width: 32px; height: 32px; border-radius: 8px; background: var(--bg-card);
  border: 1px solid var(--border); color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.07); color: var(--text-primary); }

.cart-body { flex: 1; overflow-y: auto; padding: 8px 0; }
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 60px 24px; text-align: center; height: 100%;
  color: var(--text-muted);
}
.cart-empty p { font-size: 1rem; font-weight: 600; color: var(--text-secondary); }
.cart-empty span { font-size: 0.84rem; }

.cart-items { list-style: none; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.cart-item:hover { background: rgba(255,255,255,0.02); }

.cart-item-img-wrap {
  width: 68px; height: 68px; border-radius: 12px; flex-shrink: 0; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.cart-item-img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.cart-item-name { font-size: 0.84rem; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.85rem; font-weight: 700; color: var(--accent-bright); }

.cart-item-qty {
  display: flex; align-items: center; gap: 10px; margin-top: 2px;
}
.qty-btn {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  color: var(--accent-bright); cursor: pointer; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.qty-btn:hover { background: rgba(59,130,246,0.2); }
.qty-val { font-size: 0.85rem; font-weight: 700; min-width: 16px; text-align: center; color: var(--text-primary); }

.cart-item-remove {
  width: 28px; height: 28px; border-radius: 7px; border: none;
  background: transparent; color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; flex-shrink: 0;
}
.cart-item-remove:hover { background: rgba(239,68,68,0.1); color: #f87171; }

/* Cart footer */
.cart-footer {
  border-top: 1px solid var(--border); padding: 20px 24px 28px; flex-shrink: 0;
  display: none;
}
.cart-footer.visible { display: block; }
.cart-totals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.cart-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; color: var(--text-secondary); }
.cart-row-shipping { font-size: 0.82rem; color: var(--text-muted); }
.cart-row-total { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); padding-top: 10px; border-top: 1px solid var(--border); margin-top: 4px; }
.cart-free { color: #4ade80; font-weight: 600; }
.btn-full { width: 100%; justify-content: center; gap: 8px; }
.cart-secure {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.74rem; color: var(--text-muted); margin-top: 12px;
}
.cart-secure svg { color: #4ade80; }

/* "Added" button state */
.btn-added { background: #166534 !important; border-color: #4ade80 !important; color: #4ade80 !important; }

/* === CART TOAST === */
.cart-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: rgba(8,20,44,0.95); border: 1px solid rgba(59,130,246,0.3);
  backdrop-filter: blur(12px); border-radius: 100px;
  padding: 10px 20px; display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 600; color: var(--text-primary);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}
.cart-toast svg { color: #4ade80; flex-shrink: 0; }
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* === CHECKOUT OVERLAY === */
.checkout-overlay {
  position: fixed; inset: 0; background: rgba(3,6,16,0.85);
  backdrop-filter: blur(8px); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  background: #ffffff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px; width: 100%; max-width: 960px; max-height: 92vh;
  overflow-y: auto; position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.checkout-overlay.open .checkout-modal { transform: scale(1) translateY(0); }
.checkout-modal::-webkit-scrollbar { width: 4px; }
.checkout-modal::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

.checkout-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 10;
}
.checkout-close:hover { background: rgba(0,0,0,0.06); color: var(--text-primary); }

/* Checkout two-column layout */
.checkout-form-view {
  display: grid; grid-template-columns: 1fr 380px;
}
@media (max-width: 780px) { .checkout-form-view { grid-template-columns: 1fr; } }

.checkout-left {
  padding: 40px 44px; border-right: 1px solid var(--border);
}
@media (max-width: 780px) { .checkout-left { padding: 32px 24px; border-right: none; } }

.checkout-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px; }
.checkout-logo .dot { color: var(--accent); }
.checkout-left h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 6px; }
.checkout-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }

/* Form sections */
.form-section { margin-bottom: 28px; }
.form-section-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.form-group-sm { flex: 0 0 72px; }
.form-row { display: flex; gap: 12px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.form-group input {
  background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px; padding: 11px 14px;
  font-size: 0.88rem; color: var(--text-primary); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; font-family: inherit; width: 100%;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-group input.field-error { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.12); }

/* Card input */
.card-logos { display: flex; gap: 6px; margin-bottom: 12px; }
.card-logo-badge {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 5px; padding: 2px 7px; font-size: 0.65rem; font-weight: 800;
  color: var(--text-muted); letter-spacing: 0.04em;
}
.card-input-wrap { position: relative; }
.card-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.card-input-wrap input { padding-left: 40px; }

.btn-checkout-submit {
  margin-top: 8px; height: 52px; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Order summary (right column) */
.checkout-right { padding: 40px 36px; background: rgba(0,0,0,0.2); }
@media (max-width: 780px) { .checkout-right { padding: 24px; border-top: 1px solid var(--border); display: none; } }

.order-summary h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.02em; }
.order-summary-items { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.order-summary-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.order-item-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.order-item-img-wrap {
  position: relative; width: 52px; height: 52px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.order-item-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.order-item-qty-badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #080f1e;
}
.order-item-name { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.order-item-price { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); flex-shrink: 0; }

.order-summary-totals { border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.order-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-secondary); }
.order-total { font-size: 1rem; font-weight: 700; color: var(--text-primary); padding-top: 10px; border-top: 1px solid var(--border); }

.order-badges { display: flex; flex-direction: column; gap: 8px; }
.order-badges span {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--text-muted);
}
.order-badges svg { color: #4ade80; flex-shrink: 0; }

/* === CHECKOUT SUCCESS === */
.checkout-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 80px 40px; text-align: center; min-height: 480px;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #4ade80; margin-bottom: 8px;
  animation: success-pop 0.5s cubic-bezier(0.22,1,0.36,1);
}
@keyframes success-pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.checkout-success h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.03em; }
.checkout-success p { font-size: 0.95rem; color: var(--text-secondary); max-width: 400px; line-height: 1.7; }
.success-sub { font-size: 0.84rem !important; color: var(--text-muted) !important; }

/* === CURSOR GLOW === */
#cursor-glow { position: fixed; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%); pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: left 1s var(--ease), top 1s var(--ease); mix-blend-mode: screen; }

/* === RESPONSIVE === */
/* Mobile nav cart button */
.nav-mobile .btn-primary {
  display: flex; align-items: center; justify-content: center;
  width: 100%; font-size: 1rem; font-weight: 600;
  padding: 14px 24px; border-radius: 12px; margin-top: 12px;
  background: #1a1a1a; color: #fff;
  border: none; box-shadow: none;
  text-decoration: none;
}
.nav-mobile .btn-primary:hover { background: #333; transform: none; box-shadow: none; }
.nav-mobile-cart {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font-size: 1rem; font-weight: 600;
  padding: 14px 24px; border-radius: 12px; margin-top: 8px;
  background: transparent; color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: none;
}
.nav-mobile-cart:hover {
  border-color: #1a1a1a; background: rgba(0,0,0,0.04);
  transform: none; box-shadow: none;
}

/* =============================================
   MOBILE — tablet (≤900px)
============================================= */
/* =============================================
   SMALL LAPTOP / NARROW DESKTOP (≤1280px)
   13-inch MacBook, smaller external displays
============================================= */
@media (max-width: 1280px) {
  :root { --container-max: 1080px; }
  .hero-inner { gap: 48px; }
  .spotlight-inner { gap: 56px; }
  .hero-light-img { height: clamp(320px, 52vh, 560px); }
}

/* =============================================
   LARGE DESKTOP (≥1440px)
   Most external monitors, 16-inch MacBook Pro
============================================= */
@media (min-width: 1440px) {
  :root { --container-max: 1320px; }
  .hero-title { font-size: clamp(4rem, 4.5vw, 5.5rem); }
  .hero-light-title { font-size: clamp(3.8rem, 5.4vw, 6.2rem); }
  .hero-light-sub { font-size: clamp(1.2rem, 1.6vw, 1.7rem); }
  .hero-light-img { height: clamp(400px, 60vh, 700px); }
  .orb-1 { width: 900px; height: 900px; }
  .orb-2 { width: 650px; height: 650px; }
}

/* =============================================
   EXTRA-LARGE DESKTOP (≥1700px)
   27-inch displays, 2K monitors
============================================= */
@media (min-width: 1700px) {
  :root { --container-max: 1480px; }
  .hero-light-title { font-size: clamp(4.4rem, 5vw, 7rem); }
  .hero-light-sub { font-size: clamp(1.3rem, 1.4vw, 1.9rem); }
  .hero-light-img { height: clamp(440px, 62vh, 760px); }
  .section-title { font-size: clamp(2.4rem, 3.4vw, 3.6rem); }
  .section-header { margin-bottom: 80px; }
  .products-grid { gap: 28px; }
  /* Video sections — bigger text on big screens */
  .spotlight-video-content { max-width: min(580px, 90%); gap: 26px; }
  .spotlight-video-content h2 { font-size: clamp(3rem, 4.4vw, 5rem); }
  .spotlight-video-content p { font-size: clamp(1.05rem, 1.05vw, 1.2rem); }
  .bundle-video-content { max-width: min(640px, 92%); }
  .bundle-video-content h3 { font-size: clamp(2.4rem, 3.6vw, 3.4rem); }
  .cta-video-content { max-width: 760px; }
  .cta-video-content h2 { font-size: clamp(2.6rem, 3.6vw, 4rem); }
}

/* =============================================
   ULTRAWIDE / 4K (≥2200px)
============================================= */
@media (min-width: 2200px) {
  :root { --container-max: 1640px; }
  .hero-light-title { font-size: clamp(5rem, 4.4vw, 8rem); }
  .hero-light-img { height: clamp(480px, 64vh, 860px); }
  .nav-inner { padding: 0 clamp(40px, 4vw, 100px); }
}

/* =============================================
   TABLET / SMALL DESKTOP (600–900px)
============================================= */
@media (max-width: 900px) {
  :root { --section-pad: 80px; }

  /* Nav */
  .nav-inner { padding: 0 20px; gap: 16px; }
  .cart-btn { display: none; }

  /* Cart drawer — bottom sheet on mobile */
  .cart-drawer {
    top: auto; bottom: 0; left: 0; right: 0;
    width: 100%; height: auto; max-height: 88vh;
    border-radius: 20px 20px 0 0;
    border-left: none; border-top: 1px solid var(--border);
    transform: translateY(100%);
    box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
  }
  .cart-drawer.open { transform: translateY(0); }
  .cart-body { max-height: 50vh; }
  .cart-header { padding: 20px 20px 16px; }
  /* drag handle */
  .cart-header::before {
    content: ''; display: block; position: absolute;
    top: 10px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 4px; border-radius: 4px;
    background: rgba(0,0,0,0.12);
  }
  .cart-item { padding: 14px 20px; }
  .cart-footer { padding: 16px 20px 36px; }

  /* Checkout — bottom sheet */
  .checkout-overlay { padding: 0; align-items: flex-end; }
  .checkout-modal {
    border-radius: 24px 24px 0 0; max-height: 95vh;
    overflow-y: auto;
  }
  .checkout-form-view { grid-template-columns: 1fr; }
  .checkout-left { padding: 28px 20px; border-right: none; }
  .checkout-right { display: none; }
  .form-row { flex-direction: column; }
  .form-group-sm { flex: unset; }
  .form-group input, .backer-form-group input { font-size: 16px; }
  .checkout-success { padding: 48px 24px; min-height: 360px; }

  /* Backer modal — bottom sheet */
  .backer-overlay { padding: 0; align-items: flex-end; }
  .backer-modal {
    border-radius: 24px 24px 0 0;
    padding: 32px 24px 44px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .backer-overlay.open .backer-modal { transform: translateY(0); }

  /* Toast */
  .cart-toast { width: calc(100vw - 32px); justify-content: center; }

  /* Hero — single column */
  .hero { padding: calc(var(--nav-h) + 24px) 28px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-title { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin-bottom: 16px; }
  .hero-sub { font-size: 0.96rem; margin: 0 auto 28px; max-width: 500px; }
  .hero-actions { justify-content: center; gap: 12px; margin-bottom: 0; }
  .hero-image { display: block; }
  .hero-img-frame { padding: 0 40px; }
  .hero-img-frame img { max-height: 300px; object-fit: contain; }
  .hero-scroll-cue { display: none; }
  .tag-1, .tag-2, .tag-4, .tag-5, .tag-6, .tag-7 { display: none; }

  /* Sections */
  .section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .container { padding: 0 24px; }

  /* Products — 2 cols on tablet */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Bundle */
  .bundle-card { grid-template-columns: 1fr; }
  .bundle-img-side { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); min-height: 240px; }
  .bundle-text-side { padding: 32px 28px; }
  .bundle-items { grid-template-columns: 1fr 1fr; }

  /* Spotlight */
  .spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-img-frame { min-height: 280px; }

  /* Features / Why / Eco */
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-content { grid-template-columns: 1fr; gap: 48px; }
  .app-phone-screen { width: 200px; }
  .app-alert-popup { width: 186px; }
  .app-phone-mockup { padding-top: 20px; }
  .app-content { grid-template-columns: 1fr; }
  .app-section { padding: 32px 24px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

/* =============================================
   PHONE (≤600px)
============================================= */
@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  html, body { overflow-x: hidden; }

  /* Nav */
  .nav-inner { padding: 0 16px; gap: 10px; }

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 8px) 16px 32px; min-height: auto; justify-content: flex-start; }
  .hero-inner { gap: 20px; }
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 12px; }
  .hero-title { font-size: clamp(1.85rem, 8vw, 2.5rem); margin-bottom: 12px; }
  .hero-sub { font-size: 0.86rem; margin-bottom: 20px; }
  .hero-actions .btn-lg { padding: 12px 18px; font-size: 0.86rem; }
  .hero-img-frame { padding: 0 8px; }
  .hero-img-frame img { max-height: 220px; }

  /* General */
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.5rem, 6.5vw, 1.9rem); }
  .section-sub { font-size: 0.845rem; }

  /* Products — 1 col on phone */
  .products-grid { grid-template-columns: 1fr; }
  .product-img { height: 185px; }
  .product-info { padding: 6px 16px 18px; }
  .product-name { font-size: 0.93rem; }
  .product-price { font-size: 1.2rem; }

  /* Bundle */
  .bundle-img-side { min-height: 180px; padding: 20px; }
  .bundle-text-side { padding: 22px 16px; }
  .bundle-price { font-size: 1.9rem; }
  .bundle-items { grid-template-columns: 1fr; }

  /* Spotlight */
  .spotlight-img-frame { min-height: 190px; padding: 14px; }
  .spotlight-price { font-size: 1.65rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Comparison */
  .comp-buddy, .comp-others, .comp-feature { padding: 9px 8px; font-size: 0.68rem; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .stat-divider { display: none; }
}

/* ============================================
   APP MOCKUP — real iPhone screenshot
============================================ */
.phone-mockup-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.app-phone-screenshot {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18)) drop-shadow(0 10px 24px rgba(0,0,0,0.12));
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.phone-mockup-img .phone-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .app-phone-screenshot { max-width: 260px; }
}

/* ============================================
   CTA VIDEO SECTION — full-bleed centered Vimeo
============================================ */
.cta-video-section {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 88vh, 820px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

.cta-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.cta-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  border: 0;
  pointer-events: none;
}

.cta-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.cta-video-content {
  position: relative;
  z-index: 2;
  max-width: min(520px, 92%);
  padding: 0 24px clamp(120px, 18vh, 200px);
  margin-left: clamp(24px, 5vw, 60px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.cta-video-content .section-eyebrow {
  color: rgba(255,255,255,0.85);
}

.cta-video-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.cta-video-content h2 .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #cfe2ff 60%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-video-content p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.cta-video-content .cta-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cta-video-content .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.cta-video-content .btn-outline:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

.cta-video-content .cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

@media (max-width: 700px) {
  .cta-video-section {
    min-height: unset;
    background: #111;
    display: flex;
    flex-direction: column;
  }
  .cta-video-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
  }
  .cta-video-bg iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    min-width: unset;
    min-height: unset;
  }
  .cta-video-scrim { display: none; }
  .cta-video-content {
    position: relative;
    background: #111;
    padding: 28px 24px 44px;
    gap: 16px;
    text-align: left;
  }
  .cta-video-content h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); color: #fff; }
  .cta-video-content p { color: rgba(255,255,255,0.8); }
  .cta-video-content .section-eyebrow { color: rgba(255,255,255,0.7); }
  .cta-video-content .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-video-content .cta-actions .btn { width: 100%; }
  .cta-video-content .cta-note { color: rgba(255,255,255,0.5); }
}

/* ============================================
   BUNDLE VIDEO CARD — full-bleed Vimeo background
============================================ */
.bundle-video-section {
  width: 100%;
  margin: 0;
  padding: 0;
}
.bundle-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 460px;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  background: #0a0a0a;
}

.bundle-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bundle-video-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.bundle-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 72%, rgba(0,0,0,0.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.bundle-video-content {
  position: relative;
  z-index: 2;
  padding: 0 24px clamp(50px, 9vh, 95px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: min(520px, 92%);
  margin-left: clamp(12px, 2vw, 28px);
}

.bundle-video-content .bundle-badge {
  align-self: flex-start;
}

.bundle-video-content h3 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.bundle-video-content p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.bundle-video-content .bundle-action {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.bundle-video-content .bundle-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bundle-video-content .bundle-price {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.bundle-video-content .bundle-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 700px) {
  .bundle-video-section { display: flex; flex-direction: column; }
  .bundle-video-card {
    aspect-ratio: auto;
    min-height: unset;
    max-height: none;
    border-radius: 0;
    background: #111;
    display: flex;
    flex-direction: column;
  }
  .bundle-video-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
  }
  .bundle-video-bg iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    min-width: unset;
    min-height: unset;
  }
  .bundle-video-scrim { display: none; }
  .bundle-video-content {
    position: relative;
    z-index: 2;
    background: #111;
    color: #fff;
    margin: 0;
    padding: 28px 24px 44px;
    gap: 16px;
  }
  .bundle-video-content h3 { color: #fff; }
  .bundle-video-content p { color: rgba(255,255,255,0.8); }
  .bundle-video-content .bundle-sub { color: rgba(255,255,255,0.6); }
  .bundle-video-content .bundle-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ============================================
   SPOTLIGHT VIDEO SECTION — full-bleed Vimeo
============================================ */
.spotlight-video-section {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 92vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.spotlight-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.spotlight-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  border: 0;
  pointer-events: none;
}

/* Dark gradient scrim so text stays readable over the video */
.spotlight-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.spotlight-video-content {
  position: relative;
  z-index: 2;
  padding: 0 24px clamp(40px, 7vh, 80px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: min(460px, 90%);
  margin-right: auto;
  margin-left: clamp(24px, 5vw, 60px);
}

.spotlight-video-content .section-eyebrow {
  color: rgba(255,255,255,0.78);
}

.spotlight-video-content h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.spotlight-video-content h2 .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #cfe2ff 60%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spotlight-video-content p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.spotlight-video-content .spotlight-specs {
  margin: 4px 0 0;
}

.spotlight-video-content .spec-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 36px;
  row-gap: 18px;
}

.spotlight-video-content .spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spotlight-video-content .spec-val {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.spotlight-video-content .spec-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}

.spotlight-video-content .spotlight-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
}

.spotlight-video-content .spotlight-price {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Compact feature list for video sections */
.spotlight-video-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 28px;
  row-gap: 10px;
}
.spotlight-video-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.vid-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(59,130,246,0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Right-aligned variant — text sits on the right */
.spotlight-video-right .spotlight-video-content {
  margin-left: auto;
  margin-right: clamp(24px, 5vw, 60px);
}
.spotlight-video-right .spotlight-video-scrim {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%),
    linear-gradient(270deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%);
}

@media (max-width: 700px) {
  .spotlight-video-section {
    min-height: auto;
    height: auto;
    background: #111;
  }
  /* On mobile, video acts as a poster — fixed height so it doesn't leave dead space */
  .spotlight-video-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
  }
  .spotlight-video-bg iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    min-width: unset;
    min-height: unset;
  }
  /* Scrim becomes a bottom fade on mobile */
  .spotlight-video-scrim,
  .spotlight-video-right .spotlight-video-scrim {
    position: relative;
    inset: unset;
    z-index: unset;
    background: none;
    pointer-events: none;
  }
  /* Content flows naturally below the video */
  .spotlight-video-section {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .spotlight-video-content {
    position: relative;
    z-index: 2;
    background: #111;
    padding: 28px 24px 40px;
    gap: 14px;
    text-align: left;
    color: #fff;
  }
  .spotlight-video-right .spotlight-video-content {
    margin: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .spotlight-video-content .spotlight-specs { display: none; }
  .spotlight-video-content .spotlight-footer {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .spotlight-video-content h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .spotlight-video-content p { font-size: 0.95rem; max-width: 100%; }
  .spotlight-video-content .section-eyebrow { color: rgba(255,255,255,0.7); }
}
