/* OraxAdmin — Premium Download Wizard */
.get-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.get-hero {
  padding: calc(var(--nav-h) + 48px) 0 64px;
  position: relative;
  overflow: hidden;
}

.get-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(34, 211, 238, 0.14), transparent),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(170, 180, 192, 0.08), transparent);
  pointer-events: none;
}

.get-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  position: relative;
}

.get-head .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.get-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.get-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Steps indicator */
.wizard-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.wizard-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 70%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 120px;
  position: relative;
  z-index: 1;
}

.wizard-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  background: var(--surface-solid);
  border: 2px solid var(--border);
  color: var(--muted);
  transition: all 0.4s var(--ease);
}

.wizard-step.active .wizard-step-num,
.wizard-step.done .wizard-step-num {
  border-color: var(--accent);
  color: #041018;
  background: var(--gradient-cyan);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.wizard-step.done .wizard-step-num {
  background: var(--green);
  border-color: var(--green);
  color: #041018;
}

.wizard-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.wizard-step.active .wizard-step-label { color: var(--text); }

/* Main card */
.wizard-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.wizard-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.wizard-panel { display: none; animation: fadeUp 0.5s var(--ease); }
.wizard-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* System check grid */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(34, 211, 238, 0.1);
  flex-shrink: 0;
}

.check-item.ok .check-icon { background: rgba(52, 211, 153, 0.15); }
.check-item.warn .check-icon { background: rgba(248, 113, 113, 0.15); }

.check-item strong { display: block; font-size: 13px; }
.check-item span { font-size: 11px; color: var(--muted); }

/* Download panel */
.dl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px 0 28px;
}

.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.dl-badge.secure {
  border-color: rgba(52, 211, 153, 0.35);
  color: var(--green);
  background: rgba(52, 211, 153, 0.08);
}

.dl-btn-wrap {
  text-align: center;
  margin: 8px 0 24px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  padding: 18px 36px;
  border: none;
  border-radius: 16px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  color: #041018;
  background: var(--gradient-cyan);
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  text-decoration: none;
}

.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.45);
  color: #041018;
}

.dl-btn:disabled {
  opacity: 0.5;
  cursor: wait;
  transform: none;
}

.dl-btn .size { font-size: 12px; opacity: 0.75; font-weight: 500; }

.dl-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin: 20px 0 8px;
  display: none;
}

.dl-progress.show { display: block; }

.dl-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--gradient-cyan);
  transition: width 0.3s linear;
}

.dl-progress-bar.indeterminate {
  width: 40% !important;
  animation: indet 1.2s ease-in-out infinite;
}

