/* ============================================================
   ATHLETES PAGE — athletes.css
   Prefix: ap-
   ============================================================ */

/* ── Reset / page wrapper ── */
.ap-page {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  padding-top: 112px; /* clear fixed header */
}

/* ── Layout util ── */
.ap-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .02em;
  padding: .875rem 1.75rem;
  border-radius: 6px;
  transition: all .3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.ap-btn:focus-visible { outline: 3px solid #CC0000; outline-offset: 3px; }
.ap-btn-red  { background: #CC0000; color: #fff; }
.ap-btn-red:hover  { background: #a30000; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(204,0,0,.35); }
.ap-btn-blk  { background: #000; color: #fff; }
.ap-btn-blk:hover  { background: #1a1a1a; transform: translateY(-1px); }
.ap-btn-ol-dk { background: transparent; color: #000; border: 2px solid #000; }
.ap-btn-ol-dk:hover { background: #000; color: #fff; }
.ap-btn-ol-lt { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.ap-btn-ol-lt:hover { background: #fff; color: #000; }
.ap-btn-lg { font-size: 1rem; padding: 1rem 2rem; }

/* ── Section typography ── */
.ap-sec-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #CC0000;
  margin-bottom: .75rem;
  display: block;
}
.ap-sec-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #000;
}
.ap-sec-lead {
  font-size: 1.0625rem;
  color: #5a5556;
  line-height: 1.85;
  max-width: 600px;
}
.ap-sec-center { text-align: center; }
.ap-sec-center .ap-sec-lead { margin: 0 auto; }

/* ── Reveal animation ── */
.ap-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.ap-reveal.ap-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .ap-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.ap-hero {
  background: #000;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(6rem + 112px) 0 5rem;
}
.ap-hero-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #CC0000 0%, transparent 100%);
}
.ap-hero-slash {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(148deg, rgba(204,0,0,.04) 0%, rgba(204,0,0,.11) 55%, transparent 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.ap-hero-slash::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #CC0000, rgba(204,0,0,.15) 60%, transparent);
}
.ap-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ap-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.ap-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.ap-htw {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #CC0000;
}
.ap-h-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.ap-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-bottom: 1.125rem;
}
.ap-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.35);
  display: block;
  font-size: .66em;
  letter-spacing: -.01em;
  margin-bottom: .25em;
}
.ap-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.62);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 2rem;
}
.ap-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
.ap-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ap-hs-item { text-align: center; }
.ap-hs-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ap-hs-acc { color: #CC0000; }
.ap-hs-l {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}
.ap-hs-div {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.1);
}
@media (max-width: 600px) {
  .ap-hero-stats { gap: 1.25rem; }
  .ap-hs-div { display: none; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ap-ticker {
  background: #CC0000;
  padding: .625rem 0;
  overflow: hidden;
}
.ap-t-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: ap-tick 28s linear infinite;
  width: max-content;
}
.ap-t-track:hover { animation-play-state: paused; }
.ap-t-item {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.ap-t-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
@keyframes ap-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ap-t-track { animation: none; } }

/* ============================================================
   APPROACH
   ============================================================ */
.ap-approach {
  background: #fff;
  padding: 5.5rem 0;
}
.ap-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.ap-approach-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #000;
}
.ap-approach-copy p {
  color: #5a5556;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}
.ap-approach-copy p:last-of-type { margin-bottom: 0; }

.ap-approach-vis {
  background: #000;
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.ap-approach-vis::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  background: #CC0000;
  border-radius: 50%;
  opacity: .06;
}
.ap-av-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ap-av-metric:last-of-type { border-bottom: none; }
.ap-av-label { flex: 1; font-size: .875rem; color: rgba(255,255,255,.6); }
.ap-av-bar-wrap {
  flex: 2;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}
.ap-av-bar {
  height: 100%;
  background: #CC0000;
  border-radius: 999px;
  width: 0;
  transition: width 1.2s ease;
}
.ap-av-pct {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  min-width: 36px;
  text-align: right;
}
.ap-vis-disc {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ap-approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   FOUR PILLARS
   ============================================================ */
.ap-pillars {
  background: #F5F5F5;
  padding: 5.5rem 0;
}
.ap-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ap-pillar-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid #E6E6E6;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.ap-pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #CC0000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.ap-pillar-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.09); }
.ap-pillar-card:hover::after { transform: scaleX(1); }
.ap-pillar-hex { width: 52px; height: 52px; margin-bottom: 1.25rem; }
.ap-pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  margin-bottom: .5rem;
}
.ap-pillar-card p { font-size: .9375rem; color: #5a5556; line-height: 1.75; }
.ap-pillar-list {
  margin-top: .875rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  list-style: none;
  padding: 0;
}
.ap-pillar-list li {
  font-size: .875rem;
  color: #5a5556;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ap-pillar-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #CC0000;
  flex-shrink: 0;
}
@media (max-width: 900px) { .ap-pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .ap-pillars-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GENDER PANEL
   ============================================================ */
.ap-gender {
  background: #000;
  padding: 5.5rem 0;
}
.ap-gender-header { margin-bottom: 3rem; }
.ap-gender-tag-lbl { color: rgba(255,255,255,.45); }
.ap-gender-h2-wht { color: #fff; }

.ap-gender-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.ap-gender-card { padding: 3rem 2.5rem; }
.ap-men   { background: #111; border-right: 1px solid rgba(255,255,255,.06); }
.ap-women { background: #fff; }

.ap-gender-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: block;
}
.ap-men-tag   { color: #CC0000; }
.ap-women-tag { color: #10769E; }

.ap-gender-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .875rem;
}
.ap-men h3   { color: #fff; }
.ap-women h3 { color: #000; }

.ap-gender-card p {
  font-size: .9375rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.ap-men p   { color: rgba(255,255,255,.6); }
.ap-women p { color: #5a5556; }

.ap-gender-feats {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.ap-g-feat {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
}
.ap-men .ap-g-feat   { color: rgba(255,255,255,.75); }
.ap-women .ap-g-feat { color: #1a1a1a; }
.ap-g-feat svg { flex-shrink: 0; }

@media (max-width: 768px) { .ap-gender-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */
.ap-process {
  background: #F5F5F5;
  padding: 5.5rem 0;
}
.ap-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.ap-process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, #CC0000, #a30000);
  z-index: 0;
}
.ap-p-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.ap-p-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #CC0000;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(204,0,0,.35);
}
.ap-p-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #000;
  margin-bottom: .375rem;
}
.ap-p-step p { font-size: .875rem; color: #5a5556; line-height: 1.7; }
@media (max-width: 640px) {
  .ap-process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ap-process-steps::before { display: none; }
}

/* ============================================================
   SPORT TABS
   ============================================================ */
.ap-sport-tabs {
  background: #fff;
  padding: 5.5rem 0;
}
.ap-tab-nav {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #E6E6E6;
  padding-bottom: 0;
}
.ap-tab-btn {
  font-size: .875rem;
  font-weight: 600;
  padding: .625rem 1.25rem;
  border-radius: 6px 6px 0 0;
  color: #5a5556;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  font-family: 'Source Sans 3', sans-serif;
}
.ap-tab-btn:hover { color: #000; }
.ap-tab-btn[aria-selected="true"] {
  color: #CC0000;
  border-bottom-color: #CC0000;
  background: rgba(204,0,0,.07);
}
.ap-tab-panel { display: none; }
.ap-tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ap-tp-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #000;
}
.ap-tp-copy p { color: #5a5556; line-height: 1.85; margin-bottom: 1.25rem; }
.ap-tp-metrics { display: flex; flex-direction: column; gap: .75rem; }
.ap-tp-metric { display: flex; flex-direction: column; gap: .3rem; }
.ap-tp-m-row { display: flex; justify-content: space-between; }
.ap-tp-m-label {
  font-size: .8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ap-tp-m-bar {
  height: 8px;
  background: #E6E6E6;
  border-radius: 999px;
  overflow: hidden;
}
.ap-tp-m-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #a30000, #CC0000);
  width: 0;
  transition: width 1s ease;
}
.ap-tp-m-val {
  font-size: .8rem;
  font-weight: 700;
  color: #CC0000;
  text-align: right;
}
.ap-tp-benefits {
  background: #000;
  border-radius: 16px;
  padding: 2rem;
}
.ap-tp-benefits h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.ap-tp-b-list { display: flex; flex-direction: column; gap: .625rem; }
.ap-tp-b-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.ap-tp-b-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #CC0000;
  flex-shrink: 0;
  margin-top: .45rem;
}
@media (max-width: 768px) { .ap-tab-panel.active { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ap-testimonials {
  background: #E6E6E6;
  padding: 5.5rem 0;
}
.ap-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ap-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.ap-tc-stars { color: #facc15; font-size: 1.1rem; margin-bottom: .875rem; }
.ap-tc-q {
  font-size: .9375rem;
  color: #1a1a1a;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.ap-tc-auth { display: flex; align-items: center; gap: .75rem; }
.ap-tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #CC0000;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ap-tc-name  { font-weight: 700; font-size: .9375rem; color: #000; }
.ap-tc-sub   { font-size: .8125rem; color: #888; }
@media (max-width: 768px) { .ap-testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.ap-faq { background: #fff; padding: 5.5rem 0; }
.ap-faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  list-style: none;
  padding: 0;
}
.ap-faq-item { border-bottom: 1px solid #E6E6E6; }
.ap-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
}
.ap-faq-q:hover { color: #CC0000; }
.ap-faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(204,0,0,.07);
  color: #CC0000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.ap-faq-item.open .ap-faq-icon {
  transform: rotate(45deg);
  background: #CC0000;
  color: #fff;
}
.ap-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.ap-faq-item.open .ap-faq-answer { max-height: 300px; }
.ap-faq-answer p {
  padding: .25rem 0 1.25rem;
  color: #5a5556;
  line-height: 1.85;
  font-size: .9375rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.ap-cta-band {
  background: #000;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.ap-cta-wm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  color: rgba(255,255,255,.03);
  text-align: center;
  letter-spacing: -.04em;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.ap-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ap-cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .875rem;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.ap-cta-band h2 em {
  font-style: italic;
  color: rgba(255,255,255,.4);
}
.ap-cta-band p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.ap-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ap-cta-sub {
  margin-top: 1.5rem !important;
  font-size: .8125rem !important;
  color: rgba(255,255,255,.25) !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.ap-mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: #fff;
  padding: .75rem 1rem;
  box-shadow: 0 -2px 20px rgba(0,0,0,.12);
  gap: .75rem;
}
.ap-mob-cta a { flex: 1; justify-content: center; }
@media (max-width: 768px) {
  .ap-mob-cta { display: flex; }
  .ap-page { padding-bottom: 80px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .ap-hero { padding-top: calc(4rem + 112px); min-height: auto; padding-bottom: 4rem; }
  .ap-hero-ctas { flex-direction: column; gap: 1rem; }
  .ap-hero-ctas .ap-btn { width: 100%; justify-content: center; }
  .ap-approach,
  .ap-pillars,
  .ap-gender,
  .ap-process,
  .ap-sport-tabs,
  .ap-testimonials,
  .ap-faq,
  .ap-cta-band { padding: 4rem 0; }
}
