*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #162c1f;
  --bg2: #1a3324;
  --panel: #1f3c2a;
  --panel2: #264836;
  --green: #008f4e;
  --green2: #1e4a36;
  --lime: #00e07c;
  --ice: #c5f5dc;
  --white: #eef8f2;
  --muted: #47966b;
  --rule: rgba(0, 224, 124, 0.12);
  --rule2: rgba(0, 224, 124, 0.07);
  --ff-h: "Inter", sans-serif;
  --ff-b: "Inter", sans-serif;
  --ff-m: "DM Mono", monospace;
  --ff-mono: "DM Mono", monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
::selection {
  background: var(--lime);
  color: var(--bg);
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--green);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(22, 44, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 0;
}
.nav-lk {
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.7);
  cursor: pointer;
  transition: color 0.2s;
  border-right: 1px solid var(--rule);
  text-decoration: none;
}
.nav-dd:first-child .nav-lk {
  border-left: 1px solid var(--rule);
}
.nav-lk:hover,
.nav-lk.active {
  color: var(--lime);
}

/* ── Desktop dropdown ── */
.nav-dd {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dd-menu {
  position: absolute;
  top: 56px;
  left: 0;
  min-width: 200px;
  background: rgba(22, 44, 31, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rule);
  border-top: none;
  flex-direction: column;
  z-index: 301;
  display: none;
}
.nav-dd:hover .nav-dd-menu {
  display: flex;
}
.nav-dd-item {
  padding: 13px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.65);
  text-decoration: none;
  border-bottom: 1px solid var(--rule2);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dd-item:last-child {
  border-bottom: none;
}
.nav-dd-item:hover {
  color: var(--lime);
  background: rgba(82, 183, 136, 0.06);
}
.nav-cta {
  margin-left: 20px;
  padding: 9px 24px;
  background: var(--lime);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--ice);
  color: var(--bg);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding-top: 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 30%,
      rgba(0, 143, 78, 0.16) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 35% 45% at 15% 75%,
      rgba(82, 183, 136, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(170deg, #162c1f 0%, #1c3526 55%, #162c1f 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-sport-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-sport-img--flip-x {
  transform: scaleX(-1);
}
.hero-sport-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 30%,
      rgba(0, 143, 78, 0.2) 0%,
      transparent 65%
    ),
    linear-gradient(
      170deg,
      rgba(12, 26, 18, 0.88) 0%,
      rgba(18, 36, 24, 0.78) 50%,
      rgba(12, 26, 18, 0.88) 100%
    );
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 30%,
      rgba(0, 143, 78, 0.25) 0%,
      transparent 65%
    ),
    linear-gradient(
      170deg,
      rgba(22, 44, 31, 0.82) 0%,
      rgba(28, 53, 38, 0.72) 50%,
      rgba(22, 44, 31, 0.82) 100%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(82, 183, 136, 0.022) 79px,
      rgba(82, 183, 136, 0.022) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(82, 183, 136, 0.022) 79px,
      rgba(82, 183, 136, 0.022) 80px
    );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 56px 72px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--lime);
  letter-spacing: 0.14em;
  background: rgba(82, 183, 136, 0.06);
  border: 1px solid rgba(82, 183, 136, 0.15);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 2s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ── ROTATING HEADLINE ── */
