/**
 * Athletes Inc. Landing Page — Design System
 * Brand colors and typography from atc-public-site/sample/athletesinc_landing.html
 * Do not introduce new colors; retain same color identity.
 */

:root {
  --black: #0B1214;          /* Color 1 */
  --dark: #191F27;          /* Color 2 */
  --navy: #1A2C55;          /* Color 3 */
  --lime: #AAFF00;          /* Color 4 */
  --white: #FFFFFF;         /* Color 5 */
  --grey: rgba(255,255,255,0.65);
  --card: #0B1214;
  --section-padding: 120px;
  --content-gap: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Gotham Book', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

/* ── PROGRESS ── */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--lime);
  z-index: 5000;
  width: 0;
  transition: width 0.06s linear;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 64px;
  background: linear-gradient(to bottom, rgba(11, 18, 20, 0.97) 0%, transparent 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(170, 255, 0, 0.07);
  transition: background 0.3s;
  overflow: visible;
}

nav.on {
  background: rgba(11, 18, 20, 0.97);
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.logo-mark {
  height: 40px;
  width: auto;
  max-height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--lime);
}


.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  margin-bottom: 4px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(11, 18, 20, 0.98);
  border-bottom: 1px solid rgba(170, 255, 0, 0.12);
  z-index: 3500;
}

.nav-mobile ul {
  list-style: none;
  padding: 12px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile a {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
}

.nav-mobile a:hover {
  color: var(--lime);
}

.nav-mobile.open {
  display: block;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center; 
  }
}
.nav-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-ghost {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 22px;
  border-radius: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-1px);
}

.btn-lime {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 10px 20px;
  border-radius: 1px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--lime);
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}

.btn-lime:hover {
  background: var(--white);
  transform: translateY(-1px);
  border-color: var(--white); 
}

/* ══════════════════════════════
   HERO — Section 1
   "Youth Sports Have Become a Business. Every Athlete Is a Startup."
══════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 64px 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 68% 42%, rgba(26, 44, 85, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(170, 255, 0, 0.05) 0%, transparent 60%),
    linear-gradient(150deg, #0B1214 0%, #0e1e2c 55%, #0B1214 100%);
}

.hero-brush {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fu 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--lime);
}

h1.hero-h {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  line-height:  1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fu 0.9s ease 0.4s forwards;
}

h1.hero-h em {
  font-style: normal;
  color: var(--lime);
}

h1.hero-h .dim {
  color: rgba(255, 255, 255, 0.5);
}

.hero-sub {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fu 0.9s ease 0.6s forwards;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu 0.9s ease 0.8s forwards;
}

.btn-hero {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 1px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hp {
  background: var(--lime);
  color: var(--black);
}

.btn-hp:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(170, 255, 0, 0.25);
}

.btn-hs {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-hs:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-pills {
  position: absolute;
  bottom: 46px;
  left: 64px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu 0.8s ease 1s forwards;
}

.pill {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════
   COST — Section 2
   The real cost of youth sports
══════════════════════════════ */
#cost {
  position: relative;
  background: var(--navy);
  border-top: 3px solid var(--lime);
  overflow: hidden;
}

#cost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 5% 50%, rgba(170, 255, 0, 0.04) 0%, transparent 70%);
}

