/* AthleteIQ Performance — Shared Styles */

/* ============================================
   AthleteIQ Performance — Design System
   ============================================ */
:root {
  --black: #000000;
  --near-black: #0A0A0A;
  --dark: #111111;
  --darker: #050505;
  --card: #141414;
  --card-hover: #1A1A1A;
  --border: #222222;
  --border-bright: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray-100: #E5E5E5;
  --gray-300: #A1A1A1;
  --gray-500: #6B6B6B;
  --gray-700: #3D3D3D;
  --red: #E11D2E;
  --red-bright: #FF2638;
  --red-dark: #B0162A;
  --blue: #3B82F6;
  --blue-bright: #4F94FF;
  --blue-dark: #1E40AF;
  --display: 'Poppins', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --nav-h: 80px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================
   NAVIGATION (sticky white bar)
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid #E5E5E5;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-menu a {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: var(--black);
  text-transform: lowercase;
  letter-spacing: -0.01em;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-menu a:hover { color: var(--red); }
.nav-menu a:hover::after { width: 100%; }

.nav-login {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  background: var(--black);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  margin-left: 8px;
}
.nav-login:hover { background: var(--red); transform: translateY(-1px); }

.nav-login svg {
  width: 14px; height: 14px;
}

/* mobile menu */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 1100px) {
  .nav { padding: 0 20px; }
  .nav-menu { gap: 20px; }
  .nav-menu a { font-size: 13px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-login { display: none; }
  .mobile-toggle { display: block; margin-left: auto; }
  .nav-mobile-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid #E5E5E5;
  }
  .nav-mobile-open .nav-login { display: inline-flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  background: var(--black);
  overflow: hidden;
}

/* atmospheric background */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 30%, rgba(225,29,46,0.15), transparent 60%),
    radial-gradient(ellipse 600px 800px at 10% 80%, rgba(59,130,246,0.12), transparent 60%);
  pointer-events: none;
}
.hero::after {
  /* subtle grid texture */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h) - 140px);
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding: 8px 16px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  margin-bottom: 32px;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.hero h1 .accent-red { color: var(--red); }
.hero h1 .accent-blue { color: var(--blue); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--gray-300);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.btn {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(225,29,46,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.04);
}

.btn svg { width: 16px; height: 16px; }

/* Hero visual - vertical scrolling dashboards */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeRight 1s ease-out 0.5s forwards;
}

.hero-marquee-wrap {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 7%, black 93%, transparent);
}

.hero-marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollY 40s linear infinite;
  width: 100%;
}
.hero-marquee:hover { animation-play-state: paused; }

@keyframes scrollY {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

/* Hero dashboards: fill the column, slightly more compact */
.hero-marquee .dashboard {
  width: 100%;
  flex-shrink: 0;
  height: auto;
  min-height: 250px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 900px) {
  .hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-marquee-wrap { height: 480px; max-width: 500px; margin: 0 auto; }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 40px;
}
.stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--white) 0%, #888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-num .unit { color: var(--red); -webkit-text-fill-color: var(--red); }
.stat-label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-300);
}

@media (max-width: 700px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ============================================
   SECTION DEFAULTS
   ============================================ */
section {
  position: relative;
  padding: 120px 40px;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 30px; height: 2px; background: var(--red);
}

.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 24px;
}

.section-sub {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 640px;
  line-height: 1.5;
}

/* ============================================
   AUTO-SCROLLING SHOWCASE (the big visual middle)
   ============================================ */
.showcase {
  padding: 120px 0;
  background: var(--darker);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-head {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.showcase-head .eyebrow { justify-content: center; }
.showcase-head .eyebrow::before { display: none; }
.showcase-head .section-sub { margin: 24px auto 0; }

.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scrollX 60s linear infinite;
}
.marquee:hover { animation-play-state: paused; }

@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.dashboard {
  flex-shrink: 0;
  width: 560px;
  height: 360px;
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dashboard:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  transition: all 0.3s;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.dashboard-title {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}
.dashboard-tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  padding: 3px 10px;
  border: 1px solid var(--red);
  border-radius: 999px;
}

.dashboard-body { padding: 20px; height: calc(100% - 50px); }

/* leaderboard dashboard */
.lb-row {
  display: grid;
  grid-template-columns: 24px 1fr 100px 60px;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--display);
}
.lb-row:last-child { border-bottom: none; }
.lb-rank {
  font-weight: 900;
  font-style: italic;
  font-size: 16px;
  color: var(--gray-500);
}
.lb-row.top .lb-rank { color: var(--red); }
.lb-name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.lb-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.lb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 3px;
}
.lb-val {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  text-align: right;
  color: var(--white);
}

