:root {
  --performance-bg: #0b1015;
  --performance-panel: #11181f;
  --performance-paper: #f7f6f2;
  --performance-line: rgba(255, 255, 255, .12);
  --performance-orange: #ff7a00;
}

.performance-page {
  min-height: 100vh;
  background: var(--performance-bg);
}

.performance-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 5vw;
  border-bottom: 1px solid var(--performance-line);
  background: rgba(8, 12, 16, .94);
  backdrop-filter: blur(14px);
}

.performance-header .brand img {
  width: 71px;
  height: 30px;
}

.performance-header .brand-name {
  font-size: 14px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.home-button:hover,
.home-button:focus-visible {
  border-color: var(--performance-orange);
  background: var(--performance-orange);
}

.performance-hero {
  min-height: auto;
  padding: 120px max(6vw, 40px) 100px;
  border-bottom: 1px solid var(--performance-line);
  background:
    radial-gradient(circle at 84% 32%, rgba(20, 77, 132, .24), transparent 32%),
    linear-gradient(135deg, #0b1015 0%, #101820 100%);
}

.performance-kicker,
.records-heading span {
  color: var(--performance-orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}

.performance-hero h1 {
  max-width: 900px;
  margin: 28px 0 24px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.04;
}

.performance-hero p {
  max-width: 620px;
  margin: 0;
  color: #aeb7bf;
  font-size: 17px;
  line-height: 1.75;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
}

.scroll-link span {
  color: var(--performance-orange);
}

.records {
  padding: 100px max(5vw, 32px) 120px;
}

.records-heading {
  max-width: 1440px;
  margin: 0 auto 48px;
}

.records-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -.045em;
}

.record-card {
  max-width: 1440px;
  margin: 0 auto 36px;
  overflow: hidden;
  border: 1px solid var(--performance-line);
  border-radius: 4px;
  background: var(--performance-panel);
}

.record-card figcaption {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  margin: 0;
  padding: 0 24px;
  border-left: 3px solid var(--performance-orange);
}

.record-card figcaption span {
  min-width: 92px;
  color: var(--performance-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.record-card figcaption b {
  color: #fff;
  font-size: 15px;
  letter-spacing: -.01em;
}

.table-scroll {
  overflow-x: auto;
  background: var(--performance-paper);
}

.performance-table {
  width: 100%;
  min-width: 1160px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #273039;
  background: var(--performance-paper);
}

.performance-table th,
.performance-table td {
  padding: 14px 10px;
  border-right: 1px solid #e1e3e2;
  border-bottom: 1px solid #dcdfde;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.4;
}

.performance-table th {
  padding: 12px 8px;
  color: #f7f8f8;
  border-color: rgba(255, 255, 255, .12);
  background: #222c34;
  font-size: 12px;
  font-weight: 700;
}

.performance-table thead tr:first-child th {
  border-top: 3px solid var(--performance-orange);
}

.performance-table tbody tr:nth-child(even) td {
  background: #f0f1ee;
}

.performance-table tbody tr:hover td {
  background: #fff3e6;
}

.performance-table td:nth-child(1) {
  width: 52px;
  color: #aa590f;
  font-weight: 700;
}

.performance-table td:nth-child(2) { width: 102px; }
.performance-table td:nth-child(3) { width: 76px; }
.performance-table td:nth-child(4) { width: 192px; font-weight: 650; }
.performance-table td:nth-child(5) { width: 156px; }
.performance-table td:nth-child(6) { width: 66px; }
.performance-table td:nth-child(7) { width: 72px; }
.performance-table td:nth-child(8),
.performance-table td:nth-child(9) { width: 116px; }
.performance-table td:nth-child(10) { width: 150px; }

.performance-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 5vw;
  border-top: 1px solid var(--performance-line);
  background: #06090c;
  color: #7e878f;
  font-size: 9px;
  letter-spacing: .13em;
}

.performance-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .performance-header .brand-name {
    display: none;
  }

  .performance-hero {
    padding: 90px 24px 72px;
  }

  .performance-hero h1 {
    font-size: 48px;
  }

  .records {
    padding: 72px 20px 90px;
  }

  .record-card {
    margin-bottom: 28px;
  }

  .record-card figcaption {
    gap: 14px;
    min-height: 62px;
    padding: 0 16px;
  }

  .performance-table th,
  .performance-table td {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 560px) {
  .performance-header {
    padding: 13px 18px;
  }

  .performance-header .brand img {
    width: 64px;
    height: auto;
  }

  .performance-hero h1 {
    font-size: 42px;
  }

  .performance-hero p {
    font-size: 15px;
  }

  .records-heading h2 {
    font-size: 36px;
  }

  .record-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .performance-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
