/* ============================================================
   REGISTRATION — Immersive 2026 Design
   Mobile: full-screen steps
   Desktop: 45/55 split layout
   ============================================================ */

/* ── REGISTER SHELL ─────────────────────────── */
#register-shell {
  position: fixed;
  inset: 0;
  background: #0A0A0F;
  z-index: 600;
  display: none;
  overflow: hidden;
}
#register-shell.active { display: flex; flex-direction: column; }

/* ── DESKTOP: Split layout ──────────────────── */
@media (min-width: 768px) {
  #register-shell.active { flex-direction: row; }

  .reg-left-panel {
    width: 45%;
    height: 100vh;
    background: linear-gradient(160deg, #0f0a14 0%, #1a0a12 50%, #0A0A0F 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    border-right: 0.5px solid rgba(240,192,0,0.15);
    flex-shrink: 0;
  }

  .reg-left-panel::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,192,0,0.12) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: regPulseGlow 4s ease-in-out infinite;
  }

  .reg-left-panel::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,192,0,0.08) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: regPulseGlow 4s ease-in-out infinite 2s;
  }

  .reg-right-panel {
    width: 55%;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 48px;
    background: #0d0d15;
  }
}

@keyframes regPulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* ── Left panel (hidden on mobile) ──────────── */
/* Mobile: hide left panel, right panel fills screen */
.reg-left-panel { display: none; }

.reg-right-panel {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

@media (min-width: 768px) { .reg-left-panel { display: flex; } }

.reg-left-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.reg-left-logo-heart {
  width: 48px;
  height: 48px;
  background: rgba(240,192,0,0.15);
  border: 1px solid rgba(240,192,0,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: regHeartbeat 2s ease-in-out infinite;
}

@keyframes regHeartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.08); }
  70% { transform: scale(1); }
}

.reg-left-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
}

.reg-left-step-content { position: relative; z-index: 1; }

.reg-left-step-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 16px;
}

.reg-left-step-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.reg-left-step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 320px;
}

.reg-left-benefits {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.reg-left-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.reg-left-benefit-icon {
  width: 32px;
  height: 32px;
  background: rgba(240,192,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Particles ──────────────────────────────── */
.reg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reg-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(240,192,0,0.4);
  border-radius: 50%;
  animation: regFloatParticle linear infinite;
}

@keyframes regFloatParticle {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}

/* ── Progress bar ───────────────────────────── */
.reg-progress-wrap {
  padding: 0 24px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .reg-progress-wrap { padding: 0; margin-bottom: 32px; }
}

.reg-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 20px;
}

.reg-progress-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reg-progress-step {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--red-primary);
}

.reg-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}

.reg-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #b89700, #f0c000, #d4a600);
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.reg-progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f0c000;
  border-radius: 50%;
  box-shadow: 0 0 8px #f0c000;
}

/* ── Step container ─────────────────────────── */
.reg-step {
  display: none;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 120px;
  overflow-y: auto;
}

.reg-step.active { display: flex; }

@media (min-width: 768px) {
  .reg-step { padding: 0 0 40px; overflow: visible; }
}

/* ── Mobile step header ─────────────────────── */
.reg-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 768px) { .reg-step-header { display: none; } }

.reg-back-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.reg-back-btn:active { transform: scale(0.92); }

.reg-step-title-mobile {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: white;
}

/* Desktop step title (hidden on mobile) */
.reg-step-title-desktop { display: none; }

@media (min-width: 768px) {
  .reg-step-title-desktop {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
  }

  .reg-step-subtitle-desktop {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 32px;
    line-height: 1.6;
  }
}

/* ── Step content titles ────────────────────── */
.reg-step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.reg-step-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .reg-step-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}

/* ── Type selection cards ───────────────────── */
.reg-type-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .reg-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
}

