:root {
  --bg: #060606;
  --text: #d7d7d7;
  --muted: #7a7a7a;
  --accent: #9ae6b4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
}

body {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px 96px;
}

.section {
  margin-bottom: 64px;
}

.kicker {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.quote {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
  margin-top: 120px;
  margin-bottom: 96px;
}

.column {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score {
  margin: 0 0 16px 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}

.score-quote {
  margin: 0;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.attribution {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.disclosure {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.disclosure p {
  margin: 0;
}

.transcripts-link a {
  color: var(--text);
  text-decoration: none;
}

.transcripts-link a:hover {
  color: var(--accent);
}

/* transcripts page refinements */

.transcript-list {
  margin-top: 8px;
}

.transcript-list div {
  margin-bottom: 18px;
}

.transcript-list a {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.15s ease;
}

.transcript-list a:hover {
  color: var(--accent);
}

.transcript-list div:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 12px;
}

.transcript-note {
  margin-top: 12px;
}

.transcript-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media (max-width: 700px) {
  .container {
    padding: 64px 18px 80px;
  }

  .section {
    margin-bottom: 52px;
  }

  .split {
    flex-direction: column;
    gap: 44px;
    margin-top: 96px;
    margin-bottom: 80px;
  }

  .column {
    width: 100%;
  }

  .score {
    font-size: 32px;
  }

  .score-quote {
    max-width: none;
  }
}
