/* Fonts loaded via <link> in head — no @import flash */

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:      #fc0;
  --purple:    #c0f;
  --dark:      #160016;
  --text:      rgba(255, 255, 255, 0.82);
  --text-dim:  rgba(255, 255, 255, 0.45);
  --gold-line: rgba(255, 204, 0, 0.12);
  --card-bg:   rgba(255, 255, 255, 0.04);
}

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden; /* locked until planet forms */
  background: var(--dark);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
}
body.scrollable { overflow-y: auto; }

body > canvas {
  position: fixed !important;
  top: 0; left: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(255,204,0,0.7),
      0 0 50px rgba(255,204,0,0.35),
      0 0 90px rgba(204,0,255,0.25);
  }
  50% {
    text-shadow:
      0 0 30px rgba(255,204,0,1),
      0 0 70px rgba(255,204,0,0.6),
      0 0 140px rgba(204,0,255,0.5),
      0 0 200px rgba(204,0,255,0.2);
  }
}

@keyframes flicker {
  0%, 93%, 100% { opacity: 1; }
  94%  { opacity: 0.8; }
  95%  { opacity: 1; }
  97%  { opacity: 0.88; }
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0);   opacity: 0.4; }
  50%       { transform: translateY(9px); opacity: 0.9; }
}

@keyframes word-enter {
  0%   { opacity: 0; letter-spacing: 0.42em; transform: translateY(-16px) scale(0.9); }
  65%  { letter-spacing: 0.015em; }
  100% { opacity: 1; letter-spacing: 0;     transform: none; }
}

@keyframes tagline-enter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes hint-enter {
  from { opacity: 0; }
  to   { opacity: 0.4; }
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.feat-card:nth-child(1) { transition-delay: 0.04s; }
.feat-card:nth-child(2) { transition-delay: 0.10s; }
.feat-card:nth-child(3) { transition-delay: 0.16s; }
.feat-card:nth-child(4) { transition-delay: 0.22s; }
.feat-card:nth-child(5) { transition-delay: 0.28s; }
.feat-card:nth-child(6) { transition-delay: 0.34s; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(22,0,22,0.5) 0%, transparent 100%);
  pointer-events: none;
}

/* Only Solus X3 gets the special treatment */
#word {
  font-family: Megrim, cursive;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.95;
  color: var(--gold);
  -webkit-text-stroke: 0.12vh var(--purple);
  user-select: none;
  margin-bottom: 1.2rem;
  /* entrance state — invisible until planet forms */
  opacity: 0;
  letter-spacing: 0.42em;
}
#word.show {
  animation:
    word-enter 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    glow-pulse 3.5s 1.1s ease-in-out infinite,
    flicker    9s   3.6s ease-in-out infinite;
}

