/* ============================================================
   Pivot Sports — Global Stylesheet
   Design language: Navy + Red
   Display: Insanibc (brand) · Body: Barlow
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Insanibc';
  src: url('../fonts/Insanibc.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --navy:        #0e3fa0;     /* Brand primary blue — brighter, matches app chrome */
  --navy-dark:   #0a2d78;
  --navy-deep:   #061f5c;     /* for darker sections */
  --navy-mid:    #1e4bc0;
  --red:         #e8215a;     /* Brand magenta/pink — CTA */
  --red-hover:   #d01a50;
  --red-soft:    rgba(232,33,90,0.12);
  --red-border:  rgba(232,33,90,0.30);
  --blue-accent: #4a90d9;
  --blue-soft:   rgba(74,144,217,0.12);
  --blue-border: rgba(74,144,217,0.30);
  --w:    rgba(255,255,255,1);
  --w80:  rgba(255,255,255,0.80);
  --w60:  rgba(255,255,255,0.60);
  --w50:  rgba(255,255,255,0.50);
  --w30:  rgba(255,255,255,0.25);
  --w20:  rgba(255,255,255,0.15);
  --w10:  rgba(255,255,255,0.08);

  --fd: 'Manrope', system-ui, sans-serif;          /* headlines */
  --fb: 'Inter', system-ui, sans-serif;             /* body */
  --fbrand: 'Insanibc', 'Manrope', sans-serif;      /* logo only */

  --maxw: 1180px;
}

html, body { background: var(--navy); color: var(--w); }
body {
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16,32,85,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--w20);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; }
.logo-wrap img.logo-img { height: 36px; width: auto; display: block; }
.logo-txt { font-family: var(--fbrand); font-size: 34px; font-weight: 400; letter-spacing: 2px; color: var(--w); line-height: 0.95; text-transform: uppercase; }
.logo-p { color: var(--red); }
.logo-sub { font-size: 9px; letter-spacing: 3px; color: var(--w50); font-weight: 600; font-family: var(--fb); }

/* Real logo asset — replaces text logo */
.logo-img-wrap { display: flex; align-items: center; padding: 6px 12px; background: rgba(255,255,255,0.96); border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.logo-img-wrap img { height: 38px; width: auto; display: block; }

.nav-links { display: flex; gap: 28px; font-size: 16px; color: var(--w80); font-weight: 500; }
.nav-links a { transition: color .15s ease; padding: 6px 0; }
.nav-links a:hover { color: var(--w); }
.nav-links a.active { color: var(--w); }
.nav-links a.mobile-login-link { display: none; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 15px; color: var(--w80); font-weight: 600; padding: 9px 14px; }
.nav-login:hover { color: var(--w); }
.nav-cta {
  background: var(--red); color: var(--w);
  font-size: 12px; font-weight: 700;
  padding: 10px 22px; border-radius: 30px; border: none; cursor: pointer;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: background .15s ease, transform .12s ease;
}
.nav-cta:hover { background: var(--red-hover); }
.nav-cta:active { transform: scale(0.97); }

.nav-toggle {
  display: none;
  background: transparent; border: none; color: var(--w);
  cursor: pointer; padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-inner { padding: 12px 18px; gap: 8px; position: relative; }
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: inline-flex; }
  .logo-img-wrap { padding: 4px 8px; }
  .logo-img-wrap img { height: 32px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; letter-spacing: 0.5px; }

  /* Single unified mobile dropdown — Login is rendered as last item inside .nav-links by JS */
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    border-top: 1px solid var(--w20);
    border-bottom: 1px solid var(--w20);
    padding: 8px 22px 16px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.35);
    font-size: 16px;
    z-index: 99;
    animation: navSlide .18s ease-out;
  }
  @keyframes navSlide { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
  .nav-mobile-open .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--w10);
    color: var(--w);
    font-weight: 500;
  }
  .nav-mobile-open .nav-links a:last-child { border-bottom: none; padding-top: 18px; }
  .nav-mobile-open .nav-links a.mobile-login-link {
    display: block;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .nav-toggle svg { transition: transform .25s ease; }
  .nav-mobile-open .nav-toggle svg { transform: rotate(90deg); }
}
@media (max-width: 480px) {
  .nav-inner { padding: 10px 14px; }
  .logo-img-wrap img { height: 28px; }
}

/* ---------- TRUST BAR ---------- */
.tbar {
  background: var(--w10);
  padding: 10px 28px;
  border-bottom: 1px solid var(--w20);
}
.tbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.tbi { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--w80); white-space: nowrap; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--red); color: var(--w);
  font-size: 13px; font-weight: 700;
  padding: 14px 28px; border-radius: 30px; border: none; cursor: pointer;
  letter-spacing: 0.8px; text-transform: uppercase;
  display: inline-block; text-decoration: none;
  transition: background .15s ease, transform .12s ease;
}
.btn-primary:hover { background: var(--red-hover); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: transparent; color: var(--w);
  font-size: 12px; font-weight: 600;
  padding: 12px 24px; border-radius: 30px;
  border: 1px solid var(--w50);
  display: inline-block; text-decoration: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.6px;
  transition: border-color .15s ease, background .15s ease;
}
.btn-secondary:hover { border-color: var(--w); background: var(--w10); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-micro { font-size: 11px; color: var(--w50); margin-top: 10px; }

/* ---------- SECTIONS ---------- */
.sec { padding: 72px 28px; }
.sec-inner { max-width: var(--maxw); margin: 0 auto; }
.sec-dark { background: var(--navy-dark); border-top: 1px solid var(--w20); border-bottom: 1px solid var(--w20); }
.eye { font-size: 18px; font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.stitle { font-family: var(--fd); font-size: 56px; font-weight: 700; letter-spacing: -1.2px; line-height: 1.05; margin-bottom: 14px; }
.stitle em { color: var(--red); font-style: normal; font-weight: 700; }
.ssub { font-size: 17px; color: var(--w80); max-width: 660px; margin-bottom: 40px; line-height: 1.65; }

@media (max-width: 640px) {
  .sec { padding: 56px 22px; }
  .stitle { font-size: 36px; }
}

/* ---------- SHOWCASE — real phones ---------- */
.showcase {
  background: var(--navy);
  padding: 100px 28px 80px;
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: none;
}
.showcase-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center;
  position: relative;
}
.showcase-copy .eye { color: var(--red); margin-bottom: 20px; }
.showcase-h {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05; color: var(--w);
  margin: 0 0 20px; letter-spacing: -1px;
}
.showcase-h em { color: var(--red); font-style: normal; font-weight: 700; }
.showcase-sub { color: var(--w80); font-size: 18px; line-height: 1.55; margin: 0 0 28px; max-width: 460px; }
.showcase-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.showcase-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--w); font-size: 16px; }
.showcase-list .ck {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: var(--w);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.showcase-badges { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.badges-img { height: 56px; width: auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35)); }

