/* ═══ BURKS AI — SHARED STYLES ═══════════════════════ */

:root {
  --black:   #060D18;
  --dark:    #0A1525;
  --panel:   #0F1E35;
  --panel-2: #132744;
  --border:  #1F3654;
  --border-2:#2D4A70;
  --red:     #E11D35;
  --red-dim: #B01628;
  --amber:   #E0B256;
  --text:    #D6E0EA;
  --text-2:  #A7B5C6;
  --muted:   #6C8AAB;
  --white:   #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: 0;
}

a { color: inherit; text-decoration: none; }

/* ─── LOGO ──────────────────────────────────────── */
.logo-mark { display: inline-flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-row {
  display: flex; align-items: baseline; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 800;
  letter-spacing: -0.01em;
}
.logo-burks { color: var(--red); }
.logo-ai { color: var(--white); }
.logo-rule { height: 2.5px; background: var(--white); border-radius: 1px; margin-top: 1px; }
.logo-built {
  display: flex; align-items: center; gap: 5px;
  margin-top: 5px;
}
.built-prefix {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--muted); text-transform: uppercase;
}
.aws-mark { height: 13px; width: auto; display: block; }

/* ─── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 56px;
  background: rgba(6,13,24,0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo .logo-row { font-size: 22px; }
.nav-logo .logo-ai { font-size: 15px; }
.nav-logo .built-prefix { font-size: 8px; }
.nav-logo .aws-mark { height: 11px; }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 11px 22px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dim); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 150px 56px 100px; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -200px; right: -120px;
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(225,29,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 1040px; z-index: 1; }
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  font-weight: 500; letter-spacing: 0.22em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 32px; display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--red); }
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(56px, 7vw, 104px); line-height: 0.94;
  letter-spacing: -0.015em; color: var(--white); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.35s forwards;
}
.hero-headline .red { color: var(--red); }
.hero-headline .muted { color: rgba(255,255,255,0.3); }
.hero-sub {
  font-size: 20px; line-height: 1.55; color: var(--text);
  max-width: 720px; margin-bottom: 44px; font-weight: 400;
  opacity: 0; animation: fadeUp 0.8s ease 0.55s forwards;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-cta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
  display: flex; align-items: center; gap: 10px;
}
.hero-cta-label::before { content: ''; width: 24px; height: 1px; background: var(--red); }
.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.75s forwards;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 16px 32px; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--red-dim); }
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: transparent;
  padding: 15px 32px; transition: all 0.2s;
  border: 1.5px solid var(--border-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--white); }

/* ─── SECTIONS ──────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 120px 56px; }
.section-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  font-weight: 500; letter-spacing: 0.22em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--red); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5vw, 68px); line-height: 0.96;
  color: var(--white); letter-spacing: -0.015em; margin-bottom: 24px;
}
.section-title .red { color: var(--red); }
.section-title .muted { color: rgba(255,255,255,0.3); }
.section-body {
  font-size: 17px; line-height: 1.65; color: var(--text);
  max-width: 680px; font-weight: 400;
}
.section-body strong { color: var(--white); font-weight: 600; }

/* ─── THESIS ───────────────────────────────────── */
.thesis { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.thesis-inner { max-width: 980px; margin: 0 auto; padding: 100px 56px; text-align: center; }
.thesis-quote {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.18;
  color: var(--white); letter-spacing: -0.01em;
}
.thesis-quote em { font-style: normal; color: var(--red); }
.thesis-sub {
  font-size: 17px; line-height: 1.7; color: var(--text-2);
  margin-top: 32px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.thesis-sub strong { color: var(--white); font-weight: 600; }

/* ─── TWO MODES SPLIT ───────────────────────── */
.modes-split { border-top: 1px solid var(--border); }
.modes-intro { max-width: 860px; margin-bottom: 60px; }
.modes-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border: 1px solid var(--border); }
.mode-panel {
  background: var(--dark); padding: 48px 40px;
  display: flex; flex-direction: column; position: relative;
}
.mode-panel.family { background: linear-gradient(165deg, #0F1E35 0%, #0A1525 100%); }
.mode-panel.scout { background: linear-gradient(165deg, #150A12 0%, #0A0608 100%); }
.mode-ribbon {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 11px; display: inline-block; align-self: flex-start;
  margin-bottom: 26px; font-weight: 500;
}
.mode-panel.family .mode-ribbon {
  background: rgba(108,138,171,0.14); color: #A7B5C6;
  border: 1px solid rgba(108,138,171,0.35);
}
.mode-panel.scout .mode-ribbon {
  background: rgba(225,29,53,0.12); color: var(--red);
  border: 1px solid rgba(225,29,53,0.4);
}
.mode-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 52px; color: var(--white); line-height: 1;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.mode-for {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase;
  margin-bottom: 26px; font-weight: 500;
}
.mode-pitch {
  font-size: 18px; line-height: 1.55; color: var(--text);
  margin-bottom: 28px; font-weight: 400;
}
.mode-pitch strong { color: var(--white); font-weight: 600; }
.mode-samples {
  background: rgba(0,0,0,0.35); border: 1px solid var(--border);
  padding: 20px 22px; margin-bottom: 28px;
}
.mode-samples-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase;
  margin-bottom: 12px; font-weight: 500;
}
.mode-q {
  font-family: 'Barlow Condensed', sans-serif; font-style: italic;
  font-size: 16px; line-height: 1.4; color: var(--white); font-weight: 600;
  padding: 6px 0; padding-left: 16px; position: relative;
}
.mode-q::before { content: '▸'; position: absolute; left: 0; top: 6px; color: var(--red); font-size: 12px; }
.mode-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.mode-cta {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.mode-panel.scout .mode-cta { color: var(--red); }
.mode-cta::after { content: '→'; transition: transform 0.2s; }
.mode-cta:hover::after { transform: translateX(4px); }

/* ─── CTA SECTION ──────────────────────────── */
.cta-section { background: var(--red); }
.cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 96px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.cta-headline {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(38px, 5vw, 68px); line-height: 0.95;
  color: var(--white); letter-spacing: -0.015em; margin-bottom: 16px;
}
.cta-sub { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 560px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-cta {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; transition: background 0.2s; white-space: nowrap;
}
.btn-cta.primary { background: var(--white); color: var(--red); }
.btn-cta.primary:hover { background: #E5EAF0; }
.btn-cta.secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-cta.secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-cta .arrow { font-size: 20px; transition: transform 0.2s; }
.btn-cta:hover .arrow { transform: translateX(4px); }
.btn-cta-meta {
  display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; font-weight: 500; margin-top: 3px; opacity: 0.55;
}
.btn-cta.primary .btn-cta-meta { color: var(--red); }
.btn-cta.secondary .btn-cta-meta { color: var(--white); }

/* ─── FOOTER ────────────────────────────────── */
footer {
  border-top: 1px solid var(--border); padding: 32px 56px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1; gap: 20px; flex-wrap: wrap;
}
.footer-logo .logo-row { font-size: 20px; }
.footer-logo .logo-ai { font-size: 13px; }
.footer-meta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-link {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2); transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-patent {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--red); text-transform: uppercase;
  padding: 4px 9px; border: 1px solid rgba(225,29,53,0.35);
}
.footer-copy {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase;
}

/* ─── ANIMATIONS ────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PAGE-SPECIFIC STYLES ─────────────────── */

/* Feature card grid (Family Hub / Super Scout detail pages) */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border); border: 1px solid var(--border);
  margin-top: 50px;
}
.feat-card {
  background: var(--dark); padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 220px; transition: background 0.3s;
}
.feat-card:hover { background: var(--panel); }
.feat-num {
  font-family: 'JetBrains Mono', monospace; font-size: 34px; font-weight: 500;
  color: var(--border-2); line-height: 1; margin-bottom: 14px;
}
.feat-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 24px; color: var(--white); letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.feat-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  font-weight: 500; letter-spacing: 0.14em;
  color: var(--red); text-transform: uppercase; margin-bottom: 14px;
}
.feat-desc { font-size: 14.5px; line-height: 1.6; color: var(--text); flex: 1; }

/* Example quote block */
.example-block {
  background: var(--panel); border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 28px 32px; margin-top: 28px;
}
.example-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  font-weight: 500; letter-spacing: 0.18em; color: var(--red);
  text-transform: uppercase; margin-bottom: 14px;
}
.example-text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.45;
  color: var(--white); letter-spacing: 0.005em; font-style: italic;
}
.example-text em { color: var(--red); font-style: italic; }

/* Mock shell & Gamecast */
.mock-shell { border: 1px solid var(--border); background: var(--black); overflow: hidden; }
.mock-bar {
  background: var(--panel); border-bottom: 1px solid var(--border);
  padding: 10px 16px; display: flex; align-items: center; gap: 12px;
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.mock-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.mock-live {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em; color: var(--red);
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  padding: 3px 8px; background: rgba(225,29,53,0.1); border-radius: 3px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse-dot 1.4s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
.mock-body { padding: 24px; }

/* Gamecast specific */
.gc-header { display: flex; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.gc-team { flex: 1; }
.gc-team-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); letter-spacing: 0.01em; }
.gc-team-name.mine { color: var(--red); }
.gc-score { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 44px; color: var(--white); line-height: 1; margin-top: 4px; }
.gc-score.mine { color: var(--red); }
.gc-inning { text-align: center; padding: 6px 14px; }
.gc-inning-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); letter-spacing: 0.05em; }
.gc-inning-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.1em; margin-top: 2px; }
.gc-situation { display: flex; align-items: center; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.gc-diamond { width: 52px; height: 52px; position: relative; flex-shrink: 0; }
.gc-base { width: 12px; height: 12px; border: 2px solid var(--border-2); background: transparent; position: absolute; transform: rotate(45deg); }
.gc-base.on { background: var(--red); border-color: var(--red); }
.gc-b1 { top: 20px; right: 0; }
.gc-b2 { top: 0; left: 20px; }
.gc-b3 { top: 20px; left: 0; }
.gc-bh { bottom: 0; left: 20px; background: rgba(255,255,255,0.15); border-color: var(--border-2); }
.gc-outs { display: flex; gap: 5px; margin-left: auto; align-items: center; }
.gc-out { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--border-2); }
.gc-out.on { background: var(--red); border-color: var(--red); }
.gc-outs-label { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.1em; margin-left: 6px; }
.gc-atbat-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.14em; margin-bottom: 6px; }
.gc-atbat-player { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; color: var(--red); margin-bottom: 3px; letter-spacing: 0.01em; }
.gc-atbat-line { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-2); margin-bottom: 10px; }
.gc-pbp { padding-top: 12px; border-top: 1px solid var(--border); margin-top: 12px; font-size: 12px; line-height: 1.65; color: var(--text-2); }
.gc-pbp-entry { padding: 4px 0; }
.gc-pbp-count { font-family: 'JetBrains Mono', monospace; font-weight: 600; color: var(--red); margin-right: 8px; }

