:root {
  color-scheme: dark;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  min-width: 320px;
}

::selection {
  background: #d7b46a;
  color: #020617;
}

/* Hero glow */
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(215, 180, 106, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Step cards */
.step-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.step-card:hover {
  border-color: rgba(215, 180, 106, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.15);
  border: 1px solid rgba(215, 180, 106, 0.35);
  color: #d7b46a;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Benefit card */
.benefit-card {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px;
}

.benefit-inner {
  background: #0f172a;
  border-radius: calc(1.5rem - 2px);
  padding: 2.5rem;
}

/* Stat boxes */
.stat-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #d7b46a;
}

/* Audience cards */
.audience-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.audience-card:hover {
  border-color: rgba(215, 180, 106, 0.25);
}

.audience-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* CTA card */
.cta-card {
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
  border: 1px solid rgba(215, 180, 106, 0.2);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}

/* Language toggle */
.language-button {
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.55rem 0.7rem;
  transition: background 180ms ease, color 180ms ease;
}

.language-button.active {
  background: #ffffff;
  color: #020617;
}

/* Signal colour used in hover */
.hover\:bg-signal:hover {
  background-color: #d7b46a;
}

@media (max-width: 640px) {
  .benefit-inner {
    padding: 1.75rem 1.25rem;
  }

  .cta-card {
    padding: 2rem 1.25rem;
  }
}
