:root {
  --bg: #000000;
  --bg-card: #0a0f1a;
  --bg-elevated: #0f1524;
  --accent: #7dd3fc;
  --accent-dark: #38bdf8;
  --accent-bright: #bae6fd;
  --accent-dim: rgba(125, 211, 252, 0.12);
  --accent-glow: rgba(56, 189, 248, 0.15);
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.78);
  --white-dim: rgba(255, 255, 255, 0.45);
  --border: rgba(125, 211, 252, 0.08);
  --amber: #fbbf24;
  --amber-dim: rgba(251, 191, 36, 0.12);
}

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

body {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  min-height: 100vh;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.accent {
  color: var(--accent);
  font-style: normal;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  color: var(--accent);
  text-align: center;
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(125, 211, 252, 0); }
}

.stage-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.stage-nav .container {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.stage-link {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-dim);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.stage-link:hover {
  color: var(--white);
  background: var(--bg-elevated);
}

.stage-link.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(125, 211, 252, 0.2);
}

.countdown-bar {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.15) 0%, rgba(56, 189, 248, 0.08) 100%);
  border-bottom: 1px solid rgba(125, 211, 252, 0.2);
  padding: 16px 20px;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.time-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.time-block span:first-child {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
}

.time-unit {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 2px;
}

.replay-container {
  padding: 50px 0 80px;
}

.replay-header {
  text-align: center;
  margin-bottom: 30px;
}

.pill {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.replay-header h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.subheadline {
  font-size: 1.15rem;
  color: var(--white-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-section {
  margin-bottom: 40px;
}

.video-wrapper {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px var(--accent-glow), 0 0 0 1px var(--border);
}

.offer-section {
  margin-bottom: 40px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.offer-header {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(125, 211, 252, 0.06) 100%);
  border-bottom: 1px solid var(--border);
  padding: 32px 36px;
  text-align: center;
}

.offer-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.offer-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.offer-sub {
  color: var(--white-dim);
  font-size: 1rem;
}

.offer-body {
  padding: 32px 36px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(125, 211, 252, 0.06);
}

.offer-item:last-of-type {
  border-bottom: none;
}

.check {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.value {
  font-size: 0.85rem;
  color: var(--white-dim);
}

.offer-total {
  margin-top: 16px;
  padding: 20px 0;
  border-top: 2px solid var(--border);
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--white-dim);
  font-size: 1.2rem;
}

.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 36px 32px;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.pricing-card.best-value {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(125, 211, 252, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  margin-top: 8px;
}

.pricing-credits {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.old-price {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--white-dim);
  font-weight: 600;
}

.new-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.quarterly-price {
  font-size: 2.4rem;
}

.pricing-period {
  font-size: 1rem;
  color: var(--white-dim);
  font-weight: 500;
}

.pricing-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--white-dim);
}

.btn-cta.btn-cta-secondary {
  background: var(--bg-card);
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-cta.btn-cta-secondary:hover {
  background: var(--accent);
  color: var(--bg);
}

.offer-footer {
  border-top: 1px solid var(--border);
  padding: 32px 36px;
  text-align: center;
}

.offer-countdown {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.12) 0%, rgba(56, 189, 248, 0.06) 100%);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 14px;
  padding: 24px 28px;
}

.offer-countdown-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.offer-countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.offer-time {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
}

.offer-sep {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 2px;
}

.offer-countdown-sub {
  font-size: 0.85rem;
  color: var(--white-dim);
  font-weight: 500;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(125, 211, 252, 0.25);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
  transform: translateX(5px);
}

.guarantee-text {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--white-dim);
}

.stages-callout {
  margin-bottom: 20px;
}

.stages-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stages-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.stages-info {
  flex: 1;
}

.stages-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stages-info p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.5;
}

.stages-links {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.stage-btn {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(125, 211, 252, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.stage-btn:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}

.footer {
  background: var(--bg);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer p {
  text-align: center;
  color: var(--white-dim);
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .replay-header h1 {
    font-size: 2.2rem;
  }

  .subheadline {
    font-size: 1rem;
  }

  .offer-header,
  .offer-body,
  .offer-footer {
    padding: 24px 20px;
  }

  .offer-header h2 {
    font-size: 1.4rem;
  }

  .pricing-options {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
  }

  .new-price {
    font-size: 2.2rem;
  }

  .quarterly-price {
    font-size: 2rem;
  }

  .btn-cta {
    font-size: 0.95rem;
    padding: 16px 28px;
  }

  .stages-card {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .stages-links {
    justify-content: center;
  }

  .stage-nav .container {
    gap: 4px;
  }

  .stage-link {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .total-line {
    font-size: 0.95rem;
  }
}
