/* ============================================================
   LOTTOAXE OS — Sales Landing Page
   Cyberpunk / Futuristic Theme
   ============================================================ */

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

:root {
  --bg-void:       #050505;
  --bg-dark:       #0a0a0a;
  --bg-card:       #0d0d0d;
  --bg-card-hover: #111111;
  --neon:          #8DFF00;
  --neon-dim:      rgba(141, 255, 0, 0.35);
  --neon-glow:     rgba(141, 255, 0, 0.15);
  --amber:         #FFB300;
  --amber-dim:     rgba(255, 179, 0, 0.25);
  --purple:        #9B30FF;
  --purple-dim:    rgba(155, 48, 255, 0.2);
  --red:           #FF3B3B;
  --cyan:          #00F0FF;
  --text:          rgba(255, 255, 255, 0.88);
  --text-dim:      rgba(255, 255, 255, 0.5);
  --text-muted:    rgba(255, 255, 255, 0.3);
  --border:        rgba(141, 255, 0, 0.08);
  --font-mono:     'JetBrains Mono', 'Fira Code', 'SF Mono', 'Consolas', monospace;
  --font-display:  'Orbitron', 'Rajdhani', 'Exo 2', sans-serif;
  --font-body:     'Inter', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
section[id] { scroll-margin-top: 80px; }

body {
  background: var(--bg-void);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--neon); text-decoration: none; transition: color 0.2s; }
a:hover { color: #b0ff50; }

img { max-width: 100%; height: auto; display: block; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-neon { color: var(--neon); }
.text-amber { color: var(--amber); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 2rem; }

/* --- Animated Grid Background --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(141, 255, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 255, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Scan line overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(5, 5, 5, 0.95);
  border-bottom-color: var(--neon-dim);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--neon);
  text-transform: uppercase;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

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

.nav-cta {
  font-family: var(--font-mono) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: var(--bg-void) !important;
  background: var(--neon) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: #a5ff40 !important;
  color: var(--bg-void) !important;
  box-shadow: 0 0 20px var(--neon-dim);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neon);
  margin: 4px 0;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(141, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated circuit lines */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(155, 48, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(141, 255, 0, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-logo {
  width: 340px;
  height: 340px;
  margin: 0 auto 2rem;
  border-radius: 0;
  animation: hero-float 6s ease-in-out infinite, hero-glow 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(141, 255, 0, 0.2)) drop-shadow(0 0 80px rgba(128, 0, 255, 0.12));
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}

@keyframes hero-glow {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(141, 255, 0, 0.2)) drop-shadow(0 0 80px rgba(128, 0, 255, 0.12)); }
  50% { filter: drop-shadow(0 0 60px rgba(141, 255, 0, 0.4)) drop-shadow(0 0 100px rgba(128, 0, 255, 0.25)); }
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(141, 255, 0, 0.06);
  border: 1px solid var(--neon-dim);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--neon) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--neon);
  color: var(--bg-void);
  box-shadow: 0 0 25px rgba(141, 255, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  background: #a5ff40;
  color: var(--bg-void);
  box-shadow: 0 0 40px rgba(141, 255, 0, 0.35), 0 0 80px rgba(141, 255, 0, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  color: var(--neon);
  border-color: var(--neon-dim);
  background: rgba(141, 255, 0, 0.04);
}

.btn-discord {
  background: #5865F2;
  color: #fff;
  border: 1px solid rgba(88, 101, 242, 0.6);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.15);
}

.btn-discord:hover {
  background: #4752C4;
  color: #fff;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.35), 0 0 60px rgba(88, 101, 242, 0.1);
  transform: translateY(-2px);
}

.btn-discord svg {
  flex-shrink: 0;
}

.btn-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neon);
}