/* Store badges (real, clickable, drawn) */
.store-btn { display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px; border-radius: 12px; background: #000; color: #fff; text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.4); transition: transform 0.15s ease, box-shadow 0.15s ease; min-height: 56px; }
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.55); }
.store-icon { width: 28px; height: 28px; flex-shrink: 0; }
.store-txt { display: flex; flex-direction: column; line-height: 1.05; }
.store-sm { font-size: 10px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.85; }
.store-lg { font-size: 18px; font-weight: 700; letter-spacing: 0.2px; }
.showcase-phones { display: flex; justify-content: center; }
.phones-img { width: 100%; max-width: 560px; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }

/* ============================================================
   Realistic device frames — iPhone & Android
============================================================ */
.dev { position: relative; display: inline-block; }

/* iPhone (15-style with dynamic island) */
.dev-iphone {
  --dev-w: 280px;
  width: var(--dev-w);
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(145deg, #2a2a2c 0%, #1c1c1e 50%, #2a2a2c 100%);
  border-radius: calc(var(--dev-w) * 0.13);
  padding: calc(var(--dev-w) * 0.045);
  box-shadow:
    inset 0 0 0 2px #3a3a3c,
    inset 0 0 0 4px #0a0a0a,
    0 40px 80px rgba(0,0,0,0.5),
    0 18px 30px rgba(0,0,0,0.4),
    0 6px 12px rgba(0,0,0,0.3);
}
.dev-iphone .dev-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--dev-w) * 0.10);
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1.5px #050505;
}
.dev-iphone .dev-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dev-iphone .dev-island {
  position: absolute;
  top: calc(var(--dev-w) * 0.045);
  left: 50%; transform: translateX(-50%);
  width: calc(var(--dev-w) * 0.34);
  height: calc(var(--dev-w) * 0.085);
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px #1c1c1e;
}
/* iPhone side buttons */
.dev-iphone::before, .dev-iphone::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, #2a2a2c, #3a3a3c, #2a2a2c);
  border-radius: 2px;
  z-index: -1;
}
/* Volume buttons (left) */
.dev-iphone::before {
  left: -3px; top: 18%;
  width: 4px; height: 8%;
  box-shadow:
    0 calc(var(--dev-w) * 0.06) 0 #2a2a2c,
    0 calc(var(--dev-w) * 0.16) 0 #2a2a2c;
}
/* Power button (right) */
.dev-iphone::after {
  right: -3px; top: 22%;
  width: 4px; height: 11%;
}

/* Android (Pixel-style with hole-punch) */
.dev-android {
  --dev-w: 280px;
  width: var(--dev-w);
  aspect-ratio: 9 / 19.8;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  border-radius: calc(var(--dev-w) * 0.10);
  padding: calc(var(--dev-w) * 0.025);
  box-shadow:
    inset 0 0 0 1.5px #2a2a2a,
    inset 0 0 0 3px #050505,
    0 40px 80px rgba(0,0,0,0.5),
    0 18px 30px rgba(0,0,0,0.4),
    0 6px 12px rgba(0,0,0,0.3);
}
.dev-android .dev-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--dev-w) * 0.075);
  overflow: hidden;
  background: #000;
}
.dev-android .dev-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dev-android .dev-punch {
  position: absolute;
  top: calc(var(--dev-w) * 0.038);
  left: 50%; transform: translateX(-50%);
  width: calc(var(--dev-w) * 0.045);
  height: calc(var(--dev-w) * 0.045);
  background: #000;
  border-radius: 50%;
  z-index: 3;
  box-shadow: inset 0 0 0 1px #1a1a1a, 0 0 0 1px rgba(255,255,255,0.05);
}
/* Android side buttons (right) */
.dev-android::before {
  content: '';
  position: absolute;
  right: -2px; top: 22%;
  width: 3px; height: 14%;
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a, #1a1a1a);
  border-radius: 2px;
  z-index: -1;
  box-shadow: 0 calc(var(--dev-w) * 0.10) 0 #1a1a1a;
}

