:root {
  --bg: #0E0E1A;
  --bg-alt: #14142B;
  --surface: #1A1A2E;
  --surface-2: #22223A;
  --fg: #F5F0E8;
  --fg-muted: #9090A8;
  --accent: #FFE84A;
  --accent-2: #F59E0B;
  --accent-dim: rgba(255, 232, 74, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --radius-sm: 6px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 80px;
  min-height: 680px;
  align-items: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 40% at 70% 50%, rgba(255, 232, 74, 0.04) 0%, transparent 70%);
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.stat { display: flex; flex-direction: column; }

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

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

/* Card grid */
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.card-tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.card-tile:hover { transform: translateY(-4px); }

.tile-1 { grid-column: 1; grid-row: 1; }
.tile-2 { grid-column: 2; grid-row: 1; }
.tile-3 { grid-column: 1; grid-row: 2; }
.tile-4 { grid-column: 2; grid-row: 2; }

.card-inner {
  height: 100%;
  background: var(--surface);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-art {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pokemon-silhouette {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.charizard { background: linear-gradient(135deg, #E85D04 0%, #DC2F02 100%); }
.pikachu { background: linear-gradient(135deg, #FFE84A 0%, #F59E0B 100%); }
.mew { background: linear-gradient(135deg, #7B2CBF 0%, #C77DFF 100%); }
.greninja { background: linear-gradient(135deg, #0077B6 0%, #48CAE4 100%); }

.card-meta { display: flex; flex-direction: column; gap: 2px; }

.card-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

.card-set { font-size: 11px; color: var(--fg-muted); }

.card-pull-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-pull-badge.hot { color: var(--accent); border-color: rgba(255, 232, 74, 0.2); }

/* Sections common */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Pulls section */
.pulls-section {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.pull-feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 10px;
}

.pull-feature p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

.pull-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Collect section */
.collect-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 48px;
  align-items: center;
}

.collect-card-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE84A, #F59E0B);
}

.mock-info { flex: 1; }

.mock-name {
  height: 12px;
  width: 100px;
  background: var(--surface-2);
  border-radius: 4px;
  margin-bottom: 6px;
}

.mock-sub { height: 8px; width: 60px; background: var(--surface-2); border-radius: 4px; }

.mock-card-img {
  background: var(--surface-2);
  border-radius: 10px;
  height: 180px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.mock-pokemon-art {
  width: 120px;
  height: 100px;
  background: linear-gradient(135deg, #E85D04 0%, #DC2F02 100%);
  border-radius: 8px;
}

.mock-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-muted);
}

.mock-stats-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.mock-stat { text-align: center; }

.mock-stat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.mock-stat-label {
  font-size: 11px;
  color: var(--fg-muted);
}

.collect-right { display: flex; flex-direction: column; }

.collect-features { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.collect-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg-muted);
}

/* Market section */
.market-section {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.market-header { margin-bottom: 64px; }

.market-flow {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 64px;
}

.flow-step { flex: 1; }

.flow-number {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 16px;
}

.flow-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.flow-arrow { padding-top: 12px; flex-shrink: 0; }

.market-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.mstat { text-align: center; }

.mstat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.mstat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.mstat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Closing */
.closing {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 232, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-headline {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.footer-note { font-size: 13px; color: var(--fg-muted); }

.footer-legal { font-size: 11px; color: rgba(144, 144, 168, 0.5); max-width: 400px; line-height: 1.5; }

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; min-height: auto; }
  .hero-headline { font-size: 36px; }
  .hero-card-grid { display: none; }
  .pull-features { grid-template-columns: 1fr; gap: 32px; }
  .collect-section { grid-template-columns: 1fr; padding: 60px 20px; gap: 48px; }
  .collect-card-mock { display: none; }
  .market-flow { flex-direction: column; gap: 24px; }
  .flow-arrow { transform: rotate(90deg); }
  .market-stats { flex-direction: column; gap: 24px; }
  .mstat-sep { display: none; }
  .pulls-section, .market-section { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 18px; }
}