:root {
  --bg-1: #020204;
  --bg-2: #0b0c12;
  --card: #14151d;
  --line: #ff1c1c;
  --text: #f6f7fb;
  --muted: #a3a8b8;
  --cta: #f20f0f;
  --cta-hover: #ff3a3a;
  --glow: rgba(255, 30, 30, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 50% -50%, rgba(255, 0, 0, 0.2), transparent),
    linear-gradient(180deg, var(--bg-2), var(--bg-1) 55%);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
  z-index: -1;
}

.wrap {
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 14px 12px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 10px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ff8b8b;
  font-size: 0.62rem;
  font-weight: 700;
}

.hero h1 {
  margin: 4px 0 6px;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(1.6rem, 7vw, 2rem);
  line-height: 0.95;
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.steps {
  display: grid;
  gap: 8px;
}

.step-card {
  background: linear-gradient(180deg, #171922, #111219);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
}

.step-label {
  margin: 0;
  text-align: center;
  color: #ff1d1d;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
}

.step-card h2 {
  margin: 4px auto 8px;
  max-width: 310px;
  text-align: center;
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  line-height: 0.92;
  font-weight: 600;
}

.step-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-card-simple h2 {
  max-width: 320px;
  margin-bottom: 0;
}

.cta-wrap {
  margin-top: 10px;
}

.cta-button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, var(--cta-hover), var(--cta));
  border-radius: 10px;
  font-family: "Teko", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    0 0 30px var(--glow);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-button:active {
  transform: translateY(1px) scale(0.995);
}

.cta-button:hover {
  filter: brightness(1.05);
}

.cta-icon {
  font-size: 0.95rem;
  transform: translateY(-1px);
}

.tiny {
  margin: 5px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.66rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: revealIn 0.5s ease forwards;
}

.steps .reveal:nth-child(1) {
  animation-delay: 0.07s;
}

.steps .reveal:nth-child(2) {
  animation-delay: 0.14s;
}

.steps .reveal:nth-child(3) {
  animation-delay: 0.21s;
}

.cta-wrap.reveal {
  animation-delay: 0.28s;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 370px) {
  .step-card h2 {
    font-size: 1.22rem;
  }

  .cta-button {
    font-size: 1.4rem;
  }

  .step-card img {
    height: auto;
  }
}