:root {
  --bg: #020a16;
  --bg-soft: #07172c;
  --panel: rgba(6, 21, 39, 0.84);
  --panel-strong: rgba(7, 27, 48, 0.96);
  --panel-alt: rgba(9, 32, 57, 0.92);
  --line: rgba(74, 154, 255, 0.18);
  --line-strong: rgba(16, 215, 255, 0.28);
  --text: #f4f7ff;
  --muted: #9db0cc;
  --cyan: #17d8ff;
  --blue: #2d9dff;
  --orange: #ff5a1f;
  --green: #00f18a;
  --yellow: #ffb400;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(16,215,255,0.12), transparent 26%),
    radial-gradient(circle at 10% 15%, rgba(255,90,31,0.1), transparent 18%),
    linear-gradient(180deg, #020916 0%, #031120 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  box-shadow: 0 0 18px rgba(16,215,255,0.55);
  transition: width 0.1s linear;
}

/* ---- GRID TEXTURE ---- */
.site-shell {
  background-image:
    linear-gradient(rgba(12,40,74,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,40,74,0.16) 1px, transparent 1px);
  background-size: 28px 28px;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

/* ---- NAV ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(2, 10, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 90, 31, 0.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 68px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 24px rgba(0,0,0,0.32);
  flex-shrink: 0;
}

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 700;
}

.brand-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-sub {
  color: #a0b4cc;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links, .nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: .22s ease;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ---- BUTTONS ---- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .82rem;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff7c21 100%);
  color: white;
  box-shadow: 0 12px 30px rgba(255,90,31,0.3);
}
.button-primary:hover {
  box-shadow: 0 16px 40px rgba(255,90,31,0.45);
}

.button-secondary {
  border-color: rgba(16,215,255,0.32);
  background: rgba(16,215,255,0.07);
  color: var(--cyan);
}
.button-secondary:hover {
  background: rgba(16,215,255,0.14);
  border-color: rgba(16,215,255,0.5);
}

/* ---- SECTIONS ---- */
.section { padding: 84px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(6,19,36,.85), rgba(3,14,28,.98));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ---- HERO ---- */
.hero { padding-top: 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,180,0,0.07);
  color: #ffd161;
  border: 1px solid rgba(255,180,0,0.22);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .05em;
}

.hero h1,
.section-heading h2,
.build-copy h2,
.final-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  line-height: .93;
  letter-spacing: .02em;
  margin: 18px 0 16px;
}
.hero h1 { font-size: clamp(3.4rem, 5.6vw, 5.8rem); }

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
  max-width: 620px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #d8e4f9;
  font-size: .92rem;
}
.hero-points span, .badge-stack span {
  padding: 9px 13px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
}

.trust-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,241,138,0.22);
  background: rgba(0,241,138,0.07);
  color: #c4ffe6;
  font-weight: 800;
  font-size: .88rem;
}
.live-chip small { color: #9ecfba; font-weight: 600; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0,241,138,0.7);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
.trust-copy { color: var(--muted); font-weight: 600; font-size: .95rem; }

/* ---- CARD GLOW (shared) ---- */
.card-glow,
.metric-card,
.feature-card,
.gallery-card,
.proof-card,
.testimonial-card,
.build-card,
.final-box,
.demo-panel-main,
.athlete-expand,
.framework-card,
.video-card,
.report-card {
  background: linear-gradient(180deg, rgba(7,27,48,0.88), rgba(4,18,34,0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.card-glow::before,
.demo-panel-main::before,
.athlete-expand::before,
.final-box::before,
.report-callout::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16,215,255,.55), rgba(255,90,31,.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---- HERO SLIDER ---- */
.hero-preview-frame {
  border-radius: 24px;
  overflow: hidden;
  padding: 18px;
}
.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #8aa4c2;
  margin-bottom: 12px;
}
.system-status { color: var(--green); font-weight: 700; }

.hero-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 430px;
}
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .55s ease, transform .55s ease;
}
.hero-slider img.active { opacity: 1; transform: scale(1); }

.hero-slider-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-top: 14px;
}
.hero-slider-nav button {
  width: 11px; height: 11px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.2);
  transition: background .2s, box-shadow .2s;
}
.hero-slider-nav button.active {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(16,215,255,0.6);
}

