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

:root {
  --bg: #0b1526;
  --bg-2: #0f1e35;
  --bg-3: #162744;
  --fg: #e8edf5;
  --fg-muted: #8fa3bf;
  --accent: #f5a623;
  --accent-2: #f5c23c;
  --blue: #5ca8f5;
  --blue-light: #a8c4f5;
  --green: #3dd68c;
  --red: #f56c6c;
  --border: rgba(255,255,255,0.08);
  --radius: 6px;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,21,38,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo { color: var(--accent); font-size: 22px; }

.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245,166,35,0.06) 0%, transparent 70%),
    linear-gradient(180deg, #0b1526 0%, #0f1e35 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-stadium {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  overflow: hidden;
}

.stadium-field {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 180px;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at center, #1e4d2b 0%, #1a3d22 40%, #143318 100%);
  box-shadow: 0 0 80px rgba(30, 77, 43, 0.4);
}

.stadium-stands {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 200px;
  background:
    linear-gradient(180deg, rgba(20,40,70,0.8) 0%, rgba(15,30,53,0.95) 100%);
  clip-path: polygon(0 60%, 15% 20%, 30% 40%, 50% 0%, 70% 40%, 85% 20%, 100% 60%, 100% 100%, 0 100%);
}

.stadium-lights {
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
}

.light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 4px rgba(245,166,35,0.5);
  position: relative;
}

.light::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to top, rgba(245,166,35,0.4), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 48px 120px;
  max-width: 760px;
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(245,166,35,0); }
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-highlight {
  color: var(--accent);
  position: relative;
}

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

.hero-scores {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.score-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip-score {
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.hero-overall {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.overall-num {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.overall-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === SECTION SHARED === */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* === SHAPES === */
.shapes {
  padding: 100px 48px;
  background: var(--bg-2);
}

.shapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.shape-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

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

.shape-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-2px); }
.shape-card:hover::before { opacity: 1; }

.shape-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.shape-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--fg);
}

.shape-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.shape-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.metric-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.8s ease;
}

/* === SCORING === */
.scoring {
  padding: 100px 48px;
  background: var(--bg);
}

.scoring-inner { max-width: 720px; margin: 0 auto; }

.scoring-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.player-card {
  background: var(--bg-2);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.player-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(245,166,35,0.04);
}

.player-rank {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 48px;
}

.player-meta h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.player-score {
  margin-left: auto;
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
}

.player-breakdown {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  align-items: center;
  gap: 12px;
}

.axis-name {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

.axis-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.axis-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.axis-val {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  text-align: right;
}

.player-notes {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
}

.player-notes p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.confidence-tier {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.2);
}

.tier-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.tier-badge.elite {
  background: rgba(245,166,35,0.15);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.3);
}

.red-flags {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* === CONFIDENCE === */
.confidence {
  padding: 100px 48px;
  background: var(--bg-2);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.tier-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tier-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.elite-icon { background: rgba(245,166,35,0.1); }
.strong-icon { background: rgba(92,168,245,0.1); }
.sneaky-icon { background: rgba(168,196,245,0.1); }

.tier-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.tier-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.public-traps {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: rgba(245,166,35,0.04);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 8px;
}

.public-traps h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent);
}

.public-traps p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === ARCHIVE === */
.archive {
  padding: 100px 48px;
  background: var(--bg);
}

.archive-list {
  max-width: 860px;
  margin: 0 auto;
}

.archive-day {
  margin-bottom: 48px;
}

.archive-date {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.archive-date::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.archive-picks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.archive-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.archive-card:hover {
  border-color: rgba(245,166,35,0.2);
}

.archive-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.archive-player-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.archive-player-name {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

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

.archive-card-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.archive-score {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.tier-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.tier-badge.elite {
  background: rgba(245,166,35,0.15);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.3);
}

.tier-badge.strong {
  background: rgba(92,168,245,0.12);
  color: var(--blue);
  border: 1px solid rgba(92,168,245,0.25);
}

.tier-badge.sneaky {
  background: rgba(168,196,245,0.1);
  color: var(--blue-light);
  border: 1px solid rgba(168,196,245,0.2);
}

.archive-summary {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.archive-empty {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 32px;
  background: var(--bg-2);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 10px;
}

.archive-empty-icon {
  margin-bottom: 20px;
  opacity: 0.4;
}

.archive-empty h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--fg);
}

.archive-empty p {
  font-size: 14px;
  color: var(--fg-muted);
}

@media (max-width: 768px) {
  .archive { padding: 64px 24px; }
  .archive-card-header { flex-direction: column; gap: 10px; }
  .archive-card-right { align-self: flex-start; }
  .archive-picks { gap: 10px; }
}
.postgame {
  padding: 100px 48px;
  background: var(--bg);
}

.postgame-inner { max-width: 700px; margin: 0 auto; }

.postgame-inner .section-tag { text-align: left; }

.postgame h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

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

.postgame-example {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.pg-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  flex-wrap: wrap;
}

.pg-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pg-player {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.pg-score {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  background: rgba(245,166,35,0.1);
  padding: 2px 10px;
  border-radius: 12px;
}

.pg-outcome {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
}

.pg-outcome.no-hr {
  background: rgba(245,108,108,0.1);
  color: var(--red);
}

.pg-review {
  padding: 24px;
}

.pg-review p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pg-review p:last-child { margin-bottom: 0; }

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  background: var(--bg-2);
}

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

.manifesto-badge {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
}

blockquote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 28px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  text-align: left;
}

.closing p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.closing-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-top: 12px;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(61,214,140,0.5);
  animation: pulse 2s ease-in-out infinite;
}

/* === FOOTER === */
.footer {
  padding: 60px 48px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner { max-width: 1000px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

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

.footer-note {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(143,163,191,0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero-content { padding: 60px 24px 100px; }
  .shapes, .scoring, .confidence, .postgame, .closing { padding: 64px 24px; }
  .breakdown-row { grid-template-columns: 120px 1fr 40px; }
  .player-header { flex-wrap: wrap; }
  .player-score { margin-left: 0; font-size: 32px; }
  .footer-columns { grid-template-columns: 1fr; }
  .pg-result { gap: 10px; }
  .pg-outcome { margin-left: 0; }
  .tier-item { padding: 18px; }
  .shapes-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
}