:root {
  --brand-green: #16A34A;
  --background: #050505;
  --background-soft: #080b09;
  --surface: #0d100e;
  --text-primary: #ffffff;
  --text-soft: #f1f4ef;
  --text-secondary: #a7afa8;
  --text-muted: #737b74;
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(22, 163, 74, 0.72);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
  --max-width: 1180px;
  --page-gutter: clamp(1rem, 4vw, 3rem);
  --header-height: 74px;
  --font-display: "Avenir Next Condensed", "DIN Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-utility: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 24%, rgba(22, 163, 74, 0.08), transparent 28rem),
    linear-gradient(180deg, #030403 0%, var(--background) 54%, #070907 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 4px;
}

::selection {
  background: var(--brand-green);
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--brand-green);
  background: #050505;
  color: #ffffff;
  font-family: var(--font-utility);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  width: 100%;
  min-height: var(--header-height);
  padding: 0.68rem var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 5, 0.42);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: clamp(150px, 16vw, 218px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 0.8vw, 0.7rem);
  min-width: 0;
}

.site-nav a,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a {
  padding: 0.66rem 0.76rem;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-nav a:hover {
  border-color: var(--brand-green);
  color: #ffffff;
  background: var(--brand-green);
  transform: translateY(-1px);
}

.nav-cta,
.button--primary {
  padding: 0.75rem 1.05rem;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  letter-spacing: 0.06em;
}

.nav-cta:hover,
.button--primary:hover,
.button--hex:hover {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + 4.5rem) var(--page-gutter) 6rem;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background-image: url("../assets/images/hero-picture.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.44) 34%, rgba(0, 0, 0, 0.08) 68%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.06) 52%, rgba(5, 5, 5, 0.88) 100%);
}

.hero__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-green);
  font-family: var(--font-utility);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.audience-hex h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  max-width: min(100%, 64rem);
  font-size: clamp(2.15rem, 3.65vw, 3.25rem);
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

