/* CupLab marketing landing — ui-ux-pro-max: data-dense SaaS, Fira Sans, blue + amber */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@500;600&family=Fira+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #f8fafc;
  --bg2: #eff6ff;
  --surface: #ffffff;
  --border: #dbe4ef;
  --text: #0f172a;
  --muted: #475569;
  --muted-light: #64748b;
  --primary: #1e40af;
  --primary2: #3b82f6;
  --cta: #f59e0b;
  --teal: #0d9488;
  --radius: 14px;
  --font: 'Fira Sans', system-ui, sans-serif;
  --font-display: 'Fira Code', 'Fira Sans', system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --elevation-1: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --elevation-2: 0 8px 24px rgba(30, 64, 175, 0.1);
  --elevation-3: 0 20px 50px rgba(15, 23, 42, 0.12);
  --elevation-4: 0 28px 60px rgba(30, 64, 175, 0.18);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.65);
}

* { 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;
  position: relative;
  overflow-x: hidden;
}

/* Aurora mesh + dot grid */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 5%, rgba(13, 148, 136, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(245, 158, 11, 0.1), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 45%, #f8fafc 100%);
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 64, 175, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: blob-float 12s ease-in-out infinite;
}
.blob-a { width: 420px; height: 420px; background: #93c5fd; top: -80px; right: 8%; }
.blob-b { width: 320px; height: 320px; background: #5eead4; bottom: 20%; left: -60px; animation-delay: -4s; }
.blob-c { width: 260px; height: 260px; background: #fcd34d; top: 42%; right: -40px; animation-delay: -8s; opacity: 0.35; }

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, 18px) scale(1.04); }
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 12px;
  z-index: 100;
  margin: 12px auto 0;
  max-width: 1100px;
  padding: 0 16px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: var(--elevation-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 800;
}
.brand-mark img { width: 36px; height: 36px; border-radius: 10px; display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border-radius: 10px; font: inherit; font-size: 0.88rem;
  font-weight: 600; border: 1px solid var(--border); background: var(--surface);
  color: var(--text); cursor: pointer; transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:hover { border-color: #93c5fd; box-shadow: 0 4px 14px rgba(59, 130, 246, 0.15); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: none; color: #fff;
}
.btn-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none; color: #fff;
}
.btn-ghost { background: transparent; border-color: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--bg2); color: var(--text); }

/* ── Hero ── */
.hero { padding: 64px 0 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: #dbeafe; color: var(--primary); font-size: 0.75rem; font-weight: 700;
  margin-bottom: 24px;
}

