@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #05122f;
  --panel: #081a41;
  --panel-2: #0f2862;
  --text: #f8efd5;
  --muted: #c8b77a;
  --gold: #d1a93a;
  --gold-2: #ffdb70;
  --blue: #1e53b5;
  --red: #8f1d26;
  --line: rgba(255,215,108,0.18);
  --shadow: 0 30px 90px rgba(0,0,0,0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 83, 181, 0.30), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(255, 219, 112, 0.24), transparent 28%),
    var(--bg);
}

@keyframes pulseBG {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.02) translate(-12px, 8px);
    opacity: 0.72;
  }
}

@keyframes floatBG {
  0%, 100% {
    transform: scale(1.03) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-18px);
  }
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.86), rgba(0,0,0,0.35), transparent);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #070707;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 50%;
  font-family: Anton, sans-serif;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: white;
  display: block;
  margin: 6px 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255, 219, 112, 0.18), transparent 25%),
    radial-gradient(circle at 80% 15%, rgba(30, 83, 181, 0.25), transparent 18%);
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
  animation: pulseBG 18s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/champ-victory-belts.png");
  background-size: cover;
  background-position: center 18%;
  transform: scale(1.03);
  z-index: -3;
  animation: floatBG 20s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 56, 0.96) 0%, rgba(8, 24, 58, 0.70) 42%, rgba(2, 16, 46, 0.30) 100%),
    linear-gradient(0deg, rgba(5, 18, 51, 1) 0%, rgba(5, 18, 51, 0.14) 46%, rgba(5, 18, 51, 0.65) 100%);
  z-index: -2;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 170px 0 76px;
}

.kicker,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.8rem, 11vw, 10.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  text-shadow: 0 20px 50px rgba(0,0,0,0.48);
  color: transparent;
  background: linear-gradient(120deg, rgba(255, 219, 112, 1), rgba(209, 169, 58, 0.97) 35%, rgba(30, 83, 181, 0.96) 80%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.06rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  background: linear-gradient(135deg, rgba(255, 219, 112, 0.98), rgba(209, 169, 58, 0.95));
  color: #08153b;
  box-shadow: 0 18px 35px rgba(30, 83, 181, 0.16);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(30, 83, 181, 0.24);
}

.button.secondary {
  background: linear-gradient(135deg, rgba(30, 83, 181, 0.92), rgba(15, 35, 86, 0.92));
  color: #f8efd5;
  border-color: rgba(255, 219, 112, 0.35);
}

.button.secondary:hover {
  background: linear-gradient(135deg, rgba(28, 95, 210, 0.95), rgba(26, 60, 136, 0.95));
}

.primary {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(216,173,85,0.22);
}

.ghost {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}

.light {
  color: white;
}

.quick-stats {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(10,12,18,0.68);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quick-stats div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-stats div:last-child {
  border-right: 0;
}

.quick-stats strong {
  display: block;
  font-family: Anton, sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  color: var(--gold-2);
}

.quick-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 36px;
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.profile-card,
.rival-card,
.media-card {
  border: 1px solid rgba(255, 215, 108, 0.16);
  background: linear-gradient(180deg, rgba(18, 44, 98, 0.88), rgba(6, 14, 36, 0.72));
  box-shadow: 0 24px 60px rgba(1, 20, 55, 0.25);
  border-radius: 28px;
}

.profile-card {
  padding: 26px;
}

.profile-card h3 {
  font-size: 1.55rem;
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.profile-card span {
  color: var(--muted);
}

.profile-card strong {
  text-align: right;
}

.dark-split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(16px, 1fr) minmax(0, 590px) minmax(0, 590px) minmax(16px, 1fr);
  gap: 28px;
  padding: 0;
  background: linear-gradient(135deg, rgba(30,83,181,0.28), rgba(255,219,112,0.16));
}

.split-copy {
  grid-column: 2;
  padding: 92px 0;
}

.feature-image {
  grid-column: 3 / 5;
  min-height: 640px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.feature-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.skill-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.skill-list article {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  border-radius: 22px;
}

.skill-list h3 {
  color: var(--gold-2);
  margin-bottom: 7px;
}

.skill-list p {
  margin-bottom: 0;
}

.record-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
}

.record-number {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 32px;
  background:
    radial-gradient(circle, rgba(255,218,131,0.22), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
}

.record-number strong {
  display: block;
  font-family: Anton, sans-serif;
  color: var(--gold-2);
  font-size: clamp(5rem, 13vw, 9rem);
  line-height: 0.9;
}

.record-number span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.timeline {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
}

.timeline span {
  color: var(--gold-2);
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

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

.section-heading p {
  max-width: 420px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 108, 0.14);
  background: linear-gradient(180deg, rgba(4, 18, 54, 0.95), rgba(9, 33, 84, 0.88));
  border-radius: 28px;
}

.gallery-grid .wide {
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rival-card {
  padding: 24px;
}

.rival-card span {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 900;
}

.rival-card h3 {
  margin: 12px 0 10px;
  font-size: 1.55rem;
}

.rival-card p {
  margin-bottom: 0;
}

.quote-wall {
  min-height: 580px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 96px 16px;
  background:
    linear-gradient(rgba(0,0,0,0.64), rgba(0,0,0,0.74)),
    url("assets/champ-nightlife-belts.png") center / cover;
  border-block: 1px solid var(--line);
}

.quote-inner {
  width: min(900px, 100%);
}

blockquote {
  margin: 20px auto 30px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.media {
  padding-bottom: 120px;
}

.media-card {
  padding: clamp(28px, 6vw, 60px);
  background:
    linear-gradient(135deg, rgba(30, 83, 181, 0.34), rgba(255, 219, 112, 0.18)),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}

.media-card p {
  max-width: 760px;
}

.footer {
  padding: 34px 16px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 215, 108, 0.16);
  text-align: center;
  background: rgba(4, 12, 35, 0.72);
}

.footer p {
  margin: 4px 0;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8,9,12,0.94);
  }

  .nav-links.open {
    display: flex;
  }

  .quick-stats,
  .intro-grid,
  .record-grid,
  .gallery-grid,
  .cards,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .quick-stats {
    border-radius: 22px;
  }

  .quick-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stats div:last-child {
    border-bottom: 0;
  }

  .dark-split {
    display: block;
    padding: 0 16px 16px;
  }

  .split-copy {
    padding: 72px 0 32px;
  }

  .feature-image {
    min-height: auto;
    border-left: 0;
    border: 1px solid var(--line);
    border-radius: 28px;
  }

  .timeline div {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    background-position: center top;
  }

  h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }
}