.cost-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--section-padding) 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cost-stat {
  text-align: center;
  padding: 64px 52px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(170, 255, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.cost-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
}

.cost-num {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 9vw, 8rem);
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cost-per {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 12px 0 28px;
}

.cost-divider {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 28px;
}

.cost-copy {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

.cost-copy strong {
  color: var(--white);
  font-weight: 600;
}

.badge {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 34px;
}

.cost-breakdown {
}

.expense-list {
  list-style: none;
  margin-top: 32px;
}

.expense-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.expense-item.vis {
  opacity: 1;
  transform: translateX(0);
}

.expense-name {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.expense-name::before {
  content: '';
  display: block;
  width: 3px;
  height: 26px;
  background: var(--lime);
  flex-shrink: 0;
}

.etag {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
  background: rgba(170, 255, 0, 0.12);
  color: var(--lime);
  border: 1px solid rgba(170, 255, 0, 0.28);
  max-width: 120px;
  text-align: center;
}

.cost-truth {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(170, 255, 0, 0.08);
  border-left: 3px solid var(--lime);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-weight: 300;
}

.cost-truth strong {
  color: var(--lime);
  font-weight: 600;
}

/* ══════════════════════════════
   CTA BAND A  (after cost)
══════════════════════════════ */
.cta-band {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-band-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-hl {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.cta-hl span {
  color: var(--lime);
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  max-width: 460px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════
   YAOC — Section 3
   "What is a YAOC and why you need one"
══════════════════════════════ */
#yaoc {
  background: linear-gradient(155deg, #0c1a24 0%, #0B1214 100%);
}

.yaoc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--section-padding) 64px;
}

.yaoc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 88px;
}

.yaoc-def {
  background: rgba(26, 44, 85, 0.3);
  border: 1px solid rgba(170, 255, 0, 0.18);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.yaoc-def::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--lime), transparent);
}

.yaoc-acronym {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.yaoc-expand {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.yaoc-def-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.yaoc-def-body strong {
  color: var(--white);
  font-weight: 600;
}

.yaoc-mandate {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime);
  padding-top: 20px;
  border-top: 1px solid rgba(170, 255, 0, 0.2);
}

/* Why without / with */
.without-with {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ww-block {
  padding: 28px 30px;
}

.ww-without {
  background: rgba(180, 30, 30, 0.08);
  border: 1px solid rgba(200, 60, 60, 0.18);
}

.ww-with {
  background: rgba(170, 255, 0, 0.06);
  border: 1px solid rgba(170, 255, 0, 0.2);
}

.ww-label {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lbl-red {
  color: #ff6060;
}

.lbl-green {
  color: var(--lime);
}

.ww-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ww-item {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.ww-item::before {
  content: '→';
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.ww-without .ww-item::before {
  color: #ff6060;
}

.ww-with .ww-item::before {
  color: var(--lime);
}

/* venture mindset row */
.venture-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--content-gap);
  margin-top: 0;
}

.venture-col {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 36px;
}

.venture-col-head {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vch-white {
  color: rgba(255, 255, 255, 0.6);
}

.vch-lime {
  color: var(--lime);
}

.venture-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.venture-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.vi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ══════════════════════════════
   BENEFITS — Section 4
   Tax, tracking, structure
══════════════════════════════ */
#benefits {
  background: var(--dark);
}

.benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--section-padding) 64px;
}

.benefits-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--content-gap);
  margin-top: 64px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.3s, border-color 0.3s;
}

.benefit-card.vis {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  background: rgba(26, 44, 85, 0.4);
  border-color: rgba(170, 255, 0, 0.2);
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.bc-icon {
  font-size: 2.2rem;
  margin-bottom: 22px;
  display: block;
}

.bc-title {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime);
  margin-bottom: 12px;
}

.bc-body {
  font-size: 1.0625rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}

/* tax note */
.tax-note {
  margin-top: 44px;
  padding: 26px 32px;
  background: rgba(170, 255, 0, 0.05);
  border: 1px solid rgba(170, 255, 0, 0.18);
  border-left: 4px solid var(--lime);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tn-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tn-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 300;
}

.tn-text strong {
  color: var(--lime);
  font-weight: 600;
}

/* services list */
.services {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
  margin-top: 56px;
}

.svc {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s;
}

.svc.vis {
  opacity: 1;
  transform: translateY(0);
}

.svc:hover {
  background: rgba(26, 44, 85, 0.35);
  border-color: rgba(170, 255, 0, 0.14);
}

.svc-num {
  width: 76px;
  min-width: 76px;
  height: 76px;
  background: var(--lime);
  color: var(--black);
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-body {
  padding: 24px 32px;
  flex: 1;
}

.svc-name {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}

.svc-desc {
  font-size: 1.0625rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.6;
}

.svc-tag {
  padding: 0 32px;
  flex-shrink: 0;
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(170, 255, 0, 0.55);
}

/* CTA BAND B */
#cta-b.cta-band {
  background: var(--navy);
  border-top: 1px solid rgba(170, 255, 0, 0.15);
  border-bottom: 1px solid rgba(170, 255, 0, 0.15);
}

