:root {
  --bg: #050505;
  --bg-soft: #0c0c0e;
  --panel: #111114;
  --panel-strong: #17171b;
  --text: #f6f3ed;
  --muted: #aaa6a0;
  --line: rgba(255, 255, 255, 0.12);
  --ole-red: #2aa36f;
  --ole-red-dark: #145338;
  --ole-red-rgb: 42, 163, 111;
  --ole-navy: #111513;
  --ole-navy-dark: #050706;
  --ole-navy-rgb: 17, 21, 19;
  --silver-rgb: 207, 215, 211;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 5%, rgba(var(--ole-red-rgb), 0.28), transparent 28rem),
    radial-gradient(circle at 0% 40%, rgba(var(--ole-navy-rgb), 0.46), transparent 22rem),
    linear-gradient(180deg, #070707 0%, #020202 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand-mark {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.brand-mark span {
  color: var(--text);
}

.brand-mark {
  color: var(--ole-red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-cta {
  padding: 0.8rem 1rem;
  color: var(--text);
  border: 1px solid rgba(var(--ole-red-rgb), 0.72);
  background: rgba(var(--ole-navy-rgb), 0.38);
}

.section-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 82px);
  padding: clamp(3rem, 7vw, 7rem) 0 2rem;
}

.hero::after {
  position: absolute;
  right: -6vw;
  bottom: 6rem;
  z-index: -1;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  content: "";
  background:
    linear-gradient(135deg, rgba(var(--ole-red-rgb), 0.34), transparent 52%),
    radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 60%);
  border: 1px solid var(--line);
  border-radius: 50%;
  filter: blur(0.5px);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--ole-red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(5rem, 14vw, 12rem);
  letter-spacing: 0.015em;
  text-shadow: 0 12px 0 rgba(255, 255, 255, 0.035);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-tagline {
  margin: 1rem 0 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-accent {
  margin: 0.25rem 0 1.25rem;
  color: var(--ole-red);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  transform: skew(-7deg);
}

.hero-text {
  max-width: 610px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, var(--ole-red), var(--ole-red-dark));
  box-shadow: 0 18px 40px rgba(var(--ole-red-rgb), 0.3);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  align-self: center;
  display: grid;
  gap: 1rem;
}

.player-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--ole-navy), #070708 62%);
  box-shadow: var(--shadow);
}

.player-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.02) 48%, rgba(5, 5, 5, 0.58)),
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.92) 100%);
}

.player-frame::after {
  position: absolute;
  inset: auto 1.25rem 5rem auto;
  z-index: 2;
  width: 138px;
  height: 138px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(var(--ole-red-rgb), 0.18);
  clip-path: polygon(0 0, 100% 18%, 78% 100%, 12% 86%);
}

.player-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
}

.jersey-number {
  position: relative;
  z-index: 1;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.9);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(7rem, 14vw, 11rem);
  line-height: 0.8;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.35);
}

.player-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-meta strong {
  color: var(--text);
}

.quote-card,
.visual-panel,
.content-panel,
.metric-card,
.booking-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.quote-card {
  position: relative;
  padding: 1.5rem;
}

.quote-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.quote-mark {
  position: absolute;
  top: -1.6rem;
  left: 1rem;
  color: var(--ole-red);
  font-family: Anton, Impact, sans-serif;
  font-size: 5rem;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(8, 8, 10, 0.8);
}

.hero-stats article {
  padding: 1.1rem;
  border-right: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.stat-label,
.metric-card span,
.credibility-bar span,
.credibility-bar small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stats strong,
.metric-card strong {
  display: block;
  color: var(--ole-red);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.hero-stats article > span:last-child {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.credibility-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.credibility-bar div {
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.credibility-bar div:last-child {
  border-right: 0;
}

.credibility-bar strong {
  display: block;
  color: var(--text);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.split-section,
.impact,
.partners,
.interests,
.booking {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
}

.visual-panel,
.content-panel {
  min-height: 390px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.visual-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 80%),
    linear-gradient(135deg, rgba(var(--ole-navy-rgb), 0.56), transparent 48%),
    repeating-linear-gradient(-12deg, #17171b 0 14px, #111114 14px 28px);
}

.panel-kicker {
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.4rem 0.65rem;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--ole-red-rgb), 0.72);
  background: rgba(var(--ole-navy-rgb), 0.32);
}

.content-panel p:last-child,
.visual-panel p:last-child {
  margin-bottom: 0;
}

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

.section-heading h2 {
  max-width: 760px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric-card {
  min-height: 220px;
  padding: 1.25rem;
}

.metric-card strong {
  margin: 1.7rem 0 0.45rem;
}

.metric-card p {
  margin: 0;
  font-size: 0.95rem;
}

.metric-card.instagram {
  background: linear-gradient(145deg, rgba(var(--ole-red-rgb), 0.21), rgba(255, 255, 255, 0.035));
}

.metric-card.tiktok {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(var(--ole-navy-rgb), 0.2));
}

.metric-card.likes,
.metric-card.earnings {
  background: linear-gradient(145deg, rgba(var(--silver-rgb), 0.13), rgba(255, 255, 255, 0.035));
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.partner-strip article {
  position: relative;
  display: grid;
  min-height: 155px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-strip article:nth-child(1) {
  background: radial-gradient(circle at 60% 30%, #153d34, #020403 70%);
}

.partner-strip article:nth-child(2),
.partner-strip article:nth-child(4) {
  background: #000;
}

.partner-strip article:nth-child(3) {
  background: #fff;
}

.partner-strip article::before {
  content: none;
}

.partner-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--ole-red-rgb), 0.64);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.partner-strip img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: contain;
  filter: none;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.interest-grid article {
  display: grid;
  grid-column: span 3;
  min-height: 245px;
  place-items: end stretch;
  padding: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--ole-red-rgb), 0.52);
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.62);
  background-blend-mode: multiply;
  box-shadow:
    inset 0 0 0 2px #020202,
    inset 0 0 0 1px #020202,
    inset 0 0 28px rgba(0, 0, 0, 0.72),
    0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.interest-grid article:nth-child(n + 5) {
  grid-column: span 4;
}

.interest-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--ole-red-rgb), 0.78);
  box-shadow:
    inset 0 0 0 2px #020202,
    inset 0 0 0 1px #020202,
    inset 0 0 28px rgba(0, 0, 0, 0.68),
    0 26px 70px rgba(0, 0, 0, 0.48);
}

