/* LE-G3N Waitlist — styles */
:root {
  --bg: #080B12;
  --bg-card: #0B0F1C;
  --bg-input: #0F1425;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-dim: #A3ADBF;
  --text-mute: #6B7689;
  --cyan: #00F5D4;
  --cyan-soft: rgba(0, 245, 212, 0.18);
  --violet: #A855F7;
  --violet-soft: rgba(168, 85, 247, 0.18);
  --warn: #FFAA00;
  --rest: #FF5F1F;
  --crit: #FF4560;
  --success: #22D46A;
  --grad: linear-gradient(95deg, #ffffff 0%, #ffffff 38%, #00F5D4 56%, #A855F7 86%);
  --grad-accent: linear-gradient(95deg, #00F5D4 0%, #A855F7 100%);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.06), 0 30px 80px -30px rgba(0,245,212,0.25), 0 30px 80px -30px rgba(168,85,247,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
}

.mono { font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: 'ss01'; letter-spacing: 0.02em; }

/* ============ Background scene ============ */
.scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.scene .grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.scene .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: float 18s ease-in-out infinite;
}
.scene .orb.cyan {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #00F5D4 0%, transparent 60%);
  top: -120px; left: -100px;
}
.scene .orb.violet {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #A855F7 0%, transparent 60%);
  bottom: -180px; right: -160px;
  animation-delay: -8s;
}
.scene .noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

/* ============ Layout ============ */
.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px;
  gap: 28px;
}
@media (max-width: 1080px) {
  .app { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
}

/* ============ Mobile ============ */
@media (max-width: 680px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .app {
    padding: 12px;
    gap: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .formcard {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero {
    padding: 8px 4px 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .progress {
    gap: 4px;
  }

  .step-q {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Form primero, hero abajo */
  .app > section:first-child  { order: 2; padding-top: 32px; }
  .app > section:last-child   { order: 1; }

  /* Topbar */
  .topbar { padding-bottom: 16px; margin-bottom: 20px; }
  .topbar .right { display: none; }

  /* Headline */
  .hero h1 {
    font-size: clamp(38px, 10vw, 54px);
    margin-top: 24px;
  }

  /* Subtitle */
  .hero .sub { font-size: 15px; margin-top: 18px; }

  /* Tag pill */
  .hero .tag { font-size: 10px; }

  /* Pillars: 1 columna */
  .hero .pillars {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 10px;
  }
  .pillar { padding: 14px; display: flex; flex-direction: row; align-items: flex-start; gap: 14px; }
  .pillar .icon { margin-top: 2px; flex-shrink: 0; }
  .pillar h4 { margin-top: 0; }

  /* Injury section */
  .injury-section { margin-top: 20px; }
  .injury-section-head { padding: 14px 16px; gap: 12px; }
  .injury-section-head h3 { font-size: 14px; }
  .injury-section-head p { font-size: 11.5px; }
  .signal-row { padding: 12px 16px; gap: 10px; }
  .signal-badge { display: none; }
  .injury-footer { padding: 10px 16px; font-size: 10.5px; }

  /* Promise */
  .promise { margin-top: 20px; padding: 16px; }
  .promise li { font-size: 13px; }

  /* Counter */
  .hero .counter {
    padding-top: 24px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .counter .divider { width: 100%; height: 1px; }
  .counter .num { font-size: 24px; }

  /* Form card */
  .formcard {
    padding: 20px 18px;
    min-height: unset;
    border-radius: 18px;
  }

  /* Step question */
  .step-q { font-size: clamp(22px, 6.5vw, 30px); }
  .step-help { font-size: 13px; }

  /* Options grid */
  .option-grid { gap: 8px; }
  .option-grid.cols-2 { grid-template-columns: 1fr; }
  .option { padding: 13px; }

  /* Sport chips */
  .chips { gap: 7px; margin-top: 20px; }
  .chip { padding: 9px 13px; font-size: 13px; }

  /* Form footer */
  .form-foot { flex-wrap: wrap; gap: 10px; }
  .foot-meta { display: none; }
  .btn.ghost { padding-left: 4px; }
  .btn.primary { flex: 1; justify-content: center; }

  /* Success */
  .success h2 { font-size: 28px; }
  .perks-card { margin-top: 18px; }
  .next-list .item { grid-template-columns: 26px 1fr; }
  .next-list .stamp { display: none; }
  .share-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Watermark */
  .watermark { display: none; }
}

/* ============ Top bar ============ */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 6px 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.topbar .brand { display: flex; align-items: center; gap: 12px; }
.topbar .brand-logo {
  width: 34px; height: 34px;
  background-size: 150% 150%;
  background-position: center;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(0,245,212,0.35));
}
.topbar .brand-word {
  font-weight: 700; letter-spacing: 0.04em; font-size: 16px;
  font-style: italic;
}
.topbar .right { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-dim); }
.status-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
  vertical-align: middle; margin-right: 8px;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.35 } }

/* ============ Hero (left) ============ */
.hero { padding: 8px 12px 12px; display: flex; flex-direction: column; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  width: fit-content;
}
.hero .tag b { color: var(--text); font-weight: 500; }

.hero h1 {
  margin-top: 36px;
  font-size: clamp(54px, 6.4vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 600;
  font-style: italic;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .nograd { color: #fff; }

.hero .sub {
  margin-top: 26px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  text-wrap: pretty;
}
.hero .sub b { color: var(--text); font-weight: 500; }

.hero .pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}
.pillar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}
.pillar .icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.pillar h4 { font-size: 13px; margin-top: 14px; font-weight: 600; letter-spacing: 0.01em; }
.pillar p { font-size: 12px; color: var(--text-dim); margin-top: 4px; line-height: 1.45; }

/* ============ Injury signal detection section ============ */
.injury-section {
  margin-top: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,69,96,0.05), rgba(255,170,0,0.03));
  overflow: hidden;
  max-width: 620px;
}
.injury-section-head {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line);
}
.injury-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 69, 96, 0.1);
  border: 1px solid rgba(255, 69, 96, 0.25);
  color: var(--crit);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.injury-eyebrow {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--crit);
}
.injury-section-head h3 {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  margin-top: 4px; color: var(--text);
}
.injury-section-head p {
  font-size: 12px; color: var(--text-dim); line-height: 1.5;
  margin-top: 4px;
}