@media (min-width: 981px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

.hero__copy {
  max-width: 34rem;
  margin: 1.4rem 0 2rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.button {
  width: fit-content;
  padding: 0.82rem 1.15rem;
}

.who-we-help {
  position: relative;
  scroll-margin-top: 7rem;
  margin-top: -1px;
  padding: clamp(4.3rem, 8vw, 6.8rem) var(--page-gutter) clamp(5rem, 10vw, 9rem);
  background: var(--background);
}

.who-we-help::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(68rem, calc(100% - 2rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.section-intro {
  width: min(100%, 46rem);
  margin: 0 auto clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}

.section-intro h2 {
  color: var(--text-primary);
  font-size: clamp(2.15rem, 4.45vw, 4.1rem);
}

.section-intro p:not(.eyebrow) {
  margin: 1.2rem auto 0;
  max-width: 40rem;
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.audience-hex-grid {
  --hex-width: clamp(15rem, 24vw, 20rem);
  --hex-height: calc(var(--hex-width) * 1.1547);
  --hex-gap: clamp(0.35rem, 0.75vw, 0.65rem);
  --lower-hex-top: clamp(13.55rem, 19.25vw, 17.9rem);
  position: relative;
  display: block;
  width: min(100%, clamp(30.5rem, 49vw, 40.75rem));
  height: clamp(31rem, 47vw, 41rem);
  margin: 0 auto;
  padding: 0.4rem 0 clamp(2rem, 4vw, 3.6rem);
  isolation: isolate;
}

.audience-hex-grid::before {
  display: none;
}

.audience-hex {
  --hex-ring-rgb: 255, 255, 255;
  position: absolute;
  z-index: 1;
  display: block;
  scroll-margin-top: 8rem;
  width: var(--hex-width);
  height: var(--hex-height);
  overflow: visible;
  background: transparent;
  cursor: pointer;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.audience-hex::before {
  display: none;
}

.audience-hex::after {
  display: none;
}

.audience-hex--clubs {
  --hex-ring-rgb: 22, 163, 74;
  top: 0;
  left: 50%;
  translate: -50% 0;
}

.audience-hex--agents {
  top: var(--lower-hex-top);
  left: 0;
}

.audience-hex--players {
  top: var(--lower-hex-top);
  right: 0;
}

.audience-hex__media,
.audience-hex__media img,
.audience-hex__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.audience-hex__media {
  z-index: 0;
  overflow: hidden;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--surface);
}

.audience-hex__media img {
  object-fit: cover;
  filter: grayscale(0.32) sepia(0.16) hue-rotate(72deg) saturate(1.02) brightness(0.6) contrast(1.06);
  transform: scale(1.06);
  transition: transform 420ms ease, filter 420ms ease;
}

.audience-hex__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.18);
}

.audience-hex--clubs .audience-hex__media img {
  filter: grayscale(0.24) sepia(0.2) hue-rotate(72deg) saturate(1.16) brightness(0.62) contrast(1.08);
}

.audience-hex--clubs .audience-hex__shade {
  background:
    linear-gradient(180deg, rgba(3, 20, 10, 0.16) 0%, rgba(3, 20, 10, 0.44) 48%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(12, 82, 36, 0.2)),
    rgba(11, 64, 30, 0.16);
}

.audience-hex__outline {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.audience-hex__outline polygon {
  fill: none;
  stroke: rgb(var(--hex-ring-rgb));
  stroke-linejoin: round;
  stroke-width: 2.8;
  vector-effect: non-scaling-stroke;
}

.audience-hex:focus,
.audience-hex:focus-visible {
  outline: none;
}

.audience-hex:focus-visible .audience-hex__outline polygon {
  stroke-width: 3.4;
}

.audience-hex__content {
  position: absolute;
  top: 61%;
  right: 18%;
  left: 18%;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-50%);
}

.audience-hex h3 {
  margin-bottom: 0.86rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.button--hex {
  min-height: 34px;
  padding: 0.44rem 0.75rem;
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.button--text {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-green);
}

.button--text:hover {
  color: #ffffff;
  transform: none;
}

.audience-hex:hover .audience-hex__media img {
  filter: grayscale(0.22) sepia(0.16) hue-rotate(72deg) saturate(1.08) brightness(0.66) contrast(1.08);
  transform: scale(1.1);
}

.audience-hex--clubs:hover .audience-hex__media img {
  filter: grayscale(0.16) sepia(0.22) hue-rotate(72deg) saturate(1.28) brightness(0.68) contrast(1.1);
}

.audience-hex:hover {
  filter: none;
}

.audience-hex:active {
  transform: none;
}

.audience-hex:active .audience-hex__media img {
  transform: scale(1.06);
}

.motion-ready .reveal-hex {
  opacity: 0;
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 180ms ease,
    filter 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal-hex--from-bottom {
  transform: translateY(3.4rem);
}

.motion-ready .reveal-hex--from-left {
  transform: translateX(-3.4rem);
}

.motion-ready .reveal-hex--from-right {
  transform: translateX(3.4rem);
}

.motion-ready .reveal-hex.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.motion-ready .audience-hex__content,
.motion-ready .service-hex__label,
.motion-ready .service-hex__button {
  opacity: 0;
  transform: translateY(0.45rem);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}

.motion-ready .reveal-hex.is-visible .audience-hex__content,
.motion-ready .reveal-hex.is-visible .service-hex__label,
.motion-ready .reveal-hex.is-visible .service-hex__button {
  opacity: 1;
  transform: translateY(0);
}

.audience-hex:nth-child(1),
.service-hex:nth-child(1) {
  --reveal-delay: 0ms;
}

.audience-hex:nth-child(2),
.service-hex:nth-child(2) {
  --reveal-delay: 110ms;
}

.audience-hex:nth-child(3),
.service-hex:nth-child(3) {
  --reveal-delay: 180ms;
}

.audience-section {
  position: relative;
  scroll-margin-top: 7rem;
  padding: clamp(5rem, 8vw, 7.5rem) var(--page-gutter);
  background:
    radial-gradient(circle at 18% 22%, rgba(22, 163, 74, 0.08), transparent 20rem),
    var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.audience-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.32;
  content: "";
  pointer-events: none;
}

.audience-section--agents {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.07), transparent 21rem),
    var(--background);
}

.audience-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(22rem, 0.9fr);
  align-items: center;
  gap: clamp(2.8rem, 6vw, 5.5rem);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.audience-section--reverse .audience-section__visual {
  order: -1;
}

.audience-section__copy {
  max-width: 42rem;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.audience-section__copy.is-changing {
  opacity: 0;
  transform: translateY(0.35rem);
}

.audience-section__copy h2,
.audience-section__panel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.12vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
  text-wrap: balance;
}

.audience-section__panel-title {
  color: var(--text-primary);
}

.audience-section__lede {
  margin: 1.3rem 0 1rem;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.55;
}

.audience-section__copy p:not(.eyebrow):not(.audience-section__lede) {
  margin: 1.15rem 0 2rem;
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.club-copy-panel--detail p {
  margin-bottom: 1rem;
}

.club-copy-panel--detail p:last-of-type {
  margin-bottom: 1.8rem;
}

.audience-section__visual {
  display: grid;
  justify-items: center;
}

.service-hex-cluster {
  --service-hex-width: clamp(8.75rem, 13.2vw, 11.35rem);
  --service-hex-height: calc(var(--service-hex-width) * 1.1547);
  --service-gap: clamp(0.2rem, 0.48vw, 0.4rem);
  --service-lower-top: calc(var(--service-hex-height) * 0.715);
  --service-top-lift: clamp(0.8rem, 1.6vw, 1.25rem);
  position: relative;
  width: calc((var(--service-hex-width) * 2) + var(--service-gap));
  height: calc(var(--service-lower-top) + var(--service-hex-height) + var(--service-top-lift));
  margin-top: var(--service-top-lift);
  isolation: isolate;
}

.service-hex {
  --service-ring-rgb: 255, 255, 255;
  appearance: none;
  border: 0;
  position: absolute;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 0.52rem;
  width: var(--service-hex-width);
  height: var(--service-hex-height);
  padding: 1rem 1rem clamp(2.35rem, 3.3vw, 3.1rem);
  color: inherit;
  font: inherit;
  text-align: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
    rgba(5, 5, 5, 0.88);
  cursor: pointer;
  transform-origin: center;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.service-hex:nth-child(1) {
  top: calc(var(--service-top-lift) * -1);
  left: 50%;
  z-index: 2;
  translate: -50% 0;
}

.service-hex:nth-child(2) {
  top: var(--service-lower-top);
  left: 0;
  z-index: 1;
}

.service-hex:nth-child(3) {
  top: var(--service-lower-top);
  right: 0;
  z-index: 1;
}

.service-hex--accent {
  --service-ring-rgb: 22, 163, 74;
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.16), rgba(22, 163, 74, 0.035)),
    rgba(5, 5, 5, 0.9);
}

.service-hex--image {
  overflow: hidden;
  background: var(--surface);
}

.service-hex__media,
.service-hex__media img,
.service-hex__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hex__media {
  z-index: 0;
  pointer-events: none;
}

.service-hex__media img {
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) sepia(0.1) hue-rotate(72deg) saturate(1.02) brightness(0.78) contrast(1.06);
  transform: scale(1.08);
  transition:
    filter 420ms ease,
    transform 420ms ease;
}

.service-hex__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(19, 110, 51, 0.1)),
    rgba(0, 0, 0, 0.04);
}

