/* ==========================================================================
   STRIVECORE — Design System
   Colors: #0D0D0D bg / #00DECA teal accent / #353434 borders
   Type:   Montserrat Black (headlines, uppercase, wide) / Montserrat (body)
   ========================================================================== */

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

:root {
  --bg: #0D0D0D;
  --bg-alt: #070707;
  --teal: #00DECA;
  --teal-dim: rgba(0, 222, 202, .08);
  --border: #353434;
  --dim: #888;
  --text: #E8E8E8;
  --card: #111;
  --w: min(1920px, 100%);
  --section-x: 80px;
  --section-y: 8rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.5;
}

.site { width: var(--w); margin: 0 auto; }

a { color: inherit; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal); color: #000; padding: .75rem 1.5rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--section-x); height: 72px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 13, .88);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; height: 28px; }
.logo img { height: 100%; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dim); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--teal); }
.nav-btn {
  border: 1px solid var(--teal); color: var(--teal); background: transparent;
  padding: .5rem 1.4rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; transition: all .2s; font-family: 'Montserrat', sans-serif;
}
.nav-btn:hover { background: var(--teal); color: #000; }

.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span { display: block; width: 100%; height: 2px; background: #fff; transition: transform .25s, opacity .25s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
  max-height: min(80vh, 520px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1.1rem var(--section-x); border-bottom: 1px solid var(--border);
  color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; font-size: .85rem;
}
.mobile-menu a:active, .mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn-p { margin: 1.5rem var(--section-x); width: calc(100% - 2 * var(--section-x)); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #1a1612;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(22, 18, 14, .5) 0%, rgba(22, 18, 14, .22) 32%, rgba(22, 18, 14, .04) 55%, transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, transparent 28%, transparent 76%, rgba(0, 0, 0, .28) 100%);
}
.hero-athletes-fill {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: brightness(1.55) contrast(1.05) saturate(1.12) blur(36px);
  transform: scale(1.12);
}
.hero-athletes {
  position: absolute;
  top: 0;
  right: 0;
  width: min(78%, 1100px);
  height: 100%;
  object-fit: cover;
  object-position: 32% 42%;
  display: block;
  filter: brightness(1.42) contrast(1.08) saturate(1.1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  0% { transform: scale(1.02) translateX(0); }
  100% { transform: scale(1.07) translateX(-1.5%); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px var(--section-x) 64px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.4rem;
}
.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 6.6rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .45);
}
.hero-h1 .accent { color: var(--teal); }
.hero-h1 .hero-line {
  display: block;
  white-space: nowrap;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(232, 232, 232, .88);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .5);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-p {
  background: var(--teal); color: #000; border: none; padding: 1rem 2.5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; font-family: 'Montserrat', sans-serif; transition: opacity .2s, transform .15s;
}
.btn-p:hover { opacity: .85; transform: translateY(-1px); }
.btn-o {
  background: rgba(0, 0, 0, .35); color: #fff; border: 1px solid rgba(255, 255, 255, .35); padding: 1rem 2.5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; font-family: 'Montserrat', sans-serif; transition: border-color .2s, color .2s, background .2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-o:hover { border-color: var(--teal); color: var(--teal); background: rgba(0, 0, 0, .45); }

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; white-space: nowrap; background: #0a0a0a;
}
.ticker-inner { display: inline-flex; gap: 0; animation: ticker 28s linear infinite; }
.tick-item {
  display: inline-flex; align-items: center; padding: 1.1rem 3rem; border-right: 1px solid var(--border);
  font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  gap: .8rem; color: var(--dim); white-space: nowrap;
}
.tick-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.tick-item strong { color: var(--teal); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── CLIENTS STRIP ── */
.clients-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
  padding: 2.75rem 0 2.5rem;
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 2.5rem 0;
  padding: 0 var(--section-x);
}
.clients-marquee {
  overflow: hidden;
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 127px; /* equal edge-to-edge spacing regardless of logo width */
  width: max-content;
  animation: clientsTicker 70s linear infinite;
  will-change: transform;
}
/* JS owns motion — CSS keyframes break hover hit-testing in Safari */
.clients-inner.is-js-driven {
  animation: none;
  transform: translate3d(0, 0, 0);
}
.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: auto;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
.client-item img {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) brightness(1.4) contrast(1.05);
  opacity: .78;
  transition: opacity .2s, filter .2s;
  pointer-events: none;
}
/* Keep visual weight even for tall/square marks without changing inter-logo gap */
.client-item--porsche img,
.client-item--tall img,
.client-item--abudhabi img,
.client-item--utr img,
.client-item--bnp img,
.client-item--dpworld img,
.client-item--wtt img,
.client-item--hamburg img {
  height: 41px;
}
/* WTA Tour mark is very dark navy/plum — needs extra lift to read at rest */
.client-item--wta img {
  filter: grayscale(1) brightness(5) contrast(1.1);
}
.client-item.is-hot img {
  opacity: 1;
  /* Keep hue, lift dark logo fills so they stay visible on #0a0a0a */
  filter: grayscale(0) brightness(1.45) contrast(1.08) saturate(1.05);
}
/* No-JS fallback only */
.clients-inner:not(.is-js-driven) .client-item:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1.45) contrast(1.08) saturate(1.05);
}
@keyframes clientsTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--border); }
.stat { padding: 3.5rem var(--section-x); border-right: 1px solid var(--border); position: relative; overflow: hidden; }
.stat:last-child { border-right: none; }
.stat-bg-num {
  position: absolute; bottom: -1rem; right: 1rem; font-family: 'Montserrat', sans-serif;
  font-size: 9rem; font-weight: 900; color: rgba(255, 255, 255, .025); line-height: 1; pointer-events: none; user-select: none;
}
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 4.2rem; font-weight: 900; line-height: 1; color: #fff; letter-spacing: -.03em; }
.stat-num span:first-child { color: #fff; }
.stat-unit { font-size: 1.8rem; font-weight: 800; color: var(--teal); vertical-align: super; }
.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-top: .6rem; }
.stat-bar { height: 2px; background: var(--border); margin-top: 1.5rem; }
.stat-bar .bar-fill { height: 100%; background: var(--teal); width: 0; transition: width 1.8s ease; }