.injury-signals {
  display: flex; flex-direction: column;
}
.signal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.signal-row:last-child { border-bottom: 0; }
.signal-left { display: flex; flex-direction: column; gap: 8px; }
.signal-name-row { display: flex; align-items: center; justify-content: space-between; }
.signal-name { font-size: 13px; font-weight: 500; color: var(--text); }
.signal-value { font-size: 11px; letter-spacing: 0.08em; }
.signal-value.warn { color: var(--warn); }
.signal-value.crit { color: var(--crit); }
.signal-value.rest { color: var(--rest); }
.signal-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.signal-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.signal-fill.warn {
  background: var(--warn);
  box-shadow: 0 0 8px rgba(255, 170, 0, 0.5);
}
.signal-fill.crit {
  background: var(--crit);
  box-shadow: 0 0 8px rgba(255, 69, 96, 0.55);
}
.signal-fill.rest {
  background: var(--rest);
  box-shadow: 0 0 8px rgba(255, 95, 31, 0.45);
}
.signal-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
}
.signal-badge.warn {
  background: rgba(255, 170, 0, 0.12);
  border: 1px solid rgba(255, 170, 0, 0.3);
  color: var(--warn);
}
.signal-badge.crit {
  background: rgba(255, 69, 96, 0.12);
  border: 1px solid rgba(255, 69, 96, 0.3);
  color: var(--crit);
}
.signal-badge.rest {
  background: rgba(255, 95, 31, 0.12);
  border: 1px solid rgba(255, 95, 31, 0.3);
  color: var(--rest);
}
.injury-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--text-dim);
}
.injury-footer svg { flex-shrink: 0; color: var(--cyan); }

/* ============ Promise section ============ */
.hero .counter {
  margin-top: auto;
  padding-top: 32px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.counter .stat { display: flex; flex-direction: column; gap: 4px; }
.counter .num {
  font-size: 30px; font-weight: 600; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.counter .num .grad { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.counter .lab {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute);
}
.counter .divider { width: 1px; height: 40px; background: var(--line); }

/* Badge stat */
.badge-stat {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 245, 212, 0.04);
  padding: 10px 14px 10px 12px;
  border-radius: var(--radius);
}
.badge-stat-ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.badge-stat-ico .status-dot { width: 7px; height: 7px; }
.badge-stat-ttl { font-size: 13px; font-weight: 500; color: var(--text); }
.badge-stat-sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }

/* Promise */
.promise {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  max-width: 620px;
}
.promise .lab { font-size: 10.5px; letter-spacing: 0.22em; color: var(--cyan); text-transform: uppercase; }
.promise ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.promise li { display: flex; gap: 12px; font-size: 13.5px; color: var(--text-dim); align-items: flex-start; }
.promise li .tick { flex-shrink: 0; margin-top: 3px; color: var(--cyan); font-size: 11px; }
.promise li b { color: var(--text); font-weight: 500; }