@keyframes indet {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.dl-status {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  min-height: 20px;
}

/* Install steps */
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.install-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.install-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  color: #041018;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.install-step h3 { font-size: 14px; margin-bottom: 4px; }
.install-step p { font-size: 12px; color: var(--muted); margin: 0; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.wizard-nav .btn { min-width: 120px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.trust-item svg { width: 18px; height: 18px; color: var(--accent); opacity: 0.8; }

.get-footer {
  margin-top: auto;
  padding: 32px 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.get-footer a { color: var(--accent); }

@media (max-width: 600px) {
  .wizard-card { padding: 28px 20px; }
  .wizard-steps { gap: 0; }
  .wizard-step { flex: 0 0 90px; }
  .wizard-step-label { font-size: 10px; }
  .dl-btn { min-width: 100%; font-size: 15px; }
}

/* One-click download — OraxSoft logo */
.get-simple .get-oneclick {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.get-simple .get-oneclick::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(239, 68, 68, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(59, 130, 246, 0.1), transparent);
}

.get-card {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px 36px;
  box-shadow: var(--shadow), 0 0 60px rgba(59, 130, 246, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.orax-logo {
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.25));
}

.get-card h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 12px 0 6px;
}

.get-sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.get-ver {
  color: var(--accent);
  font-size: 12px;
  margin: 8px 0 24px;
}

.get-status {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 16px 0 18px;
  color: var(--text);
}

.get-status.ok { color: var(--green); }

.get-percent {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.get-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
}

.get-footer-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}

.get-footer-note a { color: var(--accent); }

.hidden { display: none !important; }

.get-card .dl-btn {
  min-width: 240px;
  margin-top: 4px;
}

/* Dual download buttons */
.dl-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.dl-hint {
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 14px;
}

.dl-hint.subtle { opacity: 0.75; margin-bottom: 0; }

.dl-btn-direct {
  background: linear-gradient(135deg, #22d3ee, #3b82f6) !important;
  min-width: 280px !important;
}

.dl-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 24px;
  margin-top: 4px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.dl-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

/* Desktop app window feel */
.get-desktop .get-card {
  max-width: 420px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.5);
}

.get-desktop.get-cinema .get-oneclick {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15, 23, 42, 0.9), #030508);
}

/* ═══════════════════════════════════════════
   CINEMA DOWNLOAD EXPERIENCE
   ═══════════════════════════════════════════ */
.get-cinema .get-oneclick::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(239, 68, 68, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(59, 130, 246, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(34, 211, 238, 0.08), transparent);
  animation: auroraShift 8s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.get-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.get-cinema .container { position: relative; z-index: 1; }

.get-cinema .get-card {
  max-width: 440px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.get-card.is-downloading {
  transform: scale(1.02);
  box-shadow: var(--shadow), 0 0 80px rgba(34, 211, 238, 0.15), 0 0 120px rgba(59, 130, 246, 0.08);
}

.get-card.is-done {
  animation: cardPop 0.6s var(--ease);
}

@keyframes cardPop {
  0% { transform: scale(0.96); opacity: 0.8; }
  60% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

/* Logo stage */
.logo-stage {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 12px;
}

.orax-logo {
  position: relative;
  z-index: 3;
  display: block;
  margin: 10px auto 0;
  filter: drop-shadow(0 8px 32px rgba(59, 130, 246, 0.35));
  transition: transform 0.5s var(--ease);
}

.logo-stage.logo-active .orax-logo {
  animation: logoFloat 3s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 8px 32px rgba(59, 130, 246, 0.35)); }
  50% { filter: drop-shadow(0 12px 48px rgba(239, 68, 68, 0.4)); }
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.logo-stage.logo-active .logo-ring { opacity: 1; }

.ring-1 {
  width: 140px; height: 140px;
  border-color: rgba(59, 130, 246, 0.3);
  animation: ringSpin 4s linear infinite;
}

.ring-2 {
  width: 160px; height: 160px;
  border-color: rgba(239, 68, 68, 0.2);
  animation: ringSpin 6s linear infinite reverse;
}

.ring-3 {
  width: 180px; height: 180px;
  border-color: rgba(34, 211, 238, 0.15);
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.logo-spark {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
  animation: spark 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes spark {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Start panel */
.panel-enter { animation: panelIn 0.7s var(--ease) both; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-tag.accent { color: var(--accent); }

.brand-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f0f9ff, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 24px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
}

.chip.chip-in {
  animation: chipIn 0.5s var(--ease) forwards;
}

@keyframes chipIn {
  to { opacity: 1; transform: translateY(0); }
}

.dl-btn-hero {
  position: relative;
  overflow: hidden;
  min-width: 260px !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(34, 211, 238, 0.35); }
  50% { box-shadow: 0 12px 48px rgba(34, 211, 238, 0.55), 0 0 60px rgba(59, 130, 246, 0.2); }
}

.dl-btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  40%, 100% { transform: translateX(200%); }
}

.dl-btn.btn-pressed {
  transform: scale(0.96);
  animation: none;
}

.get-trust {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}

/* Cinema progress */
.step-label {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.cinema-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  min-height: 1.5em;
}

.cinema-headline.headline-in {
  animation: headlineIn 0.45s var(--ease);
}

.cinema-headline.success {
  color: var(--green);
  animation: successPop 0.6s var(--ease);
}

@keyframes headlineIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes successPop {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.cinema-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 20px;
  min-height: 2.8em;
}

.cinema-sub.sub-in {
  animation: subIn 0.5s var(--ease) 0.1s both;
}

@keyframes subIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Step track */
.step-track {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 22px;
  position: relative;
}

.step-track::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  background: var(--surface-solid);
  border: 2px solid var(--border);
  transition: all 0.4s var(--ease);
}

.step-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s;
}

.step-node.active .step-icon {
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.15);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
  animation: stepPulse 1.2s ease-in-out infinite;
}

.step-node.active .step-name { color: var(--text); }

.step-node.done .step-icon {
  border-color: var(--green);
  background: rgba(52, 211, 153, 0.15);
}

.step-node.done .step-name { color: var(--green); }

@keyframes stepPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Progress bar enhanced */
.progress-wrap { margin-bottom: 18px; }

.get-cinema .dl-progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.dl-progress-glow {
  position: absolute;
  top: -2px;
  left: 0;
  height: 14px;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34,211,238,0.3), rgba(59,130,246,0.2));
  filter: blur(6px);
  transition: width 0.25s linear;
  pointer-events: none;
}

.get-cinema .dl-progress-bar {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22d3ee, #3b82f6, #ef4444);
  background-size: 200% 100%;
  animation: barShimmer 2s linear infinite;
  transition: width 0.25s linear;
}

@keyframes barShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.progress-speed {
  font-size: 11px;
  color: var(--muted);
}

/* Live stats */
.live-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.live-stats .stat {
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  text-align: center;
}

.live-stats .stat strong {
  display: block;
  font-size: 14px;
  color: var(--accent);
  font-family: var(--font-mono, monospace);
}

.live-stats .stat span {
  font-size: 9px;
  color: var(--muted);
}

/* Done panel */
.success-burst {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.25), transparent 70%);
  animation: burst 1s ease-out;
  pointer-events: none;
}

@keyframes burst {
  from { transform: translateX(-50%) scale(0); opacity: 1; }
  to { transform: translateX(-50%) scale(2); opacity: 0; }
}

.done-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 12px;
  text-align: start;
}

.done-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  animation: doneStepIn 0.5s var(--ease) both;
}

.done-step:nth-child(1) { animation-delay: 0.1s; }
.done-step:nth-child(2) { animation-delay: 0.25s; }
.done-step:nth-child(3) { animation-delay: 0.4s; }

@keyframes doneStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.done-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  color: #041018;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.done-step p {
  margin: 0;
  font-size: 12px;
  color: var(--text);
}

/* Confetti */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  top: -10px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@media (max-width: 480px) {
  .get-card { padding: 32px 20px 28px; }
  .hero-title { font-size: 1.6rem; }
  .step-name { font-size: 8px; }
  .step-icon { width: 30px; height: 30px; font-size: 12px; }
  .live-stats .stat strong { font-size: 12px; }
}