/* ── SECTION COMMONS ── */
section { padding: var(--section-y) var(--section-x); }
.sec-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px;
}
.sec-label::after { content: ''; width: 28px; height: 1px; background: var(--teal); }
.sec-h2 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(2.3rem, 5vw, 5.5rem); font-weight: 900;
  text-transform: uppercase; line-height: .98; letter-spacing: -.01em; color: #fff; margin-bottom: 1.5rem;
}
.sec-h2 span { color: var(--teal); }
.sec-intro { font-size: .95rem; color: var(--dim); line-height: 1.85; max-width: 600px; }

/* ── PILLARS ── */
.pillars-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.pillars-left { padding: var(--section-y) var(--section-x); border-right: 1px solid var(--border); }
.pillars-right { display: grid; grid-template-rows: 1fr 1fr 1fr; }
.pillar-row {
  padding: 2.5rem 4rem; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start;
  gap: 2rem; transition: background .25s; cursor: default;
}
.pillar-row:last-child { border-bottom: none; }
.pillar-row:hover { background: #111; }
.pillar-icon-wrap {
  width: 48px; height: 48px; border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--teal); transition: border-color .25s, background .25s;
}
.pillar-row:hover .pillar-icon-wrap { border-color: var(--teal); background: var(--teal-dim); }
.pillar-icon-wrap svg { width: 20px; height: 20px; }
.pillar-title { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #fff; margin-bottom: .4rem; }
.pillar-text { font-size: .82rem; color: var(--dim); line-height: 1.75; }

/* ── SERVICES ── */
#services { border-top: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); margin-top: 4rem; }
.svc-card {
  padding: 2.8rem; border-right: 1px solid var(--border); position: relative; overflow: hidden;
  transition: background .25s; display: flex; flex-direction: column;
}
.svc-card:last-child { border-right: none; }
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.svc-card:hover { background: #111; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover .svc-icon { border-color: var(--teal); background: var(--teal-dim); }
.svc-icon {
  width: 48px; height: 48px; border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.8rem; color: var(--teal); transition: all .25s;
}
.svc-icon svg { width: 20px; height: 20px; }
.svc-title { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #fff; margin-bottom: 1rem; }
.svc-list { list-style: none; margin-bottom: 1.2rem; }
.svc-list li { font-size: .78rem; color: var(--dim); padding: .22rem 0 .22rem .9rem; position: relative; line-height: 1.5; }
.svc-list li::before { content: '·'; position: absolute; left: 0; color: var(--teal); font-size: 1.2rem; top: -.05rem; }
.svc-tagline {
  font-size: .74rem; font-weight: 600; color: rgba(0, 222, 202, .75); line-height: 1.5;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto; font-style: italic;
}

/* ── SPORTS ── */
.sports-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); margin-top: 4rem; }
.sport-card {
  padding: 3rem; border-right: 1px solid var(--border); position: relative; overflow: hidden;
  transition: background .3s;
  background: #0a0a0a;
}
.sport-card:last-child { border-right: none; }
.sport-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.sport-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .28;
  filter: saturate(.7) brightness(.75);
  transition: opacity .35s, filter .35s;
}
.sport-card:nth-child(1) .sport-card-bg img { object-position: center 40%; }
.sport-card:nth-child(2) .sport-card-bg img { object-position: center 35%; }
.sport-card:nth-child(3) .sport-card-bg img { object-position: 18% 28%; }
.sport-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .35) 45%, rgba(10, 10, 10, .72) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, .25) 0%, transparent 55%);
}
.sport-card-body { position: relative; z-index: 1; }
.sport-card::after {
  content: ''; position: absolute; inset: 0; border: 1.5px solid var(--teal); opacity: 0;
  transition: opacity .3s; pointer-events: none; box-shadow: 0 0 24px rgba(0, 222, 202, .18) inset;
  z-index: 2;
}
.sport-card:hover { background: #0c0c0c; }
.sport-card:hover .sport-card-bg img {
  opacity: .38;
  filter: saturate(.85) brightness(.85);
}
.sport-card:hover::after { opacity: 1; }
.sport-badge {
  display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--border); padding: .35rem .8rem;
  margin-bottom: 1.5rem; font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal);
}
.sport-name { font-family: 'Montserrat', sans-serif; font-size: 3.2rem; font-weight: 900; text-transform: uppercase; line-height: .9; letter-spacing: -.01em; color: #fff; margin-bottom: .4rem; white-space: nowrap; }
.sport-sub { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-bottom: 2rem; }
.sport-intro { font-size: .8rem; color: var(--dim); line-height: 1.6; margin-bottom: 1.2rem; }
.sport-features { list-style: none; margin-bottom: 1.8rem; }
.sport-features li { display: flex; align-items: flex-start; gap: .8rem; padding: .45rem 0; border-bottom: 1px solid rgba(53, 52, 52, .5); font-size: .8rem; color: var(--dim); }
.sport-features li:last-child { border-bottom: none; }
.feat-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: .1rem; }
.sport-strength-tag {
  display: inline-flex; padding: .4rem 1rem; background: rgba(0, 222, 202, .06); border-left: 2px solid var(--teal);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(0, 222, 202, .85);
}