/* heatmap dashboard */
.heatmap-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rink {
  width: 100%;
  height: 100%;
  position: relative;
}

/* line chart dashboard */
.chart-area { width: 100%; height: 100%; }

/* radar dashboard */
.radar-wrap { display: flex; align-items: center; justify-content: center; height: 100%; }

/* shift bars */
.shift-row { display: flex; align-items: center; gap: 8px; height: 22px; margin-bottom: 6px; }
.shift-label { width: 60px; font-family: var(--display); font-weight: 700; font-size: 10px; color: var(--gray-300); text-transform: uppercase; }
.shift-track { flex: 1; display: flex; gap: 2px; height: 14px; }
.shift-block { height: 100%; border-radius: 2px; }

/* zone breakdown */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.zone-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.zone-label { font-family: var(--display); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-300); }
.zone-val { font-family: var(--display); font-weight: 900; font-style: italic; font-size: 32px; line-height: 1; }
.zone-trend { font-family: var(--display); font-weight: 700; font-size: 11px; }
.zone-trend.up { color: var(--red); }
.zone-trend.down { color: var(--blue); }

@media (max-width: 700px) {
  .dashboard { width: 320px; height: 280px; }
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  background: var(--black);
}
.features-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .features-head { grid-template-columns: 1fr; gap: 30px; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1200px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature:hover {
  background: var(--card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.feature:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--red);
}
.feature-icon svg { width: 24px; height: 24px; }

.feature h3 {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.feature p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-300);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.howitworks {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 24px; } }

.step {
  position: relative;
  padding: 40px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.step-num {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  margin-bottom: 16px;
  display: block;
}

.step h3 {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 24px;
  margin-bottom: 12px;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--black);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }

.testi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.testi-quote-mark {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 64px;
  line-height: 0.6;
  color: var(--red);
  height: 32px;
  margin-bottom: 16px;
}

.testi-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-100);
  flex: 1;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 16px;
  color: var(--white);
}

.testi-name {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  text-transform: lowercase;
}
.testi-role {
  font-size: 12px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background:
    radial-gradient(ellipse 800px 500px at 50% 50%, rgba(225,29,46,0.18), transparent 70%),
    var(--near-black);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  /* big ghost letter */
  content: 'iq';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(300px, 60vw, 700px);
  line-height: 0.8;
  color: var(--white);
  opacity: 0.025;
  letter-spacing: -0.08em;
  pointer-events: none;
  user-select: none;
}

.final-cta-inner { position: relative; max-width: 800px; margin: 0 auto; }

.final-cta h2 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  text-transform: lowercase;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.final-cta p {
  font-size: 19px;
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto 40px;
}
.final-cta .hero-ctas { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 40px 32px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }

.footer-brand img {
  height: 60px;
  margin-bottom: 24px;
}
.footer-brand p {
  color: var(--gray-300);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--gray-300);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--gray-500); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

/* ============================================
   WHITEPAPER LEAD MAGNET SECTION
   ============================================ */