/* --- Section Base --- */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* --- Feature Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  border-color: rgba(141, 255, 0, 0.2);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--neon-glow);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-icon--neon { background: rgba(141, 255, 0, 0.08); color: var(--neon); }
.feature-icon--amber { background: rgba(255, 179, 0, 0.08); color: var(--amber); }
.feature-icon--purple { background: var(--purple-dim); color: var(--purple); }
.feature-icon--cyan { background: rgba(0, 240, 255, 0.08); color: var(--cyan); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* --- Screenshots / Gallery --- */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.screenshots-grid--real {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.screenshots-grid--real .screenshot-frame img {
  width: 100%;
  display: block;
  border-radius: 0 0 11px 11px;
}

.screenshots-grid--real .screenshot-frame {
  overflow: hidden;
}

.screenshot-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.screenshot-frame:hover {
  border-color: var(--neon-dim);
  box-shadow: 0 0 30px var(--neon-glow);
  transform: translateY(-4px);
}

.screenshot-frame img {
  width: 100%;
  display: block;
  border-radius: 11px;
}

/* Title bar on screenshot */
.screenshot-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(20, 20, 20, 0.9);
  border-bottom: 1px solid var(--border);
}

.screenshot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.screenshot-dot--r { background: #FF5F57; }
.screenshot-dot--y { background: #FEBC2E; }
.screenshot-dot--g { background: #28C840; }

.screenshot-bar span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-left: 0.5rem;
}

/* Placeholder for screenshots */
.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(141, 255, 0, 0.03) 0%, rgba(155, 48, 255, 0.03) 100%),
    var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.screenshot-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-muted);
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

/* --- Pricing Section --- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--neon-dim);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(141, 255, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-product-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(141, 255, 0, 0.15));
  border-radius: 12px;
}

.pricing-card--nerdqaxe .pricing-product-img {
  filter: drop-shadow(0 0 20px rgba(180, 77, 255, 0.15));
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg-void);
  background: var(--neon);
  padding: 0.5rem 1.4rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-amount sup {
  font-size: 1.8rem;
  vertical-align: super;
  color: var(--neon);
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(141, 255, 0, 0.1);
  color: var(--neon);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1.1rem 2rem;
}

/* --- Pricing Grid (three-card layout) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.cloud-card-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid .pricing-card {
  max-width: 100%;
}

.pricing-card--nerdqaxe {
  border-color: rgba(180, 77, 255, 0.5);
  position: relative;
  overflow: visible;
}

.pricing-badge--beta {
  background: linear-gradient(135deg, #b44dff 0%, #8b5cf6 100%);
}

/* Strikethrough original price */
.pricing-original {
  font-size: 2rem;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 3px;
  opacity: 0.5;
  margin-right: 0.5rem;
  font-weight: 400;
}

.pricing-original sup {
  font-size: 1rem;
}

/* Beta sale banner */
.pricing-sale-banner {
  background: linear-gradient(135deg, rgba(180, 77, 255, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(180, 77, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: 0 0 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  color: #c084fc;
  text-transform: uppercase;
}

/* Purple buy button for NerdQaxe */
.pricing-btn--nerdqaxe {
  background: linear-gradient(135deg, #b44dff 0%, #8b5cf6 100%) !important;
  border-color: #b44dff !important;
  color: #fff !important;
}

.pricing-btn--nerdqaxe:hover {
  background: linear-gradient(135deg, #c77dff 0%, #a78bfa 100%) !important;
  box-shadow: 0 0 30px rgba(180, 77, 255, 0.4);
  transform: translateY(-2px);
}

.badge-beta {
  display: inline-block;
  font-size: 0.65rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.pricing-feature--beta {
  color: var(--neon) !important;
  font-style: italic;
}

.pricing-disclaimer {
  font-size: 0.6rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  opacity: 0.6;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* --- Cloud Monitor Card --- */
.pricing-card--cloud {
  border-color: rgba(0, 212, 255, 0.4);
  overflow: visible;
}

.pricing-card--cloud::before {
  background: radial-gradient(circle at top center, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
}

.pricing-card--cloud .pricing-product-img {
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
}

.pricing-badge--cloud {
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
}

.pricing-card--cloud .pricing-features li::before {
  background: rgba(0, 212, 255, 0.12);
  color: #00d4ff;
}

.pricing-card--cloud .pricing-amount {
  color: #00d4ff;
  font-size: 3rem;
}

.pricing-btn--cloud {
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%) !important;
  border-color: #00d4ff !important;
  color: #000 !important;
  font-weight: 700 !important;
}

.pricing-btn--cloud:hover {
  background: linear-gradient(135deg, #38e0ff 0%, #38bdf8 100%) !important;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.pricing-cloud-included {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: 0 0 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  color: #7dd3fc;
  text-transform: uppercase;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon);
  letter-spacing: 1px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-item:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* --- Compatibility --- */
.compat-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.compat-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.compat-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon-dim);
}

/* --- CTA Banner --- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(141, 255, 0, 0.04) 0%, rgba(155, 48, 255, 0.04) 100%),
    var(--bg-card);
  border: 1px solid var(--neon-dim);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links a:hover { color: var(--neon); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-dim), transparent);
  margin: 0;
  border: none;
}

/* --- Glow accents --- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb--green {
  background: rgba(141, 255, 0, 0.08);
  width: 400px;
  height: 400px;
}

.glow-orb--purple {
  background: rgba(155, 48, 255, 0.06);
  width: 350px;
  height: 350px;
}

/* --- Tip Jar --- */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tip-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

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

/* Coin accent colors */
.tip-card--btc { --coin: #F7931A; }
.tip-card--eth { --coin: #627EEA; }
.tip-card--doge { --coin: #C2A633; }
.tip-card--sol { --coin: #9945FF; }
.tip-card--ltc { --coin: #345D9D; }
.tip-card--xrp { --coin: #23292F; }
.tip-card--ada { --coin: #0033AD; }
.tip-card--dot { --coin: #E6007A; }

.tip-card::before {
  background: linear-gradient(90deg, transparent, var(--coin), transparent);
}

.tip-card:hover {
  border-color: color-mix(in srgb, var(--coin) 30%, transparent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px color-mix(in srgb, var(--coin) 12%, transparent);
}

.tip-icon {
  color: var(--coin, var(--neon));
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--coin) 40%, transparent));
}

.tip-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.tip-address {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.tip-address:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: color-mix(in srgb, var(--coin) 30%, transparent);
}

.tip-address code {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-dim);
  word-break: break-all;
  line-height: 1.5;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.tip-address:hover code {
  color: var(--text);
}

.tip-copy-hint {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  transition: opacity 0.2s;
}

.tip-copied-msg {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon);
  margin-top: 0.4rem;
  text-shadow: 0 0 8px rgba(141, 255, 0, 0.3);
}

.tip-address.copied {
  border-color: var(--neon-dim);
  background: rgba(141, 255, 0, 0.04);
}

.tip-address.copied code {
  color: var(--neon);
}

.tip-address.copied .tip-copy-hint { display: none; }
.tip-address.copied .tip-copied-msg { display: block; }

/* --- Animations --- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-in.visible:nth-child(2) { transition-delay: 0.1s; }
.animate-in.visible:nth-child(3) { transition-delay: 0.2s; }
.animate-in.visible:nth-child(4) { transition-delay: 0.25s; }
.animate-in.visible:nth-child(5) { transition-delay: 0.3s; }
.animate-in.visible:nth-child(6) { transition-delay: 0.35s; }
.animate-in.visible:nth-child(7) { transition-delay: 0.4s; }
.animate-in.visible:nth-child(8) { transition-delay: 0.45s; }

/* Pulsing neon keyframe */
@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(141, 255, 0, 0.2); }
  50% { box-shadow: 0 0 40px rgba(141, 255, 0, 0.35), 0 0 80px rgba(141, 255, 0, 0.1); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
  .hero-logo { width: 240px; height: 240px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .screenshots-grid--real { grid-template-columns: 1fr; gap: 1rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 2rem; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
  .tip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .compat-grid { flex-direction: column; align-items: stretch; }
  .tip-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* --- Scroll indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
}

/* --- Warning / Disclaimer mini bar --- */
.disclaimer-bar {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

/* --- Hero Button Fix --- */
.btn-hero {
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  animation: neon-pulse 3s ease-in-out infinite;
}

/* --- Mock Screenshot Screens --- */
.mock-screen {
  background: #0a0a0a;
  padding: 0.75rem;
  min-height: 260px;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(141, 255, 0, 0.06);
  margin-bottom: 0.75rem;
}

.mock-brand {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--neon);
}

.mock-title-green {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--neon);
  text-transform: uppercase;
}

.mock-pills {
  display: flex;
  gap: 0.4rem;
}

.mock-pill {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.mock-pill--green {
  background: rgba(141, 255, 0, 0.12);
  color: var(--neon);
  border: 1px solid rgba(141, 255, 0, 0.25);
}

.mock-pill--amber {
  background: rgba(255, 179, 0, 0.12);
  color: var(--amber);
  border: 1px solid rgba(255, 179, 0, 0.25);
}

.mock-pill--dim {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.mock-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.mock-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(141, 255, 0, 0.06);
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
}

.mock-stat-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.mock-stat-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.mock-stat-val--big {
  font-size: 1rem;
  color: #fff;
}

.mock-stat-val--neon {
  color: var(--neon);
  text-shadow: 0 0 8px rgba(141, 255, 0, 0.3);
}

.mock-chart {
  height: 80px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(141, 255, 0, 0.04) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 20%, rgba(141, 255, 0, 0.03) 20%, rgba(141, 255, 0, 0.03) 20.5%);
  border: 1px solid rgba(141, 255, 0, 0.06);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.mock-chart::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  height: 60%;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 179, 0, 0.3) 10%,
      rgba(255, 179, 0, 0.5) 20%,
      rgba(255, 179, 0, 0.3) 30%,
      rgba(255, 179, 0, 0.6) 45%,
      rgba(255, 179, 0, 0.4) 55%,
      rgba(255, 179, 0, 0.7) 70%,
      rgba(255, 179, 0, 0.5) 80%,
      rgba(255, 179, 0, 0.4) 90%,
      transparent 100%
    );
  mask: polygon(0% 80%, 10% 60%, 20% 70%, 30% 40%, 40% 55%, 50% 30%, 60% 45%, 70% 20%, 80% 35%, 90% 25%, 100% 40%, 100% 100%, 0% 100%);
  -webkit-mask: polygon(0% 80%, 10% 60%, 20% 70%, 30% 40%, 40% 55%, 50% 30%, 60% 45%, 70% 20%, 80% 35%, 90% 25%, 100% 40%, 100% 100%, 0% 100%);
}

/* Preset cards */
.mock-preset {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(141, 255, 0, 0.06);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mock-dim {
  color: var(--text-muted);
  margin-left: auto;
  font-size: 0.55rem;
}

.mock-badge {
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
}

.mock-badge--green {
  background: rgba(141, 255, 0, 0.15);
  color: var(--neon);
}

.mock-badge--amber {
  background: rgba(255, 179, 0, 0.15);
  color: var(--amber);
}

.mock-badge--red {
  background: rgba(255, 59, 59, 0.15);
  color: var(--red);
}

/* Scoreboard table */
.mock-table {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mock-row {
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.015);
}

.mock-row--header {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(141, 255, 0, 0.06);
  padding-bottom: 0.5rem;
}

.mock-row--gold {
  background: rgba(255, 215, 0, 0.05);
  color: #FFD700;
}

.mock-row--silver {
  background: rgba(192, 192, 192, 0.04);
  color: #C0C0C0;
}

.mock-row--bronze {
  background: rgba(205, 127, 50, 0.04);
  color: #CD7F32;
}

/* --- Particle effect for hero --- */
@keyframes float-particle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--neon);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

/* Responsive mock adjustments */
@media (max-width: 768px) {
  .mock-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mock-stat-val { font-size: 0.75rem; }
}