/* ── ECOSYSTEM ── */
.ecosystem-section { border-top: 1px solid var(--border); }
.eco-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 4rem; }
.eco-h3 { font-size: 2.4rem; }
.eco-intro { margin-bottom: 2.5rem; }
.eco-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--border); }
.eco-metric { padding: 1.5rem 2rem; border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
.eco-metric:nth-child(-n+2) { border-top: none; }
.eco-metric:nth-child(2n) { border-right: none; }
.eco-metric-num { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.eco-metric-num span { color: var(--teal); font-size: 1.4rem; }
.eco-metric-label { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--dim); margin-top: .4rem; }

/* ── WHY ── */
.why-list { margin-top: 3.5rem; border-top: 1px solid var(--border); }
.why-closing { margin-top: 2.5rem; }
.why-row {
  display: grid; grid-template-columns: minmax(200px, .9fr) 1.4fr; gap: 2rem 4rem;
  align-items: baseline; padding: 1.8rem 0; border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.why-row:hover .why-label { color: var(--teal); }
.why-label {
  font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: #fff; margin: 0;
  transition: color .25s;
}
.why-text { font-size: .95rem; color: var(--dim); font-weight: 500; line-height: 1.7; margin: 0; max-width: 520px; }

/* ── ABOUT ── */
.about-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Cap height so the photo isn't upscaled across the full tall section */
  height: min(72vh, 780px);
  z-index: 0;
  pointer-events: none;
}
.about-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
  opacity: .88;
  filter: saturate(.55) brightness(.58);
}
.about-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .28) 0%, rgba(7, 7, 7, .14) 40%, rgba(7, 7, 7, .72) 82%, var(--bg-alt) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, .16) 0%, transparent 50%, rgba(7, 7, 7, .12) 100%);
}
.about-content { position: relative; z-index: 1; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem 6rem; align-items: end; margin-bottom: 2.5rem; }
.about-signature { color: var(--text); font-weight: 500; margin-top: 1.5rem; }
.company-facts {
  max-width: 920px;
  margin: 0 0 3.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}
