@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a12;
  --bg-raised: #12121c;
  --card: rgba(17, 17, 26, 0.92);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #f3f2fa;
  --text-dim: #9a99b3;
  --text-faint: #6f6f85;
  --accent: #9b30ff;
  --accent-2: #d18bff;
  --coin: #ffb020;
  --glow: rgba(155, 48, 255, 0.45);
  --ok: #3ddc84;
  --err: #ff6b8a;
  --mono: 'IBM Plex Mono', monospace;
  --sans: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(155, 48, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(255, 176, 32, 0.06), transparent 55%);
  background-attachment: fixed;
  background-size: 130% 130%;
  animation: bgDrift 22s ease-in-out infinite alternate;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@keyframes bgDrift {
  0% { background-position: 0% 0%, 100% 0%; }
  100% { background-position: 8% 6%, 92% 10%; }
}

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--text);
}

.brand .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--glow);
  display: inline-block;
  margin-right: 2px;
}

.brand small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 11px;
  animation: navGlow 3.2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.nav-cta:hover { transform: translateY(-2px); }

@keyframes navGlow {
  0%, 100% { box-shadow: 0 0 18px var(--glow); }
  50% { box-shadow: 0 0 30px var(--glow); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 0 26px var(--glow);
}

.btn-primary:hover { box-shadow: 0 0 34px var(--glow); }

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
}

.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.2); }

.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 18px;
  max-width: 12ch;
}

.hero p.lede {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 46ch;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-line {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- ticker mock (hero visual) ---------- */
.ticker-mock {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(155, 48, 255, 0.12);
}

.ticker-mock .tm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ff6b8a;
  background: rgba(255, 107, 138, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}

.live-pill .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b8a;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.tm-timer {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
}

.tm-bid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tm-bid:last-child { border-bottom: none; }

.tm-bid .who {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.tm-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  flex: none;
}

.tm-bid .coins {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--coin);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tm-bid.leading .coins { color: var(--accent-2); font-weight: 600; }

.tm-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- showcase ---------- */
.showcase { padding-top: 8px; }

.showcase-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  padding-bottom: 68px;
  align-items: stretch;
}

.stream-frame {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.stream-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-faint);
  border-bottom: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.02);
}

.sf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--err);
  box-shadow: 0 0 8px rgba(255, 107, 138, 0.7);
  animation: pulse 1.6s ease-in-out infinite;
}

.stream-frame-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(ellipse 260px 260px at 50% 20%, rgba(155, 48, 255, 0.14), transparent 65%),
    #0c0c14;
}

.stream-frame-body img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

/* ---------- overlay demo (live) ---------- */
.overlay-demo { display: flex; flex-direction: column; gap: 12px; }

.od-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.od-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}

.od-ico { font-size: 12px; line-height: 1; }
.od-star { color: var(--coin); }
.od-check { color: var(--ok); }

.od-badge {
  background: rgba(255, 107, 138, 0.16);
  color: var(--err);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 2px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.od-pill-flash .od-badge {
  background: var(--ok);
  color: #06210f;
  transform: scale(1.18);
}

.od-pill-flash {
  border-color: rgba(61, 220, 132, 0.5);
  box-shadow: 0 0 18px rgba(61, 220, 132, 0.25);
}

.od-card {
  position: relative;
  flex: 1;
  min-height: 336px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(155, 48, 255, 0.1);
  overflow: hidden;
}

.od-face {
  position: absolute;
  inset: 0;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
}

.od-face.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s;
}

.od-face-round { display: flex; flex-direction: column; }

.od-timer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.od-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--err);
  background: rgba(255, 107, 138, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}

.od-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--err);
  animation: pulse 1.6s ease-in-out infinite;
}

.od-timer {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease, transform 0.3s ease;
}

.od-timer-bonus {
  color: var(--ok);
  transform: scale(1.12);
}

.od-bids {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 156px;
}

.od-bid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 12px;
}

.od-bid-new { animation: bidPop 0.5s ease; }

@keyframes bidPop {
  0% { transform: scale(0.94); background: rgba(155, 48, 255, 0.16); }
  100% { transform: scale(1); background: rgba(255, 255, 255, 0.03); }
}

.od-who {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
}

.od-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: none;
}

.od-coins {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--coin);
  font-weight: 600;
}

.od-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--card-border);
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

/* ---------- winner face ---------- */
.od-face-winner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.od-trophy {
  font-size: 40px;
  animation: trophyPop 0.6s cubic-bezier(.34,1.56,.64,1);
}

@keyframes trophyPop {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(8deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

.od-winner-label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--text-faint);
}

.od-winner-name {
  font-size: 21px;
  font-weight: 800;
  margin-top: 4px;
}

.od-winner-coins {
  font-family: var(--mono);
  color: var(--coin);
  font-size: 14px;
  margin-top: 6px;
}

