.onboarding-card { max-width: 480px; gap: 16px; }
.subtitle { color: #aaa; font-size: 14px; margin: -8px 0 4px; padding: 15px 0;}
.field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.field label { font-size: 13px; color: #aaa; }
.input.full { width: 100%; box-sizing: border-box; }
.full-button { width: 100%; justify-content: center; margin-top: 8px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.step-indicator { display: flex; gap: 6px; margin-top: 8px; }
.step { height: 4px; width: 24px; border-radius: 2px; background: #444; transition: background 0.3s; }
.step.active { background: #ff00ff; }
.step.done { background: #aa00aa; }
.gender-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; width: 100%; }
.gender-option {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid transparent;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    color: white;
}
.gender-option:hover { background: rgba(255,0,255,0.08); }
.gender-option.selected { border-color: #ff00ff; background: rgba(255,0,255,0.12); }
.option-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; width: 100%; }
.option-grid.two-col-grid { grid-template-columns: 1fr 1fr; }
.option-card {
    padding: 16px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid transparent;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.8;
    transition: all 0.2s;
    color: white;
}
.option-card.small { padding: 12px 8px; font-size: 12px; }
.option-card:hover { background: rgba(255,0,255,0.08); }
.option-card.selected { border-color: #ff00ff; background: rgba(255,0,255,0.12); }

/* Sliders */
.slider-group { display: flex; flex-direction: column; gap: 18px; width: 100%; }
.slider-row { display: flex; flex-direction: column; gap: 6px; }
.slider-label { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #ccc; }
.slider-value { font-size: 16px; font-weight: 600; color: #ff00ff; min-width: 20px; text-align: right; }
.slider-ends { display: flex; justify-content: space-between; font-size: 11px; color: #666; }
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, #ff00ff 50%, #333 50%);
    outline: none;
    cursor: pointer;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff00ff;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255,0,255,0.5);
}