.company-facts p {
  font-size: .9rem; color: var(--dim); line-height: 1.8; margin: 1.25rem 0 0;
}
.company-facts strong { color: var(--text); font-weight: 700; }
.company-facts a { color: var(--teal); text-decoration: none; }
.company-facts a:hover { text-decoration: underline; text-underline-offset: 3px; }
.about-approach { border-top: 1px solid var(--border); padding-top: 3.5rem; }
.about-values-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 2rem; display: flex; align-items: center; gap: 10px;
}
.about-values-label::after { content: ''; flex: 1; max-width: 48px; height: 1px; background: var(--teal); }
.approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border);
}
.approach-item {
  padding: 2.4rem 2rem; border-right: 1px solid var(--border);
  background: var(--bg); transition: background .25s;
}
.approach-item:last-child { border-right: none; }
.approach-item:hover { background: #111; }
.approach-num {
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900;
  color: rgba(0, 222, 202, .18); line-height: 1; margin-bottom: 1.2rem;
}
.approach-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: .9rem;
}
.approach-text { font-size: .82rem; color: var(--dim); line-height: 1.75; }

/* ── CONTACT ── */
.contact-section { border-top: 1px solid var(--border); }
.contact-header { max-width: 720px; margin-bottom: 3.5rem; }
.contact-header .sec-intro { margin-top: .5rem; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.contact-left {
  padding: 3.5rem 3.5rem 3.5rem 3rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2.75rem;
  text-align: left;
}
.contact-right {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-channels { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-channel-label,
.contact-meta-label,
.contact-topics-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim); margin-bottom: .65rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .04em;
  transition: color .2s;
}
.contact-link:hover { color: var(--teal); }
.contact-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--border);
  color: var(--teal);
  transition: border-color .2s;
}
.contact-link:hover .contact-link-icon { border-color: var(--teal); }
.contact-link-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.contact-meta {
  display: grid;
  gap: 1.15rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border);
}
.contact-meta-value {
  font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.45;
}
.contact-topics {
  padding-top: 2.4rem;
  border-top: 1px solid var(--border);
}
.contact-topics-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.contact-topics-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .88rem;
  color: var(--dim);
  line-height: 1.55;
}
.contact-topics-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 1px;
  background: var(--teal);
}
.contact-form-label {
  font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; text-align: left;
}
.contact-form-intro {
  font-size: .88rem; color: var(--dim); line-height: 1.7; margin-bottom: 1.75rem; max-width: 420px;
}
.contact-form { display: flex; flex-direction: column; }
.contact-field {
  border: 1px solid var(--border); background: transparent; width: 100%; padding: .9rem 1.2rem;
  font-size: .85rem; font-family: 'Montserrat', sans-serif; color: var(--text); margin-bottom: 1rem;
  outline: none; transition: border-color .2s; box-sizing: border-box;
}
.contact-field:focus { border-color: var(--teal); }
.contact-field::placeholder { color: var(--dim); }
.contact-submit { width: 100%; margin-top: .5rem; }
.contact-form-note { font-size: .78rem; color: var(--teal); margin-top: 1rem; min-height: 1.2em; }
.contact-form-note.is-error { color: #ff6b6b; }
.contact-botcheck {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.contact-submit:disabled { opacity: .6; cursor: wait; }

/* ── FOOTER ── */
.footer { padding: 2rem var(--section-x); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.foot-logo { display: flex; align-items: center; height: 22px; opacity: .55; transition: opacity .2s; }
.foot-logo:hover { opacity: .9; }
.foot-logo img { height: 100%; width: auto; }
.foot-mid { font-size: .7rem; color: var(--dim); letter-spacing: .08em; }
.foot-end { display: flex; flex-direction: column; align-items: flex-end; gap: .55rem; }
.foot-links { display: flex; align-items: center; gap: 1.25rem; }
.foot-links a,
.foot-links button {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--dim);
  text-decoration: none; transition: color .2s;
}
.foot-links a:hover,
.foot-links button:hover,
.foot-links a:focus-visible,
.foot-links button:focus-visible { color: var(--teal); }
.foot-copy { font-size: .68rem; color: rgba(255, 255, 255, .18); letter-spacing: .06em; }

/* ── Legal / privacy page ── */
.legal {
  max-width: 720px; margin: 0 auto;
  padding: 6rem var(--section-x) 7rem;
}
.legal-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
}
.legal-h1 {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.legal-lead { font-size: 1rem; color: var(--dim); line-height: 1.75; margin-bottom: 1rem; }
.legal-updated { font-size: .75rem; color: rgba(255,255,255,.28); margin-bottom: 3.5rem; }
.legal-section { margin-bottom: 3.25rem; padding: 0; }
.legal-section h2 {
  font-size: 1.05rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1.1rem; color: #fff;
}
.legal-section h3 {
  font-size: .88rem; font-weight: 700; letter-spacing: .04em;
  margin: 1.75rem 0 .65rem; color: var(--teal);
}
.legal-section p,
.legal-section li {
  font-size: .92rem; color: var(--dim); line-height: 1.8;
}
.legal-section p + p { margin-top: .85rem; }
.legal-section ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .7rem; margin-top: .75rem; }
.legal-section a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-section code {
  font-size: .82em; color: var(--text);
  background: var(--teal-dim); padding: .1em .35em; border-radius: 2px;
}
.legal-note {
  margin-top: 1.1rem; padding: 1rem 1.15rem;
  border-left: 2px solid var(--teal);
  background: var(--teal-dim); font-size: .85rem !important;
}
.legal-cc-btn {
  margin-top: .75rem;
  border: 1px solid var(--teal); color: var(--teal); background: transparent;
  padding: .55rem 1.3rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all .2s;
}
.legal-cc-btn:hover { background: var(--teal); color: #000; }
.legal-back { margin-top: 3.5rem; }
.legal-back a {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim); text-decoration: none;
  transition: color .2s;
}
.legal-back a:hover { color: var(--teal); }

/* ── CookieConsent brand overrides ── */
#cc-main {
  --cc-font-family: 'Montserrat', sans-serif;
  --cc-bg: #111;
  --cc-primary-color: #E8E8E8;
  --cc-secondary-color: #888;
  --cc-btn-primary-bg: #00DECA;
  --cc-btn-primary-color: #000;
  --cc-btn-primary-border-color: #00DECA;
  --cc-btn-primary-hover-bg: #00c4b2;
  --cc-btn-primary-hover-color: #000;
  --cc-btn-primary-hover-border-color: #00c4b2;
  --cc-btn-secondary-bg: transparent;
  --cc-btn-secondary-color: #E8E8E8;
  --cc-btn-secondary-border-color: #353434;
  --cc-btn-secondary-hover-bg: #1a1a1a;
  --cc-btn-secondary-hover-color: #fff;
  --cc-btn-secondary-hover-border-color: #00DECA;
  --cc-separator-border-color: #353434;
  --cc-toggle-on-bg: #00DECA;
  --cc-toggle-off-bg: #353434;
  --cc-toggle-on-knob-bg: #000;
  --cc-toggle-off-knob-bg: #E8E8E8;
  --cc-toggle-readonly-bg: #222;
  --cc-toggle-readonly-knob-bg: #888;
  --cc-toggle-readonly-knob-icon-color: #222;
  --cc-cookie-category-block-bg: #0D0D0D;
  --cc-cookie-category-block-border: #353434;
  --cc-cookie-category-block-hover-bg: #151515;
  --cc-cookie-category-block-hover-border: #00DECA;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: #151515;
  --cc-overlay-bg: rgba(0, 0, 0, .65);
  --cc-footer-bg: #0D0D0D;
  --cc-footer-color: #888;
  --cc-footer-border-color: #353434;
  --cc-link-color: #00DECA;
  color-scheme: dark;
}
#cc-main .cm,
#cc-main .pm {
  border: 1px solid #353434;
  border-radius: 0;
}
#cc-main .cm__title,
#cc-main .pm__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
#cc-main .cm__btn,
#cc-main .pm__btn {
  border-radius: 0;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