.whitepaper {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.whitepaper::before {
  content: '';
  position: absolute;
  top: 0; right: -100px; bottom: 0; width: 600px;
  background: radial-gradient(circle at 50% 50%, rgba(59,130,246,0.15), transparent 60%);
  pointer-events: none;
}
.whitepaper-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .whitepaper { padding: 80px 20px; }
  .whitepaper-inner { grid-template-columns: 1fr; gap: 40px; }
}
.wp-content h2 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 20px;
}
.wp-content p {
  font-size: 17px;
  color: var(--gray-300);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.55;
}
.wp-list {
  list-style: none;
  margin-bottom: 32px;
}
.wp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-100);
}
.wp-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.wp-visual {
  position: relative;
  perspective: 1000px;
}
.wp-cover {
  background: linear-gradient(135deg, #1A1A1A 0%, #050505 100%);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  aspect-ratio: 8.5 / 11;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04);
  transform: rotate(-3deg) rotateY(-8deg);
  position: relative;
  overflow: hidden;
}
.wp-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.wp-cover-tag {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.wp-cover h3 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-top: 20px;
}
.wp-cover .accent-red { color: var(--red); }
.wp-cover-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wp-cover-meta span:first-child {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  color: var(--white);
}
.wp-cover-meta span:last-child {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   LEAD CAPTURE MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
}
.modal-close svg { width: 16px; height: 16px; color: var(--white); }

.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.modal-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.modal h3 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: 28px;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.field input, .field select {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.field input:focus, .field select:focus {
  border-color: var(--red);
  background: var(--darker);
}
.field input::placeholder {
  color: var(--gray-500);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
}
.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.modal-submit .spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.modal-submit.loading .spinner { display: inline-block; }
.modal-submit.loading .btn-text { opacity: 0.7; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-foot {
  margin-top: 16px;
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.5;
}

/* Success state */
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal.success .modal-form-wrap { display: none; }
.modal.success .modal-success { display: block; }
.modal-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-success-icon svg { width: 32px; height: 32px; color: var(--white); }
.modal-success h3 { margin-bottom: 12px; }
.modal-success p {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================
   SCROLL REVEAL (only hides when JS is ready,
   so content is visible without JS for a11y)
   ============================================ */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.js-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-hero {
  position: relative;
  padding: calc(var(--nav-h) + 100px) 40px 80px;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 500px at 50% 30%, rgba(225,29,46,0.12), transparent 60%),
    radial-gradient(ellipse 600px 400px at 50% 70%, rgba(59,130,246,0.08), transparent 60%);
  pointer-events: none;
}
.pricing-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.pricing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin: 24px 0 28px;
}
.pricing-hero h1 .accent-red { color: var(--red); }
.pricing-hero h1 .accent-blue { color: var(--blue); }
.pricing-hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--gray-300);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 500;
}
.pricing-hero .eyebrow {
  justify-content: center;
}

/* Glance strip */
.pricing-glance {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 40px;
}
.pricing-glance-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 700px) {
  .pricing-glance-inner { grid-template-columns: 1fr; gap: 30px; }
}
.glance {
  text-align: center;
  padding: 0 20px;
}
.glance-num {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 8px;
}
.glance-num .accent-red { color: var(--red); }
.glance-num .accent-blue { color: var(--blue); }
.glance-label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-300);
}

/* Pricing card grid */
.pricing-cards-section {
  background: var(--black);
  padding: 120px 40px;
}
.pricing-cards-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.pricing-cards-head .eyebrow { justify-content: center; }
.pricing-cards-head .section-sub { margin: 24px auto 0; }

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.pricing-grid .price-card {
  flex: 0 1 calc((100% - 48px) / 3);
  min-width: 280px;
  max-width: 440px;
}
@media (max-width: 1100px) {
  .pricing-grid .price-card { flex: 0 1 calc(50% - 12px); max-width: 500px; }
}
@media (max-width: 700px) {
  .pricing-grid .price-card { flex: 0 1 100%; max-width: 100%; }
  .pricing-cards-section { padding: 80px 20px; }
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.price-card:hover {
  background: var(--card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.price-card:hover::before { transform: scaleX(1); }
.price-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--card-hover) 0%, var(--card) 100%);
}
.price-card.featured::before {
  transform: scaleX(1);
}
.price-card.featured .price-badge {
  display: inline-flex;
}

.price-badge {
  display: none;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  border-radius: 999px;
}

.price-card-name {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card-tagline {
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 28px;
  line-height: 1.5;
  min-height: 42px;
}

.price-block {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.price-block + .price-block {
  margin-top: -28px;  /* collapse the doubled border */
  border-top: 0;
  padding-top: 4px;
}
.price-block-label {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 8px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-amount .num {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
}
.price-amount .currency {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  margin-right: -2px;
}
.price-amount .unit {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-amount .num.accent-red { color: var(--red); }
.price-amount .num.accent-blue { color: var(--blue); }

.price-min {
  font-size: 12px;
  color: var(--gray-300);
  font-weight: 500;
}
.price-min .icon {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 6px 2px 0;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.45;
}
.price-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.price-cta {
  width: 100%;
  justify-content: center;
}

/* "Always included" feature grid */
.included {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 40px;
}
.included-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.included-head .eyebrow { justify-content: center; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .included-grid { grid-template-columns: 1fr; } }

.included-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: all 0.25s;
}
.included-item:hover {
  background: var(--card-hover);
  border-color: var(--red);
}
.included-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

/* Custom Quote callout */
.custom-quote {
  background: var(--black);
  padding: 120px 40px;
}
.custom-quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--card-hover) 0%, var(--card) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.custom-quote-inner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(225,29,46,0.18), transparent 60%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .custom-quote { padding: 80px 20px; }
  .custom-quote-inner { padding: 50px 32px; grid-template-columns: 1fr; gap: 32px; }
}

.custom-quote-content { position: relative; z-index: 1; }
.custom-quote h2 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 18px;
}
.custom-quote p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 480px;
}
.custom-quote-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cqs-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cqs-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.cqs-item-icon svg { width: 20px; height: 20px; }
.cqs-item-text {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

/* FAQ */
.faq {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 120px 40px;
}
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 60px;
}
.faq-head .eyebrow { justify-content: center; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--red);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--red);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--red); }
.faq-answer {
  padding: 0 28px 24px;
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   PLATFORM ACCESS (Team & Player roles)
   ============================================ */
.platform-access {
  background: var(--black);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.platform-access::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(225,29,46,0.06), transparent 60%);
  pointer-events: none;
}
.platform-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.platform-head .eyebrow { justify-content: center; }
.platform-head .section-sub { margin: 24px auto 0; }

