/* ===========================
   BOBOMON STUDIOS — THEME
   =========================== */

:root {
  --bg: #060f0a;
  --bg-2: #0a1610;
  --surface: #0f1f18;
  --surface-2: #152a20;
  --accent: #00d4a4;
  --accent-dim: rgba(0, 212, 164, 0.12);
  --accent-glow: rgba(0, 212, 164, 0.25);
  --gold: #f5c842;
  --gold-dim: rgba(245, 200, 66, 0.15);
  --red: #e63946;
  --purple: #a855f7;
  --text: #e8f5f0;
  --text-2: #8ab5a0;
  --text-3: #4a7a63;
  --border: rgba(0, 212, 164, 0.08);
  --radius: 12px;
  --font-display: 'Lexend', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.5);
  background: rgba(6, 15, 10, 0.85);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.nav-wordmark strong {
  color: var(--text);
  font-weight: 700;
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  padding: 120px 80px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,164,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,164,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,164,0.12) 0%, transparent 70%);
  top: -100px; left: -200px;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.08) 0%, transparent 70%);
  bottom: 0; right: 200px;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle 6s ease-in-out infinite;
}

.p1 { width: 6px; height: 6px; background: var(--accent); opacity: 0.6; top: 20%; left: 15%; animation-delay: 0s; animation-duration: 7s; }
.p2 { width: 4px; height: 4px; background: var(--gold); opacity: 0.5; top: 60%; left: 25%; animation-delay: 1s; animation-duration: 8s; }
.p3 { width: 8px; height: 8px; background: var(--accent); opacity: 0.3; top: 30%; left: 60%; animation-delay: 2s; animation-duration: 6s; }
.p4 { width: 5px; height: 5px; background: var(--gold); opacity: 0.4; top: 70%; left: 50%; animation-delay: 0.5s; animation-duration: 9s; }
.p5 { width: 3px; height: 3px; background: var(--accent); opacity: 0.7; top: 15%; left: 80%; animation-delay: 1.5s; animation-duration: 7s; }
.p6 { width: 4px; height: 4px; background: var(--gold); opacity: 0.3; top: 80%; left: 10%; animation-delay: 3s; animation-duration: 8s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(-10px) translateX(-8px); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(0,212,164,0.2);
  border-radius: 100px;
  background: rgba(0,212,164,0.06);
}

.eyebrow-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.headline-accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

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

.stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.pokeball-orbs {
  position: relative;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  animation: float-orb 5s ease-in-out infinite;
}

.orb-a {
  width: 160px; height: 160px;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  animation-duration: 6s;
  filter: drop-shadow(0 0 30px rgba(230,57,70,0.4));
}

.orb-b {
  width: 100px; height: 100px;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  animation-duration: 7s;
  animation-delay: 1s;
  filter: drop-shadow(0 0 20px rgba(0,212,164,0.3));
}

.orb-c {
  width: 70px; height: 70px;
  bottom: 40px; left: 30px;
  animation-duration: 8s;
  animation-delay: 2s;
  filter: drop-shadow(0 0 20px rgba(245,200,66,0.3));
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* === FEATURES === */
.features {
  padding: 100px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 56px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(0,212,164,0.2);
  border-radius: 100px;
  background: var(--accent-dim);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: rgba(0,212,164,0.2);
  transform: translateY(-3px);
}

.feature-card-main {
  grid-column: 1;
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 40px; height: 40px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* === EVENTS === */
.events {
  padding: 100px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.events-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,212,164,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245,200,66,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.section-header-light { color: var(--text); }
.section-tag-light { color: var(--gold); border-color: rgba(245,200,66,0.2); background: var(--gold-dim); }
.section-title-light { color: var(--text); }

.events-timeline {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.event-item:hover { border-color: rgba(0,212,164,0.15); }

.event-badge {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
}

.event-badge-weekly {
  background: rgba(0,212,164,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,212,164,0.2);
}

.event-badge-monthly {
  background: rgba(245,200,66,0.12);
  color: var(--gold);
  border: 1px solid rgba(245,200,66,0.2);
}

.event-badge-seasonal {
  background: rgba(168,85,247,0.12);
  color: var(--purple);
  border: 1px solid rgba(168,85,247,0.2);
}

.event-body h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.event-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* === ECONOMY === */
.economy {
  padding: 100px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.economy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.economy-card-premium {
  border-color: rgba(245,200,66,0.15);
  background: linear-gradient(180deg, rgba(245,200,66,0.04) 0%, var(--surface) 100%);
}

.economy-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,164,0.2);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.economy-label-premium {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: rgba(245,200,66,0.2);
}

.economy-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.economy-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.economy-card li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}

.economy-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* === CLOSING === */
.closing {
  padding: 120px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,164,0.08) 0%, transparent 70%);
  filter: blur(60px);
}

.closing-content {
  position: relative;
  z-index: 1;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,164,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 28px;
}

.closing-badge-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.closing-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}

.cta-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,164,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.cta-arrow {
  color: var(--text-3);
  width: 20px;
  opacity: 0.6;
}

.cta-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.cta-link:hover { text-decoration: underline; }

.closing-note {
  font-size: 14px;
  color: var(--text-3);
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 80px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-brand { max-width: 320px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 12px;
}

.footer-logo strong { color: var(--text); }

.footer-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

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

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    text-align: center;
  }
  .hero-headline { font-size: 40px; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .features, .events, .economy, .closing { padding: 60px 32px; }
  .features-grid, .economy-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 48px 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .features-grid, .economy-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 32px; }
  .closing-cta-group { gap: 12px; }
  .cta-arrow { display: none; }
}
