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

.s-newuser .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: 52px 52px;
}

.s-newuser .l-wash {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background: radial-gradient(ellipse 80% 100% at 100% 50%, rgba(var(--glow), 0.07), transparent);
}

.s-newuser .l-blob {
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 400px;
  height: 400px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.025);
  filter: blur(120px);
  pointer-events: none;
}

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

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

.nu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.nu-left h2 {
  margin-top: 0.75rem;
  line-height: 1.25;
}

.nu-left p {
  margin-top: 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  font-size: 1rem;
}

.nu-left .btn-solid {
  margin-top: 2rem;
}

.nu-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: 2rem;
  overflow: hidden;
}

.nu-card .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(var(--glow), 0.06), transparent);
}

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

.nu-card .lead {
  font-family: var(--font-display);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.nu-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nu-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.nu-card .num {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.nu-card .num span {
  font-size: 10px;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.nu-card li > span {
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.88);
  line-height: 1.625;
  padding-top: 0.125rem;
}

.nu-card .foot {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.nu-card .foot .icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.nu-card .foot span {
  color: hsl(var(--foreground) / 0.84);
}

@media (min-width: 1024px) {
  .nu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