/* Product positioning — dual headline */
.hero-position {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.pos-data {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 55%, #0d9488 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.pos-ai {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 45%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.pos-sep {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}
.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Dual-pillar — compact one-liners */
.hero-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
  max-width: 30rem;
}
.hero-dual-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 12px;
  padding: 14px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--elevation-1);
  position: relative;
  overflow: hidden;
}
.hero-dual-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.hero-dual-data::before {
  background: linear-gradient(90deg, var(--primary), var(--teal));
}
.hero-dual-ai::before {
  background: linear-gradient(90deg, #7c3aed, var(--primary2));
}
.hero-dual-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-dual-data .hero-dual-icon {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: var(--primary);
  border: 1px solid #93c5fd;
}
.hero-dual-ai .hero-dual-icon {
  background: linear-gradient(135deg, #ede9fe, #eef2ff);
  color: #6366f1;
  border: 1px solid #c4b5fd;
}
.hero-dual-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 4px;
}

.hero-cta { margin-bottom: 14px; }
.hero-note { font-size: 0.8rem; color: var(--muted-light); line-height: 1.6; }
.hero-note-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-note-link:hover { color: var(--primary); }

/* Hero preview stage — layered depth */
.preview-stage {
  position: relative;
  padding: 18px 12px 28px;
}
.preview-stage::before {
  content: "";
  position: absolute;
  inset: 8% 4% 12%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(13, 148, 136, 0.18));
  border-radius: 24px;
  filter: blur(28px);
  z-index: 0;
}
.preview-float {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--elevation-2);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.preview-float .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}
.preview-float-a { top: 0; left: 0; color: var(--teal); }
.preview-float-b { bottom: 8px; right: 0; color: var(--primary); }
.preview-float-c {
  top: 38%; left: -8px;
  background: linear-gradient(135deg, #fffbeb, #fff);
  border-color: #fde68a;
  color: #b45309;
}

/* ── App preview mock ── */
.preview-shell {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #ececef;
  box-shadow: var(--elevation-4);
  overflow: hidden;
  min-height: 400px;
  display: grid;
  grid-template-columns: 52px 1fr 120px;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.preview-stage:hover .preview-shell {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 32px 70px rgba(30, 64, 175, 0.22);
}
.preview-side {
  background: #f5f5f7;
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.preview-dot {
  width: 28px; height: 28px; border-radius: 8px;
  background: #e2e8f0;
}
.preview-dot.active { background: var(--primary2); }
.preview-main { display: flex; flex-direction: column; min-width: 0; }
.preview-top {
  height: 40px; background: #fff; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 14px; gap: 8px;
  font-size: 0.72rem; color: var(--muted);
}
.preview-body { flex: 1; padding: 12px; background: #f8fafc; }
.preview-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 8px;
}
.preview-match {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center;
  font-size: 0.78rem; font-weight: 600;
}
.preview-time { text-align: center; color: var(--primary); font-size: 0.85rem; }
.preview-badge {
  display: inline-block; margin-top: 6px; padding: 2px 8px; border-radius: 999px;
  background: #eff6ff; color: var(--primary); font-size: 0.65rem; font-weight: 700;
}
.preview-agent {
  background: #f8fafc; border-left: 1px solid var(--border);
  padding: 10px 8px; display: flex; flex-direction: column; gap: 8px;
}
.preview-agent h4 { font-size: 0.68rem; color: var(--teal); font-weight: 700; }
.preview-bubble {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 8px; font-size: 0.62rem; color: var(--muted); line-height: 1.45;
}
.preview-agent-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
}

section { padding: 72px 0; position: relative; }
.section-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(239,246,255,0.9) 100%);
  border-block: 1px solid rgba(219, 228, 239, 0.8);
  backdrop-filter: blur(8px);
}
.section-band-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1e40af 100%);
  color: #f8fafc;
  border: none;
}
.section-band-dark .section-head h2 { color: #fff; }
.section-band-dark .section-head p { color: #cbd5e1; }
.section-band-dark .compare-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.section-band-dark .compare-card.before {
  opacity: 1;
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.28);
}
.section-band-dark .compare-card.before h3 { color: #cbd5e1; }
.section-band-dark .compare-card.before li { color: #94a3b8; }
.section-band-dark .compare-card.after {
  background: rgba(30, 64, 175, 0.42);
  border-color: rgba(147, 197, 253, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.section-band-dark .compare-card.after h3 { color: #f8fafc; }
.section-band-dark .compare-card.after li { color: #e2e8f0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary2);
  margin-bottom: 8px;
}
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feature {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px;
  cursor: default;
  box-shadow: var(--elevation-1);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature:hover {
  border-color: #93c5fd;
  box-shadow: var(--elevation-2);
  transform: translateY(-2px);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #eff6ff; color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.feature h3 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: 0.88rem; color: var(--muted); }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.shot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
  transition: box-shadow 0.2s;
}
.shot:hover { box-shadow: var(--shadow); }
.shot-preview { padding: 16px; background: var(--bg2); min-height: 200px; }
.shot-cap { padding: 14px 16px; font-size: 0.88rem; color: var(--muted); border-top: 1px solid var(--border); }

/* Mini UI mocks inside shot cards */
.mock-schedule .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; margin-bottom: 6px; font-size: 0.72rem; font-weight: 600;
}
.mock-workflow .bar {
  height: 8px; background: #e2e8f0; border-radius: 4px; margin: 12px 0;
  position: relative;
}
.mock-workflow .bar-fill {
  position: absolute; left: 0; top: 0; height: 100%; width: 72%;
  background: linear-gradient(90deg, var(--primary2), var(--teal));
  border-radius: 4px;
}
.mock-workflow .steps {
  display: flex; justify-content: space-between; font-size: 0.62rem; color: var(--muted);
}
.mock-ai {
  display: grid; grid-template-columns: 1fr 90px; gap: 8px; min-height: 160px;
}
.mock-ai .main { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 10px; }
.mock-ai .side {
  background: #f0fdfa; border: 1px solid #99f6e4; border-radius: 8px; padding: 8px;
  font-size: 0.62rem; color: #0f766e;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.download-card h3 { margin-bottom: 8px; }
.download-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }
.download-card ul { font-size: 0.85rem; color: var(--muted); padding-left: 18px; margin-bottom: 16px; }

.steps { display: grid; gap: 12px; max-width: 720px; margin: 0 auto; }
.step {
  display: flex; gap: 14px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: #dbeafe; color: var(--primary);
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.step h4 { font-size: 0.95rem; margin-bottom: 4px; }
.step p { font-size: 0.85rem; color: var(--muted); }

footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-light);
  font-size: 0.78rem;
}
footer p + p { margin-top: 8px; }
footer a { color: var(--muted); text-decoration: underline; }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: -24px auto 48px;
  max-width: 960px;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}
.trust-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--elevation-2);
  backdrop-filter: blur(12px);
}
.trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.trust-card-data strong { color: #1e40af; }
.trust-card-ai strong {
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-card span { font-size: 0.75rem; color: var(--muted); }

/* Logo cloud */
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.logo-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--elevation-1);
}

/* Before / After */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.compare-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--elevation-1);
}
.compare-card.before {
  background: #f1f5f9;
}
.compare-card.before h3 { color: var(--muted); }
.compare-card.before li { color: var(--muted-light); }
.compare-card.after {
  background: linear-gradient(145deg, #fff, #eff6ff);
  border-color: #93c5fd;
  box-shadow: var(--elevation-2);
}
.compare-card h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.compare-card li svg { flex-shrink: 0; margin-top: 2px; }

/* Pipeline */
.pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 8px;
}
.pipe-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.pipe-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary2), var(--teal));
  z-index: 1;
}
.pipe-icon {
  width: 44px; height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border: 1px solid #93c5fd;
  display: grid;
  place-items: center;
  color: var(--primary);
  box-shadow: var(--elevation-1);
}
.pipe-step span { font-size: 0.78rem; font-weight: 600; color: var(--text); display: block; }
.pipe-step small { font-size: 0.68rem; color: var(--muted-light); margin-top: 4px; display: block; }

