/* ═══════════════════════════════════════════════
   EVULTO™ — 3D LANDING PAGE STYLES
   ═══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --bg: #0a0b0d;
  --bg-rgb: 10, 11, 13;
  --surface: #111318;
  --raised: #1a1c22;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #fafafa;
  --text-secondary: #9ca3af;
  --text-tertiary: #6b7280;
  --orange: #ff6b35;
  --orange-rgb: 255, 107, 53;
  --orange-deep: #e84d20;
  --lime: var(--orange);
  --lime-rgb: var(--orange-rgb);
  --lime-dim: var(--orange-deep);
  --ink: #0a0b0d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-glow: 0 0 40px rgba(var(--lime-rgb), 0.15);
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-accent: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--raised) var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── 3D Canvas ── */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.lime-text {
  color: var(--lime);
}

/* ── CSS-only entrance animations (replaces broken GSAP from()) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow   { animation: fadeUp 0.7s 0.2s both; }
.hero-headline  { animation: fadeUp 0.8s 0.4s both; }
.hero-sub        { animation: fadeUp 0.7s 0.6s both; }
.hero-stats      { animation: fadeUp 0.6s 1.0s both; }
#hero .waitlist-form { animation: fadeUp 0.6s 0.8s both; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(var(--bg-rgb), 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  padding: 12px 0;
  background: rgba(var(--bg-rgb), 0.85);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.wordmark-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.wordmark .tm {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--lime);
}

.nav-cta {
  background: rgba(var(--lime-rgb), 0.1);
  border: 1px solid rgba(var(--lime-rgb), 0.3);
  padding: 8px 20px !important;
  border-radius: var(--radius-sm);
  color: var(--lime) !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: rgba(var(--lime-rgb), 0.2) !important;
  border-color: var(--lime) !important;
  box-shadow: 0 0 20px rgba(var(--lime-rgb), 0.15);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 28px 100px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 3px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--lime-rgb), 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(var(--lime-rgb), 0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 110px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-primary {
  position: relative;
  background: var(--lime);
  color: var(--ink);
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:hover .cta-glow {
  width: 300px;
  height: 300px;
}

.cta-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.cta-secondary:hover {
  border-color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--lime);
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInScroll 1s 2.5s forwards;
}


@keyframes fadeInScroll {
  to { opacity: 0.4; }
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════
   COACH ROSTER BAR
   ═══════════════════════════════════════════════ */
#coaches-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
  background: var(--surface);
}

.coaches-eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.coach-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.coach-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coach-chip:hover {
  border-color: var(--lime);
  background: rgba(var(--lime-rgb), 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--lime-rgb), 0.1);
}

.coach-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--raised), var(--surface));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--lime);
}

.coach-chip:hover .coach-avatar {
  border-color: var(--lime);
  background: rgba(var(--lime-rgb), 0.1);
}

.coach-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coach-name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.8px;
}

.coach-style {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════ */
#features {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--lime-rgb), 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(var(--lime-rgb), 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 48px 36px;
  background: linear-gradient(145deg, var(--surface), rgba(var(--lime-rgb), 0.02));
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.live-badge {
  color: var(--lime);
  border-color: rgba(var(--lime-rgb), 0.3);
  background: rgba(var(--lime-rgb), 0.05);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.feature-card-large .feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-card-large .feature-title {
  font-size: 28px;
  letter-spacing: -0.5px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.feature-desc em {
  color: var(--lime);
  font-style: normal;
  font-size: 13px;
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  line-height: 1.6;
}

.feature-card-large .feature-desc {
  font-size: 16px;
  max-width: 420px;
}

.feature-tags {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(var(--lime-rgb), 0.06);
  border: 1px solid rgba(var(--lime-rgb), 0.15);
  color: var(--lime-dim);
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
#how-it-works {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 320px;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  border-color: rgba(var(--lime-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--lime);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step-card:hover .step-number {
  opacity: 1;
  transition: opacity 0.4s;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════ */
#quote-section {
  padding: 120px 0;
}

.quote-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-marks {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--lime);
  opacity: 0.12;
  line-height: 0.5;
  margin-bottom: 10px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.3;
  letter-spacing: -1px;
}

/* ═══════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════ */
#pricing {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.price-card-featured {
  border-color: rgba(var(--lime-rgb), 0.4);
  background: linear-gradient(180deg, rgba(var(--lime-rgb), 0.04), var(--bg));
  transform: scale(1.05);
}

.price-card-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink);
  background: var(--lime);
  padding: 5px 16px;
  border-radius: 20px;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}