.tagline {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  width: 100%;
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  letter-spacing: 0.015em;
  text-align: center;
  /* entrance state */
  opacity: 0;
}
.tagline.show {
  animation: tagline-enter 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-hint {
  color: rgba(255,255,255,0.3);
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0;
}
.scroll-hint:hover { color: rgba(255,255,255,0.7); }
.scroll-hint svg { width: 1.8rem; height: 1.8rem; }
.scroll-hint.show {
  animation: hint-enter 0.9s ease forwards, bounce-down 2s 0.9s ease-in-out infinite;
}

/* ── Hero stats (waitlist count + countdown) ─────────────── */
@keyframes stat-pill-in {
  from { opacity: 0; transform: translateY(12px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes stat-num-in {
  0%   { opacity: 0; transform: scale(0.65) translateY(6px); }
  70%  { transform: scale(1.1) translateY(-1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes stat-label-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 0.9rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* hidden until .show */
  opacity: 0;
  pointer-events: none;
}
.hero-stats.show {
  pointer-events: auto;
  animation: stat-pill-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-stats.show .hero-stat:first-child .hero-stat-num  { animation: stat-num-in   0.55s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.hero-stats.show .hero-stat:last-child  .hero-stat-num  { animation: stat-num-in   0.55s 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.hero-stats.show .hero-stat:first-child .hero-stat-label { animation: stat-label-in 0.5s  0.3s  ease both; }
.hero-stats.show .hero-stat:last-child  .hero-stat-label { animation: stat-label-in 0.5s  0.5s  ease both; }

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 2rem;
}
.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  /* starts invisible; animation fill-mode: both handles initial state */
  opacity: 0;
}
.hero-stat:first-child .hero-stat-num { color: var(--gold); }
.hero-stat:last-child  .hero-stat-num { color: #b06aff; }

.hero-stat-label {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  opacity: 0;
}
.hero-stat-line {
  width: 1px;
  height: 2.2rem;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  align-self: center;
}

/* ── INFO SECTION ─────────────────────────────────────────── */
.info-sect {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(22,0,22,0) 0%,
    rgba(22,0,22,0.94) 5%,
    rgba(14,0,14,0.98) 100%
  );
  padding: 7rem 2rem 4rem;
  border-top: 1px solid var(--gold-line);
}

.sect-wrap { max-width: 1100px; margin: 0 auto; }

.sect-eye {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.sect-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sect-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 4rem;
}

/* Feature grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 5rem;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.35s, transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.7s cubic-bezier(0.16,1,0.3,1);
}
.feat-card.reveal, .stat.reveal, .origin-block.reveal { opacity: 0; transform: translateY(28px); }
.feat-card.reveal.visible, .stat.reveal.visible, .origin-block.reveal.visible { opacity: 1; transform: none; }
.stat { transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.origin-block:nth-child(1) { transition-delay: 0.05s; }
.origin-block:nth-child(2) { transition-delay: 0.15s; }
.origin-block:nth-child(3) { transition-delay: 0.25s; }
.feat-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.feat-icon {
  width: 1.6rem; height: 1.6rem;
  color: var(--purple);
  margin-bottom: 0.85rem;
}
.feat-icon svg { width: 100%; height: 100%; }

.feat-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.feat-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.feat-compare {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-size: 0.7rem;
  font-family: 'Fira Code', 'SF Mono', monospace;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.75rem;
}
.old { color: rgba(255,255,255,0.2); text-decoration: line-through; }
.new { color: var(--purple); font-weight: 500; }

/* Stats */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat {
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.stat-line {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 600px) { .stat-line { display: none; } .stats-row { justify-content: center; } }

/* ── Custom scrollbar ────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(22, 0, 22, 0.9);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, var(--purple) 100%);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffd740 0%, #d966ff 100%);
}
* { scrollbar-width: thin; scrollbar-color: var(--gold) rgba(22,0,22,0.9); }

/* ── Brand ────────────────────────────────────────────────── */
#brand {
  position: fixed;
  bottom: 1.6rem;
  right: 1.8rem;
  font-family: Megrim, cursive;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,204,0,0.25);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}


/* ── Origin section ───────────────────────────────────────── */
.origin-sect {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 5rem;
  background: rgba(14,0,14,0.98);
}
.origin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2.5rem;
}
@media (max-width: 700px) { .origin-grid { grid-template-columns: 1fr; } }
.origin-block {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: border-color 0.25s;
}
.origin-block:hover { border-color: rgba(255,204,0,0.18); }
.origin-icon {
  width: 1.4rem; height: 1.4rem;
  color: var(--gold);
  opacity: 0.65;
}
.origin-icon svg { width: 100%; height: 100%; }
.origin-block h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.origin-block p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── Waitlist / Chaos Button ────────────────────────────────── */
.waitlist-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.waitlist-wrap.show {
  animation: tagline-enter 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

a.launch-cta-btn,
a.launch-cta-btn:link,
a.launch-cta-btn:visited {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 200px; height: 52px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em;
  font-family: 'Inter', sans-serif;
  color: #fff !important;
  text-decoration: none !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, rgba(255,204,0,0.1) 0%, rgba(204,0,255,0.1) 100%);
  border: 1px solid rgba(255,204,0,0.35);
  border-radius: 150px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
a.launch-cta-btn:hover {
  transform: scale(1.03);
  border-color: rgba(255,204,0,0.6);
  box-shadow:
    0 0 18px rgba(255,204,0,0.35),
    0 0 45px rgba(204,0,255,0.2);
}

.chaos-button {
  position: relative;
  border: 1px solid rgba(255, 204, 0, 0.35);
  background: linear-gradient(135deg, rgba(255,204,0,0.1) 0%, rgba(204,0,255,0.1) 100%);
  padding: 0;
  cursor: pointer;
  width: 200px;
  height: 52px;
  border-radius: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.chaos-button:hover {
  transform: scale(1.03);
  border-color: rgba(255, 204, 0, 0.6);
}
.chaos-button.holding {
  box-shadow:
    0 0 calc(var(--hold-glow, 0) * 32px) rgba(255, 204, 0, 0.65),
    0 0 calc(var(--hold-glow, 0) * 70px) rgba(204, 0, 255, 0.35);
  border-color: rgba(255, 204, 0, calc(0.35 + var(--hold-glow, 0) * 0.65));
}
.chaos-button.exploded {
  animation: btn-explode 0.45s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
  pointer-events: none;
}
@keyframes hold-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 0.9;  transform: scale(1.06); }
}
@keyframes hold-ring {
  from { stroke-dashoffset: 220; }
  to   { stroke-dashoffset: 0; }
}

@keyframes btn-explode {
  0%   { transform: scale(1);    opacity: 1; }
  40%  { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(0.05); opacity: 0; }
}

.chaos-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.chaos-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.6);
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}
.hold-hint-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  pointer-events: none;
  transition: opacity 0.4s;
  animation: hold-pulse 2s ease-in-out infinite;
}
.hold-hint-label svg {
  width: 0.9rem;
  height: 0.9rem;
  opacity: 0.85;
  flex-shrink: 0;
}

/* Waitlist inline error */
.waitlist-error {
  font-size: 0.72rem;
  color: rgba(255, 110, 110, 0.95);
  text-align: center;
  letter-spacing: 0.02em;
  min-height: 1em;
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s, transform 0.22s;
  pointer-events: none;
}
.waitlist-error.show {
  opacity: 1;
  transform: none;
}
.waitlist-email.invalid {
  outline: 2px solid rgba(255, 80, 80, 0.65) !important;
}

/* Form — slot keeps button + form stacked in same space */
.waitlist-slot {
  position: relative;
  width: 320px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.waitlist-form-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  transform: translateY(14px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.waitlist-form-wrap.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.waitlist-form {
  display: flex;
  background: rgba(10, 0, 14, 0.75);
  border: 1px solid rgba(255, 204, 0, 0.28);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.waitlist-form:focus-within {
  border-color: rgba(255, 204, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.08);
}
.waitlist-email {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.1rem;
  color: #fff;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  caret-color: var(--gold);
}
.waitlist-email::placeholder { color: rgba(255, 255, 255, 0.35); }
.waitlist-submit {
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,204,0,0.85), rgba(204,0,255,0.75));
  border: none;
  cursor: pointer;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.waitlist-submit:hover:not(:disabled) { opacity: 0.8; }
.waitlist-submit:disabled { opacity: 0.4; cursor: default; }
.waitlist-submit svg { width: 1rem; height: 1rem; color: #fff; }
.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 204, 0, 0.75);
  text-align: center;
  margin-top: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.5s;
}
.waitlist-success.show { opacity: 1; }

/* Already-on-waitlist badge */
.already-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 204, 0, 0.85);
  border: 1px solid rgba(255, 204, 0, 0.28);
  background: rgba(255, 204, 0, 0.06);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  white-space: nowrap;
  animation: tagline-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.already-check {
  font-size: 0.9rem;
  color: #ffcc00;
}

/* ── Thank-you overlay ─────────────────────────────────── */
#thankyou-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #040008; /* dark fallback — galaxy canvas renders inside this */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: none;
}
#thankyou-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@keyframes ty-rise {
  from { opacity: 0; transform: translateY(32px); filter: blur(6px); }
  to   { opacity: 1; transform: none;             filter: blur(0); }
}
.ty-enter {
  animation: ty-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
.ty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}
.ty-word {
  font-family: Megrim, cursive;
  font-size: clamp(4.5rem, 16vw, 14rem);
  line-height: 0.95;
  color: var(--gold);
  -webkit-text-stroke: 0.12vh var(--purple);
  animation: glow-pulse 3.5s ease-in-out infinite;
  user-select: none;
  letter-spacing: 0.04em;
  text-shadow:
    0 2px 8px rgba(0,0,0,1),
    0 0 40px rgba(0,0,0,0.95),
    0 8px 32px rgba(0,0,0,0.9);
}
.ty-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.06em;
  max-width: 34ch;
  text-shadow: 0 1px 12px rgba(0,0,0,1), 0 4px 24px rgba(0,0,0,0.9);
}
.ty-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ty-back:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