/* ---- METRICS ROW ---- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.metric-card {
  padding: 22px;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .22s ease;
}
.metric-card:hover { transform: translateY(-3px); }
.metric-card span {
  display: block;
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .92rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.metric-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
}
.metric-card small { color: var(--muted); font-size: .85rem; margin-top: 6px; display: block; }

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.06) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 5s infinite;
}

/* ---- SECTION HEADINGS ---- */
.section-heading { max-width: 900px; margin-bottom: 36px; }
.section-heading h2 { font-size: clamp(2.6rem, 4.4vw, 4.2rem); }
.section-heading p,
.panel-copy p,
.build-copy p,
.final-box p,
.feature-card p,
.gallery-card p,
.framework-card p,
.video-copy p,
.report-card p,
.report-callout p {
  color: var(--muted);
  line-height: 1.8;
}

/* ---- FRAMEWORK ---- */
.framework-section { }
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.framework-card {
  border-radius: 22px;
  padding: 28px;
  transition: transform .22s ease;
}
.framework-card:hover { transform: translateY(-4px); }
.framework-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16,215,255,0.15), rgba(255,90,31,0.15));
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--cyan);
  margin-bottom: 20px;
}
.framework-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: .04em;
  margin: 0 0 10px;
  font-weight: 800;
}

/* ---- DEMO SPORT TABS ---- */
.demo-sport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.sport-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(9,34,60,0.72), rgba(5,20,38,0.95));
  color: var(--text);
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.sport-card span {
  display: block;
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .9rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.sport-card strong { display: block; font-size: 1rem; margin-bottom: 8px; line-height: 1.5; }
.sport-card small { color: var(--muted); font-size: .85rem; }
.sport-card:hover,
.sport-card.active {
  transform: translateY(-3px);
  border-color: rgba(16,215,255,0.38);
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}

/* ---- DEMO PANELS ---- */
.demo-panel { display: none; }
.demo-panel.active { display: block; }
.demo-panel-main {
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.panel-copy h3,
.build-card h3,
.athlete-toggle h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  margin: 10px 0 14px;
  letter-spacing: .04em;
  font-weight: 800;
  line-height: 1.05;
}

.tooltip-row, .panel-actions, .badge-stack, .final-actions, .build-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tooltip-row { margin-bottom: 4px; }
.panel-actions { margin-top: 20px; }

.mini-tip {
  border: 1px solid rgba(16,215,255,0.22);
  border-radius: 999px;
  padding: 9px 15px;
  background: rgba(16,215,255,0.07);
  color: var(--cyan);
  font-weight: 700;
  font-size: .85rem;
  transition: background .2s, border-color .2s;
}
.mini-tip:hover {
  background: rgba(16,215,255,0.14);
  border-color: rgba(16,215,255,0.42);
}

.tooltip-output {
  min-height: 72px;
  margin: 14px 0 0;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #cddaf4;
  font-size: .95rem;
  line-height: 1.7;
}

.panel-preview img, .stack-preview img {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
.stack-preview { display: grid; gap: 14px; }

/* ---- FEATURES ---- */
.feature-grid.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 26px;
  border-radius: 20px;
  transition: transform .22s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.feature-card h3, .gallery-card h3 {
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px rgba(0,0,0,0.42);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform .4s ease;
}
.gallery-card:hover img { transform: scale(1.02); }
.gallery-card figcaption { padding: 18px 20px; }
.gallery-card.large { grid-column: span 2; grid-row: span 2; }
.gallery-card.large img { aspect-ratio: 16 / 10; }
.gallery-card.wide { grid-column: span 2; }

/* ---- VIDEO ---- */
.video-section { }
.video-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 32px;
  align-items: start;
}
.video-copy h2 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: .95;
  letter-spacing: .02em;
  margin: 14px 0 16px;
}
.action-list {
  margin: 20px 0 24px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 2;
}
.action-list li::marker { color: var(--cyan); }
.video-card {
  border-radius: 22px;
  padding: 20px;
}
.video-embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.video-embed-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.video-meta {
  padding: 16px 4px 4px;
}
.video-meta p { color: var(--muted); margin: 6px 0 0; font-size: .92rem; }

