/* ═══════════════════════════════════════════════
   Lume Landing — "Aurora" redesign
   Premium dark SaaS aesthetic
   ═══════════════════════════════════════════════ */

/* ─── Aurora background ─── */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--surface-0);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
  animation: aurora-drift 20s ease-in-out infinite alternate;
}

.aurora-blob--1 {
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.15);
  top: -10%;
  left: 20%;
  animation-delay: 0s;
}

.aurora-blob--2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.12);
  top: 10%;
  right: 10%;
  animation-delay: -5s;
  animation-duration: 25s;
}

.aurora-blob--3 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.1);
  bottom: 20%;
  left: 10%;
  animation-delay: -10s;
  animation-duration: 22s;
}

@keyframes aurora-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.95); }
  100% { transform: translate(30px, -60px) scale(1.05); }
}

/* ─── Hero V3 ─── */

.hero-v3 {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

/* Above-fold hero content appears instantly — no reveal delay */
.hero-v3 .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Only mockup gets the smooth entrance */
.hero-v3-mockup.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-v3-mockup.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-v3-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-full);
  color: var(--c-brand-400);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.hero-v3-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green-400);
  box-shadow: 0 0 8px var(--c-green-400);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-v3-title {
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 900;
  color: var(--text-1);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero-v3-title .gradient-text {
  background: linear-gradient(135deg, #818cf8, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v3-subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-v3-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-v3-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.proof-stars {
  display: flex;
  gap: 2px;
}

.proof-text {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}

.hero-v3-ph {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.hero-v3-ph a {
  transition: opacity 0.2s;
}
.hero-v3-ph a:hover {
  opacity: 0.85;
}

.btn-glow {
  position: relative;
  background: linear-gradient(135deg, var(--c-brand-500), var(--c-accent-500));
  color: #fff;
  box-shadow:
    0 2px 8px rgba(99, 102, 241, 0.3),
    0 0 40px rgba(99, 102, 241, 0.15);
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(99, 102, 241, 0.4),
    0 0 60px rgba(99, 102, 241, 0.2);
}

.btn-glow:hover::before {
  transform: translateX(100%);
}

/* ─── Extension mockup in hero ─── */

.hero-v3-mockup {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  perspective: 1200px;
}

.mockup-window {
  background: var(--surface-2);
  border: 1px solid var(--border-lit);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 64px -16px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border-dim),
    0 0 80px rgba(99, 102, 241, 0.08);
  transform: rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mockup-window:hover {
  transform: rotateX(0deg) translateY(-4px);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-dim);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface-3);
}

.mockup-dot--red { background: #ff5f57; }
.mockup-dot--yellow { background: #febc2e; }
.mockup-dot--green { background: #28c840; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  background: var(--surface-0);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
}

.mockup-body {
  position: relative;
  padding: 20px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.mockup-body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ─── Mock product card inside hero ─── */

.mockup-body {
  flex-direction: column;
  align-items: center;
}

.mock-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

.mock-step {
  opacity: 0;
  transform: translateY(10px);
}
.mock-step-1 { animation: mock-s1 7s ease infinite; }
.mock-step-2 { animation: mock-s2 7s ease infinite; }
.mock-step-3 { animation: mock-s3 7s ease infinite; }
.mock-step-4 { animation: mock-s4 7s ease infinite; }

@keyframes mock-s1 {
  0%,2%   { opacity:0; transform:translateY(10px); }
  5%,85%  { opacity:1; transform:translateY(0); }
  92%,100%{ opacity:0; transform:translateY(0); }
}
@keyframes mock-s2 {
  0%,12%  { opacity:0; transform:translateY(10px); }
  16%,85% { opacity:1; transform:translateY(0); }
  92%,100%{ opacity:0; transform:translateY(0); }
}
@keyframes mock-s3 {
  0%,28%  { opacity:0; transform:translateY(10px); }
  32%,85% { opacity:1; transform:translateY(0); }
  92%,100%{ opacity:0; transform:translateY(0); }
}
@keyframes mock-s4 {
  0%,44%  { opacity:0; transform:translateY(10px); }
  48%,85% { opacity:1; transform:translateY(0); }
  92%,100%{ opacity:0; transform:translateY(0); }
}

.mock-product {
  display: flex;
  gap: 16px;
  background: var(--surface-1);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 480px;
}
.mock-product-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.mock-product-store {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4ade80;
  margin-bottom: 2px;
}
.mock-product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}
.mock-product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-1);
}
.mock-product-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.mock-product-avail {
  font-size: 11px;
  color: #4ade80;
  margin: 2px 0 8px;
}
.mock-product-btn {
  display: inline-block;
  padding: 6px 20px;
  background: #4ade80;
  color: #0a0a0f;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

.mock-lume-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 12px;
  background: rgba(14, 14, 20, 0.95);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.15);
  white-space: nowrap;
}
.mock-lume-pill img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.mock-pill-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-1);
  flex-shrink: 0;
}
.mock-pill-badge {
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  padding: 2px 6px;
  border-radius: 20px;
  flex-shrink: 0;
}
.mock-pill-hint {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-brand-400);
  flex-shrink: 0;
}

.mock-caption {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-align: center;
}