.hero-h1 {
  font-family: var(--ff-h);
  font-weight: 900;
  font-size: clamp(62px, 9vw, 122px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-h1 .static {
  color: var(--white);
  display: block;
}
.hero-h1 .rotate-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1em;
  vertical-align: bottom;
}
.rotate-word {
  display: block;
  color: var(--lime);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  animation: none;
  transition:
    transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s ease;
}
.rotate-word.active {
  transform: translateY(0);
  opacity: 1;
}
.rotate-word.exit {
  transform: translateY(-100%);
  opacity: 0;
}
.rotate-word.enter {
  transform: translateY(100%);
  opacity: 0;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(238, 248, 242, 0.8);
  max-width: 560px;
  margin-bottom: 40px;
  border-left: 2px solid var(--lime);
  padding-left: 20px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-P {
  padding: 15px 36px;
  background: var(--lime);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-P:hover {
  background: var(--ice);
}
.btn-G {
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(238, 248, 242, 0.65);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-G:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* ══════════════════════════════════════════
   SHARED SECTION PRIMITIVES
══════════════════════════════════════════ */
.section {
  padding: 88px 0;
  border-top: 1px solid var(--rule2);
}
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 56px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "//";
  color: var(--muted);
  margin-right: 2px;
}
.sh {
  font-family: var(--ff-h);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.sh em {
  color: var(--lime);
  font-style: normal;
}
.body-lg {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(238, 248, 242, 0.8);
}
.body-sm {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(238, 248, 242, 0.78);
}

/* reveal */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   CATEGORY SECTION SHARED CARD STYLES
══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2px;
}
.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.cat-card {
  background: var(--panel);
  border: 1px solid var(--rule);
  padding: 28px 24px 24px;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  flex-direction: column;
}
.cat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.cat-card:hover {
  background: var(--panel2);
  border-color: rgba(82, 183, 136, 0.3);
}
.cat-card:hover::after {
  transform: scaleX(1);
}
.card-icon {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1;
}
.card-name {
  font-family: var(--ff-h);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.card-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.75);
  line-height: 1.55;
  flex: 1;
}
.card-arr {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--lime);
  font-size: 14px;
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
  transform: translateX(-4px);
}
.cat-card:hover .card-arr {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════
   SPORTS SECTION
══════════════════════════════════════════ */
.sports-section {
  background: var(--bg2);
}

/* ══════════════════════════════════════════
   SCIENCE SECTION
══════════════════════════════════════════ */
.science-section {
  background: var(--panel);
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-section {
  background: var(--panel);
  border-top: 1px solid var(--rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(238, 248, 242, 0.8);
  margin-top: 20px;
  max-width: 400px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 36px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(22, 44, 31, 0.5);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.cm-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.cm-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

/* Form */
.contact-form {
  background: var(--panel2);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--lime);
  padding: 40px;
}
.cf-title {
  font-family: var(--ff-h);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 28px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cf-field {
  width: 100%;
  background: rgba(238, 248, 242, 0.04);
  border: 1px solid rgba(82, 183, 136, 0.12);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-b);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 10px;
}
.cf-field::placeholder {
  color: rgba(238, 248, 242, 0.68);
}
.cf-field:focus {
  border-color: rgba(82, 183, 136, 0.4);
  background: rgba(82, 183, 136, 0.04);
}
.cf-select {
  width: 100%;
  background: rgba(238, 248, 242, 0.04);
  border: 1px solid rgba(82, 183, 136, 0.12);
  padding: 12px 16px;
  color: rgba(238, 248, 242, 0.82);
  font-family: var(--ff-b);
  font-size: 13px;
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 10px;
  cursor: pointer;
}
textarea.cf-field {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.cf-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cf-check input {
  margin-top: 3px;
  accent-color: var(--lime);
  flex-shrink: 0;
}
.cf-check label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.7);
  line-height: 1.5;
  cursor: pointer;
}
.cf-submit {
  width: 100%;
  padding: 15px;
  background: var(--lime);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cf-submit:hover {
  background: var(--ice);
}
.cf-note {
  font-family: var(--ff-m);
  font-size: 9px;
  color: rgba(238, 248, 242, 0.65);
  text-align: center;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: var(--green);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-h {
  font-family: var(--ff-h);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-h em {
  color: var(--lime);
  font-style: normal;
}
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.85);
  max-width: 420px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-dark {
  padding: 16px 36px;
  background: rgba(8, 15, 10, 0.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-dark:hover {
  background: var(--bg);
}
.btn-wg {
  padding: 14px 30px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(238, 248, 242, 0.65);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-wg:hover {
  border-color: var(--white);
}

/* ══════════════════════════════════════════
   SECTION DIVIDER LABEL
══════════════════════════════════════════ */
.section-rule {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 72px;
  padding-bottom: 32px;
}
.section-rule-label {
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  flex-shrink: 0;
}
.section-rule-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-rule-count {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(238, 248, 242, 0.65);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SCIENCE CALLOUT
══════════════════════════════════════════ */
.science-callout {
  margin-top: 2px;
  background: rgba(82, 183, 136, 0.04);
  border: 1px solid rgba(82, 183, 136, 0.15);
  border-left: 3px solid var(--lime);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

/* ══════════════════════════════════════════
   HAMBURGER + MOBILE NAV
══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 299;
  background: rgba(22, 44, 31, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  flex-direction: column;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile-lk {
  padding: 16px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.7);
  cursor: pointer;
  border-bottom: 1px solid var(--rule2);
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.nav-mobile-lk:hover,
.nav-mobile-lk.active {
  color: var(--lime);
  background: rgba(82, 183, 136, 0.04);
}
.nav-mobile-cta {
  margin: 16px 24px 20px;
  padding: 13px 24px;
  background: var(--lime);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  display: block;
}
.nav-mobile-cta:hover {
  background: var(--ice);
  color: var(--bg);
}

/* ── Mobile nav sub-menus ── */
.nav-mobile-group {
  display: flex;
  flex-direction: column;
}
.nav-mobile-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.nav-mobile-toggle.expanded {
  color: var(--lime);
  background: rgba(82, 183, 136, 0.04);
  border-bottom: none;
}
.nav-mobile-chevron {
  font-style: normal;
  transition: transform 0.25s;
}
.nav-mobile-toggle.expanded .nav-mobile-chevron {
  transform: rotate(90deg);
}
.nav-mobile-sub {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.15);
}
.nav-mobile-sub.open {
  display: flex;
}
.nav-mobile-sub-lk {
  padding: 12px 24px 12px 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.5);
  text-decoration: none;
  border-bottom: 1px solid var(--rule2);
  transition: color 0.2s;
}
.nav-mobile-sub-lk:last-child {
  border-bottom: 1px solid var(--rule);
}
.nav-mobile-sub-lk:hover {
  color: var(--lime);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablet landscape ── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-intro {
    max-width: 100%;
  }
  .cards-grid.five {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Tablet portrait / large mobile ── */
@media (max-width: 768px) {
  .nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .hero-inner {
    padding: 80px 24px 48px;
  }
  .section {
    padding: 64px 0;
  }
  .container {
    padding: 0 24px;
  }
  .section-rule {
    padding: 48px 24px 24px;
  }

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

  .cta-band {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }
  .cta-btns {
    flex-wrap: wrap;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 24px;
  }

  .science-callout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .science-callout .btn-G {
    align-self: flex-start;
  }

}

/* ── Mobile ── */
@media (max-width: 480px) {
  .cards-grid,
  .cards-grid.three,
  .cards-grid.five {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-P,
  .btn-G {
    width: 100%;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
  }
  .btn-dark,
  .btn-wg {
    width: 100%;
    text-align: center;
  }

}

/* ══════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
  mix-blend-mode: screen;
  opacity: 0;
}

/* ══════════════════════════════════════════
   SCIENCE — HERO LAYOUT
══════════════════════════════════════════ */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 56px 0;
  align-items: end;
}
.hero-left {
  padding-bottom: 60px;
}
.hero-right {
  border-left: 1px solid var(--rule);
  padding: 40px 0 60px 48px;
  align-self: end;
}
.hero-h1 .l1 {
  color: var(--white);
  display: block;
}
.hero-h1 .l2 {
  color: var(--lime);
  display: block;
}
.hero-h1 .l3 {
  color: transparent;
  display: block;
  -webkit-text-stroke: 1px rgba(82, 183, 136, 0.25);
}

/* ══════════════════════════════════════════
   SCIENCE — STAT BAR
══════════════════════════════════════════ */
.stat-bar {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 56px;
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--lime);
}
.stat-cell {
  padding: 24px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat-cell:last-child {
  border-right: none;
}
.stat-n {
  font-family: var(--ff-h);
  font-size: 38px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-src {
  font-family: var(--ff-mono);
  font-size: 9px;
  color: rgba(238, 248, 242, 0.65);
  margin-top: 6px;
}

/* ══════════════════════════════════════════
   SCIENCE — PROGRAMME CARDS
══════════════════════════════════════════ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.prog-card {
  background: var(--panel);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.prog-card:hover {
  background: var(--panel2);
  border-color: rgba(82, 183, 136, 0.3);
}
.prog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.prog-card:hover::before {
  transform: scaleX(1);
}
.prog-index {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prog-status {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prog-status.live {
  color: var(--lime);
  border-color: rgba(82, 183, 136, 0.3);
  background: rgba(82, 183, 136, 0.05);
}
.prog-status.live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 2s step-end infinite;
}
.prog-status.emerging {
  color: #a8d5be;
  border-color: rgba(168, 213, 190, 0.3);
  background: rgba(168, 213, 190, 0.05);
}
.prog-status.emerging::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a8d5be;
}
.prog-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}
.prog-title {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.prog-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(238, 248, 242, 0.78);
  margin-bottom: 20px;
}
.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.prog-tag {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.7);
  background: rgba(238, 248, 242, 0.04);
  border: 1px solid rgba(238, 248, 242, 0.08);
  padding: 3px 9px;
}
.prog-papers {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-top: auto;
  font-size: 11px;
  font-weight: 500;
  color: rgba(238, 248, 242, 0.68);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prog-papers-n {
  color: var(--lime);
  font-family: var(--ff-mono);
  font-weight: 400;
}
.prog-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.2s;
}
.prog-card:hover .prog-link {
  opacity: 1;
}

/* ══════════════════════════════════════════
   SCIENCE — METHODOLOGY
══════════════════════════════════════════ */
.methodology {
  background: var(--bg2);
  padding: 88px 0;
  border-top: 1px solid var(--rule);
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.method-cell {
  background: var(--panel);
  padding: 40px 36px;
  border: 1px solid var(--rule);
  position: relative;
}
.method-n {
  font-family: var(--ff-h);
  font-size: 80px;
  font-weight: 900;
  color: rgba(82, 183, 136, 0.06);
  line-height: 0.9;
  position: absolute;
  top: 24px;
  right: 28px;
  letter-spacing: -0.04em;
}
.method-title {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lime);
  margin-bottom: 14px;
}
.method-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(238, 248, 242, 0.8);
}

/* ══════════════════════════════════════════
   SCIENCE — WHITE PAPERS
══════════════════════════════════════════ */
.wp-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.wp-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--panel);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: all 0.2s;
}
.wp-row:hover {
  background: var(--panel2);
  border-color: rgba(82, 183, 136, 0.25);
}
.wp-num {
  font-family: var(--ff-mono);
  font-size: 20px;
  font-weight: 400;
  color: rgba(82, 183, 136, 0.2);
  text-align: right;
}
.wp-programme {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.wp-title {
  font-family: var(--ff-h);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.wp-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.75);
  line-height: 1.5;
}
/* ── Whitepaper Download Modal ── */
.wp-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 14, 0.88);
  backdrop-filter: blur(6px);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wp-modal.open {
  display: flex;
}
.wp-modal-panel {
  position: relative;
  background: var(--panel2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.wp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(238, 248, 242, 0.4);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.wp-modal-close:hover {
  color: var(--fg);
}
.wp-modal-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.wp-modal-form {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-top: 24px;
}
.wp-modal-success {
  text-align: center;
  padding: 16px 0 8px;
}
.wp-modal-success .cf-title {
  margin-bottom: 12px;
}
.wp-modal-success-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.55);
  line-height: 1.6;
  margin-bottom: 0;
}
.wp-download-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: var(--lime);
  color: var(--bg);
  border-radius: 6px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.wp-download-btn:hover {
  opacity: 0.85;
}
.wp-modal-success-note {
  margin-top: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(238, 248, 242, 0.3);
}
@media (max-width: 600px) {
  .wp-modal-panel {
    padding: 32px 24px;
  }
}
/* ══════════════════════════════════════════
   SCIENCE — RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 56px 0;
  }
  .hero-right {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 32px 0 40px;
  }
  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-cell:nth-child(3) {
    border-right: none;
  }
  .stat-cell:nth-child(4) {
    border-right: 1px solid var(--rule);
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 40px 24px 0;
  }
  .hero-right {
    display: none;
  }
  .stat-bar {
    padding: 0 24px;
  }
  .stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell:nth-child(2n) {
    border-right: none;
  }
  .stat-cell:nth-child(3) {
    border-right: none;
  }
  .prog-grid {
    grid-template-columns: 1fr;
  }
  .method-grid {
    grid-template-columns: 1fr;
  }
  .wp-row {
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 16px 20px;
  }
  .methodology {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  .stat-bar-inner {
    grid-template-columns: 1fr;
  }
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .stat-cell:last-child {
    border-bottom: none;
  }
  .prog-card {
    padding: 28px 20px;
  }
}

/* ══════════════════════════════════════════
   SHARED — REVEAL DELAYS + CARD LINK
══════════════════════════════════════════ */
.rv.rv-d1 {
  transition-delay: 0.1s;
}
.rv.rv-d2 {
  transition-delay: 0.2s;
}
.rv.rv-d3 {
  transition-delay: 0.3s;
}

.cat-card--link {
  text-decoration: none;
  color: inherit;
}
/* ══════════════════════════════════════════
   FOOTBALL — HERO
══════════════════════════════════════════ */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-accent-line {
  position: absolute;
  top: 0;
  left: 60%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(82, 183, 136, 0.12) 30%,
    rgba(82, 183, 136, 0.12) 70%,
    transparent
  );
}
.hero-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
}
.hero-category::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--lime);
}
.hero-h1 .accent {
  color: var(--lime);
  display: block;
}
.hero-card {
  background: rgba(20, 43, 26, 0.65);
  border: 1px solid rgba(82, 183, 136, 0.15);
  backdrop-filter: blur(12px);
  padding: 32px;
}
.hero-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-stat-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(82, 183, 136, 0.08);
}
.hero-stat:last-child {
  border-bottom: none;
}
.hs-num {
  font-family: var(--ff-h);
  font-size: 36px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}
.hs-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(238, 248, 242, 0.8);
  text-align: right;
  max-width: 160px;
  line-height: 1.4;
}
.hero-bottom {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding: 0 56px;
  margin-top: 64px;
}
.sport-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(82, 183, 136, 0.1);
}
.sport-tag {
  padding: 7px 18px;
  border: 1px solid rgba(82, 183, 136, 0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

/* ══════════════════════════════════════════
   FOOTBALL — BREADCRUMB
══════════════════════════════════════════ */
.breadcrumb {
  max-width: 1380px;
  margin: 0 auto;
  padding: 20px 56px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--lime);
}
.breadcrumb .sep {
  color: var(--muted);
  opacity: 0.5;
}
.breadcrumb .current {
  color: var(--lime);
}

/* ══════════════════════════════════════════
   FOOTBALL — INTRO
══════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.intro-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(238, 248, 242, 0.65);
}
.intro-text p + p {
  margin-top: 20px;
}
.intro-text strong {
  color: var(--white);
  font-weight: 600;
}
.intro-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  padding: 24px 28px;
  border-left: 3px solid var(--green);
  background: rgba(82, 183, 136, 0.04);
  margin-bottom: 3px;
  transition:
    border-color 0.2s,
    background 0.2s;
  cursor: default;
}
.pillar:hover {
  border-left-color: var(--lime);
  background: rgba(82, 183, 136, 0.08);
}
.pillar-title {
  font-family: var(--ff-h);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lime);
  margin-bottom: 6px;
}
.pillar-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(238, 248, 242, 0.82);
}

/* ══════════════════════════════════════════
   FOOTBALL — GREEN STATS BAR
══════════════════════════════════════════ */
.stats-bar-green {
  background: var(--green);
  padding: 56px 0;
}
.stats-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}
.stat-item:first-child {
  padding-left: 0;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--ff-h);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label-green {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTBALL — CAPABILITIES
══════════════════════════════════════════ */
.cap-section {
  background: var(--panel);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.cap-card {
  background: rgba(20, 43, 26, 0.5);
  padding: 36px 32px;
  border: 1px solid rgba(82, 183, 136, 0.07);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.cap-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.cap-card:hover {
  background: var(--panel2);
  border-color: rgba(82, 183, 136, 0.25);
}
.cap-card:hover::before {
  transform: scaleX(1);
}
.cap-num {
  font-family: var(--ff-h);
  font-size: 48px;
  font-weight: 900;
  color: rgba(82, 183, 136, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.cap-title {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.cap-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(238, 248, 242, 0.8);
}
.cap-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(82, 183, 136, 0.2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   FOOTBALL — QUOTE
══════════════════════════════════════════ */
.quote-section {
  background: linear-gradient(
    135deg,
    var(--panel) 0%,
    #1a3d26 50%,
    var(--panel) 100%
  );
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 39px,
    rgba(82, 183, 136, 0.02) 39px,
    rgba(82, 183, 136, 0.02) 40px
  );
}
.quote-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center;
}
.quote-mark {
  font-family: var(--ff-h);
  font-size: 120px;
  font-weight: 900;
  color: rgba(82, 183, 136, 0.1);
  line-height: 0.5;
  margin-bottom: 24px;
}
.quote-text {
  font-family: var(--ff-h);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
  font-style: italic;
}
.quote-attr {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
}
.quote-attr-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.quote-text--sm {
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.7;
}
.quote-slide {
  display: none;
  animation: quoteFadeIn 0.5s ease;
}
.quote-slide.active {
  display: block;
}
@keyframes quoteFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.quote-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding-bottom: 16px;
}
.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rule);
  border: 1px solid var(--muted);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.quote-dot.active {
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.25);
}
.quote-logo {
  display: block;
  height: 48px;
  width: auto;
  margin: 0 auto 24px;
  object-fit: contain;
}

/* ══════════════════════════════════════════
   FOOTBALL — WHITE PAPERS GRID
══════════════════════════════════════════ */
.wp-section {
  background: var(--bg2);
}
.wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 56px;
}
.wp-card {
  background: rgba(12, 23, 16, 0.6);
  border: 1px solid rgba(82, 183, 136, 0.1);
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
}
.wp-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s;
}
.wp-card:hover {
  background: var(--panel2);
  border-color: rgba(82, 183, 136, 0.3);
}
.wp-card:hover::after {
  transform: scaleX(1);
}
.wp-icon-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(82, 183, 136, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.wp-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.wp-read {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wp-read::after {
  content: "→";
}

/* ══════════════════════════════════════════
   FOOTBALL — DOWNLOADS
══════════════════════════════════════════ */
.dl-section {
  position: relative;
  overflow: hidden;
}
.dl-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(82, 183, 136, 0.3),
    transparent
  );
}
.dl-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.dl-intro-text {
  margin-top: 32px;
}
.dl-intro-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(238, 248, 242, 0.85);
}
.dl-intro-text p + p {
  margin-top: 16px;
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.dl-card {
  background: rgba(20, 43, 26, 0.45);
  border: 1px solid rgba(82, 183, 136, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.dl-card:hover {
  background: var(--panel2);
  border-color: rgba(82, 183, 136, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.dl-card-top {
  background: var(--green);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.dl-card-top::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.dl-card-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}
.dl-card-title {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}
.dl-card-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  opacity: 0.35;
}
.dl-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dl-card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(238, 248, 242, 0.82);
  flex: 1;
  margin-bottom: 20px;
}
.dl-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(82, 183, 136, 0.1);
}
.dl-card-pages {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.dl-card-btn {
  padding: 8px 20px;
  background: var(--lime);
  border: none;
  cursor: pointer;
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  transition: all 0.2s;
}
.dl-card-btn:hover {
  background: var(--ice);
}
.dl-featured {
  grid-column: 1/-1;
  background: var(--panel);
  border: 1px solid rgba(82, 183, 136, 0.15);
  display: grid;
  grid-template-columns: 1fr 360px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 3px;
}
.dl-featured:hover {
  border-color: rgba(82, 183, 136, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.dl-featured-left {
  padding: 48px 52px;
}
.dl-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--lime);
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
}
.dl-featured-badge::before {
  content: "★";
  font-size: 10px;
}
.dl-featured-title {
  font-family: var(--ff-h);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}
.dl-featured-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(238, 248, 242, 0.85);
  max-width: 500px;
  margin-bottom: 32px;
}
.dl-featured-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}
.dl-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(238, 248, 242, 0.65);
}
.dl-bullet::before {
  content: "✓";
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.dl-featured-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.dl-featured-right {
  background: linear-gradient(135deg, #1a3d26, var(--panel));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 36px;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.dl-featured-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 19px,
    rgba(82, 183, 136, 0.03) 19px,
    rgba(82, 183, 136, 0.03) 20px
  );
}
.dl-preview-doc {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 210px;
  background: rgba(238, 248, 242, 0.05);
  border: 1px solid rgba(82, 183, 136, 0.2);
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.5);
}
.dl-preview-label {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
/* ══════════════════════════════════════════
   FOOTBALL — RELATED
══════════════════════════════════════════ */
.related-section {
  background: var(--panel);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.related-card {
  background: rgba(20, 43, 26, 0.4);
  border: 1px solid rgba(82, 183, 136, 0.08);
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.related-card::after {
  content: "→";
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--lime);
  opacity: 0;
  transition: all 0.2s;
  transform: translateX(-8px);
}
.related-card:hover {
  background: var(--panel2);
  border-color: rgba(82, 183, 136, 0.3);
}
.related-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.related-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.related-emoji {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.related-title {
  font-family: var(--ff-h);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.related-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(238, 248, 242, 0.78);
}

/* ══════════════════════════════════════════
   FOOTBALL — RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-grid {
    grid-template-columns: 1fr;
  }
  .dl-featured {
    grid-template-columns: 1fr;
  }
  .dl-featured-right {
    display: none;
  }
  .dl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-item:nth-child(4) {
    border-right: none;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dl-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .hero-bottom {
    padding: 0 24px;
    margin-top: 32px;
  }
  .breadcrumb {
    padding: 16px 24px;
  }
  .stats-bar-green {
    padding: 40px 0;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .stat-item {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stat-item:nth-child(3) {
    padding-left: 16px;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .wp-grid {
    grid-template-columns: 1fr;
  }
  .wp-card {
    flex-direction: column;
  }
  .dl-grid {
    grid-template-columns: 1fr;
  }
  .dl-featured-left {
    padding: 28px 24px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .intro-grid {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .sport-tags {
    gap: 6px;
  }
  .sport-tag {
    padding: 5px 12px;
    font-size: 10px;
  }
  .dl-featured-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   SUCCESS MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 44, 31, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--rule);
  padding: 56px 48px 48px;
  max-width: 440px;
  width: calc(100% - 40px);
  text-align: center;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(238, 248, 242, 0.7);
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--lime);
}
.modal-icon {
  font-size: 28px;
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-family: var(--ff-m);
  font-size: 22px;
  color: var(--lime);
}
.modal-h {
  font-family: var(--ff-h);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 200;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.modal-h em {
  font-style: italic;
  color: var(--lime);
}
.modal-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.82);
  line-height: 1.65;
}
@media (max-width: 480px) {
  .modal-box {
    padding: 44px 24px 36px;
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--rule);
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 64px;
  border-bottom: 1px solid var(--rule);
}

/* brand */
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.7);
  line-height: 1.5;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(238, 248, 242, 0.65);
  border: 1px solid rgba(82, 183, 136, 0.12);
  border-radius: 4px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.footer-social-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}

/* links */
.footer-col-label {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-link {
  font-size: 13px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.75);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--lime);
}

