/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 22vw, 340px);
  line-height: 1;
  color: rgba(245,240,232,0.03);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(72px, 10vw, 152px);
  line-height: 0.92;
  max-width: 900px;
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--acid); }
.hero-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Ticker ────────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  background: rgba(255,255,255,0.02);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 12px;
  color: var(--muted);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.ticker-item .ticker-name { color: var(--cream); font-weight: 500; }
.ticker-item .ticker-price { color: var(--acid); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stats bar ─────────────────────────────────────────────────── */
.stats-bar {
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-bar .container { display: flex; justify-content: space-around; gap: 32px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--acid);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── How it works ──────────────────────────────────────────────── */
.how-section { padding: 96px 40px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.how-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.how-card:last-child { border-right: none; }
.how-card:hover { background: rgba(200,240,0,0.03); }
.how-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(200,240,0,0.15);
  margin-bottom: 16px;
}
.how-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 12px;
}
.how-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.how-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acid);
  transition: gap 0.2s;
}
.how-link:hover { gap: 12px; }

/* ── Cheapest models ────────────────────────────────────────────── */
.cheapest-section { padding: 0 40px 96px; }
.cheapest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.model-card {
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.model-card:hover { border-color: rgba(200,240,0,0.4); transform: translateY(-4px); }
.model-card-provider {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.model-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
}
.model-card-price {
  font-size: 28px;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--acid);
  margin-bottom: 4px;
}
.model-card-price-label { font-size: 10px; color: var(--muted); margin-bottom: 20px; }
.model-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── CTA banner ─────────────────────────────────────────────────── */
.cta-banner {
  margin: 0 40px 80px;
  border: 1px solid var(--border);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(200,240,0,0.04) 0%, transparent 60%);
}
.cta-banner h2 { font-size: clamp(28px, 3vw, 48px); max-width: 480px; }
.cta-banner .cta-sub { font-size: 12px; color: var(--muted); margin-top: 8px; }

@media (max-width: 1024px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-card { border-right: none; border-bottom: 1px solid var(--border); }
  .how-card:last-child { border-bottom: none; }
  .cheapest-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 0 20px 60px; }
  .stats-bar .container { flex-direction: column; align-items: center; gap: 32px; }
  .how-section { padding: 60px 20px; }
  .cheapest-section { padding: 0 20px 60px; }
  .cta-banner { margin: 0 20px 60px; padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .stats-bar { padding: 40px 20px; }
}