/* ── BACK TO TOP ── */
.to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); color: #000; border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s, transform .25s; z-index: 60;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 20px; height: 20px; }
.to-top:hover { opacity: .85; }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .rv, .rv.in { transition: none; opacity: 1; transform: none; }
  .ticker-inner, .hero-athletes, .clients-inner { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  :root { --section-x: 48px; --section-y: 6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(2) { border-right: none; }
  .svc-card:nth-child(3), .svc-card:nth-child(4) { border-top: 1px solid var(--border); }
  .eco-layout { gap: 3.5rem; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-item:nth-child(2) { border-right: none; }
  .approach-item:nth-child(3), .approach-item:nth-child(4) { border-top: 1px solid var(--border); }
  /* iPad / mid widths: 3-col sports cards — center table tennis athlete */
  .sport-card:nth-child(3) .sport-card-bg img { object-position: center 28%; }
}

@media (max-width: 996px) {
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .nav-burger { display: flex; }

  .hero {
    min-height: min(72vh, 680px);
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    padding: 88px 24px 48px;
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }
  .eyebrow {
    display: none;
  }
  .hero-h1 {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    width: 100%;
  }
  .hero-h1 .hero-line {
    white-space: normal;
  }
  .hero-sub {
    display: block;
    max-width: 34rem;
    margin: 0 auto 1.6rem;
    font-size: .9rem;
    line-height: 1.65;
    color: rgba(232, 232, 232, .86);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    gap: .85rem;
  }
  .hero-actions .btn-o { display: none; }
  .hero-actions button { width: 100%; }
  .hero-athletes-fill {
    filter: brightness(1.52) contrast(1.05) saturate(1.1) blur(24px);
  }
  .hero-athletes {
    width: 100%;
    object-position: center 40%;
    -webkit-mask-image: none;
    mask-image: none;
    animation: none;
    transform: none;
    filter: brightness(1.42) contrast(1.06) saturate(1.1);
    opacity: .95;
  }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(22, 18, 14, .28) 0%, rgba(22, 18, 14, .14) 42%, rgba(22, 18, 14, .32) 100%);
  }

  .sport-name { white-space: normal; }
  .eco-svg-wrap { display: none; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }

  .pillars-section { grid-template-columns: 1fr; }
  .pillars-left { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar-row { padding: 2rem var(--section-x); }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card {
    border-right: none !important; border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    align-items: start;
  }
  .svc-card:nth-child(n) { border-top: none; }
  .svc-card:last-child { border-bottom: none; }
  .svc-icon { margin-bottom: 0; grid-column: 1; grid-row: 1; }
  .svc-title { grid-column: 2; grid-row: 1; align-self: center; margin-bottom: 0; }
  .svc-list,
  .svc-tagline { grid-column: 1 / -1; }
  .svc-list { margin-top: 1rem; }

  .sports-grid { grid-template-columns: 1fr; }
  .sport-card { border-right: none; border-bottom: 1px solid var(--border); }
  .sport-card:last-child { border-bottom: none; }
  .sport-card:nth-child(3) .sport-card-bg img { object-position: center 30%; }

  .eco-layout { grid-template-columns: 1fr; gap: 3rem; }

  .why-row { grid-template-columns: 1fr; gap: .6rem; padding: 1.5rem 0; }

  .about-layout { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 1.5rem; }
  .company-facts { margin-bottom: 2.5rem; }

  .about-bg {
    height: min(58vh, 560px);
  }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 3rem var(--section-x);
    gap: 2.25rem;
  }
  .contact-right { padding: 3rem var(--section-x); }
  .contact-header { margin-bottom: 2.5rem; }
}