/* ---- REPORTS ---- */
.report-section { }
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}
.report-card {
  border-radius: 22px;
  padding: 20px;
  transition: transform .22s ease;
}
.report-card:hover { transform: translateY(-4px); }
.report-card img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.report-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.report-callout {
  border-radius: 22px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(180deg, rgba(7,27,48,0.88), rgba(4,18,34,0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.report-callout h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: .04em;
  font-weight: 800;
  margin: 8px 0 10px;
}
.report-callout .panel-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* ---- ATHLETE EXPAND ---- */
.athlete-expand {
  border-radius: 24px;
  overflow: hidden;
}
.athlete-toggle {
  width: 100%;
  text-align: left;
  padding: 26px 28px;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: background .2s;
}
.athlete-toggle:hover { background: rgba(255,255,255,0.02); }
.athlete-toggle p { margin: 0; color: var(--muted); }
.toggle-icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,215,255,0.08);
  border: 1px solid rgba(16,215,255,0.24);
  font-size: 1.6rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform .3s ease, background .2s;
  line-height: 1;
}
.athlete-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.athlete-expand.open .athlete-details { max-height: 1400px; }
.athlete-expand.open .toggle-icon { transform: rotate(45deg); }

.athlete-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px 28px 0;
}
.athlete-stats article {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.athlete-stats span {
  display: block;
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .88rem;
  margin-bottom: 8px;
}
.athlete-stats strong { font-size: 1.5rem; font-weight: 800; }
.athlete-image-wrap { padding: 22px 28px 28px; }
.athlete-image-wrap img { border-radius: 16px; width: 100%; }

/* ---- BUILD ---- */
.build-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.step-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.step-flow div {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.step-flow span {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(16,215,255,0.08);
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  border: 1px solid rgba(16,215,255,0.18);
}
.step-flow strong { display: block; font-size: .95rem; font-weight: 700; }

.build-card { border-radius: 22px; padding: 28px; }
.build-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #d0dff4;
  line-height: 2;
}
.build-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0;
}
.form-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,90,31,0.06);
  border: 1px solid rgba(255,90,31,0.2);
}
.form-callout strong { color: #ffb580; }
.form-callout p { margin: 8px 0 0; color: var(--muted); font-size: .93rem; }

/* ---- PROOF / TESTIMONIALS ---- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.proof-card {
  padding: 24px;
  border-radius: 18px;
  transition: transform .22s ease;
}
.proof-card:hover { transform: translateY(-3px); }
.proof-card span {
  display: block;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .85rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.proof-card strong { font-size: 1.08rem; line-height: 1.65; }

.testimonial-shell {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.testimonial-card {
  padding: 28px;
  border-radius: 20px;
  transition: transform .22s ease;
}
.testimonial-card:hover { transform: translateY(-3px); }
.quote-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: .8;
  margin-bottom: 12px;
  font-weight: 900;
  opacity: .7;
}
.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #dde8f8;
  margin: 0 0 16px;
  font-style: italic;
}
.testimonial-author strong { display: block; font-weight: 700; color: var(--text); }
.testimonial-author span { font-size: .88rem; color: var(--muted); }

/* ---- FINAL CTA ---- */
.final-cta { padding-top: 16px; padding-bottom: 84px; }
.final-box {
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.final-box h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); margin-top: 12px; }
.final-actions { flex-shrink: 0; }