.service-hex--accent .service-hex__media img {
  filter: grayscale(0.12) sepia(0.16) hue-rotate(72deg) saturate(1.14) brightness(0.8) contrast(1.06);
}

.service-hex__label {
  position: relative;
  z-index: 4;
  max-width: 9.15rem;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.18vw, 1.02rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 18px rgba(0, 0, 0, 0.68);
  text-wrap: balance;
}

.service-hex__button {
  position: relative;
  z-index: 4;
  min-height: 28px;
  padding: 0.33rem 0.54rem;
  font-size: 0.5rem;
  line-height: 1;
  pointer-events: none;
}

.service-hex__outline {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.service-hex__outline polygon {
  fill: none;
  stroke: rgb(var(--service-ring-rgb));
  stroke-linejoin: round;
  stroke-width: 2.6;
  vector-effect: non-scaling-stroke;
}

.service-hex:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.042)),
    rgba(5, 5, 5, 0.9);
  transform: translateY(-2px);
}

.service-hex--image:hover .service-hex__media img {
  filter: grayscale(0.1) sepia(0.1) hue-rotate(72deg) saturate(1.08) brightness(0.88) contrast(1.08);
  transform: scale(1.13);
}

.service-hex--accent.service-hex--image:hover .service-hex__media img {
  filter: grayscale(0.06) sepia(0.16) hue-rotate(72deg) saturate(1.2) brightness(0.9) contrast(1.08);
}

