.s-how .l-base {
  position: absolute;
  inset: 0;
  background: hsl(222 22% 7%);
}

.s-how .l-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 56px 56px;
}

.s-how .l-streak {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--primary) / 0.2), transparent);
  display: none;
}

.s-how .l-bloom1 {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.06);
  filter: blur(160px);
  pointer-events: none;
}

.s-how .l-bloom2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 400px;
  height: 300px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.025);
  filter: blur(100px);
  pointer-events: none;
}

.s-how .l-topfade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, hsl(222 24% 5%), transparent);
}

.s-how .l-botfade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, hsl(222 24% 5%), transparent);
}

.center-head {
  text-align: center;
  margin-bottom: 4rem;
}

.center-head h2 {
  margin-top: 0.75rem;
}

.center-head p {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin-inline: auto;
}

.s-payment .center-head {
  margin-bottom: 3.5rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.how-card {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.how-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.how-card .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.03), transparent);
}

.how-card .arrow {
  position: absolute;
  top: 50%;
  right: -0.75rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
  z-index: 10;
}

.how-card .ord {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
}

.how-card .body {
  position: relative;
}

.how-card .step {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 11px;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.how-card .ic {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.how-card .ic .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--foreground) / 0.8);
}

.how-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.how-card p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

@media (min-width: 640px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .s-how .l-streak {
    display: block;
  }
  .how-card .arrow {
    display: block;
  }
}