/* ============ Form card (right) ============ */
.formcard {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11,15,28,0.92), rgba(8,11,18,0.92));
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 640px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.formcard::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 20% 0%, rgba(0,245,212,0.10), transparent 60%),
    radial-gradient(ellipse 60% 30% at 90% 100%, rgba(168,85,247,0.10), transparent 60%);
  pointer-events: none;
}
.formcard > * { position: relative; z-index: 1; }

.form-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-head .label { font-size: 11px; letter-spacing: 0.2em; color: var(--text-mute); text-transform: uppercase; }
.form-head .step-count { font-size: 11px; color: var(--text-dim); }
.form-head .step-count b { color: var(--text); font-weight: 500; }

.progress {
  margin-top: 14px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(6, 1fr);
}
.progress .seg {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.07);
  overflow: hidden; position: relative;
}
.progress .seg .fill {
  position: absolute; inset: 0;
  background: var(--grad-accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 10px rgba(0,245,212,0.45);
}
.progress .seg.done .fill { transform: scaleX(1); }
.progress .seg.active .fill { transform: scaleX(0.6); }

.step-body {
  flex: 1;
  display: flex; flex-direction: column;
  padding-top: 28px;
}
.step-eyebrow { font-size: 11px; letter-spacing: 0.22em; color: var(--cyan); text-transform: uppercase; }
.step-q {
  margin-top: 12px;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.step-q em { font-style: italic; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step-help { margin-top: 10px; color: var(--text-dim); font-size: 13.5px; max-width: 460px; line-height: 1.55; }

.field-stack { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.text-field {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-input);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.text-field:focus-within {
  border-color: rgba(0, 245, 212, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 245, 212, 0.10);
  background: #11172A;
}
.text-field label {
  position: absolute; top: 10px; left: 16px;
  font-size: 10.5px; letter-spacing: 0.2em;
  color: var(--text-mute); text-transform: uppercase;
  pointer-events: none;
}
.text-field input, .text-field textarea {
  width: 100%;
  background: transparent;
  border: 0; outline: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  padding: 30px 16px 14px;
  resize: none;
}
.text-field textarea { min-height: 110px; padding-top: 32px; }
.text-field input::placeholder, .text-field textarea::placeholder { color: rgba(163, 173, 191, 0.5); }
.text-field .suffix {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 11px; color: var(--text-mute); letter-spacing: 0.12em;
}

.option-grid { display: grid; gap: 10px; }
.option-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.option {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-input);
  padding: 16px;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex; align-items: center; gap: 12px;
  text-align: left;
  color: var(--text);
  font-family: inherit;
}
.option:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.03);
  transform: translateY(-1px);
}
.option.selected {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(0,245,212,0.14), rgba(168,85,247,0.14)) padding-box,
    var(--grad-accent) border-box;
  box-shadow: 0 0 0 1px transparent, 0 10px 40px -10px rgba(0,245,212,0.4);
}
.option.selected::after {
  content: ''; position: absolute; top: 12px; right: 12px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 8px var(--cyan);
}
.option .opt-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: 18px; flex-shrink: 0;
}
.option .opt-body { display: flex; flex-direction: column; gap: 2px; }
.option .opt-name { font-size: 14px; font-weight: 500; }
.option .opt-meta { font-size: 11px; color: var(--text-dim); letter-spacing: 0.04em; }

/* Form nav */
.form-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 13px 20px; border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn:hover:not(:disabled) { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn.ghost { background: transparent; border-color: transparent; color: var(--text-dim); padding-left: 8px; padding-right: 8px; }
.btn.ghost:hover:not(:disabled) { color: var(--text); background: rgba(255,255,255,0.04); }
.btn.primary {
  background: var(--grad-accent);
  color: #080B12;
  border-color: transparent;
  font-weight: 600; letter-spacing: 0.01em; padding: 13px 24px;
  box-shadow: 0 10px 30px -8px rgba(0,245,212,0.55), 0 10px 30px -8px rgba(168,85,247,0.45);
}
.btn.primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 14px 40px -10px rgba(0,245,212,0.75), 0 14px 40px -10px rgba(168,85,247,0.6); }
.btn .arrow { transition: transform 0.2s ease; }
.btn.primary:hover .arrow { transform: translateX(3px); }