/* contact */
.footer-address {
  font-size: 13px;
  font-weight: 300;
  font-style: normal;
  color: rgba(238, 248, 242, 0.75);
  line-height: 1.8;
  margin-bottom: 12px;
}
.footer-email {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(238, 248, 242, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover {
  color: var(--lime);
}

/* bottom bar */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.65);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal-link {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.68);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover {
  color: var(--lime);
}

/* footer responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-contact-col {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-hero {
  padding: 140px 40px 56px;
  border-bottom: 1px solid var(--rule);
  max-width: 800px;
  margin: 0 auto;
}
.legal-hero-eyebrow {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  display: block;
}
.legal-hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.legal-hero-date {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(238, 248, 242, 0.68);
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 40px 96px;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.legal-h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.legal-h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.85);
  margin: 24px 0 8px;
}
.legal-p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.78);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-p a {
  color: var(--lime);
  text-decoration: none;
}
.legal-p a:hover {
  text-decoration: underline;
}
.legal-address {
  font-style: normal;
  font-size: 14px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.78);
  line-height: 1.8;
  margin-bottom: 16px;
  padding: 20px 24px;
  background: rgba(82, 183, 136, 0.04);
  border-left: 2px solid rgba(82, 183, 136, 0.2);
}
@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 20px 40px;
  }
  .legal-body {
    padding: 40px 20px 72px;
  }
}

/* ══════════════════════════════════════════
   SOLUTIONS
══════════════════════════════════════════ */

/* ── Centered hero ── */
.sol-hero {
  padding: 140px 24px 72px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.sol-hero-title {
  font-size: clamp(72px, 14vw, 180px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 36px;
}
.sol-hero-body {
  max-width: 480px;
  margin: 0 auto 12px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.8);
  line-height: 1.75;
}
.sol-hero-sub {
  font-size: 13px;
  color: rgba(238, 248, 242, 0.65);
  font-family: var(--ff-m);
  letter-spacing: 0.04em;
  margin-top: 16px;
  display: block;
}

/* ── Feature alternating blocks ── */
.feat-block {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.feat-block--dark {
  background: var(--panel);
}
.feat-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feat-inner--rev {
  direction: rtl;
}
.feat-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  align-self: end;
}
.feat-media img {
  width: 100%;
  height: auto;
  display: block;
}
.feat-media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  pointer-events: none;
}
.feat-block--dark .feat-media::after {
  background: linear-gradient(to bottom, transparent, var(--panel));
}
.feat-block:not(.feat-block--dark) .feat-media::after {
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.feat-media--composite {
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.feat-media--composite::after {
  display: none;
}
.composite-main-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.composite-main-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  pointer-events: none;
}
.feat-block--dark .composite-main-wrap::after {
  background: linear-gradient(to bottom, transparent, var(--panel));
}
.feat-block:not(.feat-block--dark) .composite-main-wrap::after {
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.feat-media--composite .composite-main {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.feat-media--composite .composite-float {
  position: absolute;
  bottom: -5%;
  right: -8%;
  width: 28%;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,.45);
}
@media (max-width: 768px) {
  .feat-media--composite .composite-float {
    width: 32%;
    right: -4%;
    bottom: -4%;
  }
}
.feat-inner--rev > * {
  direction: ltr;
}
.feat-eyebrow {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.feat-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.feat-block--dark .feat-title {
  color: var(--lime);
}
.feat-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.8);
  line-height: 1.75;
  margin-bottom: 28px;
}
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  transition: gap 0.2s;
}
.feat-link:hover {
  gap: 14px;
}

/* ── "What we do different" ── */
.sol-diff {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.sol-diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.sol-diff-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.sol-diff-item {
  padding: 28px 32px;
  border-left: 2px solid rgba(82, 183, 136, 0.15);
  background: var(--panel);
  margin-bottom: 2px;
  transition: border-color 0.2s;
}
.sol-diff-item:hover {
  border-left-color: var(--lime);
}
.sol-diff-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.sol-diff-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.78);
  line-height: 1.65;
}