.access-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .access-grid { grid-template-columns: 1fr; }
  .platform-access { padding: 80px 20px; }
}

.access-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px 36px;
  overflow: hidden;
  transition: all 0.3s;
}
.access-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.access-card.team-access::before { background: var(--red); }
.access-card.player-access::before { background: var(--blue); }
.access-card:hover {
  background: var(--card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.access-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.access-icon svg { width: 26px; height: 26px; }
.access-card.team-access .access-icon { color: var(--red); }
.access-card.player-access .access-icon { color: var(--blue); }

.access-card-name {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.access-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-300);
  margin-bottom: 28px;
}

.access-features {
  list-style: none;
}
.access-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-100);
  border-bottom: 1px solid var(--border);
}
.access-features li:last-child { border-bottom: 0; padding-bottom: 0; }
.access-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.access-card.team-access .access-features li::before { background-color: var(--red); }
.access-card.player-access .access-features li::before { background-color: var(--blue); }

.access-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  padding: 24px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.access-foot svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
}
.access-foot p {
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.5;
  margin: 0;
}
.access-foot strong {
  color: var(--white);
  font-weight: 700;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

/* Services Hero - same pattern as pricing hero */
.services-hero {
  position: relative;
  padding: calc(var(--nav-h) + 100px) 40px 80px;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}
.services-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% 30%, rgba(59,130,246,0.12), transparent 60%),
    radial-gradient(ellipse 600px 400px at 30% 80%, rgba(225,29,46,0.10), transparent 60%);
  pointer-events: none;
}
.services-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.services-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.services-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin: 24px 0 28px;
}
.services-hero h1 .accent-red { color: var(--red); }
.services-hero h1 .accent-blue { color: var(--blue); }
.services-hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--gray-300);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 500;
}
.services-hero .eyebrow { justify-content: center; }

/* What We Do — overview grid */
.services-overview {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 40px;
}
@media (max-width: 700px) {
  .services-overview { padding: 80px 20px; }
}
.services-overview-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.services-overview-head .eyebrow { justify-content: center; }
.services-overview-head .section-sub { margin: 24px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top left, rgba(225,29,46,0.15), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  background: var(--card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--red);
}
.service-card:nth-child(even) .service-icon { color: var(--blue); }
.service-icon svg { width: 26px; height: 26px; }

.service-name {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-300);
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-link {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 12px; height: 12px; }

/* What We Measure — 4 pillars */
.pillars {
  background: var(--black);
  padding: 120px 40px;
}
@media (max-width: 700px) {
  .pillars { padding: 80px 20px; }
}
.pillars-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.pillars-head .eyebrow { justify-content: center; }
.pillars-head .section-sub { margin: 24px auto 0; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillar-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.pillar:hover {
  background: var(--card-hover);
  border-color: var(--red);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
}
.pillar:nth-child(2) .pillar-icon { color: var(--blue); }
.pillar:nth-child(3) .pillar-icon { color: var(--red); }
.pillar:nth-child(4) .pillar-icon { color: var(--blue); }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-name {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-300);
}

/* Deep Dive sections — alternating layouts */
.deep-dives {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
@media (max-width: 700px) {
  .deep-dives { padding: 60px 20px; }
}
.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.deep-dive:last-child { border-bottom: 0; }
.deep-dive.flipped .deep-dive-content { order: 2; }
.deep-dive.flipped .deep-dive-visual { order: 1; }
@media (max-width: 900px) {
  .deep-dive { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .deep-dive.flipped .deep-dive-content { order: 1; }
  .deep-dive.flipped .deep-dive-visual { order: 2; }
}

.deep-dive-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.deep-dive-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--red);
}
.deep-dive h3 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 20px;
}
.deep-dive h3 .accent-red { color: var(--red); }
.deep-dive p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.55;
  margin-bottom: 24px;
}
.deep-dive-features {
  list-style: none;
  margin-bottom: 28px;
}
.deep-dive-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-100);
  line-height: 1.5;
}
.deep-dive-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.deep-dive-visual {
  position: relative;
}
.deep-dive-mockup {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  aspect-ratio: 5 / 4;
  position: relative;
}

