.setup-page main {
  padding-bottom: 80px;
}

.setup-hero {
  padding: 70px 0 36px;
  text-align: center;
}

.setup-hero .eyebrow {
  display: inline-block;
  margin-bottom: 8px;
}

.setup-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 4vw, 48px);
}

.setup-hero .hero-subtitle {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}

.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}

.step-card {
  position: relative;
  padding: 22px;
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.24), 0 0 0 1px rgba(0, 229, 255, 0.08);
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 24% 20%, rgba(0, 229, 255, 0.14), transparent 42%), radial-gradient(circle at 76% 10%, rgba(29, 233, 182, 0.12), transparent 44%);
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(0, 200, 83, 0.24));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 229, 255, 0.22);
}

.step-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-number {
  color: var(--mint);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
}

.step-title {
  margin: 0;
  font-size: 20px;
}

.step-card p {
  margin: 0 0 10px;
  color: var(--text);
}

.step-card ul {
  margin: 8px 0 4px 20px;
  color: var(--text);
  padding-left: 16px;
}

.step-card li {
  margin-bottom: 4px;
}

.step-note {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 14px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;
}

.back-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.back-link:hover {
  color: var(--mint);
}

@media (max-width: 720px) {
  .setup-hero {
    padding: 60px 0 28px;
  }

  .setup-hero .hero-subtitle {
    font-size: 17px;
  }

  .step-card {
    padding: 18px;
  }
}

