/* ==============================
   THE BENCH — CUSTOM STYLES
   ============================== */

:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --paper: #EDE8DC;
  --paper-dim: #B8B0A0;
  --red: #E8372B;
  --red-dim: #8B1E18;
  --text: #F0EBE3;
  --text-dim: #888070;
  --border: #2A2A2A;
  --cold: #4A9FD4;
  --hot: #E85D2B;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ---- TICKER ---- */
.ticker-wrap {
  background: var(--red);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ticker-label {
  background: var(--bg);
  color: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 2px solid var(--red-dim);
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.05em;
}

.ticker-track span {
  padding: 0 32px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- HERO ---- */
.hero {
  padding: 64px 48px 48px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.channel-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 5px 12px;
  color: var(--text-dim);
}

/* Character Frame */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.character-frame {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%;
  justify-content: center;
}

.char {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.char-head {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.char-face {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid;
}

.char-face.cold {
  background: var(--cold);
  border-color: #6BC4F5;
}

.char-face.hot {
  background: var(--hot);
  border-color: #F58B5A;
}

.char-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.vs-dot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--red);
  letter-spacing: 0.1em;
}

/* Speech bubbles */
.speech-bubble-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.speech-bubble {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
  position: relative;
  line-height: 1.4;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}

.speech-bubble.left-sb::after {
  border-bottom-color: var(--border);
  bottom: -17px;
  left: 20px;
}

.speech-bubble.right-sb {
  align-self: flex-end;
  text-align: right;
}

.speech-bubble.right-sb::after {
  border-bottom-color: var(--border);
  bottom: -17px;
  right: 20px;
}

.hero-rule {
  max-width: 1200px;
  margin: 48px auto 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 40%);
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.manifesto-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- FORMAT ---- */
.format {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.format-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.format-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}

.format-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}

.format-card {
  background: var(--bg-alt);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.format-card:hover {
  background: #161616;
}

.card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.format-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.format-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---- CHARACTERS ---- */
.characters {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.characters-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.char-showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.char-profile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.char-portrait {
  display: flex;
  justify-content: center;
}

.portrait-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cold-bg { background: rgba(74, 159, 212, 0.15); border: 2px solid var(--cold); }
.hot-bg { background: rgba(232, 93, 43, 0.15); border: 2px solid var(--hot); }

.portrait-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.cold-icon { background: var(--cold); }
.hot-icon { background: var(--hot); }

.char-profile h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 12px;
}

.char-profile p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}

.char-traits {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.char-traits li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
}

.cold-side .char-traits li { border-color: var(--cold); color: var(--cold); }
.hot-side .char-traits li { border-color: var(--hot); color: var(--hot); }

.char-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.divider-vs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  letter-spacing: 0.1em;
}

/* ---- CLOSING ---- */
.closing {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

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

.closing-stamp {
  margin-bottom: 48px;
}

.stamp-text {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  color: var(--bg);
  background: var(--red);
  padding: 12px 28px;
  letter-spacing: 0.04em;
  transform: rotate(-1deg);
}

.closing-statement {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 48px;
}

.closing-cta {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.cta-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-platforms span:first-child {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.platform-list {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.08em;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 48px;
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--text);
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-legal {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  opacity: 0.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 40px 24px 32px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    order: -1;
  }
  .hero-headline {
    font-size: 3rem;
  }
  .manifesto, .format, .characters, .closing {
    padding: 56px 24px;
  }
  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .format-grid {
    grid-template-columns: 1fr;
  }
  .char-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .char-divider {
    flex-direction: row;
  }
  .divider-line {
    width: 80px;
    height: 1px;
  }
  .char-profile {
    align-items: center;
    text-align: center;
  }
  .char-traits {
    justify-content: center;
  }
  .footer-inner {
    gap: 16px;
  }
  .footer-links {
    gap: 20px;
  }
  .ticker-track {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.6rem;
  }
  .manifesto-text {
    font-size: 2rem;
  }
  .stamp-text {
    font-size: 2rem;
    padding: 10px 20px;
  }
  .char-profile h3 {
    font-size: 1.5rem;
  }
}