.reg-type-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.reg-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(240,192,0,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.reg-type-card:hover { border-color: rgba(240,192,0,0.3); transform: translateY(-2px); }
.reg-type-card:hover::before { opacity: 1; }

.reg-type-card.selected {
  border-color: var(--red-primary);
  background: rgba(240,192,0,0.08);
  box-shadow: 0 0 0 1px rgba(240,192,0,0.3), 0 8px 32px rgba(240,192,0,0.15);
  transform: translateY(-2px);
}

.reg-type-card.selected::before { opacity: 1; }

.reg-type-card.disabled { opacity: 0.4; cursor: not-allowed; }
.reg-type-card.disabled:hover { transform: none; border-color: rgba(255,255,255,0.08); }

.reg-type-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.reg-type-icon { font-size: 28px; margin-bottom: 12px; }

.reg-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(240,192,0,0.2);
  color: var(--red-accent);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.reg-type-badge.info {
  background: var(--info-bg);
  color: var(--info);
}

.reg-type-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.reg-type-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.reg-type-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-top: 6px;
}

.reg-type-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
  font-size: 12px;
}

.reg-type-card.selected .reg-type-check { opacity: 1; transform: scale(1); }

/* ── Form fields ────────────────────────────── */
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.reg-field-label .required { color: var(--red-accent); }

.reg-field-input,
.reg-field-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: white;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s;
  appearance: none;
}

.reg-field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A9A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color-scheme: dark;
}

.reg-field-select option {
  background: #1C1C26;
  color: white;
  padding: 8px;
}

.reg-field-input:focus,
.reg-field-select:focus {
  border-color: var(--red-primary);
  background: rgba(240,192,0,0.05);
  box-shadow: 0 0 0 3px rgba(240,192,0,0.1);
}

.reg-field-input::placeholder { color: rgba(255,255,255,0.25); }

.reg-field-input:-webkit-autofill,
.reg-field-input:-webkit-autofill:hover,
.reg-field-input:-webkit-autofill:focus,
.reg-field-input:-webkit-autofill:active,
.reg-input:-webkit-autofill,
.reg-input:-webkit-autofill:hover,
.reg-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #1C1C26 inset !important;
  -webkit-text-fill-color: white !important;
  caret-color: white;
  border-color: rgba(255,255,255,0.1) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.reg-field-input.error {
  border-color: var(--red-accent);
}

.reg-field-error {
  font-size: 12px;
  color: var(--red-accent);
  min-height: 0;
}

.reg-cedula-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
}

.reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reg-password-strength {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 4px;
  overflow: hidden;
}

.reg-password-strength-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}

.reg-password-strength-text {
  font-size: 11px;
  margin-top: 2px;
  font-weight: 600;
}

.reg-form-group { margin-bottom: 0; }

.reg-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.reg-label .required { color: var(--red-accent); }

.reg-input, .reg-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: white;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.reg-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A9A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.reg-input:focus, .reg-select:focus {
  border-color: var(--red-primary);
  background: rgba(240,192,0,0.05);
  box-shadow: 0 0 0 3px rgba(240,192,0,0.1);
}

.reg-input::placeholder { color: rgba(255,255,255,0.25); }

.reg-input.error {
  border-color: var(--red-accent);
  animation: regShake 0.4s ease;
}

.reg-error-msg {
  font-size: 12px;
  color: var(--red-accent);
  margin-top: 6px;
  display: none;
}

.reg-error-msg.show { display: block; }

@keyframes regShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reg-cedula-row { display: grid; grid-template-columns: 80px 1fr; gap: 10px; }

/* Password strength */
.reg-password-wrap { position: relative; }

.reg-password-toggle {
  position: absolute;
  right: 14px;
  top: 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 4px;
}

.reg-strength-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  margin-top: 8px;
  overflow: hidden;
}

.reg-strength-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.3s, background 0.3s;
}

.reg-strength-label {
  font-size: 11px;
  margin-top: 4px;
  font-weight: 600;
}

