/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #090b12;
  --bg-card:   #0f1420;
  --bg-raised: #141928;
  --fg:        #e8eaf0;
  --fg-muted:  #6b7280;
  --fg-dim:    #4b5563;
  --accent:    #f5a623;
  --accent-dim: #b37d1a;
  --danger:    #ef4444;
  --danger-bg: rgba(239,68,68,0.1);
  --border:    rgba(255,255,255,0.07);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(9,11,18,0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
}
.hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,68,68,0.04) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(245,166,35,0.2);
  background: rgba(245,166,35,0.06);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal;
  color: var(--danger);
}
.hero-accent { color: var(--accent); }

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* Hero Widget */
.hero-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.08);
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.widget-badge {
  background: var(--danger-bg);
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(239,68,68,0.3);
}
.widget-player {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
}
.widget-line-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.widget-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
}
.stat-value.accent { color: var(--accent); }
.stat-value.danger { color: var(--danger); }

.widget-reason {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 0.875rem;
  border-left: 3px solid var(--danger);
}
.reason-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--danger);
  margin-bottom: 0.4rem;
}
.reason-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.widget-divider {
  height: 1px;
  background: var(--border);
}
.widget-consensus { display: flex; flex-direction: column; gap: 0.5rem; }
.consensus-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-muted);
}
.cs-value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}
.cs-value.ai { color: var(--accent); }
.cs-value.comm { color: var(--fg-dim); }
.consensus-bar-wrap { display: flex; flex-direction: column; gap: 0.3rem; }
.consensus-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
}
.bar-ai {
  height: 100%;
  background: var(--accent);
  border-radius: 2px 0 0 2px;
}
.bar-comm {
  height: 100%;
  background: var(--fg-dim);
  border-radius: 0 2px 2px 0;
}
.cs-meta {
  font-size: 0.65rem;
  color: var(--fg-dim);
  font-family: var(--font-mono);
}

/* ===== SECTIONS COMMON ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 4rem;
  align-items: center;
}
.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.section-heading.centered { text-align: center; }
.section-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 500px;
}
.section-body.centered { max-width: 600px; margin: 0 auto; }

/* ===== TRAP SECTION ===== */
.trap-section {
  padding: 100px 0;
  position: relative;
}
.trap-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.trap-copy { display: flex; flex-direction: column; }
.trap-signals { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.signal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.signal-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(245,166,35,0.15);
  background: rgba(245,166,35,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.signal-text { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.signal-text strong { color: var(--fg); }

/* Signal Card (right side) */
.trap-visual { display: flex; align-items: center; justify-content: center; }
.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  width: 100%;
  max-width: 340px;
}
.signal-card-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.signal-gauge { display: flex; flex-direction: column; gap: 0.4rem; }
.gauge-track {
  height: 8px;
  background: rgba(239,68,68,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.gauge-fill {
  height: 100%;
  background: linear-gradient(90deg, #f97316, #ef4444);
  border-radius: 4px;
}
.gauge-numbers {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--fg-dim);
}
.signal-card-sub {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* ===== WHY SECTION ===== */
.why-section { padding: 100px 0; }
.why-section .section-inner { grid-template-columns: 1fr 1fr; }
.why-copy { order: 2; }
.why-visual { order: 1; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.why-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.why-card-body { display: flex; flex-direction: column; gap: 0.875rem; }
.why-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.why-bullet {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.15rem;
  min-width: 24px;
}
.why-item p { font-size: 0.825rem; color: var(--fg-muted); line-height: 1.6; }
.why-item p strong { color: var(--fg); }
.why-item--result .why-bullet { color: var(--danger); }
.why-item--result p { color: var(--fg); }

/* ===== CONSENSUS SECTION ===== */
.consensus-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(245,166,35,0.02) 50%, transparent);
}
.consensus-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.consensus-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.consensus-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 3rem 0;
}
.cons-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.cons-card--vs {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-dim);
  font-weight: 600;
  text-align: center;
}
.cons-card-icon { margin-bottom: 0.75rem; }
.cons-card-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.cons-card-desc { font-size: 0.775rem; color: var(--fg-muted); line-height: 1.6; }
.consensus-bar-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  align-items: center;
  gap: 1rem;
}
.cf-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-muted);
}
.cf-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.cf-bar-fill { height: 100%; border-radius: 4px; }
.cf-bar-fill.ai { width: 72%; background: var(--accent); }
.cf-bar-fill.comm { width: 43%; background: var(--fg-dim); }
.cf-pct {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: right;
}
.consensus-verdict {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.verdict-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== MANIFESTO ===== */
.manifesto-section {
  padding: 120px 0 100px;
  position: relative;
}
.manifesto-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.manifesto-text { margin-bottom: 3rem; }
.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.manifesto-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.75; }
.manifesto-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 3rem;
  max-width: 300px;
}
.manifesto-sports {}
.sports-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.sports-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sport-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.sport-tag:hover { border-color: rgba(245,166,35,0.3); color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
}
.footer-desc {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-widget { order: -1; }
  .section-inner { grid-template-columns: 1fr !important; }
  .why-copy { order: 0; }
  .why-visual { order: 1; }
  .consensus-grid { grid-template-columns: 1fr; }
  .cons-card--vs { display: none; }
  .cf-row { grid-template-columns: 80px 1fr 40px; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 1rem 40px; }
  .widget-line-row { grid-template-columns: repeat(3, 1fr); }
}
