:root {
  --navy: #07152f;
  --navy-2: #102b59;
  --blue: #173a77;
  --lime: #99c514;
  --yellow: #f2cc00;
  --paper: #f3f1e8;
  --white: #ffffff;
  --ink: #07152f;
  --line: #d9d9d4;
  --muted: #7b7d77;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  height: 88px;
  background: var(--navy);
  color: #fff;
  position: relative;
  z-index: 20;
}

.topbar__inner,
.hero__inner,
.section__inner,
.footer__inner {
  width: min(1790px, calc(100% - 80px));
  margin: 0 auto;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.brand__logo {
  width: 74px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  letter-spacing: .08em;
  line-height: 1;
}

.brand__copy strong {
  font-size: 15px;
  font-weight: 900;
}

.brand__copy span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav a {
  color: #f6f6f6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.hero {
  position: relative;
  height: 365px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,21,47,.97) 0%, rgba(12,35,74,.95) 54%, rgba(25,60,121,.92) 100%);
  border-bottom: 6px solid var(--lime);
}

.hero__slashes {
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 50px,
      rgba(153,197,20,.55) 51px 55px,
      transparent 56px 80px
    );
  transform: scale(1.05);
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__title {
  position: relative;
  z-index: 3;
  padding-left: 0;
  transform: translateY(-2px);
}

.hero__eyebrow {
  display: block;
  color: var(--yellow);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: .32em;
  margin-bottom: 2px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 900;
}

.hero__year {
  display: block;
  margin-top: 10px;
  color: var(--lime);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: .34em;
}

.hero__mascot {
  position: absolute;
  right: 72px;
  bottom: -7px;
  height: 355px;
  width: auto;
  object-fit: contain;
  z-index: 4;
  filter: saturate(1.06) contrast(1.02);
}

.hero__watermark {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 330px;
  transform: translate(-10%, -50%);
  opacity: .08;
  z-index: 1;
}

.hero__watermark img {
  width: 100%;
  filter: grayscale(1) brightness(2.2);
}

.section {
  background: var(--paper);
}

.section--ranking {
  padding: 62px 0 72px;
}

.section--classification {
  padding: 10px 0 155px;
  min-height: 510px;
}

.section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section__heading h2 {
  margin: 0;
  color: #12203a;
  font-size: clamp(47px, 3.55vw, 68px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  color: #666b64;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.live-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #68b62b;
  box-shadow: 0 0 0 4px rgba(104,182,43,.14);
}

.live-status.is-error .live-status__dot {
  background: #c25346;
  box-shadow: 0 0 0 4px rgba(194,83,70,.12);
}

.table-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #deded8;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.ranking-table thead th,
.classification-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}

.ranking-table thead th {
  height: 58px;
  padding: 0 24px;
  text-align: left;
}

.ranking-table td {
  height: 58px;
  padding: 0 24px;
  background: #fff;
  border-bottom: 1px solid #deded8;
  font-size: 14px;
  font-weight: 700;
}

.ranking-table tbody tr:last-child td { border-bottom: 0; }

.ranking-table .num {
  text-align: right;
  font-size: 20px;
  font-weight: 900;
}

.scroll-hint {
  color: #737870;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  padding-bottom: 3px;
  white-space: nowrap;
}

.classification-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  background: #fff;
  border: 1px solid #deded8;
  scrollbar-color: #8a8a86 #ecece7;
  scrollbar-width: auto;
}

.classification-table {
  min-width: 2050px;
  table-layout: fixed;
}

.classification-table th,
.classification-table td {
  border-right: 1px solid #e5e5e1;
  border-bottom: 1px solid #deded8;
}

.classification-table thead th {
  height: 72px;
  padding: 0 14px;
  text-align: center;
  white-space: nowrap;
}

.classification-table tbody th {
  width: 160px;
  height: 51px;
  padding: 0 12px;
  text-align: left;
  background: #fafaf8;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.classification-table td {
  height: 51px;
  min-width: 88px;
  padding: 0 10px;
  text-align: center;
  background: #fff;
  color: #10213d;
  font-size: 12px;
}

.footer {
  height: 96px;
  background: var(--navy);
  color: #fff;
}

.footer__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 130px 1fr 130px;
  align-items: center;
}

.footer__logo {
  width: 83px;
  height: 56px;
  object-fit: contain;
}

.footer strong {
  text-align: center;
  font-size: 11px;
  letter-spacing: .04em;
}

.footer__mark {
  justify-self: end;
  color: rgba(255,255,255,.35);
  font-size: 28px;
}

@media (max-width: 900px) {
  .topbar__inner,
  .hero__inner,
  .section__inner,
  .footer__inner {
    width: min(100% - 40px, 1790px);
  }

  .topbar { height: 78px; }
  .nav { gap: 20px; }
  .nav a { font-size: 10px; }

  .hero { height: 335px; }
  .hero__mascot {
    right: -12px;
    height: 325px;
    opacity: .95;
  }

  .hero__watermark { display: none; }
  .section__heading h2 { font-size: 40px; }
}

@media (max-width: 700px) {
  .topbar__inner,
  .hero__inner,
  .section__inner,
  .footer__inner {
    width: min(100% - 26px, 1790px);
  }

  .brand__logo { width: 58px; height: 40px; }
  .brand__copy strong { font-size: 12px; }
  .brand__copy span { font-size: 8px; }

  .nav { gap: 14px; }
  .nav a { font-size: 9px; }

  .hero {
    height: 310px;
  }

  .hero__title {
    align-self: flex-start;
    padding-top: 70px;
    z-index: 6;
  }

  .hero__eyebrow { font-size: 18px; }
  .hero h1 { font-size: 48px; }
  .hero__year { font-size: 20px; }

  .hero__mascot {
    right: -58px;
    height: 285px;
    bottom: -2px;
    opacity: .72;
  }

  .section--ranking { padding: 45px 0 60px; }
  .section--classification { padding-bottom: 90px; }

  .section__heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .section__heading h2 { font-size: 36px; }
  .live-status { align-self: flex-end; }

  .ranking-table thead th,
  .ranking-table td {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ranking-table thead th,
  .classification-table thead th {
    font-size: 12px;
  }

  .classification-table {
    min-width: 1850px;
  }

  .ranking-table td { height: 54px; }
  .ranking-table .num { font-size: 18px; }

  .section__heading--classification {
    flex-direction: row;
    align-items: flex-end;
  }

  .scroll-hint {
    font-size: 9px;
  }

  .footer__inner {
    grid-template-columns: 70px 1fr 30px;
  }

  .footer__logo {
    width: 58px;
    height: 44px;
  }

  .footer strong { font-size: 9px; }
}

@media (max-width: 470px) {
  .nav a:first-child { display: none; }
  .hero h1 { font-size: 42px; }
  .hero__mascot { right: -90px; }
  .section__heading h2 { font-size: 31px; }
  .section__heading--classification {
    flex-direction: column;
    align-items: flex-start;
  }
  .scroll-hint { align-self: flex-end; }
}