.price-currency {
  font-size: 24px;
  color: var(--text-secondary);
  font-weight: 600;
}

.price-value {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
}

.price-decimal {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-secondary);
}

.price-period {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--text-tertiary);
  font-size: 14px;
}

.check.lime {
  color: var(--lime);
}

.price-cta {
  display: block;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all 0.3s;
}

.price-cta-primary {
  background: var(--lime);
  color: var(--ink);
}

.price-cta-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.price-cta-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.price-cta-secondary:hover {
  border-color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   WAITLIST SECTION
   ═══════════════════════════════════════════════ */
#waitlist {
  padding: 120px 0;
}

.waitlist-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-sub {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-weight: 300;
}

.waitlist-form {
  margin-bottom: 32px;
}

.input-group {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.input-group input {
  flex: 1;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}

.input-group input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(var(--lime-rgb), 0.1);
}

.input-group input::placeholder {
  color: var(--text-tertiary);
}

.submit-btn {
  white-space: nowrap;
  padding: 18px 28px;
  font-size: 13px;
}

.waitlist-note {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 14px;
}

.waitlist-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-secondary);
}

.avatar-stack {
  display: flex;
}

.mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--raised);
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--lime);
  margin-left: -8px;
}

.mini-avatar:first-child {
  margin-left: 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
}

.wordmark-footer {
  font-size: 20px;
}

.footer-tagline {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════
   3D FORM CORRECTION DEMO
   ═══════════════════════════════════════════════ */
#form-demo {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.demo-subtext {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* HUD Panel */
.hud-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.hud-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  font-weight: 600;
}

.hud-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.hud-stat-box {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.8px;
  color: var(--text-tertiary);
}

.angle-value, .depth-value {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.angle-value.good, .depth-value.good {
  color: #22c55e;
}

.angle-value.warn, .depth-value.warn {
  color: var(--orange);
}

.hud-correction-box {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.correction-text {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  transition: color 0.3s;
}

.correction-text.good {
  color: #22c55e;
}

.correction-text.warn {
  color: var(--orange);
}

/* Score Display */
.score-display {
  display: flex;
  align-items: center;
  gap: 24px;
}

.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.score-circle-bg {
  fill: none;
  stroke: var(--raised);
  stroke-width: 8px;
}

.score-circle-fg {
  fill: none;
  stroke-width: 8px;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 0.35s ease, stroke 0.3s ease;
}

.score-value-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

#form-score {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--text);
}

.score-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.5px;
  color: var(--text-tertiary);
}

.score-info h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.score-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

/* 3D Visualizer Canvas Wrap */
.canvas-wrap {
  width: 100%;
  height: 520px;
  background: radial-gradient(circle at center, #161820 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  cursor: grab;
}

.canvas-wrap:active {
  cursor: grabbing;
}

#person-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* HUD view finder overlays */
.canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(var(--lime-rgb), 0.35);
  border-style: solid;
  pointer-events: none;
}

.overlay-corner.top-left {
  top: 20px;
  left: 20px;
  border-width: 2px 0 0 2px;
}

.overlay-corner.top-right {
  top: 20px;
  right: 20px;
  border-width: 2px 2px 0 0;
}

.overlay-corner.bottom-left {
  bottom: 20px;
  left: 20px;
  border-width: 0 0 2px 2px;
}

.overlay-corner.bottom-right {
  bottom: 20px;
  right: 20px;
  border-width: 0 2px 2px 0;
}

.overlay-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: fit-content;
}