/* ══════════════════════════════
   MARKETING — Section 5
   Social, NIL, brand
══════════════════════════════ */
#marketing {
  background: var(--black);
}

.marketing-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--section-padding) 64px;
}

.mkt-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--content-gap);
  margin-bottom: 64px;
}

.rev-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s, border-color 0.3s;
}

.rev-card.vis {
  opacity: 1;
  transform: translateY(0);
}

.rev-card:hover {
  background: rgba(26, 44, 85, 0.5);
  border-color: var(--lime);
  transform: translateY(-4px);
}

.rev-card.feat {
  background: var(--lime);
  border-color: var(--lime);
}

.rev-card.feat .rev-label {
  color: var(--black);
}

.rev-icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: block;
}

.rev-label {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
}

/* athlete roles */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--content-gap);
}

.role-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 34px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.3s, border-color 0.3s;
}

.role-card.vis {
  opacity: 1;
  transform: translateY(0);
}

.role-card:hover {
  background: rgba(26, 44, 85, 0.4);
  border-color: rgba(170, 255, 0, 0.2);
}

.role-icon {
  width: 48px;
  height: 48px;
  background: rgba(170, 255, 0, 0.1);
  border: 1px solid rgba(170, 255, 0, 0.2);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.role-title {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}

.role-desc {
  font-size: 1.0625rem;
  color: var(--grey);
  line-height: 1.65;
  font-weight: 300;
}

/* ══════════════════════════════
   MISSION / CTA C
══════════════════════════════ */
#cta-mission {
  position: relative;
  overflow: hidden;
  background: var(--black);
  text-align: center;
}

#cta-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 65% at 50% 50%, rgba(26, 44, 85, 0.5) 0%, transparent 70%);
}

.mission-wrap {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 64px;
  max-width: 900px;
  margin: 0 auto;
}

.mission-kicker {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.mission-kicker::before,
.mission-kicker::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.mission-q {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.mission-q strong {
  font-weight: 900;
  font-style: normal;
  color: var(--lime);
}

.mission-tag {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 54px;
}

.mission-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-xl {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 56px;
  border-radius: 1px;
  transition: all 0.25s;
  display: inline-block;
}

.btn-xl-lime {
  background: var(--lime);
  color: var(--black);
}

.btn-xl-lime:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 46px rgba(170, 255, 0, 0.22);
}

.btn-xl-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-xl-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
#process {
  background: var(--dark);
}

.process-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--section-padding) 64px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--content-gap);
  margin-top: 64px;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 11%;
  right: 11%;
  height: 1px;
  background: linear-gradient(to right, var(--lime), rgba(170, 255, 0, 0.15));
  z-index: 0;
}