/* Quote / social proof */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--elevation-1);
  position: relative;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 8px; left: 16px;
  font-size: 3rem;
  line-height: 1;
  color: #dbeafe;
  font-family: Georgia, serif;
}
.quote-card p {
  font-size: 0.92rem;
  color: var(--muted);
  padding-top: 16px;
  margin-bottom: 14px;
  font-style: italic;
}
.quote-meta { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.quote-role { font-size: 0.72rem; color: var(--muted-light); font-weight: 400; }

/* Bottom CTA — outside main; needs explicit top gap from content above */
section.cta-band {
  padding: 40px 32px;
}
.cta-band {
  margin-top: 72px;
  margin-bottom: 56px;
  margin-inline: auto;
  max-width: 1080px;
  width: calc(100% - 48px);
  padding: 40px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 50%, var(--teal) 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--elevation-4);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 45%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 10px;
  position: relative;
}
.cta-band p {
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 0.95rem;
  position: relative;
}
.cta-band .btn {
  position: relative;
  background: #fff;
  color: var(--primary);
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-band .btn:hover { background: #f8fafc; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-dual { grid-template-columns: 1fr; max-width: none; }
  .hero-position { gap: 8px 10px; }
  .pos-sep { width: 32px; height: 32px; font-size: 1.1rem; }
  .preview-shell { min-height: 320px; transform: none; }
  .preview-stage:hover .preview-shell { transform: none; }
  .preview-float-c { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .nav-links .btn-ghost { display: none; }
  .nav-inner { padding: 0 16px; }
  .section { padding-left: 16px; padding-right: 16px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .trust-strip { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .feature, .shot, .preview-shell { transition: none; }
  .blob { animation: none; }
}