/* Comparison Table */
.comparison {
  background: var(--black);
  padding: 120px 40px;
}
@media (max-width: 700px) {
  .comparison { padding: 80px 20px; }
}
.comparison-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.comparison-head .eyebrow { justify-content: center; }
.comparison-head .section-sub { margin: 24px auto 0; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
.compare-col.us {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--card-hover) 0%, var(--card) 100%);
}
.compare-col.us::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: var(--red);
  border-radius: 4px 4px 0 0;
}

.compare-tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.compare-col.them .compare-tag {
  background: var(--dark);
  color: var(--gray-300);
  border: 1px solid var(--border-bright);
}
.compare-col.us .compare-tag {
  background: var(--red);
  color: var(--white);
}
.compare-col h3 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 24px;
}
.compare-col.them h3 { color: var(--gray-300); }
.compare-col.us h3 { color: var(--white); }

.compare-list {
  list-style: none;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.compare-list li:last-child { border-bottom: 0; }
.compare-col.them .compare-list li { color: var(--gray-300); }
.compare-col.us .compare-list li { color: var(--white); }
.compare-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
}
.compare-col.them .compare-list li::before {
  background: var(--dark);
  border: 1px solid var(--border-bright);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.compare-col.us .compare-list li::before {
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Who We Serve */
.audiences {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 40px;
}
@media (max-width: 700px) {
  .audiences { padding: 80px 20px; }
}
.audiences-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.audiences-head .eyebrow { justify-content: center; }
.audiences-head .section-sub { margin: 24px auto 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1100px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .audience-grid { grid-template-columns: 1fr; } }

.audience {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.audience::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(0deg, rgba(225,29,46,0.08), transparent);
  transition: height 0.4s;
  pointer-events: none;
}
.audience:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.audience:hover::after { height: 100%; }

.audience-num {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.audience-name {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.audience-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-300);
  position: relative;
  z-index: 1;
}

/* ============================================
   BOOKING CONFIRMATION MODE
   (Step 2 of the modal — after lead capture submits)
   Microsoft Bookings doesn't allow iframe embedding,
   so Step 2 opens Bookings in a new tab and shows
   a confirmation card with a re-open safety button.
   ============================================ */

/* Modal in booking mode — slightly wider than the form */
.modal.booking-mode {
  max-width: 560px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide form and success states in booking mode */
.modal.booking-mode .modal-form-wrap,
.modal.booking-mode .modal-success {
  display: none;
}

/* The booking-wrap container */
.booking-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Header strip with step indicator */
.booking-header {
  padding: 24px 32px 20px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.booking-steps {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.bstep {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gray-500);
}
.bstep.done { color: var(--gray-300); }
.bstep.current { color: var(--white); }

.bstep-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 11px;
  border: 1px solid var(--border-bright);
  background: var(--darker);
}
.bstep.done .bstep-num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.bstep.done .bstep-num svg { width: 12px; height: 12px; }
.bstep.current .bstep-num {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.bstep-line {
  flex: 0 1 50px;
  height: 1px;
  background: var(--border-bright);
}

/* Confirmation content area */
.booking-confirm {
  padding: 36px 36px 32px;
  text-align: center;
}

.booking-confirm-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(225, 29, 46, 0.08);
  position: relative;
}
.booking-confirm-icon::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,46,0.2), transparent 60%);
  z-index: -1;
}
.booking-confirm-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.booking-confirm h3 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 12px;
  color: var(--white);
}
.booking-title-name {
  color: var(--red);
}

.booking-confirm-sub {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 420px;
}

.booking-launch-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 16px 24px;
}
.booking-launch-btn svg {
  width: 14px;
  height: 14px;
}

/* Highlight pulse if popup was blocked */
.pulse-attention {
  animation: pulseAttention 1.5s ease-in-out infinite;
}
@keyframes pulseAttention {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225,29,46,0.6); }
  50% { box-shadow: 0 0 0 14px rgba(225,29,46,0); }
}

