:root {
  --black: #050505;
  --ink: #111111;
  --ink-soft: #1b1711;
  --gold: #d7aa3d;
  --gold-bright: #f2cd67;
  --orange: #ed6a22;
  --ivory: #f8f3e4;
  --paper: #fffaf0;
  --muted: #6d665a;
  --line: rgba(215, 170, 61, 0.22);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--gold-bright);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.48));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(242, 205, 103, 0.65);
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 14px 30px rgba(237, 106, 34, 0.22);
  padding: 2px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.96rem;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

.primary-nav a {
  padding: 10px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
}

.menu-toggle {
  display: none;
  place-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 700px;
  height: 86svh;
  max-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82) 34%, rgba(5, 5, 5, 0.28) 66%, rgba(5, 5, 5, 0.56)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.32) 66%, rgba(5, 5, 5, 0.9));
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9a671f;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.98;
  font-weight: 950;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 58%, var(--orange));
  box-shadow: 0 18px 34px rgba(237, 106, 34, 0.18);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats div {
  min-height: 118px;
  padding: 18px;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(8px);
}

.hero-stats strong,
.proof-metrics strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.5rem;
  line-height: 1;
}

.hero-stats span,
.proof-metrics span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section,
.intro-section,
.tracks-section,
.proof-section {
  position: relative;
}

.section {
  padding: 104px 0;
  background: var(--paper);
}

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

.intro-section {
  padding: 34px 0;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(215, 170, 61, 0.18), rgba(237, 106, 34, 0.12), rgba(255, 250, 240, 1)),
    var(--paper);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.intro-logo {
  display: grid;
  place-items: center;
  max-width: 220px;
}

.intro-logo img {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.16);
}

.intro-grid h2,
.section-header h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.04;
}

.intro-grid p:last-child,
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 42px;
}

.section-header.compact {
  max-width: none;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.timeline-step {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

.service-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(237, 106, 34, 0.18), rgba(215, 170, 61, 0.08)),
    var(--ink);
  border-color: rgba(215, 170, 61, 0.4);
}

.card-kicker,
.timeline-step span {
  display: inline-block;
  margin-bottom: 30px;
  color: #9b681b;
  font-weight: 950;
}

.service-card.featured .card-kicker {
  color: var(--gold-bright);
}

.service-card h3,
.timeline-step h3,
.track-content h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
}

.service-card p,
.timeline-step p,
.track-content p {
  margin: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.tracks-section {
  padding: 104px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 20%, rgba(237, 106, 34, 0.22), transparent 28%),
    linear-gradient(145deg, #050505, #15110b 58%, #050505);
}

.tracks-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

.tracks-section .section-header p {
  color: rgba(255, 255, 255, 0.68);
}

.track-panel {
  border: 1px solid rgba(242, 205, 103, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.track-content {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.track-content p {
  color: rgba(255, 255, 255, 0.7);
}

.track-visual {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid rgba(242, 205, 103, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(242, 205, 103, 0.18) calc(50% - 1px), rgba(242, 205, 103, 0.18) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(237, 106, 34, 0.08)),
    #0b0a08;
}

.all-sports-visual::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(237, 106, 34, 0.5);
}

.all-sports-visual::after {
  content: "";
  position: absolute;
  inset: 58px 28px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.track-visual span {
  position: absolute;
  background: var(--orange);
  opacity: 0.9;
}

.track-visual span:nth-child(1) {
  left: 50%;
  top: 18%;
  width: 2px;
  height: 64%;
}

.track-visual span:nth-child(2) {
  left: 22%;
  top: 50%;
  width: 56%;
  height: 2px;
}

.track-visual span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 72%;
  height: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  background: var(--orange);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-step {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(215, 170, 61, 0.08), rgba(255, 255, 255, 0) 46%),
    var(--white);
}

.proof-section {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.82)),
    url("assets/lla-hero.png") center 55% / cover no-repeat;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.quote-block blockquote {
  max-width: 780px;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.04;
  font-weight: 950;
}

.proof-metrics {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.proof-metrics div {
  padding: 22px;
  background: rgba(5, 5, 5, 0.64);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(242, 205, 103, 0.28);
  border-radius: 8px;
  color: var(--gold-bright);
  font-weight: 850;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 3.9rem;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracks-layout,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .tracks-section .section-header {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    top: 71px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(242, 205, 103, 0.2);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 820px;
    height: auto;
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.44)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.82));
  }

  .hero-content,
  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-stats div {
    min-height: auto;
    padding: 14px 16px;
  }

  .intro-grid,
  .track-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-logo {
    width: min(190px, 64vw);
  }

  .intro-grid h2,
  .section-header h2,
  .quote-block blockquote {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .section,
  .tracks-section {
    padding: 76px 0;
  }

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

  .track-visual {
    width: min(220px, 100%);
  }

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

@media (max-width: 420px) {
  .brand-text {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .intro-grid h2,
  .section-header h2,
  .quote-block blockquote {
    font-size: 1.85rem;
  }

}