/* ---- FOOTER ---- */
.site-footer {
  background: rgba(2,9,18,0.98);
  border-top: 1px solid rgba(255,90,31,0.3);
  padding: 32px 0;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 46px;
  border-radius: 8px;
  opacity: .85;
}
.footer-brand .brand-title { font-size: 1.2rem; }
.footer-brand .brand-sub { font-size: .65rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-links a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
  color: #4a5c72;
  font-size: .82rem;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .62s var(--ease, cubic-bezier(0.16,1,0.3,1)),
              transform .62s var(--ease, cubic-bezier(0.16,1,0.3,1));
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

/* ---- KEYFRAMES ---- */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,241,138,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(0,241,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,241,138,0); }
}
@keyframes shimmer {
  0%       { transform: translateX(-120%); }
  60%,100% { transform: translateX(120%); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .hero-grid,
  .build-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid.premium-grid,
  .demo-panel-main { grid-template-columns: 1fr 1fr; }
  .metrics-row,
  .proof-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.large,
  .gallery-card.wide { grid-column: span 1; grid-row: span 1; }
  .testimonial-shell { grid-template-columns: 1fr 1fr; }
  .athlete-stats { grid-template-columns: repeat(2, 1fr); }
  .step-flow { grid-template-columns: repeat(3, 1fr); }
  .framework-grid { grid-template-columns: 1fr 1fr; }
  .report-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-wrap { flex-wrap: wrap; }
  .nav-cta { width: 100%; flex-wrap: wrap; }
  .nav-cta .button { flex: 1; text-align: center; }
  .brand-title { font-size: 1.4rem; }
  .section, .hero { padding: 56px 0; }

  .hero-grid,
  .metrics-row,
  .demo-sport-cards,
  .demo-panel-main,
  .feature-grid.premium-grid,
  .gallery-grid,
  .athlete-stats,
  .build-grid,
  .proof-grid,
  .testimonial-shell,
  .step-flow,
  .framework-grid,
  .report-grid { grid-template-columns: 1fr; }

  .hero-slider { min-height: 260px; }
  .hero-actions,
  .panel-actions,
  .final-actions,
  .build-actions { flex-direction: column; }
  .button { width: 100%; justify-content: center; }
  .final-box { padding: 26px; flex-direction: column; }
  .report-callout { flex-direction: column; }
  .report-callout .panel-actions { justify-content: flex-start; }
  .footer-wrap { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-brand { justify-content: center; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  background: linear-gradient(180deg, rgba(6,19,36,.85), rgba(3,14,28,.98));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* ---- LEFT COPY ---- */
.contact-copy h2 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: .93;
  letter-spacing: .02em;
  margin: 14px 0 18px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cddaf4;
  font-size: .98rem;
  font-weight: 500;
}
.contact-details a {
  color: var(--cyan);
  font-weight: 600;
  transition: color .2s;
}
.contact-details a:hover { color: var(--text); }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(16,215,255,0.07);
  border: 1px solid rgba(16,215,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- FORM CARD ---- */
.contact-form-wrap {
  border-radius: 24px;
  padding: 32px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

/* Netlify honeypot — visually hidden */
.hidden-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .86rem;
  font-weight: 700;
  color: #c4d5f1;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
}

.req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .96rem;
  transition: border-color .22s, background .22s, box-shadow .22s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4a5c72;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239db0cc' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: #07172c;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(16,215,255,0.45);
  background: rgba(16,215,255,0.04);
  box-shadow: 0 0 0 3px rgba(16,215,255,0.08);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: rgba(0,241,138,0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.form-submit:hover .submit-icon { transform: translateX(4px); }
.submit-icon { transition: transform .22s ease; font-size: 1.1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px 18px; }
}