.od-next {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-faint);
}

.od-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -12px;
  width: 7px;
  height: 12px;
  border-radius: 2px;
  opacity: 0.9;
  animation-name: confettiFall;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(340px) rotate(var(--rot, 220deg)); opacity: 0; }
}

/* ---------- particle background ---------- */
#bg-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.wrap { position: relative; z-index: 1; }

/* ---------- gradient headline text ---------- */
.grad-text {
  background: linear-gradient(90deg, var(--accent-2), var(--coin), var(--accent-2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 5s linear infinite;
}

@keyframes gradShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.02);
  margin: 8px 0 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 13px 0;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  white-space: nowrap;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- shine sweep on buttons ---------- */
.shine { position: relative; overflow: hidden; }

.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.shine:hover::before { left: 130%; }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleOut 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleOut {
  to { transform: scale(1); opacity: 0; }
}

/* ---------- tilt cards ---------- */
.tilt { will-change: transform; transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
  #bg-particles { display: none; }
  .grad-text { animation: none; background-position: 0 0; }
  .marquee-track { animation: none; }
  .shine::before { display: none; }
}

/* ---------- section headings ---------- */
.section-head {
  margin: 0 0 30px;
}

.section-head h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
}

.section-head p {
  color: var(--text-dim);
  margin: 0;
  max-width: 52ch;
}

/* ---------- plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 18px;
  padding: 20px 0 64px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(209, 139, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.plan-card.highlight {
  border-color: rgba(209, 139, 255, 0.5);
  box-shadow: 0 0 40px rgba(155, 48, 255, 0.18);
}

.plan-card.highlight:hover {
  box-shadow: 0 0 52px rgba(155, 48, 255, 0.26);
}

.plan-tag {
  position: absolute;
  top: -11px;
  left: 24px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.plan-name {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 600;
}

.plan-price {
  font-size: 34px;
  font-weight: 800;
}

.plan-price span {
  font-size: 15px;
  color: var(--text-faint);
  font-weight: 500;
}

.plan-blurb {
  color: var(--text-dim);
  font-size: 14px;
  min-height: 40px;
}

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 72px;
}

.step {
  display: flex;
  gap: 14px;
}

.step-num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-2);
}

.step h3 {
  margin: 2px 0 6px;
  font-size: 15px;
}

.step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--card-border);
  padding: 26px 0 40px;
  color: var(--text-faint);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- checkout ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  padding: 40px 0 64px;
  align-items: start;
}

.panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px;
}

.panel h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.summary-row:last-child { border-bottom: none; }

.summary-row .label { color: var(--text-dim); }

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
  font-weight: 700;
  font-size: 17px;
}

select, input[type="email"] {
  width: 100%;
  background: #16161f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 14px;
}

select:focus, input:focus { outline: none; border-color: var(--accent-2); }

label.field-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.pay-box {
  text-align: center;
}

.qr-wrap {
  width: 190px;
  height: 190px;
  margin: 0 auto 18px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
}

.qr-wrap img { width: 100%; height: 100%; display: block; }

.pay-amount {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.pay-currency-label {
  color: var(--text-faint);
  font-size: 13px;
  margin-bottom: 22px;
}

.addr-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0e0e14;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 20px;
}

.addr-box code {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text);
  word-break: break-all;
  text-align: left;
  flex: 1;
}

.copy-btn {
  flex: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  color: var(--text);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
}

.copy-btn:hover { border-color: rgba(255, 255, 255, 0.2); }

.status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.spinner {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent-2);
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.status-line.ok { color: var(--ok); }
.status-line.err { color: var(--err); }

/* ---------- redeem ---------- */
.redeem-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.redeem-card {
  width: 100%;
  max-width: 460px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow);
}

.redeem-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.redeem-card h1 {
  font-size: 20px;
  margin: 0 0 6px;
}

.redeem-card p.sub {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0 0 24px;
}

.key-box {
  background: #0e0e14;
  border: 1px solid rgba(209, 139, 255, 0.35);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
}

.key-value {
  font-family: var(--mono);
  font-size: 19px;
  letter-spacing: 1.5px;
  color: var(--accent-2);
  word-break: break-all;
}

.key-expiry {
  font-size: 12px;
  color: var(--text-faint);
  margin: 8px 0 22px;
}

.redeem-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hint {
  font-size: 11.5px;
  color: var(--text-faint);
  margin-top: 18px;
  line-height: 1.5;
}

.step:nth-child(1) { transition-delay: 0ms; }
.step:nth-child(2) { transition-delay: 100ms; }
.step:nth-child(3) { transition-delay: 200ms; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero h1 { font-size: 32px; max-width: none; }
  .plans { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .showcase-grid { grid-template-columns: 1fr; }
  .stream-frame-body img { max-width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  html, body { animation: none; }
  .nav-cta { animation: none; }
}