/* ── Upload zones ───────────────────────────── */
.reg-upload-zone {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.reg-upload-zone:hover, .reg-upload-zone.dragover {
  border-color: var(--red-primary);
  background: rgba(240,192,0,0.04);
}

.reg-upload-zone.uploaded {
  border-color: var(--success);
  border-style: solid;
  background: rgba(34,197,94,0.04);
}

.reg-upload-zone.empty .reg-upload-icon {
  animation: regHeartbeat 2s ease-in-out infinite;
}

.reg-upload-icon { font-size: 32px; margin-bottom: 10px; }
.reg-upload-label { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
.reg-upload-hint { font-size: 12px; color: rgba(255,255,255,0.35); }

.reg-upload-progress {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  margin-top: 12px;
  overflow: hidden;
  display: none;
}

.reg-upload-progress.show { display: block; }

.reg-upload-progress-bar {
  height: 100%;
  background: var(--red-primary);
  border-radius: 99px;
  width: 0;
  transition: width 0.3s;
}

.reg-upload-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.reg-upload-zone.uploaded .reg-upload-check { display: flex; }

/* ── Document item wrappers ─────────────────── */
.reg-doc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reg-doc-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
}

.reg-doc-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.reg-doc-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.reg-doc-item-status {
  font-size: 0.75rem;
  font-weight: 600;
}

.reg-doc-item-status.pending { color: var(--text-muted); }
.reg-doc-item-status.done { color: var(--success); }

.reg-doc-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.reg-docs-counter {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 16px 0;
}

.reg-docs-counter span { color: var(--red-accent); font-weight: 700; }

/* ── Payment section ────────────────────────── */
.reg-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.reg-payment-method {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.reg-payment-method:hover { border-color: rgba(240,192,0,0.3); }

.reg-payment-method.selected {
  border-color: var(--red-primary);
  background: rgba(240,192,0,0.08);
  box-shadow: 0 0 0 1px rgba(240,192,0,0.2);
}

.reg-payment-method-icon { font-size: 24px; margin-bottom: 8px; }
.reg-payment-method-name { font-size: 13px; font-weight: 600; color: white; }
.reg-payment-method-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

.reg-payment-details {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  display: none;
}

.reg-payment-details.show { display: block; }

.reg-payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 14px;
}

.reg-payment-detail-row:last-child { border-bottom: none; }
.reg-payment-detail-label { color: rgba(255,255,255,0.4); }
.reg-payment-detail-value { color: white; font-weight: 600; text-align: right; }

/* ── Footer / CTA area ──────────────────────── */
#reg-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, #0A0A0F 70%, transparent);
  z-index: 10;
}

@media (min-width: 768px) {
  #reg-footer {
    position: static;
    padding: 0;
    background: none;
    margin-top: 24px;
  }
}

#reg-footer:empty {
  display: none;
}

/* ── CTA button ─────────────────────────────── */
.reg-cta-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, #0A0A0F 60%, transparent);
  z-index: 10;
}

@media (min-width: 768px) {
  .reg-cta-wrap {
    position: static;
    padding: 0;
    background: none;
    margin-top: 32px;
  }
}

.reg-cta-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #b89700, #f0c000);
  color: #131312;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.reg-cta-btn:hover { box-shadow: 0 4px 24px rgba(240,192,0,0.3); }
.reg-cta-btn:active { transform: scale(0.98); }
.reg-cta-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* ── Success screen ─────────────────────────── */
.reg-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 40px 24px;
  text-align: center;
}

.reg-success.active { display: flex; }

.reg-success-check {
  width: 80px;
  height: 80px;
  background: rgba(34,197,94,0.15);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
}

.reg-success-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.reg-success-msg {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto 32px;
}

/* ── Process tracker ─────────────────────────── */
.reg-success-tracker {
  width: 100%;
  max-width: 320px;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reg-tracker-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-left: 2px solid rgba(255,255,255,0.08);
  margin-left: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}

.reg-tracker-step.done {
  border-left-color: #22C55E;
  color: #22C55E;
}

.reg-tracker-step.active {
  border-left-color: #F59E0B;
  color: #F59E0B;
}

.reg-tracker-step:first-child { padding-top: 0; }
.reg-tracker-step:last-child { padding-bottom: 0; }

.reg-tracker-icon {
  flex-shrink: 0;
  font-size: 16px;
}

.reg-tracker-text {
  font-weight: 500;
}

.reg-success-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 360px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ── Welcome screen overrides ───────────────── */
#welcome-screen .welcome-heart {
  font-size: 64px;
  animation: regHeartbeat 2s ease-in-out infinite;
  display: block;
  margin-bottom: 16px;
}