.pstep {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pstep.vis {
  opacity: 1;
  transform: translateY(0);
}

.pstep-circle {
  width: 46px;
  height: 46px;
  background: var(--lime);
  color: var(--black);
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.pstep-phase {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.pstep-title {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.pstep-desc {
  font-size: 1.0625rem;
  color: var(--grey);
  line-height: 1.65;
  font-weight: 300;
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
#getstarted {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#getstarted::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(170, 255, 0, 0.06) 0%, transparent 60%);
}

.gs-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--section-padding) 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.gs-steps {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gs-step {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
}

.gs-step:hover {
  background: rgba(170, 255, 0, 0.06);
  border-color: rgba(170, 255, 0, 0.2);
}

.gs-n {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--lime);
  color: var(--black);
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-t {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  word-break: break-word;
}

.gs-box {
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(170, 255, 0, 0.22);
  padding: 60px 46px;
  text-align: center;
}

.gs-ey {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.gs-title {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}

.gs-url {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 36px;
}

.btn-block {
  display: block;
  width: 100%;
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px;
  text-align: center;
  border-radius: 1px;
  transition: all 0.25s;
  margin-bottom: 10px;
}

.bb-lime {
  background: var(--lime);
  color: var(--black);
}

.bb-lime:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.bb-out {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.bb-out:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* ── FOOTER ── */
footer {
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 34px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.flogo {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.ftags {
  display: flex;
  gap: 22px;
  flex-wrap: wrap; 
}

.ftag {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.ftag:hover {
  color: var(--lime);
}

.fdisclaimer {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 300;
  max-width: 400px;
  text-align: right;
  line-height: 1.5;
}

/* ── SHARED ── */
.lbl {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lbl::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.sec-h {
  font-family: 'Gotham Bold', 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.sec-h span {
  color: var(--lime);
}

.sec-p {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.sec-p--no-margin {
  margin-bottom: 0;
}

.sec-p--narrow {
  max-width: 580px;
}

.lbl--mb-sm {
  margin-bottom: 20px;
}

.lbl--mb-md {
  margin-bottom: 24px;
}

.sec-h--mb-md {
  margin-bottom: 36px;
}

.sec-h--mb-lg {
  margin-bottom: 40px;
}

.platform-block {
  margin-top: 64px;
}

.gs-tagline {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.5;
}

.bb-lime--lg {
  font-size: 1.02rem;
  padding: 20px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
  word-break: break-word;
}

.d1 { transition-delay: 0.1s !important; }
.d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; }
.d4 { transition-delay: 0.4s !important; }

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav {
    min-height: 64px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  #hero {
    padding: 120px 24px 100px;
  }

  .hero-pills {
    left: 24px;
  }

  .hero-eyebrow {
    font-size: 0.8125rem;
  }

  h1.hero-h {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero-sub {
    font-size: 1.0625rem;
  }

  .btn-hero {
    min-height: 48px;
    padding: 14px 32px;
    font-size: 0.9375rem;
  }

  .cost-inner,
  .yaoc-intro,
  .mkt-header,
  .gs-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    word-break: break-word;
  }

  .venture-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-card {
    padding: 36px 28px;
  }

  .revenue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .rev-card {
    padding: 28px 20px;
  }

  .roles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .role-card {
    padding: 28px 24px;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .pstep {
    padding: 0 12px;
  }

  .cta-band-in {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .cta-btns {
    flex-wrap: wrap;
  }

  .cta-btns .btn-hero,
  .cta-btns .btn-ghost {
    min-height: 48px;
    flex: 1 1 auto;
  }

  .cost-inner,
  .yaoc-inner,
  .benefits-inner,
  .marketing-inner,
  .process-inner,
  .gs-wrap,
  .mission-wrap {
    padding: 80px 24px;
  }

  .cta-band-in {
    padding: 56px 24px;
  }

  .sec-h {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
  }

  .sec-p {
    font-size: 1.0625rem;
  }

  .gs-box {
    padding: 40px 28px;
  }

  .btn-block {
    min-height: 48px;
    padding: 16px 20px;
  }

  footer {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }
 

  .fdisclaimer {
    text-align: center;
    max-width: 100%;
    font-size: 0.8125rem;
  }
  
}

@media (max-width: 600px) {
  nav {
    min-height: 72px;
    padding: 0 20px;
  }
.logo{
  overflow: hidden;
  width: 60px;
}
.btn-ghost ,
.btn-lime{ 
  padding: 10px 8px;
}
  #hero {
    padding: 100px 20px 80px;
  }

  .hero-pills {
    left: 20px;
    bottom: 32px;
  }

  .pill {
    font-size: 0.6875rem;
    padding: 8px 12px;
  }

  h1.hero-h {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .cost-inner,
  .yaoc-inner,
  .benefits-inner,
  .marketing-inner,
  .process-inner,
  .gs-wrap,
  .mission-wrap {
    padding: 64px 20px;
  }

  .cost-stat {
    padding: 48px 32px;
  }

  .cost-num {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .revenue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rev-label{
    font-size: .75rem;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    left: 24px;
    right: 24px;
  }

  .mission-q {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  .cta-band-in {
    padding: 44px 20px;
  }

  .btn-xl {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 16px 24px;
    text-align: center;
  }
  .ftag {
    font-size: 0.75rem;
  }
  .svc {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
 .svc-body,
 .svc-tag{
  padding-left: 0;
  padding-right: 0;
 }

 .mission-wrap{
  padding-top: 0;
 }
  .mission-btns {
    flex-direction: column;
  }

  .mission-btns a {
    width: 100%;
  }

  footer {
    padding: 28px 20px;
  }

  

}
@media (max-width: 400px) {
 
  #hero {
    padding-bottom: 160px;
  }
}