.interest-grid article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(#020202, #020202) top / 100% 12px no-repeat,
    linear-gradient(#020202, #020202) bottom / 100% 12px no-repeat,
    linear-gradient(#020202, #020202) left / 12px 100% no-repeat,
    linear-gradient(#020202, #020202) right / 12px 100% no-repeat,
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.82) 100%);
}

.interest-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
}

.interest-grid article:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=700&q=80");
}

.interest-grid article:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=700&q=80");
}

.interest-grid article:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=700&q=80");
}

.interest-grid article:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1621939514649-280e2ee25f60?auto=format&fit=crop&w=700&q=80");
}

.interest-grid article:nth-child(5) {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=700&q=80");
}

.interest-grid article:nth-child(6) {
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=700&q=80");
}

.interest-grid article:nth-child(7) {
  background-image: url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=700&q=80");
}

.interest-grid article span {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 64px;
  padding: 1rem 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(var(--ole-navy-rgb), 0.64));
  border-left: 4px solid var(--ole-red);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.92);
}

.booking {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 1.25rem;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.booking > div:first-child {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(var(--ole-red-rgb), 0.24), transparent 42%),
    var(--bg-soft);
}

.booking-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.booking-card a:first-child {
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
}

.booking-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 3vw, 3rem);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .split-section,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    align-self: stretch;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .interest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 78% 3%, rgba(var(--ole-red-rgb), 0.24), transparent 18rem),
      linear-gradient(180deg, #070707 0%, #020202 100%);
  }

  .site-header {
    gap: 0.8rem;
    padding: 0.85rem 1rem;
  }

  .brand-mark {
    font-size: 1.7rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .site-nav .nav-cta {
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .section-shell {
    width: min(100% - 1.25rem, 1160px);
  }

  .hero {
    gap: 1.4rem;
    padding: 2.2rem 0 1.25rem;
  }

  h1 {
    font-size: clamp(4.2rem, 23vw, 6.8rem);
    letter-spacing: 0.005em;
  }

  h2 {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.4rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-stats,
  .impact-grid,
  .partner-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .interest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .interest-grid article,
  .interest-grid article:nth-child(n + 5) {
    grid-column: auto;
  }

  .credibility-bar {
    grid-template-columns: 1fr;
  }

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

  .credibility-bar div:last-child {
    border-bottom: 0;
  }

  .hero-stats article {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats article:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .player-frame {
    min-height: 0;
    aspect-ratio: 4 / 5;
    padding: 1rem;
  }

  .player-frame img {
    object-position: center;
  }

  .player-frame::after {
    right: 0.85rem;
    bottom: 4.1rem;
    width: 96px;
    height: 96px;
  }

  .jersey-number {
    font-size: clamp(4.8rem, 26vw, 7rem);
    opacity: 0.88;
  }

  .player-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.72rem;
  }

  .quote-card {
    padding: 1.2rem;
  }

  .quote-card p {
    font-size: 1.35rem;
  }

  .split-section,
  .impact,
  .partners,
  .interests,
  .booking {
    padding-top: 3.25rem;
  }

  .visual-panel,
  .content-panel {
    min-height: auto;
    padding: 1.25rem;
  }

  .metric-card {
    min-height: 190px;
    padding: 1rem;
  }

  .metric-card strong {
    margin-top: 1.25rem;
  }

  .partner-strip article {
    min-height: 124px;
    padding: 1rem;
  }

  .interest-grid article {
    min-height: 190px;
    padding: 0;
    font-size: 0.72rem;
  }

  .interest-grid article span {
    min-height: 52px;
    padding: 0.85rem;
  }

  .booking {
    padding-bottom: 3.5rem;
  }

  .booking > div:first-child,
  .booking-card {
    padding: 1.25rem;
  }

  .booking-card a:first-child {
    overflow-wrap: anywhere;
  }

  .section-heading {
    display: block;
    margin-bottom: 1rem;
  }

  .site-footer {
    flex-direction: column;
    padding: 1.25rem 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 430px) {
  .hero-stats,
  .impact-grid,
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .interest-grid {
    grid-template-columns: 1fr;
  }

  .interest-grid article {
    min-height: 215px;
  }

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

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .player-frame {
    aspect-ratio: 3 / 4;
  }

  .player-frame img {
    object-position: center;
  }
}