/* Brief / news card */
.brief-shell { background: var(--panel); border: 1px solid var(--border); padding: 32px 36px; margin-top: 36px; position: relative; }
.brief-shell::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 3px; background: var(--red); }
.brief-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.brief-tag::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.brief-lead { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.3; color: var(--white); letter-spacing: -0.005em; margin-bottom: 16px; }
.brief-body { font-size: 16px; line-height: 1.7; color: var(--text); }
.brief-body strong { color: var(--white); font-weight: 600; }
.brief-body .stat { color: var(--red); font-weight: 600; }

/* ─── TOURNAMENT PREP MOCK ─────────────────── */
.plan-shell { border: 1px solid var(--border); background: var(--black); margin-top: 40px; }
.plan-topbar {
  background: var(--panel); border-bottom: 1px solid var(--border);
  padding: 14px 22px; display: flex; justify-content: space-between; align-items: center;
}
.plan-topbar-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--white); letter-spacing: 0.04em;
}
.plan-topbar-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em; font-weight: 500;
}
.plan-body { display: grid; grid-template-columns: 320px 1fr; gap: 1px; background: var(--border); }
.plan-staff { background: var(--dark); padding: 26px 24px; }
.plan-games { background: var(--dark); padding: 26px 26px; }
.plan-section-hd {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.staff-group { margin-bottom: 22px; }
.staff-group:last-child { margin-bottom: 0; }
.staff-role {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.staff-role.sat { color: var(--amber); }
.staff-role.pen { color: var(--text-2); }
.staff-role.emg { color: var(--muted); }
.staff-player {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 14px; color: var(--white); font-weight: 500;
}
.staff-player-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); font-weight: 500; }
.game-row {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: flex-start;
}
.game-row:last-child { border-bottom: none; }
.game-row.pivot { background: rgba(225,29,53,0.04); margin: 0 -26px; padding: 16px 26px; border-left: 2px solid var(--red); }
.game-time { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--white); letter-spacing: 0.02em; }
.game-time-day { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 3px; font-weight: 500; }
.game-opp { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); letter-spacing: 0.005em; margin-bottom: 4px; }
.game-threat { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.game-threat.hard { color: var(--red); }
.game-threat.mid { color: var(--amber); }
.game-rec { font-size: 14px; color: var(--text); line-height: 1.55; font-weight: 400; }
.game-rec strong { color: var(--white); font-weight: 600; }
.pivot-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--red); background: rgba(225,29,53,0.12);
  padding: 3px 8px; margin-left: 10px; text-transform: uppercase;
}