/* Showcase row for players page — iPhone + Android side by side */
.dev-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  padding: 40px 20px 20px;
  flex-wrap: wrap;
}
.dev-showcase .dev-iphone { --dev-w: 220px; transform: rotate(-3deg) translateY(0); }
.dev-showcase .dev-android { --dev-w: 220px; transform: rotate(3deg) translateY(0); }
.dev-showcase .dev-label {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--w60);
  text-transform: uppercase;
  white-space: nowrap;
}
.dev-showcase .dev-iphone .dev-label,
.dev-showcase .dev-android .dev-label { transform: translateX(-50%); }
@media (max-width: 720px) {
  .dev-showcase { gap: 24px; padding: 30px 16px 30px; }
  .dev-showcase .dev-iphone { --dev-w: 180px; }
  .dev-showcase .dev-android { --dev-w: 180px; }
}
@media (max-width: 480px) {
  .dev-showcase .dev-android { display: none; }
  .dev-showcase .dev-iphone { --dev-w: 200px; transform: none; }
}

/* Tri-phone showcase */
.tri-phones { display: flex; justify-content: center; align-items: flex-end; gap: 24px; padding: 10px 0; }
.tphone { position: relative; }
.tphone-bezel {
  position: relative;
  /* No box — the screenshots already include the iPhone frame */
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
  overflow: hidden;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45)) drop-shadow(0 12px 22px rgba(0,0,0,0.3));
}
.tphone-island { display: none; }
.tphone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
}
.tphone-center .tphone-bezel { width: 260px; }
.tphone-side .tphone-bezel { width: 210px; }
.tphone-left { transform: rotate(-4deg) translateY(22px); transform-origin: bottom right; }
.tphone-right { transform: rotate(4deg) translateY(22px); transform-origin: bottom left; }
.tphone-center { z-index: 3; }

@media (max-width: 900px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase { padding: 70px 20px 40px; }
  .phones-img { max-width: 100%; }
  .tri-phones { gap: 12px; }
  .tphone-center .tphone-bezel { width: 230px; }
  .tphone-side .tphone-bezel { width: 185px; }
}
@media (max-width: 600px) {
  .tphone-side { display: none; }
  .tphone-center .tphone-bezel { width: 260px; }
}
.hero { padding: 72px 28px 64px; }

/* HERO with background image */
.hero-photo {
  position: relative;
  padding: 120px 28px 80px;
  background-image:
    linear-gradient(100deg, rgba(6,31,92,0.97) 0%, rgba(6,31,92,0.92) 32%, rgba(14,63,160,0.62) 55%, rgba(14,63,160,0.30) 80%, rgba(14,63,160,0.18) 100%),
    url('../img/hero-blend-v2.jpg');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--navy-deep) 100%);
  pointer-events: none;
}
.hero-photo-inner {
  max-width: 680px;
  margin: 0 auto 0 max(28px, calc(50vw - var(--maxw)/2));
  position: relative; z-index: 2;
}
.hero-photo .h-eye { color: var(--red); font-size: 18px; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px; }
.hero-photo .h-eye::before { content: ''; width: 40px; height: 2px; background: var(--red); }
.hero-photo h1 {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(46px, 5.8vw, 80px);
  line-height: 1.04; color: var(--w);
  letter-spacing: -1.5px; margin: 0 0 22px;
}
.hero-photo h1 em {
  font-style: normal; color: var(--red);
  display: inline-block; font-weight: 700;
}
.hero-photo .h-tag {
  font-family: var(--fb); letter-spacing: 4px; font-size: 16px;
  color: var(--w80); text-transform: uppercase; margin-bottom: 22px;
  font-weight: 600;
}
.hero-photo .h-sub {
  font-size: 19px; color: var(--w); line-height: 1.55;
  max-width: 560px; margin: 0 0 34px;
  text-shadow: 0 2px 20px rgba(6,31,92,0.95), 0 0 12px rgba(6,31,92,0.7);
  font-weight: 500;
}
.hero-photo .cta-row { margin-bottom: 18px; }
.hero-photo .cta-micro { color: var(--w60); }