.motion-ready .service-hex.is-visible:hover {
  transform: translateY(-2px);
}

.service-hex--accent:hover {
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.22), rgba(22, 163, 74, 0.055)),
    rgba(5, 5, 5, 0.92);
}

.service-hex:active {
  transform: scale(0.985);
}

.motion-ready .service-hex.is-visible:active {
  transform: scale(0.985);
}

.service-hex:focus,
.service-hex:focus-visible {
  outline: none;
}

.service-hex:focus-visible .service-hex__outline polygon {
  stroke-width: 3.3;
}

.future-anchor {
  scroll-margin-top: 8rem;
  height: 1px;
  margin-top: -1px;
}

.about-section {
  position: relative;
  scroll-margin-top: 7rem;
  padding: clamp(5rem, 8vw, 7.5rem) var(--page-gutter);
  background: var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-section__inner {
  display: grid;
  grid-template-columns: minmax(21rem, 1.06fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.4rem, 5vw, 4.6rem);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.about-section__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.about-section__image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: zoom-in;
  overflow: hidden;
}

.about-section__image-button::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(22, 163, 74, 0.07));
  content: "";
  pointer-events: none;
}

.about-section__image img {
  width: 100%;
  height: auto;
  filter: grayscale(0.08) saturate(0.9) brightness(0.84) contrast(1.03);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.about-section__image-button:hover img,
.about-section__image-button:focus-visible img {
  filter: grayscale(0.04) saturate(0.98) brightness(0.92) contrast(1.04);
  transform: scale(1.015);
}

.about-section__image-button:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 5px;
}

.about-section__image-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.55rem 0.7rem;
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  background: rgba(5, 5, 5, 0.66);
  color: #ffffff;
  font-family: var(--font-utility);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.35rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.about-section__image-button:hover .about-section__image-hint,
.about-section__image-button:focus-visible .about-section__image-hint {
  border-color: var(--brand-green);
  opacity: 1;
  transform: translateY(0);
}

.about-section__content {
  width: min(100%, 44rem);
  margin-left: auto;
}

.about-section h2,
.contact-footer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.35vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.about-section__copy {
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.about-section__copy p {
  margin: 0 0 1.2rem;
}

.about-section__copy p:last-child {
  margin-bottom: 0;
}

.contact-footer {
  scroll-margin-top: 7rem;
  padding: clamp(4.6rem, 8vw, 7rem) var(--page-gutter);
  background:
    radial-gradient(circle at 78% 28%, rgba(22, 163, 74, 0.08), transparent 22rem),
    #050505;
  color: #ffffff;
}

.contact-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.8rem);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.contact-footer__content {
  display: grid;
  align-content: start;
  justify-items: start;
}

.contact-footer__content p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.2rem 0 1.4rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.button--contact {
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
}

.button--contact:hover {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: #ffffff;
  transform: translateY(-1px);
}

.contact-footer__brand {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.4rem, 5vw, 4rem);
}

.contact-footer__brand img {
  width: clamp(165px, 17vw, 230px);
  height: auto;
}

.contact-footer__brand address {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.55;
}

.contact-footer__socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.contact-footer__socials a {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  color: #ffffff;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-footer__socials a:hover {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: #ffffff;
  transform: translateY(-1px);
}