.mock-compare {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  width: 100%;
  max-width: 380px;
}
.mock-compare-btn {
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  color: var(--c-brand-400);
  font-size: 13px;
  font-weight: 600;
  cursor: default;
}
.mock-alts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.mock-alt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--surface-1);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  font-size: 13px;
}
.mock-alt-store {
  color: var(--text-2);
  font-weight: 500;
  min-width: 60px;
}
.mock-alt-price {
  color: var(--text-1);
  font-weight: 700;
  margin-left: auto;
}
.mock-alt-cheaper {
  color: #4ade80;
}
.mock-alt-badge {
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  padding: 2px 6px;
  border-radius: 10px;
}

.mock-help {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-3);
}
.mock-help a {
  color: var(--c-brand-400);
  font-weight: 600;
  text-decoration: none;
  cursor: default;
}

/* ─── Stats section ─── */

.stats-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  background: rgba(14, 14, 20, 0.6);
  backdrop-filter: blur(12px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border-dim);
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-1), var(--c-brand-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Marquee store bar ─── */

.marquee-section {
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-0), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface-0), transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.marquee-item:hover {
  color: var(--text-2);
}

.marquee-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--border-lit);
  flex-shrink: 0;
}

/* ─── Bento feature grid ─── */

.bento-section {
  padding: 80px 0;
}

.bento-header {
  text-align: center;
  margin-bottom: 64px;
}

.bento-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-brand-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.bento-overline::before,
.bento-overline::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-brand-400);
  opacity: 0.4;
}

.bento-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s,
    box-shadow 0.4s;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(99, 102, 241, 0.2) 60%, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(99, 102, 241, 0.06);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-card--tall {
  grid-row: span 2;
}

.bento-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.bento-card-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.bento-card-icon--warning {
  background: rgba(251, 191, 36, 0.08);
  color: var(--c-amber-400);
}

.bento-card-icon--compare {
  background: rgba(96, 165, 250, 0.08);
  color: var(--c-blue-400);
}

.bento-card-icon--bell {
  background: rgba(74, 222, 128, 0.08);
  color: var(--c-green-400);
}

.bento-card-icon--shield {
  background: rgba(168, 85, 247, 0.08);
  color: var(--c-purple-500);
}

.bento-card-icon--globe {
  background: rgba(99, 102, 241, 0.08);
  color: var(--c-brand-400);
}

.bento-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bento-card-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-brand-400);
  transition: gap 0.2s, color 0.2s;
}

.bento-card-link:hover {
  gap: 10px;
  color: var(--c-brand-300, #a5b4fc);
}

.bento-card-link svg {
  width: 16px;
  height: 16px;
}

.bento-card-visual {
  margin-top: 24px;
  height: 140px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fake chart visual */
.fake-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  padding: 0 20px;
}

.fake-chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--c-brand-400), rgba(99, 102, 241, 0.2));
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 6px;
}

/* Fake price comparison visual */
.fake-compare {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  width: 100%;
}

.fake-compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.fake-compare-store {
  width: 80px;
  color: var(--text-3);
  font-weight: 500;
}

.fake-compare-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--surface-3);
  overflow: hidden;
}

.fake-compare-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fake-compare-fill--1 { background: var(--c-green-400); width: 60%; }
.fake-compare-fill--2 { background: var(--c-brand-400); width: 78%; }
.fake-compare-fill--3 { background: var(--c-amber-400); width: 92%; }

.fake-compare-price {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-2);
  min-width: 60px;
  text-align: right;
}

.fake-compare-price--best {
  color: var(--c-green-400);
}

/* ─── How it works V3 ─── */

.how-section {
  padding: 80px 0;
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--border-dim),
    var(--c-brand-400) 20%,
    var(--c-brand-400) 80%,
    var(--border-dim)
  );
  opacity: 0.3;
}

.how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.how-step-num {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--c-brand-400);
  background: var(--surface-1);
  border: 2px solid var(--border-lit);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-step:hover .how-step-num {
  border-color: var(--c-brand-400);
  box-shadow:
    0 0 32px rgba(99, 102, 241, 0.2),
    inset 0 0 16px rgba(99, 102, 241, 0.05);
  transform: scale(1.05);
}

.how-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.how-step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── FAQ V3 ─── */

.faq-section {
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-v3-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-v3-item {
  background: var(--surface-1);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-v3-item:hover {
  border-color: var(--border-lit);
}

.faq-v3-item[open] {
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-v3-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  user-select: none;
  list-style: none;
}

.faq-v3-q::-webkit-details-marker { display: none; }

.faq-v3-q::after {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b8b9e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s, background 0.3s;
}

.faq-v3-item[open] .faq-v3-q::after {
  transform: rotate(45deg);
  background-color: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
}

.faq-v3-a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── CTA V3 ─── */

.cta-v3 {
  padding: 40px 0 80px;
}

.cta-v3-card {
  position: relative;
  padding: 80px 48px;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-dim);
}

.cta-v3-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-v3-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), transparent 40%, transparent 60%, rgba(139, 92, 246, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-v3-content {
  position: relative;
  z-index: 1;
}

.cta-v3-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-v3-subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-v3-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Scroll reveal ─── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--wide {
    grid-column: span 2;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-v3 {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-v3-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-v3-mockup {
    margin-top: -20px;
  }

  .mockup-body {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 28px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--wide {
    grid-column: span 1;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-steps::before {
    display: none;
  }

  .how-step-num {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .cta-v3-card {
    padding: 48px 24px;
  }

  .marquee-section::before,
  .marquee-section::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .hero-v3-title {
    font-size: 40px;
  }
  .bento-card {
    padding: 28px;
  }
}
