/* Codnixy — steps: 3-step process with giant ghost numerals */

.step-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  height: 360px;
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(120% 110% at 80% 0%, rgba(58, 92, 255, 0.85), rgba(10, 18, 50, 0.95) 70%),
    #0a1232;
  border: 1px solid rgba(120, 150, 255, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.step .num {
  position: absolute;
  right: 18px;
  top: 30%;
  font-size: 280px;
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.05) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}
.step .icon {
  position: absolute;
  top: 28px;
  left: 30px;
  width: 38px;
  height: 38px;
  color: rgba(255,255,255,0.85);
}
.step h4 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.55;
  max-width: 32ch;
}