.contact-footer__socials svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.contact-footer__image {
  margin: 0;
  position: relative;
  justify-self: end;
  width: min(100%, 28rem);
  overflow: hidden;
  background: transparent;
}

.contact-footer__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.46)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(22, 163, 74, 0.08));
  content: "";
  pointer-events: none;
}

.contact-footer__image img {
  width: 100%;
  height: auto;
  object-position: center;
  filter: grayscale(0.2) saturate(0.78) brightness(0.56) contrast(1.04);
}

.footer-legal {
  width: min(100%, var(--max-width));
  margin: clamp(3rem, 6vw, 4.8rem) auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-utility);
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover,
.footer-legal__button:hover {
  color: var(--brand-green);
}

.footer-legal__button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.image-lightbox,
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.image-lightbox[hidden],
.cookie-modal[hidden],
.cookie-banner[hidden] {
  display: none;
}

.image-lightbox__backdrop,
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(22, 163, 74, 0.12), transparent 28rem),
    rgba(0, 0, 0, 0.86);
  cursor: pointer;
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 74rem);
  color: #ffffff;
}

.image-lightbox__dialog img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border: 2px solid rgba(22, 163, 74, 0.78);
  background: #050505;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.66);
}

.image-lightbox__dialog p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-lightbox__close,
.cookie-modal__close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  min-height: 2.3rem;
  padding: 0.55rem 0.76rem;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: rgba(5, 5, 5, 0.78);
  color: #ffffff;
  font-family: var(--font-utility);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.image-lightbox__close:hover,
.cookie-modal__close:hover {
  border-color: var(--brand-green);
  background: var(--brand-green);
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  padding: 1rem var(--page-gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.94);
  color: #ffffff;
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.cookie-banner p,
.cookie-modal p {
  margin: 0;
  color: var(--text-secondary);
}

.cookie-banner p {
  max-width: 45rem;
  font-size: 0.9rem;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.button--cookie {
  min-height: 38px;
  padding: 0.66rem 0.82rem;
  border: 1.5px solid rgba(255, 255, 255, 0.74);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.button--cookie:hover,
.button--cookie-primary {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: #ffffff;
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 38rem);
  padding: clamp(1.3rem, 4vw, 2rem);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.06), transparent 42%),
    #050505;
  color: #ffffff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.66);
}

.cookie-modal h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.cookie-option h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-option p {
  font-size: 0.9rem;
}

.cookie-option input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--brand-green);
}

.cookie-modal__actions {
  justify-content: flex-end;
  margin-top: 1.2rem;
}

.accessibility-widget {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: 50;
  display: grid;
  justify-items: end;
  font-family: var(--font-body);
}

.accessibility-toggle {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #073642;
  color: #ffffff;
  cursor: pointer;
}

.accessibility-toggle svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: currentColor;
}

.accessibility-panel {
  width: 13.5rem;
  padding: 1rem;
  border: 1px solid #073642;
  background: #ffffff;
  color: #1d2521;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.accessibility-panel h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
}

