:root {
  --bg-primary: #f0ddd5;
  --bg-card: #ffffff;
  --accent: #04BA75;
  --text-primary: #1a1a1a;
  --text-body: #333333;
  --text-secondary: #888888;
  --text-muted: #999999;
  --text-faint: #bbbbbb;
  --border-heavy: #1a1a1a;
  --border-light: rgba(26, 26, 26, 0.15);
  --border-card: rgba(26, 26, 26, 0.08);

  --font-display: Helvetica;
  --font-body: Helvetica;
}

.section-02 {
  font-family: var(--font-body);
  color: var(--text-primary);
}

.section-02 .section-title-art {
  margin-bottom: 24px;
}

.s02-big-stats {
  max-width: min(1000px, 75vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  border-top: 1px solid var(--border-light);
}

.s02-big-stat {
  text-align: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--border-light);
}

.s02-big-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.s02-big-value {
  font-family: var(--font-display);
  display: block;
  margin: 8px 0 7px;
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
}

.s02-big-sub {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.65;
  color: #6f6f6f;
  font-weight: 500;
}

.s02-big-context {
  margin: 10px auto 0;
  max-width: min(760px, 92%);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.65;
  color: #6f6f6f;
  font-weight: 500;
}

.s02-thesis {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  padding: 36px 0 12px;
  text-align: center;
}

.s02-race-card {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 28px 24px 20px;
  border: 1px solid var(--border-card);
}

.s02-race-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.s02-race-date {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
}

.s02-race-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.s02-share-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.s02-share-value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.s02-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--accent);
  border-radius: 2px;
  padding: 4px 8px;
}

.s02-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.s02-bar-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.s02-bar-track {
  position: relative;
  width: 100%;
  height: 44px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 2px;
  overflow: hidden;
}

.s02-bar-fill {
  height: 100%;
  min-width: 4px;
  width: 0;
  border-radius: 2px;
  transition: width 0.08s linear;
}

.s02-bar-fill--sports {
  background: var(--accent);
}

.s02-bar-fill--nonsports {
  background: var(--text-primary);
}

.s02-bar-value {
  font-family: var(--font-display);
  font-size: 20px;
  min-width: 76px;
  text-align: right;
}

.s02-scrubber {
  width: 100%;
  margin-top: 8px;
  appearance: none;
  height: 5px;
  border-radius: 999px;
  background: #e0cdc2;
  outline: none;
}

.s02-scrubber::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  cursor: pointer;
}

.s02-scrubber::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.s02-controls {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.s02-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}

.s02-btn--play {
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
}

.s02-btn--play.is-hint {
  box-shadow: 0 0 0 8px rgba(4, 186, 117, 0.16);
}

.s02-btn--reset {
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
}

.s02-source {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.s02-body-copy {
  margin-top: 18px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 28px;
  max-width: min(1000px, 75vw);
  margin-left: auto;
  margin-right: auto;
}

.s02-body-copy p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.s02-body-copy p + p {
  margin-top: 18px;
}

.s02-pivot {
  text-align: center;
  padding: 40px 0;
  border-bottom: 2px solid var(--border-heavy);
}

.s02-pivot-line {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
}

.s02-pivot-line--green {
  color: var(--accent);
}

.s02-closing {
  padding: 32px 0 60px;
  max-width: min(1000px, 75vw);
  margin-left: auto;
  margin-right: auto;
}

.s02-closing p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
}

.s02-closing p + p {
  margin-top: 18px;
}

@media (max-width: 1023px) {
  .s02-race-card {
    padding: 22px 18px 18px;
  }

  .s02-bar-row {
    grid-template-columns: 98px 1fr auto;
  }
}

@media (max-width: 768px) {
  .s02-big-stats {
    grid-template-columns: 1fr;
    column-gap: 0;
    max-width: 100%;
  }

  .s02-thesis {
    font-size: 20px;
    padding-top: 28px;
  }

  .s02-race-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .s02-bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .s02-bar-value {
    text-align: left;
    min-width: 0;
  }

  .s02-controls {
    flex-wrap: wrap;
  }

  .s02-big-value {
    font-size: clamp(42px, 13vw, 56px);
  }

  .s02-body-copy p,
  .s02-closing p {
    font-size: 15.5px;
  }

  .s02-pivot-line {
    font-size: 22px;
  }
}