.scanner-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.overlay-hint {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-tertiary);
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 auto;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .canvas-wrap {
    height: 460px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .price-card-featured {
    transform: none;
  }
  .price-card-featured:hover {
    transform: translateY(-4px);
  }
  .steps-row {
    flex-direction: column;
    gap: 20px;
  }
  .step-connector {
    transform: rotate(90deg);
    width: 40px;
    height: 30px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
  #hero {
    padding: 120px 20px 80px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .coach-row {
    gap: 10px;
  }
  .coach-chip {
    padding: 10px 14px;
  }
  .coach-style {
    display: none;
  }
  .input-group {
    flex-direction: column;
  }
  .submit-btn {
    width: 100%;
  }
  .quote-text {
    font-size: clamp(20px, 5vw, 32px);
  }
}

/* Waitlist Feedback Messages */
.waitlist-msg {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.4px;
  min-height: 22px;
  text-align: center;
}
.waitlist-msg.ok {
  color: #22c55e;
}
.waitlist-msg.err {
  color: #ef4444;
}

/* Coaches Lineup Grid */
#coaches {
  background: var(--surface);
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.coach-card {
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coach-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.coach-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  border: 2px solid currentColor;
  transition: transform 0.4s ease;
}

.coach-card:hover .coach-avatar {
  transform: scale(1.08) rotate(5deg);
}

.coach-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.coach-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}

/* Responsive Coach Grid */
@media (max-width: 900px) {
  .coach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .coach-grid {
    grid-template-columns: 1fr;
  }
}

/* Sound Button and Visualizer Controls */
.sound-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.sound-btn:hover {
  color: var(--lime);
}

.sound-btn.muted .waves {
  display: none;
}

.sound-icon-svg {
  width: 20px;
  height: 20px;
}

.hud-control-btn {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.hud-control-btn:hover {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.hud-control-btn.active {
  background: #ef4444;
  border-color: #ef4444;
  color: var(--text);
  animation: flash-red 1.5s infinite;
}

@keyframes flash-red {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 20px rgba(239, 68, 68, 0.7); }
}

.overlay-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.exercise-selector-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  pointer-events: auto;
  margin-bottom: 8px;
  margin-top: auto; /* Push it to the bottom above the hint */
}

.exercise-tab {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.exercise-tab:hover {
  color: var(--text);
  border-color: var(--text-secondary);
}

.exercise-tab.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(46,230,214, 0.35);
}

/* ═══════════════════════════════════════════════
   UPSELL PAGE STYLES
   ═══════════════════════════════════════════════ */

.upsell-body {
  background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.08), transparent 60%), var(--bg);
  min-height: 100vh;
}

.upsell-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  display: flex;
  align-items: center;
}

.upsell-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.upsell-hero {
  text-align: center;
  margin-bottom: 64px;
}

.upsell-badge {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 999px;
  margin-bottom: 24px;
}

.upsell-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.upsell-headline .rocket {
  -webkit-text-fill-color: initial;
  background: none;
  display: inline-block;
  animation: rocket-float 2.5s ease-in-out infinite;
}

@keyframes rocket-float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

.upsell-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
}

.upsell-position-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.06), rgba(255, 107, 53, 0.02));
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.1);
}