/* ── Comparison Table ─────────────────────────────────────── */
.compare-sect {
  position: relative; z-index: 1;
  padding: 3.5rem 2rem 3.5rem;
  background: rgba(14,0,14,0.98);
}
.compare-table {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.ct-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ct-feat-col { padding: 0.9rem 1.2rem; }
.ct-col {
  padding: 0.9rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.ct-solus { color: rgba(255,255,255,0.3); }
.ct-solusx3 { color: var(--gold); }
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.ct-row:last-child { border-bottom: none; }
.ct-row:hover { background: rgba(255,255,255,0.03); }
.ct-feat {
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.ct-val {
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}
.ct-old { color: rgba(255,255,255,0.2); }
.ct-new { color: var(--purple); }
@media (max-width: 560px) {
  .ct-feat { font-size: 0.75rem; padding: 0.7rem 0.8rem; }
  .ct-val  { font-size: 0.75rem; padding: 0.7rem 0.8rem; }
}

/* ── Progress Bar ─────────────────────────────────────────── */
.progress-sect {
  position: relative; z-index: 1;
  padding: 3.5rem 2rem;
  background: rgba(14,0,14,0.98);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.progress-wrap { margin-top: 2.5rem; }
.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  box-shadow: 0 0 12px rgba(255,204,0,0.3);
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 2.5rem;
}
.progress-pct { color: var(--gold); font-weight: 600; }
.progress-target { color: var(--text-dim); }
.progress-stages {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.progress-stages::before {
  content: '';
  position: absolute;
  top: 7px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
  z-index: 0;
}
.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}
.stage-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}
.stage.done .stage-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(255,204,0,0.5);
}
.stage.done { color: rgba(255,255,255,0.5); }
.stage.active .stage-dot {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 8px rgba(204,0,255,0.6);
  animation: pulse-dot-stage 2s ease-in-out infinite;
}
.stage.active { color: var(--purple); }
@keyframes pulse-dot-stage {
  0%,100% { box-shadow: 0 0 8px rgba(204,0,255,0.6); }
  50%      { box-shadow: 0 0 16px rgba(204,0,255,0.9); }
}
@media (max-width: 560px) {
  .stage span { display: none; }
  .progress-stages { gap: 0; }
}

/* ── Perks ────────────────────────────────────────────────── */
.perks-sect {
  position: relative; z-index: 1;
  padding: 3.5rem 2rem 3.5rem;
  background: rgba(14,0,14,0.98);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .perks-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .perks-grid { grid-template-columns: 1fr; } }
.perk-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,204,0,0.1);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: border-color 0.25s, transform 0.25s;
  opacity: 0; transform: translateY(28px);
}
.perk-card.visible { opacity: 1; transform: none; }
.perk-card:hover { border-color: rgba(255,204,0,0.3); transform: translateY(-2px); }
.perk-icon { width: 1.4rem; height: 1.4rem; color: var(--gold); opacity: 0.7; }
.perk-icon svg { width: 100%; height: 100%; }
.perk-card h3 { font-size: 0.9rem; font-weight: 600; color: #fff; }
.perk-card p  { font-size: 0.8rem; font-weight: 300; color: var(--text-dim); line-height: 1.7; }

/* ── Mobile hero fixes ────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 1.5rem 1.2rem; }
  #word { font-size: clamp(4rem, 22vw, 8rem); margin-bottom: 0.8rem; }
  .tagline { font-size: 0.9rem; margin-bottom: 1.2rem; }
  .chaos-button { width: 180px; height: 48px; }
  .waitlist-slot { width: 280px; }
  .hold-hint-label { font-size: 0.7rem; }
}
@media (max-width: 360px) {
  #word { font-size: 3.5rem; }
  .waitlist-slot { width: 260px; }
}

.compare-table.reveal, .progress-wrap.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.compare-table.reveal.visible, .progress-wrap.reveal.visible { opacity: 1; transform: none; }