@media (max-width: 640px) {
  :root { --section-x: 20px; --section-y: 4rem; }

  .nav { padding: 0 16px; height: 64px; }
  .logo img { height: 20px; }
  .mobile-menu { top: 64px; }

  .hero { min-height: min(68vh, 620px); }
  .hero-content { padding: 80px 18px 40px; }
  .hero-h1 {
    font-size: clamp(2.05rem, 11vw, 2.7rem);
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: .84rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
    padding: 0 2px;
  }
  .hero-actions { width: 100%; }

  .clients-strip { padding: 2rem 0; }
  .clients-label { display: none; }
  .clients-inner { gap: 103px; }
  .client-item { height: 48px; }
  .client-item img { height: 26px; max-width: none; }
  .client-item--porsche img,
  .client-item--tall img,
  .client-item--abudhabi img,
  .client-item--utr img,
  .client-item--bnp img,
  .client-item--dpworld img,
  .client-item--wtt img,
  .client-item--hamburg img {
    height: 29px;
  }

  .sec-h2 { font-size: clamp(1.85rem, 9vw, 2.6rem); margin-bottom: 1.1rem; }
  .sec-intro { font-size: .88rem; line-height: 1.7; }

  .pillars-left { padding: 3rem 20px; }
  .pillar-row { padding: 1.5rem 20px; flex-direction: row; align-items: flex-start; gap: 1rem; }
  .pillar-icon-wrap { width: 42px; height: 42px; flex-shrink: 0; }
  .pillar-title { font-size: 1.15rem; margin-bottom: .35rem; }

  .svc-card { padding: 1.8rem 20px; }

  .sport-card { padding: 2rem 20px; }
  .sport-name { font-size: 2.15rem; white-space: normal; }
  .sport-sub { letter-spacing: .1em; font-size: .62rem; margin-bottom: 1.4rem; }
  .sport-strength-tag { display: none; }

  .eco-h3 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .eco-metrics { grid-template-columns: 1fr; }
  .eco-metric { border-right: none !important; padding: 1.2rem 1.4rem; }
  .eco-metric:nth-child(n+2) { border-top: 1px solid var(--border); }

  .why-row { padding: 1.25rem 0; gap: .45rem; }
  .why-label { font-size: .92rem; letter-spacing: .04em; }
  .why-text { font-size: .88rem; }

  .approach-grid { grid-template-columns: 1fr; }
  .approach-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 1.7rem 20px; }
  .approach-item:last-child { border-bottom: none; }
  .approach-item:nth-child(n) { border-top: none; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 20px;
    gap: 2rem;
  }
  .contact-right { padding: 2.5rem 20px; }
  .contact-link { font-size: 1.05rem; }
  .contact-header { margin-bottom: 2rem; }

  .footer { flex-direction: column; gap: .8rem; text-align: center; padding: 2rem 20px; }
  .foot-mid { display: none; }
  .foot-end { align-items: center; }
  .foot-links { justify-content: center; }

  .legal { padding: 4rem 20px 5rem; }

  .to-top { right: 1rem; bottom: 1rem; width: 40px; height: 40px; }
}