.upsell-position {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  line-height: 1;
  background: linear-gradient(180deg, #ff6b35 0%, #e84d20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}

.upsell-position-label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Cards Grid ── */
.upsell-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}

@media (max-width: 880px) {
  .upsell-cards {
    grid-template-columns: 1fr;
  }
}

.upsell-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  background: rgba(26, 28, 34, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.upsell-card-paid {
  border-color: rgba(255, 107, 53, 0.4);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08), rgba(26, 28, 34, 0.8));
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.upsell-card-free {
  border-color: rgba(46,230,214, 0.35);
  background: linear-gradient(180deg, rgba(46,230,214, 0.04), rgba(26, 28, 34, 0.8));
  box-shadow: 0 20px 60px rgba(46,230,214, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.upsell-card-label,
.upsell-card-label-free {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  border-radius: 999px;
  font-weight: 700;
}

.upsell-card-label {
  background: var(--orange);
  color: var(--ink);
}

.upsell-card-label-free {
  background: #2ee6d6;
  color: var(--ink);
}

.upsell-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

.upsell-card-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.upsell-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upsell-benefits li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.upsell-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 16px;
}

.upsell-benefits li strong {
  color: var(--text);
  font-weight: 700;
}

.upsell-cta-paid {
  display: block;
  padding: 18px 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ff6b35, #e84d20);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: auto;
}

.upsell-cta-paid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(255, 107, 53, 0.55);
}

.upsell-fineprint {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

/* ── Referral Box ── */
.referral-box-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.referral-box {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: all;
}

.referral-copy-btn {
  padding: 14px 18px;
  background: #2ee6d6;
  color: var(--ink);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.1s ease;
  white-space: nowrap;
}

.referral-copy-btn:hover {
  transform: scale(1.03);
}

.referral-copy-btn:active {
  transform: scale(0.97);
}

/* ── Share Buttons ── */
.share-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s ease;
}

.share-btn:hover {
  border-color: rgba(46,230,214, 0.5);
  background: rgba(46,230,214, 0.06);
  transform: translateY(-1px);
}

.share-icon {
  font-size: 16px;
}

.share-whatsapp:hover { border-color: #25d366; }
.share-twitter:hover { border-color: #ffffff; }
.share-email:hover { border-color: #ff6b35; }

/* ── Referral Progress ── */
.referral-progress {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.referral-progress-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-align: center;
}

.referral-progress-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.referral-progress-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.referral-progress-dots .dot.filled {
  background: #2ee6d6;
  border-color: #2ee6d6;
  box-shadow: 0 0 14px rgba(46,230,214, 0.6);
}

.referral-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.referral-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2ee6d6, #b8e600);
  width: 0%;
  transition: width 0.5s ease;
  box-shadow: 0 0 12px rgba(46,230,214, 0.5);
}

/* ── Trust Block ── */
.upsell-trust {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px;
}

.upsell-trust h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
}

.upsell-trust p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.upsell-back-link {
  color: var(--orange);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.upsell-back-link:hover {
  text-decoration: underline;
}

.upsell-footer {
  text-align: center;
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   ADMIN PANEL STYLES
   ═══════════════════════════════════════════════ */

.admin-body {
  background: var(--bg);
  min-height: 100vh;
  font-family: var(--font-body);
}

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

.admin-login-card {
  width: 100%;
  max-width: 400px;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  background: rgba(26, 28, 34, 0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  text-align: center;
}

.admin-login-card h1 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text);
}

.admin-login-card input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  margin-bottom: 16px;
}

.admin-login-card input:focus {
  outline: none;
  border-color: var(--orange);
}

.admin-login-card button {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.admin-login-error {
  color: #ff4d4d;
  font-size: 13px;
  margin-top: 12px;
  font-family: var(--font-mono);
}

.admin-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
}

.admin-card {
  padding: 24px;
  background: rgba(26, 28, 34, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.admin-card h2 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 720px) {
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

.admin-stat {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.admin-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admin-stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  background: linear-gradient(180deg, #ff6b35 0%, #e84d20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-weight: 500;
}

.admin-table td {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 13px;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.admin-table .email-cell { color: var(--text); }
.admin-table .source-cell {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 4px;
  font-size: 11px;
  color: var(--orange);
}

.admin-btn {
  padding: 10px 16px;
  background: var(--orange);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
}

.admin-loading {
  text-align: center;
  padding: 32px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 13px;
}

.admin-table-wrap {
  overflow-x: auto;
}


/* ═══ VANGUARD PASS — SCARCITY BANNER ═══ */
.scarcity-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: 20px; padding: 8px 16px; margin-bottom: 20px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px;
  color: var(--orange); animation: fadeUp 0.6s 0.7s both;
}
.scarcity-banner-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse-dot 2s infinite; }

/* ═══ UPSELL — VIP VANGUARD PASS ═══ */
.upsell-body { background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,107,53,0.12), transparent 60%), var(--bg); min-height: 100vh; }
.upsell-nav { position: static; background: transparent; border-bottom: none; padding: 24px 0; }
.upsell-nav .wordmark { padding-left: 28px; color: var(--text); text-decoration: none; }
.upsell-main { max-width: 940px; margin: 0 auto; padding: 20px 28px 80px; }
.upsell-hud { text-align: center; margin-bottom: 48px; }
.upsell-confirm { font-family: var(--font-mono); font-size: 13px; letter-spacing: 2px; color: var(--lime); margin-bottom: 14px; }
.upsell-confirm .rocket { font-size: 16px; }
.upsell-headline { font-family: var(--font-display); font-size: clamp(32px,6vw,56px); line-height: 1.0; letter-spacing: -1.5px; margin-bottom: 18px; }
.upsell-position { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; }
.upsell-position strong { color: var(--text); font-family: var(--font-mono); }
.scarcity-counter { max-width: 480px; margin: 0 auto 24px; }
.scarcity-bar-track { height: 10px; background: var(--raised); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.scarcity-bar-fill { height: 100%; background: linear-gradient(90deg,#ff8050,#e84d20); border-radius: 8px; transition: width 1s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 0 12px rgba(255,107,53,0.5); }
.scarcity-label { font-size: 13px; color: var(--text-secondary); margin-top: 10px; }
.scarcity-label strong { color: var(--orange); }
.scarcity-remaining { color: var(--orange); }
.countdown-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.countdown-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--text-tertiary); }
.countdown-timer { font-family: var(--font-mono); font-size: 34px; font-weight: 700; color: var(--orange); letter-spacing: 2px; animation: timerPulse 1s infinite; }
.countdown-timer.urgent { color: #ef4444; }
.countdown-timer.expired { color: var(--text-tertiary); animation: none; font-size: 22px; }
@keyframes timerPulse { 0%,100% { opacity: 1; text-shadow: 0 0 12px rgba(255,107,53,0.4); } 50% { opacity: 0.85; text-shadow: 0 0 20px rgba(255,107,53,0.6); } }
.badge-reveal-section { text-align: center; margin-bottom: 52px; padding: 36px 24px; background: linear-gradient(145deg,var(--surface),rgba(255,107,53,0.03)); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.badge-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; color: var(--text-tertiary); margin-bottom: 18px; }
.vanguard-badge { display: inline-flex; align-items: center; gap: 14px; padding: 18px 32px; border-radius: var(--radius-md); background: rgba(0,0,0,0.4); border: 1px solid rgba(255,107,53,0.3); opacity: 0; transform: scale(0.92); }
.vanguard-badge.revealed { animation: badgeReveal 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes badgeReveal { to { opacity: 1; transform: scale(1); } }
.badge-emblem { font-size: 28px; color: var(--orange); filter: drop-shadow(0 0 8px rgba(255,107,53,0.6)); }
.badge-name { font-family: var(--font-display); font-size: clamp(22px,4vw,34px); letter-spacing: -0.5px; background: linear-gradient(135deg,#ff8050,#ffb13a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.badge-sub { font-size: 14px; color: var(--text-secondary); margin-top: 18px; }
.upsell-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.upsell-card { padding: 32px 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: rgba(255,255,255,0.02); backdrop-filter: blur(8px); display: flex; flex-direction: column; }
.upsell-card-paid { border-color: rgba(255,107,53,0.35); background: linear-gradient(180deg,rgba(255,107,53,0.05),transparent); }
.upsell-card-free { border-color: rgba(57,224,138,0.25); }
.upsell-card-head { font-family: var(--font-display); font-size: 16px; letter-spacing: 1px; color: var(--orange); margin-bottom: 14px; }
.upsell-card-head.lime { color: #39e08a; }
.upsell-card-copy { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.upsell-card-copy .strike { text-decoration: line-through; color: var(--text-tertiary); }
.upsell-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; flex: 1; }
.upsell-benefits li { font-size: 14px; color: var(--text-secondary); }
.upsell-cta-primary { display: block; text-align: center; background: linear-gradient(135deg,#ff8050,#e84d20); color: #fff; padding: 16px 24px; border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 14px; letter-spacing: 0.8px; text-decoration: none; transition: all 0.3s; }
.upsell-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255,107,53,0.4); }
.upsell-trust { font-size: 12px; color: var(--text-tertiary); text-align: center; margin-top: 12px; }
.referral-box { display: flex; gap: 8px; margin-bottom: 16px; }
.referral-box code { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-family: var(--font-mono); font-size: 12px; color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.referral-copy-btn { background: rgba(57,224,138,0.15); border: 1px solid rgba(57,224,138,0.4); color: #39e08a; border-radius: var(--radius-sm); padding: 0 16px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: all 0.3s; }
.referral-copy-btn:hover { background: rgba(57,224,138,0.25); }
.share-buttons { display: flex; gap: 8px; margin-bottom: 24px; }
.share-btn { flex: 1; text-align: center; padding: 10px; border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-decoration: none; cursor: pointer; transition: all 0.3s; }
.share-btn-whatsapp { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.4); color: #25d366; }
.share-btn-twitter { background: rgba(91,140,255,0.15); border: 1px solid rgba(91,140,255,0.4); color: #5b8cff; }
.share-btn-email { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text-secondary); }
.share-btn:hover { transform: translateY(-2px); }
.referral-progress { margin-bottom: 8px; }
.referral-progress-dots { display: flex; gap: 8px; margin-bottom: 10px; }
.prog-dot { flex: 1; height: 8px; border-radius: 6px; background: var(--raised); border: 1px solid var(--border); transition: all 0.4s; }
.prog-dot.filled { background: #39e08a; border-color: #39e08a; box-shadow: 0 0 10px rgba(57,224,138,0.5); }
.referral-progress-label { font-size: 13px; color: var(--text-secondary); }
.referral-progress-label strong { color: #39e08a; }
.success-unlock { margin-top: 16px; text-align: center; font-family: var(--font-display); font-size: 16px; color: #39e08a; padding: 14px; border-radius: var(--radius-sm); background: rgba(57,224,138,0.1); border: 1px solid rgba(57,224,138,0.4); animation: successPulse 1.5s infinite; }
@keyframes successPulse { 0%,100% { box-shadow: 0 0 12px rgba(57,224,138,0.3); } 50% { box-shadow: 0 0 24px rgba(57,224,138,0.6); } }
.upsell-skip { display: block; text-align: center; font-size: 13px; color: var(--text-tertiary); text-decoration: none; opacity: 0.6; transition: opacity 0.3s; }
.upsell-skip:hover { opacity: 1; }
@media (max-width: 880px) { .upsell-cards { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════
   PREMIUM UPSELL PAGE V2 — Glassmorphism, animations, social proof
   ═══════════════════════════════════════════════════════════════ */

.upsell-bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite;
}
.upsell-bg-orb-1 { width: 480px; height: 480px; background: radial-gradient(circle, #ff6b35 0%, transparent 70%); top: -120px; left: -120px; animation-delay: 0s; }
.upsell-bg-orb-2 { width: 540px; height: 540px; background: radial-gradient(circle, #ff8050 0%, transparent 70%); bottom: -160px; right: -160px; animation-delay: -6s; }
.upsell-bg-orb-3 { width: 360px; height: 360px; background: radial-gradient(circle, #e84d20 0%, transparent 70%); top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -12s; opacity: 0.25; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.upsell-glass {
  background: rgba(20, 22, 28, 0.55);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.upsell-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  position: relative;
  z-index: 10;
}
.upsell-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
}
.live-dot {
  width: 6px; height: 6px;
  background: #39e08a;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 10px #39e08a;
}
.live-text strong { color: #fff; font-weight: 700; }

.upsell-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  position: relative;
  z-index: 2;
}

.upsell-hud {
  padding: 40px 36px;
  margin-bottom: 24px;
  text-align: center;
}
.upsell-confirm-row {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.confirm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(57, 224, 138, 0.15), rgba(57, 224, 138, 0.05));
  border: 1px solid rgba(57, 224, 138, 0.3);
  border-radius: 100px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: #39e08a;
  text-transform: uppercase;
}
.confirm-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: #39e08a;
  color: #0a0b0d;
  border-radius: 50%;
  font-size: 10px; font-weight: 900;
}
.upsell-headline {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 12px;
  color: #fff;
}
.upsell-subhead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.upsell-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .upsell-stats-row { grid-template-columns: 1fr; }
}
.upsell-stat-card {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
}
.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}
.stat-value {
  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-divisor {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.stat-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.meta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.meta-dot-green { background: #39e08a; box-shadow: 0 0 8px #39e08a; }
.meta-dot-orange { background: #ff8050; box-shadow: 0 0 8px #ff8050; }
.meta-dot-red { background: #ff5b3a; box-shadow: 0 0 8px #ff5b3a; animation: pulse-dot 1.5s infinite; }

.countdown-mono {
  font-family: "JetBrains Mono", monospace !important;
  font-variant-numeric: tabular-nums;
}
.countdown-mono.urgent {
  color: #ff5b3a;
  animation: countdownPulse 1s ease-in-out infinite;
}
.countdown-mono.expired { color: rgba(255, 255, 255, 0.3); font-size: 24px; }
@keyframes countdownPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.scarcity-counter { margin-top: 8px; }
.scarcity-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.scarcity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff8050 0%, #ff6b35 50%, #ff5b3a 100%);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.5);
  position: relative;
}
.scarcity-bar-fill::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: barShimmer 2s ease-in-out infinite;
}
@keyframes barShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.scarcity-bar-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}
.tick.tick-end { color: #ff6b35; font-weight: 700; }

.badge-reveal-section {
  padding: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.badge-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.vanguard-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vanguard-badge.revealed { opacity: 1; transform: translateY(0) scale(1); }
@media (max-width: 600px) {
  .vanguard-badge { flex-direction: column; gap: 16px; }
}
.badge-hex-wrap {
  position: relative;
  width: 100px; height: 110px;
  flex-shrink: 0;
}
.badge-hex {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 20px rgba(255, 107, 53, 0.4));
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.badge-info { text-align: left; }
@media (max-width: 600px) { .badge-info { text-align: center; } }
.badge-name-line {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, #ff8050, #ff6b35, #e84d20);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.badge-subline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "JetBrains Mono", monospace;
}

.upsell-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 880px) {
  .upsell-cards { grid-template-columns: 1fr; }
}
.upsell-card {
  padding: 36px 30px !important;
  position: relative;
  display: flex;
  flex-direction: column;
}
.upsell-card-ribbon {
  position: absolute;
  top: -1px; right: 24px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ff6b35, #e84d20);
  color: #0a0b0d;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.upsell-card-paid {
  border: 1px solid rgba(255, 107, 53, 0.3) !important;
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.08), rgba(20, 22, 28, 0.55)) !important;
}
.upsell-card-free {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.upsell-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}
.card-head-icon { font-size: 22px; }

.price-block { margin-bottom: 18px; }
.price-now {
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  background: linear-gradient(135deg, #ff8050, #ff6b35);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -2px;
}
.price-now.price-free {
  background: linear-gradient(135deg, #39e08a, #2db96f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-was {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-family: "JetBrains Mono", monospace;
}

.upsell-card-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.upsell-card-copy strong { color: #fff; }

.upsell-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.upsell-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.benefit-tick {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  color: #ff6b35;
  border-radius: 50%;
  font-size: 11px; font-weight: 900;
  margin-top: 1px;
}

.upsell-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff8050 0%, #ff6b35 50%, #e84d20 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  letter-spacing: 0.8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
  cursor: pointer;
}
.upsell-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}
.cta-arrow { font-size: 18px; transition: transform 0.3s; }
.upsell-cta-primary:hover .cta-arrow { transform: translateX(4px); }

.upsell-trust {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.3px;
}

.referral-box {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 14px;
}
.referral-box code {
  flex: 1;
  padding: 12px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: transparent;
}
.referral-copy-btn {
  padding: 0 16px;
  background: #fff;
  color: #0a0b0d;
  border: none;
  border-radius: 8px;
  font-family: "Archivo Black", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}
.referral-copy-btn:hover { background: #f0f0f0; }
.referral-copy-btn.copied { background: #39e08a; color: #0a0b0d; }

.share-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .share-buttons { grid-template-columns: repeat(2, 1fr); }
}
.share-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.share-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }
.share-btn-whatsapp:hover { color: #25d366; border-color: #25d366; }
.share-btn-twitter:hover { color: #fff; border-color: #fff; }
.share-btn-email:hover { color: #5b8cff; border-color: #5b8cff; }
.share-btn-linkedin:hover { color: #0a66c2; border-color: #0a66c2; }
.share-btn-reddit:hover { color: #ff4500; border-color: #ff4500; }
.share-btn-telegram:hover { color: #26a5e4; border-color: #26a5e4; }
.share-btn-facebook:hover { color: #1877f2; border-color: #1877f2; }
.share-icon { font-size: 14px; }

.info-banner {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 14px;
  border: 1px solid rgba(91, 140, 255, 0.3) !important;
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.08), rgba(20, 22, 28, 0.55)) !important;
}
.info-banner-icon { font-size: 24px; flex-shrink: 0; }
.info-banner-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.55; }
.info-banner-text strong { color: #fff; }

.referral-progress {
  margin-top: auto;
  padding-top: 14px;
}
.referral-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.referral-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #39e08a, #2db96f);
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px rgba(57, 224, 138, 0.4);
}
.referral-progress-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.referral-progress-dots { display: flex; gap: 6px; }
.prog-dot {
  width: 10px; height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}
.prog-dot.filled {
  background: #39e08a;
  box-shadow: 0 0 8px #39e08a;
}
.referral-progress-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "JetBrains Mono", monospace;
  margin: 0;
}
.referral-progress-label strong { color: #fff; }

.success-unlock {
  margin-top: 14px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(57, 224, 138, 0.2), rgba(57, 224, 138, 0.05));
  border: 1px solid #39e08a;
  border-radius: 10px;
  color: #39e08a;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  text-align: center;
}

.claimers-section {
  padding: 28px;
  margin-bottom: 24px;
}
.claimers-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.claimers-title {
  display: flex; align-items: center; gap: 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.5px;
}
.claimers-pulse {
  width: 10px; height: 10px;
  background: #39e08a;
  border-radius: 50%;
  box-shadow: 0 0 12px #39e08a;
  animation: pulse-dot 2s infinite;
}
.claimers-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.claimers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.claimer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.2s;
  animation: claimerFadeIn 0.4s ease-out backwards;
}
.claimer-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}
@keyframes claimerFadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.claimer-avatar {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8050, #ff6b35);
  display: flex; align-items: center; justify-content: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: -0.3px;
}
.claimer-info { flex: 1; min-width: 0; }
.claimer-name {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}
.claimer-city {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  font-size: 12px;
}
.claimer-badge {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "JetBrains Mono", monospace;
}
.claimer-badge strong { color: #ff8050; }
.claimer-time {
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}
.claimers-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "JetBrains Mono", monospace;
}

.upsell-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 720px) { .upsell-trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  padding: 22px;
  text-align: center;
}
.trust-icon { font-size: 28px; margin-bottom: 10px; }
.trust-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.trust-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.upsell-skip {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-decoration: none;
  padding: 16px;
  transition: color 0.3s;
}
.upsell-skip:hover { color: rgba(255, 255, 255, 0.6); }

/* ── GDPR Cookie Consent Banner ── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 700px; margin: 0 auto;
  padding: 16px 20px;
  background: rgba(15, 17, 22, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  z-index: 9999;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-content {
  display: flex; align-items: center; gap: 16px;
  width: 100%; flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1; min-width: 250px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.cookie-banner-text a { color: #ff8050; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-family: "Archivo Black", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-primary {
  background: linear-gradient(135deg, #ff8050, #ff6b35);
  color: #fff;
}
.cookie-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3); }
.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-btn-secondary:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
@media (max-width: 600px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ── Skip to content link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: #ff6b35;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ── Info banner on upsell page ── */
.info-banner {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 14px;
  border: 1px solid rgba(91, 140, 255, 0.3) !important;
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.08), rgba(20, 22, 28, 0.55)) !important;
}
.info-banner-icon { font-size: 24px; flex-shrink: 0; }
.info-banner-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.info-banner-text strong { color: #fff; }