.hero-stats-strip {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--w20);
  background: rgba(6,31,92,0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 0;
}
.hss-item { padding: 0 20px; border-right: 1px solid var(--w10); }
.hss-item:last-child { border-right: none; }
.hss-v { font-family: var(--fd); font-size: 42px; font-weight: 700; color: var(--w); line-height: 1; letter-spacing: -1.5px; margin-bottom: 8px; }
.hss-v em { color: var(--red); font-style: normal; font-weight: 700; }
.hss-l { font-size: 13px; color: var(--w60); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; line-height: 1.3; }
@media (max-width: 900px) {
  .hero-photo { padding: 80px 20px 60px; background-position: center; }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hss-item:nth-child(2) { border-right: none; }
  .hss-item { padding: 12px 16px; }
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.h-eye { font-size: 18px; font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.h-head { font-family: var(--fd); font-size: 64px; font-weight: 700; line-height: 1.04; letter-spacing: -2px; margin-bottom: 14px; }
.h-head em { color: var(--red); font-style: normal; font-weight: 700; }
.h-tag { font-family: var(--fb); font-size: 16px; font-weight: 600; letter-spacing: 3px; color: var(--w60); margin-bottom: 22px; text-transform: uppercase; }
.h-sub { font-size: 16px; line-height: 1.7; color: var(--w80); margin-bottom: 24px; max-width: 460px; }
.h-metric {
  background: var(--w10); border: 1px solid var(--w20); border-radius: 12px;
  padding: 14px 18px; display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.mn { font-family: var(--fbrand); font-size: 42px; font-weight: 400; line-height: 1; letter-spacing: 1px; }
.ml { font-size: 12px; color: var(--w80); line-height: 1.4; max-width: 140px; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .h-head { font-size: 56px; }
}

/* ---------- PHONE MOCKS ---------- */
.phones { display: flex; justify-content: center; align-items: flex-end; gap: 0; }
.phone { background: #0d1b4f; border-radius: 26px; border: 2px solid var(--w20); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.ph-main { width: 230px; z-index: 2; position: relative; }
.ph-side { width: 190px; opacity: 0.78; margin-bottom: -14px; }
.ph-side.left { margin-right: -20px; }
.ph-side.right { margin-left: -20px; }
.ph-bar { background: var(--navy-mid); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
.ph-logo { font-family: var(--fbrand); font-size: 13px; font-weight: 400; letter-spacing: 1.5px; }
.ph-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.ph-body { padding: 12px; }
.ph-title { font-size: 9px; font-weight: 700; color: var(--w50); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; text-align: center; }
.stat2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.sbox { background: var(--w10); border-radius: 8px; padding: 8px 10px; text-align: center; }
.sv { font-family: var(--fbrand); font-size: 26px; font-weight: 400; letter-spacing: 0.5px; }
.sl { font-size: 8px; color: var(--w50); margin-top: 2px; }
.court-row { display: flex; flex-direction: column; gap: 5px; }
.cr { background: var(--w10); border-radius: 6px; padding: 7px 10px; display: flex; justify-content: space-between; align-items: center; }
.cn { font-size: 9px; font-weight: 600; }
.cs { font-size: 8px; font-weight: 700; padding: 3px 7px; border-radius: 10px; }
.cs-open { background: rgba(30,200,120,0.2); color: #50e0a0; }
.cs-full { background: rgba(232,33,90,0.2); color: #f06090; }
.sport-pills { display: flex; gap: 5px; margin-bottom: 10px; flex-wrap: wrap; }
.sp { background: var(--w10); border: 1px solid var(--w20); border-radius: 15px; padding: 4px 8px; font-size: 8px; font-weight: 600; color: var(--w80); }

/* ---------- SPORTS BAR ---------- */
.sbar { background: var(--navy-dark); padding: 18px 28px; display: flex; align-items: center; justify-content: center; gap: 36px; border-bottom: 1px solid var(--w20); flex-wrap: wrap; }
.si { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--w80); }
.sic { width: 34px; height: 34px; border-radius: 50%; background: var(--w10); border: 1px solid var(--w20); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.sbar-note { font-size: 12px; color: var(--w50); padding-left: 20px; border-left: 1px solid var(--w20); }
@media (max-width: 640px) { .sbar-note { display: none; } }

/* ---------- AUDIENCE SPLIT CARDS ---------- */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 780px) { .aud-grid { grid-template-columns: 1fr; } }
.aud {
  background: var(--w10); border: 1px solid var(--w20); border-radius: 16px;
  padding: 32px; transition: border-color .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
}
.aud:hover { border-color: var(--red-border); transform: translateY(-2px); }
.aud-eye { font-size: 16px; font-weight: 700; color: var(--red); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.aud-h { font-family: var(--fd); font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
.aud-sub { font-size: 16px; color: var(--w80); line-height: 1.6; margin-bottom: 20px; }
.aud-list { list-style: none; margin-bottom: 24px; }
.aud-list li { font-size: 13px; color: var(--w80); padding: 8px 0; border-bottom: 1px solid var(--w10); display: flex; gap: 10px; align-items: flex-start; }
.aud-list li:last-child { border-bottom: none; }
.aud-list .ck { color: var(--red); font-weight: 800; flex-shrink: 0; }
.aud-cta { margin-top: auto; }

/* ---------- BEFORE / AFTER ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 780px) { .ba-grid { grid-template-columns: 1fr; } }
.bac { border-radius: 16px; padding: 28px; border: 1px solid var(--w20); }
.bab { background: var(--red-soft); border-color: var(--red-border); }
.baa { background: var(--blue-soft); border-color: var(--blue-border); }
.ba-h { font-family: var(--fd); font-size: 18px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 18px; }
.bab .ba-h { color: #f47090; }
.baa .ba-h { color: #7ab8f0; }
.bri { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 13px; line-height: 1.55; color: var(--w80); }
.bico { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.bab .bico { background: rgba(232,33,90,0.25); color: #f47090; }
.baa .bico { background: rgba(74,144,217,0.25); color: #7ab8f0; }

/* ---------- REVENUE / FEATURE CARDS ---------- */
.rev-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 780px) { .rev-g { grid-template-columns: 1fr; } }
.rc { background: var(--w10); border: 1px solid var(--w20); border-radius: 12px; padding: 22px; display: flex; gap: 14px; }
.ric { width: 44px; height: 44px; border-radius: 12px; background: var(--red-soft); border: 1px solid var(--red-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.rt { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.rd { font-size: 15px; color: var(--w80); line-height: 1.55; }
.roi-b { margin-top: 22px; background: var(--red-soft); border: 1px solid var(--red-border); border-radius: 12px; padding: 16px 20px; font-size: 13px; color: var(--w80); line-height: 1.6; }
.roi-b strong { color: var(--w); font-weight: 700; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-right: 16px; }
.step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 24px; width: 1px; height: 42px; background: var(--w20); }
@media (max-width: 880px) { .step::after { display: none; } }
.snum { font-family: var(--fbrand); font-size: 48px; font-weight: 400; color: var(--red); opacity: 0.6; margin-bottom: 6px; line-height: 1; letter-spacing: 1px; }
.stit { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.sdesc { font-size: 13px; color: var(--w80); line-height: 1.55; }

/* ---------- PRICING ---------- */
.pg { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 780px) { .pg { grid-template-columns: 1fr; } }
.pc { border-radius: 16px; padding: 30px; border: 1px solid var(--w20); background: var(--w10); }
.pc.feat { border: 2px solid var(--red); background: var(--red-soft); }
.pbadge { font-size: 10px; font-weight: 700; color: var(--w); background: var(--red); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px; letter-spacing: 0.8px; text-transform: uppercase; }
.pplan { font-size: 14px; font-weight: 700; color: var(--w50); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.pamount { font-family: var(--fd); font-size: 56px; font-weight: 700; margin-bottom: 2px; line-height: 1; letter-spacing: -2px; }
.pamount span { font-family: var(--fb); font-size: 18px; font-weight: 500; color: var(--w50); letter-spacing: 0; }
.proi { font-size: 12px; color: var(--w80); background: var(--w10); border-radius: 8px; padding: 8px 12px; margin: 14px 0 16px; line-height: 1.5; }
.pfeat { font-size: 13px; color: var(--w80); padding: 7px 0; border-bottom: 1px solid var(--w20); display: flex; align-items: center; gap: 10px; }
.pfeat:last-child { border-bottom: none; }
.pck { color: var(--red); font-weight: 800; font-size: 14px; }
.pcta { margin-top: 20px; display: block; text-align: center; }

/* ---------- PRICING 3-TIER (real subscription data) ---------- */
.pg-3 { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
@media (max-width: 1100px) { .pg-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .pg-3 { grid-template-columns: 1fr; } }
.pname { font-family: var(--fd); font-size: 30px; font-weight: 700; letter-spacing: -0.5px; margin: 0 0 8px; color: var(--w); }
.pyearly { font-size: 13px; color: var(--w60); margin-bottom: 8px; }
.pfee { font-size: 12px; color: var(--red); font-weight: 700; letter-spacing: 0.3px; background: rgba(232,33,90,0.1); border: 1px solid rgba(232,33,90,0.25); border-radius: 8px; padding: 8px 12px; margin-bottom: 18px; line-height: 1.4; }
.ptable {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 4px 14px;
  margin-bottom: 22px;
}
.ptr {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--w70);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ptr:last-child { border-bottom: none; }
.ptv { font-weight: 600; color: var(--w); text-align: right; }
.ptv-mute { color: var(--w50); font-weight: 500; }
.ptv-blue { color: #7ab8f0; }
.ptv-green { color: #6cd49a; }
.pinc { font-size: 13px; font-weight: 700; color: var(--w50); letter-spacing: 1.5px; text-transform: uppercase; margin: 6px 0 12px; }
.psmall { font-size: 11px; color: var(--w50); font-weight: 400; }
.pnote { font-size: 11px; color: var(--w60); background: rgba(255,255,255,0.04); border-radius: 8px; padding: 8px 12px; margin: 14px 0 6px; line-height: 1.5; }
.pcancel { font-size: 12px; color: var(--w50); text-align: center; margin-top: 10px; }
.pdisclaimer { text-align: center; font-size: 12px; color: var(--w50); margin-top: 36px; }

/* ---------- ENTERPRISE BAND ---------- */
.enterprise-band {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(232,33,90,0.10) 0%, rgba(14,63,160,0.20) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.enterprise-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,33,90,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 900px) {
  .enterprise-band { grid-template-columns: 1fr; padding: 32px 28px; gap: 28px; }
}
.eb-left { position: relative; z-index: 1; }
.eb-eye { font-size: 18px; font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.eb-h {
  font-family: var(--fd); font-size: 44px; font-weight: 700;
  letter-spacing: -1px; line-height: 1.05; color: var(--w);
  margin-bottom: 14px;
}
.eb-sub { font-size: 15px; color: var(--w80); line-height: 1.7; margin-bottom: 22px; max-width: 560px; }
.eb-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
@media (max-width: 600px) { .eb-list { grid-template-columns: 1fr; } }
.eb-item { font-size: 13px; color: var(--w80); display: flex; align-items: center; gap: 10px; padding: 4px 0; }
.eb-ck { color: var(--red); font-weight: 800; }
.eb-right {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.eb-price {
  font-family: var(--fd); font-size: 42px; font-weight: 700;
  letter-spacing: -1.5px; color: var(--w); line-height: 1;
  margin-bottom: 6px;
}
.eb-pricelabel { font-size: 12px; color: var(--w60); margin-bottom: 22px; letter-spacing: 0.5px; }
.eb-cta { display: block; text-align: center; margin-bottom: 10px; }
.eb-meta { font-size: 11px; color: var(--w50); }

/* ---------- TESTIMONIALS ---------- */
.sa-bar { background: var(--w); border-radius: 14px; padding: 22px 26px; display: flex; gap: 22px; align-items: center; margin-bottom: 18px; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.sa-logo-wrap { flex-shrink: 0; width: 100px; display: flex; align-items: center; justify-content: center; }
.sa-logo-wrap img { width: 100%; height: auto; display: block; }
.sa-badge { background: var(--red); color: var(--w); font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; letter-spacing: 1px; text-transform: uppercase; }
.sa-txt { font-size: 14px; color: #1a2f6e; line-height: 1.65; font-style: italic; }
.tg { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 780px) { .tg { grid-template-columns: 1fr; } }
.tc { background: var(--w10); border: 1px solid var(--w20); border-radius: 14px; padding: 22px; }
.tres { background: var(--blue-soft); border: 1px solid var(--blue-border); border-radius: 6px; padding: 5px 11px; font-size: 11px; font-weight: 700; color: #7ab8f0; display: inline-block; margin-bottom: 12px; }
.tq { font-size: 13px; line-height: 1.7; color: var(--w80); margin-bottom: 12px; font-style: italic; }
.tn { font-size: 12px; font-weight: 700; }
.tr { font-size: 11px; color: var(--w50); }

/* ---------- FINAL CTA ---------- */
.fcta { background: var(--navy-dark); padding: 72px 28px; text-align: center; border-top: 1px solid var(--w20); }
.fcta h2 { font-family: var(--fd); font-size: 60px; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 14px; line-height: 1.05; }
.fcta h2 em { font-style: normal; font-weight: 700; color: var(--red); }
.fcta p { font-size: 17px; color: var(--w80); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.fcta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fcta-micro { font-size: 11px; color: var(--w50); margin-top: 14px; }
@media (max-width: 640px) { .fcta h2 { font-size: 40px; } }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-dark); padding: 56px 28px 28px; border-top: 1px solid var(--w20); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--fb); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; color: var(--w); }
.footer-col a { display: block; font-size: 13px; color: var(--w60); padding: 5px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--w); }
.footer-about { font-size: 13px; color: var(--w60); line-height: 1.6; margin-top: 12px; max-width: 280px; }
.footer-bottom { border-top: 1px solid var(--w10); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: var(--w50); }
.fsoc { display: flex; gap: 10px; }
.soc { width: 36px; height: 36px; border-radius: 8px; background: var(--w10); border: 1px solid var(--w20); display: inline-flex; align-items: center; justify-content: center; color: var(--w80); transition: background .15s ease, color .15s ease, border-color .15s ease; text-decoration: none; }
.soc svg { width: 16px; height: 16px; display: block; }
.soc:hover { background: var(--red); color: var(--w); border-color: var(--red); }

/* ---------- DASHBOARD PREVIEW (homepage block) ---------- */
.dash-window { background: #f0f2f5; border-radius: 16px; overflow: hidden; border: 2px solid var(--w20); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.dash-topbar { background: #fff; border-bottom: 1px solid #e0e3ea; padding: 12px 18px; display: flex; align-items: center; gap: 14px; }
.dash-logo-sm { display: flex; flex-direction: column; gap: 1px; margin-right: 10px; }
.dash-logo-txt { font-family: var(--fbrand); font-size: 18px; font-weight: 400; letter-spacing: 1.5px; color: var(--navy); line-height: 1; }
.dash-logo-p { color: var(--red); }
.dash-logo-sub { font-size: 7px; letter-spacing: 2px; color: #888; }
.dash-nav-items { display: flex; gap: 4px; flex: 1; }
.dni { font-size: 11px; color: #666; padding: 5px 12px; border-radius: 6px; cursor: pointer; font-weight: 500; }
.dni.active { background: var(--navy); color: white; }
.dash-badge { background: var(--red); color: white; font-size: 10px; font-weight: 700; padding: 4px 11px; border-radius: 20px; margin-left: auto; letter-spacing: 0.5px; }
.dash-body { display: grid; grid-template-columns: 200px 1fr; min-height: 440px; }
.dash-sidebar { background: #fff; border-right: 1px solid #e0e3ea; padding: 16px 0; }
.ds-section { font-size: 9px; font-weight: 700; color: #aaa; letter-spacing: 1.5px; padding: 10px 16px 5px; text-transform: uppercase; }
.ds-item { display: flex; align-items: center; gap: 9px; padding: 8px 16px; font-size: 12px; color: #555; cursor: pointer; font-weight: 500; }
.ds-item:hover { background: #f5f7fa; color: var(--navy); }
.ds-item.active { background: #f0f2f5; color: var(--navy); font-weight: 600; border-left: 2px solid var(--red); }
.ds-dot { width: 8px; height: 8px; border-radius: 2px; background: #dde; }
.ds-dot.r { background: var(--red); }
.ds-dot.b { background: var(--navy); }
.dash-main { padding: 18px; background: #f4f6fa; overflow: hidden; }
.dash-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi { background: #fff; border-radius: 10px; padding: 14px 16px; border: 1px solid #e8eaf0; }
.kpi-label { font-size: 10px; color: #888; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 5px; }
.kpi-val { font-family: var(--fbrand); font-size: 30px; font-weight: 400; color: var(--navy); line-height: 1; letter-spacing: 0.5px; }
.kpi-change { font-size: 10px; font-weight: 700; margin-top: 5px; }
.kpi-up { color: #1a9e60; }
.charts-grid, .charts-grid2 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.chart-card { background: #fff; border-radius: 10px; padding: 14px; border: 1px solid #e8eaf0; }
.chart-title { font-size: 10px; font-weight: 700; color: #555; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.chart-legend { width: 22px; height: 3px; border-radius: 2px; display: inline-block; }
.cl-blue { background: var(--blue-accent); } .cl-red { background: var(--red); } .cl-lblue { background: #a8d0f0; }
.chart-svg { width: 100%; overflow: visible; }
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.donut-legend { display: flex; gap: 12px; font-size: 9px; color: #666; align-items: center; }
.dl-dot { width: 9px; height: 9px; border-radius: 50%; }

/* Mobile dashboard scroll */
@media (max-width: 780px) {
  .dash-window { overflow-x: auto; }
  .dash-body { grid-template-columns: 160px 1fr; min-width: 700px; }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { padding: 88px 28px 56px; text-align: center; background: linear-gradient(180deg, var(--navy-dark), var(--navy)); border-bottom: 1px solid var(--w20); }
.page-hero-inner { max-width: 820px; margin: 0 auto; }
.page-hero .h-head { font-size: 72px; margin-bottom: 14px; }
.page-hero .h-eye { font-size: 22px; letter-spacing: 4px; margin-bottom: 20px; }
.page-hero .h-sub { margin: 0 auto 24px; max-width: 620px; font-size: 19px; }
@media (max-width: 640px) { .page-hero .h-head { font-size: 44px; } .page-hero .h-eye { font-size: 16px; letter-spacing: 3px; } }

/* ---------- FORMS ---------- */
.form-card { background: var(--w10); border: 1px solid var(--w20); border-radius: 16px; padding: 32px; max-width: 560px; margin: 0 auto; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--w80); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(0,0,0,0.2); border: 1px solid var(--w30); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; color: var(--w); font-family: var(--fb);
  transition: border-color .15s ease;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--w50); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--red); }
.form-row textarea { min-height: 110px; resize: vertical; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--w10); border: 1px solid var(--w20); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; transition: border-color .2s ease; }
.faq details[open] { border-color: var(--red-border); }
.faq summary { font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--red); font-weight: 300; transition: transform .2s ease; }
.faq details[open] summary::after { content: '−'; }
.faq .a { font-size: 16px; color: var(--w80); line-height: 1.65; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--w10); }

/* ---------- UTILS ---------- */
.fbrand { font-family: var(--fbrand) !important; font-weight: 400 !important; letter-spacing: 1px; }
.divider { border: none; border-top: 1px solid var(--w20); margin: 0; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ============================================================
   Testimonials
============================================================ */
.tm-hero {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 36px 40px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.tm-hero::before {
  content: '"';
  position: absolute;
  top: 8px; left: 28px;
  font-family: 'Manrope', serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.tm-hero-logo {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.5 / 1;
}
.tm-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.tm-hero-body {
  position: relative;
  z-index: 2;
}
.tm-hero-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--w);
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.1px;
  text-wrap: pretty;
}
.tm-hero-quote em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}
.tm-hero-attrib {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.tm-hero-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--w);
  letter-spacing: 0.2px;
}
.tm-hero-role {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 760px) {
  .tm-hero { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
  .tm-hero-logo { max-width: 220px; }
  .tm-hero::before { font-size: 80px; top: 4px; left: 18px; }
  .tm-hero-quote { font-size: 16px; }
}

/* Player voices grid (small cards) */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.tm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tm-card-stars {
  display: flex;
  gap: 2px;
  color: #FFB635;
  font-size: 14px;
  letter-spacing: 1px;
}
.tm-card-quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
}
.tm-card-quote::before { content: ''; }
.tm-card-attrib {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tm-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #b51947);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.tm-card-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--w);
}
.tm-card-role {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 920px) { .tm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tm-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   MOBILE OVERFLOW + LAYOUT FIXES (≤640px)
   Goal: kill all horizontal scroll, scale type, tighten spacing
============================================================ */
html {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

/* iOS Safari fix — touch-action prevents horizontal pan */
html, body {
  touch-action: pan-y;
}
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas { max-width: 100%; height: auto; }

/* Containers that commonly overflow on mobile — clip them */
/* NOTE: .nav intentionally NOT in this list — its mobile dropdown is absolutely
   positioned and uses top:100% to escape the nav box. overflow-x:clip on the
   parent breaks this on iOS Safari (clips the dropdown vertically too). */
.tbar, .sec, .hero-photo, .showcase, .fcta, .footer, .page-hero, section {
  max-width: 100vw;
  overflow-x: clip;
}

/* Wide-by-design components — clip strictly so nothing escapes */
.dev-showcase, .phones {
  max-width: 100%;
  overflow: hidden;
}
.dash-window {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 780px) {
  .dash-window { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Tablet (≤880px) — ensure all section padding shrinks */
@media (max-width: 880px) {
  .sec { padding: 56px 20px; }
  .container { padding: 0 20px; }
  .footer { padding: 48px 20px 24px; }
  .fcta { padding: 64px 22px; }
  .sbar { padding: 16px 20px; gap: 22px; }
}

/* Phone (≤640px) — aggressive type + spacing scaling */
@media (max-width: 640px) {
  /* Section padding */
  .sec { padding: 48px 18px; }
  .container { padding: 0 18px; }
  .footer { padding: 40px 18px 22px; }

  /* Section titles */
  .stitle { font-size: 30px; letter-spacing: -0.5px; }
  .ssub { font-size: 14px; margin-bottom: 28px; }

  /* Generic page hero */
  .page-hero { padding: 64px 18px 44px; }
  .page-hero .h-head { font-size: 36px; letter-spacing: -1px; }

  /* Big hero (homepage / venues) */
  .hero-photo {
    padding: 64px 18px 44px;
    min-height: auto;
    background-position: center center;
  }
  .hero-photo-inner {
    margin: 0 auto;
    max-width: 100%;
  }
  .hero-photo h1 {
    font-size: 38px !important;
    letter-spacing: -1px;
    line-height: 1.05;
  }
  .hero-photo .h-eye { font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; }
  .hero-photo .h-eye::before { width: 22px; }
  .hero-photo .h-sub { font-size: 16px; max-width: 100%; margin-bottom: 24px; }
  .hero-photo .h-tag { font-size: 11px; letter-spacing: 2.5px; margin-bottom: 16px; }

  /* Hero stats strip — single column, no border crush */
  .hero-stats-strip {
    grid-template-columns: 1fr 1fr !important;
    margin-top: 36px;
    border-radius: 12px;
  }
  .hss-item { padding: 18px 14px; }
  .hss-v { font-size: 28px; }
  .hss-l { font-size: 10px; letter-spacing: 1px; }
  .hss-item:nth-child(2n) { border-right: none; }
  .hss-item:nth-child(-n+2) { border-bottom: 1px solid var(--w20); }

  /* Standard hero head */
  .h-head { font-size: 38px !important; letter-spacing: -1px; }
  .h-sub { font-size: 15px; }

  /* CTA buttons — full width, stacked */
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .fcta-btns { flex-direction: column; align-items: stretch; }
  .fcta-btns .btn { width: 100%; justify-content: center; }
  .fcta h2 { font-size: 32px; letter-spacing: -0.5px; }
  .fcta p { font-size: 14px; }

  /* Pricing */
  .pamount { font-size: 44px; letter-spacing: -1px; }
  .pc { padding: 24px 22px; }
  .pname { font-size: 22px; }

  /* Showcase / app section */
  .showcase { padding: 56px 18px 36px; }
  .showcase-h { font-size: 38px; letter-spacing: -1px; }
  .showcase-sub { font-size: 16px; }
  .showcase-badges { gap: 10px; }
  .store-btn { padding: 8px 14px; gap: 8px; }
  .store-lg { font-size: 15px; }
  .store-sm { font-size: 9px; }

  /* Audience cards */
  .aud { padding: 26px 22px; }
  .aud-h { font-size: 24px; }

  /* Before/after */
  .bac { padding: 24px 20px; }

  /* Sports bar */
  .sbar { padding: 14px 16px; gap: 14px 18px; }
  .si { font-size: 12px; gap: 8px; }
  .sic { width: 28px; height: 28px; font-size: 13px; }

  /* Top bar */
  .tbar-inner { gap: 16px 22px; padding: 0 16px; }
  .tbi { font-size: 11px; }

  /* Forms */
  .form-card { padding: 24px 20px; }

  /* Dashboard preview — keep horizontal scroll INSIDE the card */
  .dash-window { max-width: 100%; }

  /* Testimonial hero */
  .tm-hero { padding: 24px 20px; }
  .tm-hero-quote { font-size: 15px; }

  /* Enterprise band */
  .enterprise-band { padding: 28px 22px; }
  .eb-h { font-size: 28px; }

  /* Steps */
  .step { padding-right: 0; }

  /* FAQ */
  .faq summary { font-size: 14px; }
  .faq .a { font-size: 13px; }

  /* Force any potentially-wide elements to wrap */
  h1, h2, h3 { word-wrap: break-word; overflow-wrap: anywhere; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Very narrow phones (≤380px) */
@media (max-width: 380px) {
  .sec { padding: 44px 14px; }
  .container, .page-hero, .hero-photo { padding-left: 14px; padding-right: 14px; }
  .hero-photo h1 { font-size: 34px !important; }
  .h-head { font-size: 34px !important; }
  .stitle { font-size: 26px; }
  .fcta h2 { font-size: 28px; }
  .nav-inner { padding: 10px 12px; }
  .logo-img-wrap { padding: 4px 10px; }
  .logo-img-wrap img { height: 26px; }
  .btn { font-size: 12px; padding: 10px 16px; }
}

/* Glow circles that escape viewport — clip them */
.showcase, .hero-photo, .sec, .fcta { max-width: 100vw; }

/* ============================================================
   Action photo strip — used in Home + Players + Venues
============================================================ */
.action-strip {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.action-strip.reverse {
  grid-template-columns: 1fr minmax(0, 380px);
}
.action-strip-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--w20);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  aspect-ratio: 4 / 3;
  width: 100%;
}
.action-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.action-strip-body .stitle { margin-bottom: 14px; font-size: 36px; }
.action-strip-body .ssub { margin-bottom: 22px; }
@media (max-width: 880px) {
  .action-strip,
  .action-strip.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 560px;
  }
  .action-strip.reverse > :first-child { order: 2; }
  .action-strip-img { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .action-strip-body .stitle { font-size: 28px; }
}

/* Inline photo card */
.photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--w20);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(6,16,46,0.85), transparent);
  font-size: 12px;
  color: var(--w);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}


/* ============================================================
   MOBILE OVERRIDES — defeats inline grid styles on small screens
   Added to fix overflow on iPhone-13 and similar viewports.
============================================================ */
@media (max-width: 780px) {
  /* Force any 2-col / 3-col inline grid to single column */
  .sec-inner > div[style*="grid-template-columns:1fr 1fr"],
  .sec-inner > div[style*="grid-template-columns: 1fr 1fr"],
  section.sec [style*="grid-template-columns:1fr 1fr"],
  section.sec [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  /* But preserve small inline 2-col stat boxes inside founder card */
  .sec-inner div[style*="font-family:var(--fbrand)"] + div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr;gap:14px"],
  div[style*="grid-template-columns: 1fr 1fr; gap: 14px"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  /* Contact form grid — force single column */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* Founder grid (home page) */
  .founder-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* rev-g override (any inline grid-template-columns on .rev-g) */
  .rev-g[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Page hero containers — never let 2-col grids overflow */
  .page-hero [style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* Global overflow + horizontal-scroll guard */
html, body { overflow-x: hidden; max-width: 100vw; }
/* .nav excluded — see note above; clipping breaks the mobile dropdown */
.sec, .hero, .hero-photo, .page-hero, .footer, .showcase, .fcta {
  max-width: 100vw;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; height: auto; }

/* Smaller phones (≤480px) — extra safeguards */
@media (max-width: 480px) {
  /* Founder stat tile font-sizes shrink */
  div[style*="font-family:var(--fbrand);font-size:82px"],
  div[style*="font-family:var(--fbrand);font-size:72px"] {
    font-size: 56px !important;
  }
  /* Long-form prose containers — no horizontal squash */
  .sec-inner p, .sec-inner div { word-wrap: break-word; overflow-wrap: break-word; }
  /* Forms — full width inputs */
  input, textarea, select { max-width: 100%; box-sizing: border-box; }
  /* Reduce side padding */
  .sec-inner { padding: 0 !important; }
}