/* ── Solutions child breadcrumb ── */
.sol-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 40px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 248, 242, 0.68);
}
.sol-breadcrumb a {
  color: rgba(238, 248, 242, 0.7);
  text-decoration: none;
}
.sol-breadcrumb a:hover {
  color: var(--lime);
}
.sol-breadcrumb-sep {
  color: rgba(238, 248, 242, 0.85);
}
.sol-breadcrumb-current {
  color: var(--lime);
}

/* ── Sports page hero ── */
.sports-hero {
  padding: 140px 24px 72px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.sports-hero-title {
  font-size: clamp(52px, 11vw, 160px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 36px;
}
.sports-hero-body {
  max-width: 600px;
  margin: 0 auto 12px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.8);
  line-height: 1.75;
}
.sports-hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.7);
  font-family: var(--ff-m);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 4px;
}

/* ── Sport panel (visual for sports sections) ── */
.sport-panel {
  background: var(--bg2);
  border: 1.5px solid rgba(82, 183, 136, 0.15);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.sport-panel-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.sport-panel-name {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(82, 183, 136, 0.1);
}
.sport-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sp-stat {
}
.sp-stat-n {
  font-family: var(--ff-m);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.sp-stat-l {
  font-size: 11px;
  font-weight: 300;
  color: rgba(238, 248, 242, 0.7);
  line-height: 1.4;
}

/* ── Sports responsive ── */
@media (max-width: 768px) {
  .sports-hero {
    padding: 120px 20px 56px;
  }
  .sports-hero-title {
    line-height: 1;
  }
  .sport-panel-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Screenshot media ── */
.screenshot-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.screenshot-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 50, 25, 0.45) 100%
  ),
  linear-gradient(
    to right,
    rgba(0, 50, 25, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 50, 25, 0.3) 100%
  );
  pointer-events: none;
}
.screenshot-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Solutions responsive ── */
@media (max-width: 1024px) {
  .feat-inner {
    gap: 48px;
  }
  .sol-diff-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .feat-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .feat-inner--rev {
    direction: ltr;
  }
  .feat-block {
    padding: 64px 0;
  }
  .sol-hero {
    padding: 120px 20px 56px;
  }
  .sol-diff-inner {
    padding: 60px 20px;
  }
  .sol-breadcrumb {
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .feat-block {
    padding: 48px 0;
  }
}

