.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, var(--brand-1), rgba(0, 224, 122, 0.1));
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
}

.step-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-2);
    border: 2px solid var(--brand-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--brand-1);
    position: relative;
    z-index: 1;
}

.step-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    padding-top: 0.5rem;
}

.step-body p {
    font-size: 0.92rem;
}

.waitlist-glow {
    position: absolute; width: 400px; height: 300px;
    background: radial-gradient(ellipse, rgba(0,224,122,0.07) 0%, transparent 70%);
    top: 0; right: -100px; pointer-events: none;
}