.accessibility-panel button {
  display: block;
  width: 100%;
  padding: 0.44rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.accessibility-panel button:hover,
.accessibility-panel button:focus-visible {
  color: var(--brand-green);
}

html.accessibility-text-1 {
  font-size: 106%;
}

html.accessibility-text-2 {
  font-size: 112%;
}

html.accessibility-grayscale {
  filter: grayscale(1);
}

html.accessibility-negative {
  filter: invert(1) hue-rotate(180deg);
}

html.accessibility-high-contrast {
  --text-primary: #ffffff;
  --text-soft: #ffffff;
  --text-secondary: #ffffff;
  --border: rgba(255, 255, 255, 0.86);
}

html.accessibility-high-contrast body {
  background: #000000;
}

html.accessibility-light body {
  background: #ffffff;
  color: #050505;
}

html.accessibility-light .hero,
html.accessibility-light .who-we-help,
html.accessibility-light .audience-section,
html.accessibility-light .about-section,
html.accessibility-light .contact-footer {
  background: #ffffff;
  color: #050505;
}

html.accessibility-light .cookie-banner,
html.accessibility-light .cookie-modal__dialog {
  background: #ffffff;
  color: #050505;
}

html.accessibility-light .section-intro h2,
html.accessibility-light .audience-section__copy h2,
html.accessibility-light .audience-section__panel-title,
html.accessibility-light .about-section h2,
html.accessibility-light .contact-footer h2,
html.accessibility-light .cookie-modal h2 {
  color: #050505;
}

html.accessibility-light p:not(.eyebrow) {
  color: #1f2721;
}

html.accessibility-underline a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

html.accessibility-readable {
  --font-display: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-utility: Arial, Helvetica, sans-serif;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding: 0.1rem 0 0.15rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-top: 11rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .audience-section__inner {
    grid-template-columns: 1fr;
  }

  .audience-section--reverse .audience-section__visual {
    order: 0;
  }

  .audience-section__copy {
    max-width: 44rem;
  }

  .about-section__inner,
  .contact-footer__inner {
    grid-template-columns: 1fr;
  }

  .contact-footer__image {
    order: -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    top: 0;
    width: 100%;
    padding: 0.7rem var(--page-gutter);
    background: rgba(5, 5, 5, 0.56);
  }

  .brand img {
    width: 145px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0.62rem 0.78rem;
    font-size: 0.62rem;
  }

  .site-nav a {
    min-height: 34px;
    padding: 0.48rem 0.56rem;
    font-size: 0.62rem;
  }

  .hero {
    min-height: 44rem;
    padding-bottom: 4.5rem;
  }

  .hero__image {
    background-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.16) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(5, 5, 5, 0.9) 100%);
  }

  .audience-hex-grid {
    --hex-width: min(78vw, 19rem);
    --hex-height: calc(var(--hex-width) * 1.1547);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: auto;
    width: min(100%, 24rem);
  }

  .audience-hex,
  .audience-hex--clubs,
  .audience-hex--agents,
  .audience-hex--players {
    grid-column: 1;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    translate: 0 0;
    width: var(--hex-width);
    height: var(--hex-height);
    justify-self: center;
    margin-top: 0;
  }

  .audience-section {
    padding-top: clamp(4.4rem, 14vw, 5.5rem);
    padding-bottom: clamp(4.4rem, 14vw, 5.5rem);
  }

  .audience-section__copy {
    text-align: left;
  }

  .about-section,
  .contact-footer {
    padding-top: clamp(4.4rem, 14vw, 5.5rem);
    padding-bottom: clamp(4.4rem, 14vw, 5.5rem);
  }

  .accessibility-widget {
    top: auto;
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .accessibility-panel {
    width: min(13.5rem, calc(100vw - 1.4rem));
  }

  .cookie-banner__content,
  .cookie-banner__actions,
  .cookie-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    width: 100%;
  }

  .button--cookie {
    width: 100%;
  }

  .image-lightbox__close,
  .cookie-modal__close {
    position: static;
    justify-self: end;
    margin-bottom: 0.75rem;
  }

  .service-hex-cluster {
    --service-hex-width: min(39vw, 9rem);
    --service-gap: 0.18rem;
    --service-top-lift: 0.75rem;
    width: min(100%, calc((var(--service-hex-width) * 2) + var(--service-gap)));
  }

  .service-hex {
    gap: 0.42rem;
    padding: 0.85rem 0.75rem 1.9rem;
  }

  .service-hex__label {
    max-width: 7.4rem;
    font-size: clamp(0.66rem, 3.05vw, 0.82rem);
  }

  .service-hex__button {
    min-height: 25px;
    padding: 0.28rem 0.44rem;
    font-size: 0.46rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(2.05rem, 10.4vw, 2.75rem);
  }

  .section-intro h2 {
    font-size: clamp(2rem, 10.7vw, 2.65rem);
  }

  .audience-hex {
    --hex-width: min(82vw, 16.5rem);
    --hex-height: calc(var(--hex-width) * 1.1547);
  }

  .audience-hex__content {
    right: 13%;
    left: 13%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-ready .reveal-hex,
  .motion-ready .audience-hex__content,
  .motion-ready .service-hex__label,
  .motion-ready .service-hex__button {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