/* ─── ASCENDING PILLARS ─────────────────── */
.asc-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.asc-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.asc-pillar {
  background: var(--dark); border: 1px solid var(--border); padding: 22px;
  position: relative; transition: border-color 0.2s;
}
.asc-pillar:hover { border-color: rgba(225,29,53,0.4); }
.asc-pillar-num { position: absolute; top: 16px; right: 18px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); font-weight: 500; }
.asc-pillar-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); letter-spacing: 0.01em; margin-bottom: 10px; padding-right: 32px; }
.asc-pillar-text { font-size: 13px; line-height: 1.55; color: var(--text-2); }
.asc-caveat {
  margin-top: 18px; padding: 16px 20px;
  background: rgba(225,29,53,0.06); border: 1px solid rgba(225,29,53,0.2);
  font-size: 13px; color: var(--text); line-height: 1.65;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
}
.asc-caveat strong { color: var(--red); }

/* ─── ARCHETYPES ─────────────────────── */
.arch-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 48px; }
.arch-col-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 26px; color: var(--white); letter-spacing: 0.005em;
  padding-bottom: 16px; border-bottom: 2px solid var(--red); margin-bottom: 22px;
}
.arch-list { display: flex; flex-direction: column; gap: 4px; }
.arch-item {
  background: var(--panel); border: 1px solid var(--border);
  padding: 18px 22px; display: grid; grid-template-columns: 190px 1fr;
  gap: 20px; align-items: center; transition: border-color 0.2s;
}
.arch-item:hover { border-color: rgba(225,29,53,0.4); }
.arch-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--white); letter-spacing: 0.01em; }
.arch-name.signature { color: var(--red); }
.arch-desc { font-size: 13px; line-height: 1.5; color: var(--text-2); }