.booking-tip {
  font-size: 12px;
  color: var(--gray-500);
  margin: 20px 0 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-tip svg {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
  flex-shrink: 0;
}
.booking-tip strong {
  color: var(--white);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 700px) {
  .modal.booking-mode {
    max-width: 100%;
  }
  .booking-header { padding: 20px 20px 16px; }
  .booking-confirm { padding: 32px 24px 28px; }
  .booking-confirm h3 { font-size: 24px; }
}

/* ============================================
   CONTACT BAND
   Thin "talk to sales" strip above footer
   ============================================ */
.contact-band {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}
.contact-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-band-text {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.contact-band-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-band-icon svg { width: 20px; height: 20px; }
.contact-band-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-band-eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.contact-band-title {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--white);
}
.contact-band-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: var(--white);
  transition: all 0.25s;
  white-space: nowrap;
}
.contact-band-email:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}
.contact-band-email svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  transition: color 0.25s;
}
.contact-band-email:hover svg { color: var(--white); }

@media (max-width: 700px) {
  .contact-band { padding: 28px 20px; }
  .contact-band-inner { gap: 20px; }
  .contact-band-title { font-size: 17px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero — same pattern as pricing/services */
.contact-hero {
  position: relative;
  padding: calc(var(--nav-h) + 100px) 40px 80px;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 30%, rgba(225,29,46,0.12), transparent 60%),
    radial-gradient(ellipse 600px 400px at 70% 80%, rgba(59,130,246,0.10), transparent 60%);
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.contact-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin: 24px 0 28px;
}
.contact-hero h1 .accent-red { color: var(--red); }
.contact-hero h1 .accent-blue { color: var(--blue); }
.contact-hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--gray-300);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 500;
}
.contact-hero .eyebrow { justify-content: center; }

/* Main contact section — split layout */
.contact-main {
  background: var(--black);
  padding: 100px 40px 120px;
}
@media (max-width: 700px) {
  .contact-main { padding: 60px 20px 80px; }
}

.contact-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
}

/* Left side — info column */
.contact-info {
  position: sticky;
  top: 110px;
}
@media (max-width: 900px) {
  .contact-info { position: static; }
}

.contact-info-title {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 20px;
}
.contact-info-title .accent-red { color: var(--red); }

.contact-info-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-300);
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
}
.contact-method:hover {
  background: var(--card-hover);
  border-color: var(--red);
  transform: translateX(4px);
}
.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--dark);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-method:nth-child(2) .contact-method-icon { color: var(--blue); }
.contact-method-icon svg { width: 18px; height: 18px; }

.contact-method-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-method-label {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 3px;
}
.contact-method-value {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--white);
  word-break: break-word;
}

/* Right side — form column */
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 42px 40px;
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
@media (max-width: 700px) {
  .contact-form-card { padding: 32px 24px; }
}

.contact-form-title {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 10px;
}
.contact-form-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-300);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) {
  .contact-form .field-row { grid-template-columns: 1fr; }
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--darker);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  transition: all 0.2s;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A1A1A1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
  font-family: var(--body);
  line-height: 1.5;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-500);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--dark);
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: var(--red);
  background: rgba(225, 29, 46, 0.06);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 16px 24px;
  font-size: 15px;
  position: relative;
}

.contact-foot {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.5;
  text-align: center;
  margin-top: 6px;
}

/* Form success/error states */
.contact-form-card.success .contact-form,
.contact-form-card.success .contact-form-title,
.contact-form-card.success .contact-form-sub {
  display: none;
}
.contact-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.contact-form-card.success .contact-success {
  display: block;
}
.contact-success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(225, 29, 46, 0.08);
}
.contact-success-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}
.contact-success h3 {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 12px;
}
.contact-success p {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.55;
  max-width: 380px;
  margin: 0 auto;
}

/* Spinner inside contact button when submitting */
.contact-submit .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 8px;
}
.contact-submit.submitting .spinner { display: inline-block; }
.contact-submit.submitting { pointer-events: none; opacity: 0.85; }

/* ============================================
   ANCHOR HIGHLIGHT
   Brief pulse when a card is the target of a deep link
   ============================================ */
:target.price-card,
:target.service-card,
:target.audience,
:target.pillar {
  animation: targetPulse 1.4s ease-out 0.3s 1;
}
@keyframes targetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 46, 0);
    transform: translateY(0);
  }
  20% {
    box-shadow: 0 0 0 6px rgba(225, 29, 46, 0.5);
    transform: translateY(-2px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 46, 0);
    transform: translateY(0);
  }
}
