/* ── Splash page styles ──────────────────────────────────────────────────── */

/* Hero section */
.hero {
  text-align: center;
  padding: 2rem 1rem 1rem;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #ffb300, #ff8f00, #e65100);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .tagline {
  font-size: 1.25rem;
  color: var(--md-default-fg-color--light);
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}
.hero .badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero .badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--md-default-fg-color--lightest);
}
.hero .badges .badge--version {
  background: rgba(103, 58, 183, 0.15);
  border-color: rgba(103, 58, 183, 0.4);
  color: #ce93d8;
}
.hero .badges .badge--speed {
  background: rgba(255, 179, 0, 0.12);
  border-color: rgba(255, 179, 0, 0.4);
  color: #ffb300;
}
.hero .badges .badge--beta {
  background: rgba(255, 87, 34, 0.12);
  border-color: rgba(255, 87, 34, 0.4);
  color: #ff8a65;
}
.hero .cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero .cta .cta--primary {
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  color: #1a1a2e;
}
.hero .cta .cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 179, 0, 0.35);
}
.hero .cta .cta--secondary {
  border: 1px solid var(--md-default-fg-color--lightest);
  color: var(--md-default-fg-color--light);
}
.hero .cta .cta--secondary:hover {
  border-color: #ffb300;
  color: #ffb300;
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 1rem;
  margin: 1rem 0;
  border-top: 1px solid var(--md-default-fg-color--lightest);
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
}
.stats-bar .stat {
  text-align: center;
}
.stats-bar .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffb300;
  line-height: 1;
}
.stats-bar .stat-label {
  font-size: 0.8rem;
  color: var(--md-default-fg-color--light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Comparison table */
.comparison-table table {
  width: 100%;
  font-size: 0.85rem;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}
.comparison-table td:nth-child(2) {
  color: #ffb300;
  font-weight: 700;
}

/* Beta notice */
.beta-notice {
  border-left: 4px solid #ff8a65;
  background: rgba(255, 87, 34, 0.06);
  padding: 1rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
}
.beta-notice strong {
  color: #ff8a65;
}

/* Section headers */
.splash-section {
  margin-top: 2.5rem;
}
.splash-section h2 {
  border-bottom: 2px solid var(--md-default-fg-color--lightest);
  padding-bottom: 0.4rem;
}