/* ─── REASONING ──────────────────────── */
.rsn-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; margin-top: 44px; }
.rsn-step { background: var(--dark); border: 1px solid var(--border); padding: 32px 28px; position: relative; }
.rsn-step::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.rsn-step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--red); margin-bottom: 12px; }
.rsn-step-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; color: var(--white); margin-bottom: 14px; letter-spacing: -0.005em; }
.rsn-step-text { font-size: 14.5px; line-height: 1.6; color: var(--text); margin-bottom: 16px; }
.rsn-step-why { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--border); line-height: 1.6; font-weight: 500; }

/* ─── BOUNDARIES ─────────────────── */
.bnd-header { max-width: 820px; margin-bottom: 44px; }
.bnd-lead { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.35; color: var(--white); margin-top: 22px; max-width: 760px; }
.bnd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.bnd-item { background: var(--black); padding: 22px 26px; display: flex; gap: 14px; align-items: flex-start; }
.bnd-icon { color: var(--red); font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.bnd-text { font-size: 14.5px; line-height: 1.55; color: var(--text); }
.bnd-pledge {
  margin-top: 44px; padding: 30px 34px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--panel) 0%, var(--dark) 100%);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 22px; color: var(--white); line-height: 1.4; letter-spacing: 0.005em;
}
.bnd-pledge-tag { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }

/* ─── PAGE BACK LINK ─────────────────── */
.page-back {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px; transition: color 0.2s;
}
.page-back:hover { color: var(--white); }
.page-back::before { content: '←'; }

/* ─── FOUNDER PAGE ─────────────────── */
.founder-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.founder-sidebar { position: sticky; top: 100px; }
.founder-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 54px; color: var(--white); line-height: 0.95; margin-bottom: 12px; letter-spacing: -0.015em; }
.founder-title { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 28px; }
.founder-badge { display: flex; align-items: center; gap: 10px; background: var(--panel); border: 1px solid var(--border); padding: 10px 14px; font-size: 12px; color: var(--text-2); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; margin-bottom: 6px; font-weight: 500; }
.founder-badge .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.founder-body { font-size: 18px; line-height: 1.8; color: var(--text); }
.founder-body p { margin-bottom: 22px; }
.founder-body p:last-child { margin-bottom: 0; }
.founder-body strong { color: var(--white); font-weight: 600; }

/* ─── RESPONSIVE ──────────────────── */
@media (max-width: 980px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 70px; }
  .section-inner, .thesis-inner { padding: 80px 20px; }
  .modes-split-grid, .asc-layout, .founder-layout, .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .features-grid, .rsn-steps, .bnd-grid, .arch-columns { grid-template-columns: 1fr; }
  .plan-body { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 20px; }
}