.foot-meta { font-size: 11px; color: var(--text-mute); letter-spacing: 0.08em; }
.foot-meta kbd {
  display: inline-block; border: 1px solid var(--line); border-radius: 4px;
  padding: 1px 6px; font-family: 'Geist Mono', monospace; font-size: 10px;
  background: rgba(255,255,255,0.04); color: var(--text-dim); margin: 0 2px;
}

/* Step animation */
.step-anim { animation: stepIn 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ============ Success state ============ */
.success {
  padding: 8px 4px 4px;
  display: flex; flex-direction: column; flex: 1;
}
.success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: #080B12; font-size: 30px;
  box-shadow: 0 0 0 6px rgba(0, 245, 212, 0.08), 0 20px 60px -10px rgba(0,245,212,0.5);
  margin-bottom: 26px;
}
.success h2 { font-size: 36px; line-height: 1.05; font-weight: 500; letter-spacing: -0.02em; }
.success h2 em { font-style: italic; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.success p.lede { margin-top: 12px; color: var(--text-dim); font-size: 15px; line-height: 1.55; max-width: 480px; }

/* Perks card */
.perks-card {
  margin-top: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(0,245,212,0.07), rgba(168,85,247,0.07)), var(--bg-card);
  overflow: hidden;
}
.perks-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.perks-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan);
}
.perks-badge .status-dot { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.perks-meta { font-size: 10px; letter-spacing: 0.22em; color: var(--text-mute); text-transform: uppercase; }
.perks-list { display: flex; flex-direction: column; }
.perk {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid var(--line); align-items: flex-start;
}
.perk:last-child { border-bottom: 0; }
.perk-ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0,245,212,0.08); border: 1px solid rgba(0,245,212,0.2);
  color: var(--cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.perk:nth-child(2) .perk-ico { color: var(--violet); background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.2); }
.perk:nth-child(3) .perk-ico { color: #fff; background: rgba(255,255,255,0.04); border-color: var(--line-strong); }
.perk:nth-child(4) .perk-ico { color: var(--cyan); }
.perk:nth-child(5) .perk-ico { color: var(--violet); background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.2); }
.perk-ttl { font-size: 14px; font-weight: 500; color: var(--text); }
.perk-sub { font-size: 12px; color: var(--text-dim); margin-top: 4px; line-height: 1.5; }

/* Next steps list */
.next-list { margin-top: 24px; display: flex; flex-direction: column; }
.next-list .item {
  display: grid; grid-template-columns: 30px 1fr auto; gap: 14px;
  padding: 14px 4px; border-bottom: 1px solid var(--line); align-items: center;
}
.next-list .item:last-child { border-bottom: 0; }
.next-list .n {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--text); background: rgba(255,255,255,0.03);
}
.next-list .item.done .n { background: var(--grad-accent); color: #080B12; border-color: transparent; }
.next-list .body .ttl { font-size: 14px; font-weight: 500; }
.next-list .body .sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.next-list .stamp { font-size: 10.5px; color: var(--text-mute); letter-spacing: 0.16em; text-transform: uppercase; }

/* Share row */
.share-row {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.share-row .lab { font-size: 10.5px; letter-spacing: 0.2em; color: var(--text-mute); text-transform: uppercase; }
.share-row .actions { display: flex; gap: 8px; }
.share-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03);
  border-radius: 10px; color: var(--text-dim); cursor: pointer; transition: all 0.18s ease;
}
.share-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
.refcode {
  display: flex; align-items: center;
  border: 1px dashed var(--line-strong); border-radius: 10px;
  padding: 8px 12px; font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--text-dim); letter-spacing: 0.06em;
}
.refcode b { color: var(--text); font-weight: 500; margin-right: 8px; }
.refcode .copy { cursor: pointer; color: var(--cyan); margin-left: 10px; }

/* Sport chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip {
  border: 1px solid var(--line-strong); background: var(--bg-input);
  border-radius: 999px; padding: 11px 16px; font-size: 13.5px;
  color: var(--text); cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.18s ease;
}
.chip:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); }
.chip.selected {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(0,245,212,0.2), rgba(168,85,247,0.2)) padding-box,
    var(--grad-accent) border-box;
  box-shadow: 0 0 0 1px transparent, 0 8px 28px -10px rgba(0,245,212,0.55);
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-mute); }
.chip.selected .dot { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }

/* Watermark */
.watermark {
  position: fixed; bottom: 16px; right: 22px;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--text-mute); z-index: 2;
  text-transform: uppercase; font-family: 'Geist Mono', monospace;
}
