/* ============================================================
   athlete.css — page-scoped "athletic / dark" theme
   Linked ONLY on athlete-coaching.html. Does not affect the
   institutional (HS / college-admin) pages.
   Accent + near-black are CSS vars so they're easy to tune.
   ============================================================ */

:root {
  --volt: #AEFF2E;          /* single electric accent — spent only on CTA + hairlines */
  --volt-deep: #7ACc00;
  --ink: #06080B;           /* near-black canvas */
  --ink-soft: #0C1013;
}

/* ---------- HERO ---------- */
.athlete-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

/* media layers (all decorative) */
.ah-media { position: absolute; inset: 0; z-index: 0; }

/* blended two-panel hero telling one story: the athlete NOW (left, moody
   volt-lit — the grind) becoming the leader they're MEANT to be (right,
   crisp and clear — the aspiration). The two worlds meet in a volt glow. */
/* split hero: the intense player dominates the left (the grind), the
   young professional speaks on the right (the leader) — athletics that
   becomes leadership. Both crisp B&W, cross-dissolving at the seam. */
.ah-img--athlete {
  position: absolute; inset: 0 38% 0 0;         /* left ~62% — the primary */
  /* -v2 has top/bottom alpha fades baked in so the letterboxed edges
     dissolve into the black on narrow/laptop widths (the fades crop off
     when it fills the panel on wide screens). */
  background-image: url('/assets/img/athlete/hero-face-v2.webp');
  /* photo is a wide 2:1 shot — fit it by WIDTH so the whole player reads
     (cover cropped it into an unrecognizable blown-up blob); the near-black
     canvas fills above/below and blends with the masks. */
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 46%;
  filter: grayscale(1) contrast(1.22) brightness(1.16);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 100%);
}
.ah-img--pro {
  position: absolute; inset: 0 0 0 58%;          /* right ~42% — the leader */
  background-image: url('/assets/img/athlete/hero-lectern2.webp');
  background-size: cover;
  background-position: 50% 42%;
  filter: grayscale(1) contrast(1.18) brightness(1.06);
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 50%, transparent 100%);
          mask-image: linear-gradient(270deg, #000 0%, #000 50%, transparent 100%);
}

/* duotone: one volt/ink tint over both grayscale images unifies
   two unrelated photos into a single brand palette */
.ah-tint {
  position: absolute; inset: 0;
  background: radial-gradient(34% 72% at 57% 46%, rgba(174,255,46,.18), transparent 62%);
  mix-blend-mode: screen;
  opacity: .55;
}
/* legibility + full fade into black on the left where the type sits */
.ah-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 12% 44%, rgba(174,255,46,.08), transparent 50%),
    linear-gradient(90deg, rgba(6,8,11,.55) 0%, rgba(6,8,11,.22) 34%, transparent 64%),
    linear-gradient(0deg, var(--ink) 6%, rgba(6,8,11,.2) 30%, transparent 52%);
}
/* film grain to kill the "flat stock" feel */
.ah-grain {
  position: absolute; inset: 0;
  opacity: .09; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* content */
.ah-content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.ah-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .8rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--volt);
  margin-bottom: 1.1rem;
}
.ah-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  line-height: .92; letter-spacing: -.02em;
  text-wrap: balance;   /* even out the lines, no orphan "BE." */
  color: #fff; margin: 0 0 1.3rem;
  text-shadow: 0 8px 40px rgba(0,0,0,.55);
}
.ah-sub {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,.78);
  font-size: 1.12rem; max-width: 540px; line-height: 1.5;
  margin: 0 0 1.5rem;
}
.ah-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.7rem; color: #fff;
  line-height: 1.15; margin: 0 0 1.8rem;
}
.ah-price span {
  display: block; font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.6);
  margin-top: .35rem; letter-spacing: .01em;
}
.ah-cta {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  font-size: 1rem; color: var(--ink);
  background: var(--volt);
  padding: 1.05rem 2.4rem; border-radius: 6px;
  border: 0; cursor: pointer;
  box-shadow: 0 16px 40px -12px rgba(174,255,46,.5);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.ah-cta:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 22px 54px -14px rgba(174,255,46,.7);
}

@media (max-width: 760px) {
  .athlete-hero { min-height: 88vh; }
  /* mobile: side-by-side is too narrow — lead with the athlete full-bleed
     (kept fully in-frame), hide the professional panel */
  .ah-img--athlete { inset: 0; opacity: .9;
    /* mobile uses a PORTRAIT crop of the same close-up so it fills the tall
       phone screen (the 2:1 landscape left ugly black bars top & bottom) */
    background-image: url('/assets/img/athlete/hero-face-portrait.webp');
    background-size: cover;
    background-position: 50% 42%;
    -webkit-mask-image: linear-gradient(180deg,#000 52%,rgba(0,0,0,.12) 100%);
            mask-image: linear-gradient(180deg,#000 52%,rgba(0,0,0,.12) 100%); }
  .ah-img--pro { display: none; }
  .ah-shade { background:
    radial-gradient(120% 55% at 50% 26%, rgba(174,255,46,.10), transparent 62%),
    linear-gradient(0deg, var(--ink) 30%, rgba(6,8,11,.55) 68%, transparent 100%); }
  /* "What Changes" backdrop: subject sits right-of-center, so on the narrow
     mobile crop shift the focus right to land his face in view */
  .theme-athlete .section-photo { background-position: 62% 42%; }
}

/* ============================================================
   DARK THEME — carries the hero's look down the whole page.
   Scoped under .theme-athlete so it only applies here.
   ============================================================ */
.theme-athlete { background: var(--ink); color: rgba(255,255,255,.82); }

/* accents */
.theme-athlete .eyebrow,
.theme-athlete .eyebrow.on-dark { color: var(--volt); }

/* section backgrounds (alternating near-blacks) */
.theme-athlete .section-alt { background: var(--ink-soft); }
.theme-athlete .journey     { background: var(--ink); }
.theme-athlete .enroll-next { background: var(--ink-soft); }

/* shared heading treatment — uppercase athletic system */
.theme-athlete .section-head h2,
.theme-athlete .journey-copy h2,
.theme-athlete .enroll-next h2,
.theme-athlete .invest h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-weight: 800;
}
.theme-athlete .section-head p { color: rgba(255,255,255,.62); }

/* value cards */
.theme-athlete .value-card { border-left: 4px solid var(--volt); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.theme-athlete .value-card.card-white {
  background: #0E1317; border: 1px solid rgba(255,255,255,.08); border-left: 4px solid var(--volt);
}
.theme-athlete .value-card.card-white h3 { color: #fff; }
.theme-athlete .value-card.card-white p  { color: rgba(255,255,255,.66); }
.theme-athlete .value-card.card-green {
  background: linear-gradient(165deg, rgba(174,255,46,.13), rgba(174,255,46,.02) 60%, transparent);
  border-left: 4px solid var(--volt); color: #fff;
}
.theme-athlete .value-card.card-green h3 { color: #fff; }
.theme-athlete .value-card.card-green p  { color: rgba(255,255,255,.78); }
.theme-athlete .value-card:hover { transform: translateY(-4px); }

/* outcome cards */
.theme-athlete .outcome {
  background: #0E1317; border: 1px solid rgba(255,255,255,.08);
  border-top: 4px solid var(--volt); transition: transform .18s ease;
}
.theme-athlete .outcome:hover { transform: translateY(-4px); }
.theme-athlete .outcome h3 { color: #fff; }
.theme-athlete .outcome p  { color: rgba(255,255,255,.66); }

/* section with a darkened B&W photo backdrop (young leader speaking) —
   the image reads behind the header + cards without hurting legibility */
.theme-athlete .section-photo {
  background-image:
    linear-gradient(rgba(6,8,11,.72), rgba(6,8,11,.86)),
    url('/assets/img/athlete/section-speaking.webp');
  background-size: cover;
  background-position: 50% 42%;
  background-repeat: no-repeat;
}

/* Coach Chris — duotone + edge-fade so the photo dissolves into the
   black instead of sitting in a boxed frame (same idea as the hero) */
.theme-athlete .journey-copy p { color: rgba(255,255,255,.72); }
.theme-athlete .journey-photo { position: relative; }
.theme-athlete .journey-photo img {
  position: relative; z-index: 1;
  border-radius: 0;
  box-shadow: none;
  /* neutral B&W, darkened so he sits in the shadows */
  filter: grayscale(1) brightness(.74) contrast(1.14);
  /* fade ALL edges into the black — soft vignette + extra bottom fade */
  -webkit-mask-image:
    radial-gradient(72% 82% at 50% 43%, #000 40%, rgba(0,0,0,.45) 70%, transparent 92%),
    linear-gradient(180deg, #000 52%, transparent 98%);
  -webkit-mask-composite: source-in;
          mask-image:
    radial-gradient(72% 82% at 50% 43%, #000 40%, rgba(0,0,0,.45) 70%, transparent 92%),
    linear-gradient(180deg, #000 52%, transparent 98%);
          mask-composite: intersect;
}

/* How it works — steps as dark cards */
.theme-athlete .enroll-step { background: #0E1317; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 26px 24px; }
.theme-athlete .enroll-step h3 { color: #fff; }
.theme-athlete .enroll-step p  { color: rgba(255,255,255,.62); }
.theme-athlete .enroll-step .step-n { color: var(--volt); font-weight: 700; }

/* centered CTA at the bottom of a section */
.theme-athlete .section-cta { text-align: center; margin-top: clamp(34px, 5vw, 52px); }

/* ============ Leadership character (foundation) + skills ============ */
.theme-athlete .leadership { background: var(--ink-soft); }

/* small uppercase kicker used above each tier */
.theme-athlete .lead-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--volt);
}

/* the foundation band — wider, tinted, sits under the skills */
.theme-athlete .lead-foundation {
  max-width: 960px; margin: 0 auto 42px; padding: 32px 34px;
  background: linear-gradient(165deg, rgba(174,255,46,.13), rgba(174,255,46,.02) 60%, transparent);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--volt);
  border-radius: var(--radius);
  text-align: center;
}
.theme-athlete .lead-foundation h3 {
  color: #fff; text-transform: uppercase; letter-spacing: -.01em; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem); margin: .4rem 0 .65rem;
}
.theme-athlete .lead-foundation p {
  color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto;
}

/* skills label + title centered above the pillar grid (mirrors the foundation) */
.theme-athlete .lead-label-skills {
  display: block; text-align: center; max-width: 960px; margin: 0 auto 6px;
}
.theme-athlete .skills-title {
  color: #fff; text-transform: uppercase; letter-spacing: -.01em; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center; max-width: 960px; margin: 0 auto 28px;
}

/* the three skill pillars — big volt numeral, distinct from outcome cards */
.theme-athlete .pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 960px; margin: 0 auto; text-align: left;
}
.theme-athlete .pillar {
  background: #0E1317; border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 28px 26px;
  transition: transform .18s ease;
}
.theme-athlete .pillar:hover { transform: translateY(-4px); }
.theme-athlete .pillar-n {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--volt);
  margin-bottom: .5rem;
}
.theme-athlete .pillar h3 {
  color: #fff; text-transform: uppercase; letter-spacing: -.01em;
  font-weight: 800; font-size: 1.35rem; margin-bottom: .5rem;
}
.theme-athlete .pillar p { color: rgba(255,255,255,.66); }

@media (max-width: 720px) {
  .theme-athlete .pillars { grid-template-columns: 1fr; max-width: 480px; }
}

/* Investment band — near-black with a volt price */
.theme-athlete .invest {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(174,255,46,.10), transparent 55%),
    linear-gradient(180deg, var(--ink-soft), var(--ink));
  border-top: 1px solid rgba(174,255,46,.16);
  border-bottom: 1px solid rgba(174,255,46,.16);
}
.theme-athlete .invest-list li { color: rgba(255,255,255,.84); }
.theme-athlete .price-num { color: #fff; }
.theme-athlete .price-founding { color: var(--volt); }
.theme-athlete .invest-donor { color: rgba(255,255,255,.7); }
.theme-athlete .enroll-secure { color: rgba(255,255,255,.55); }

/* volt CTA buttons everywhere (Investment + form submit) */
.theme-athlete .btn-primary {
  background: var(--volt); color: var(--ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
  box-shadow: 0 16px 40px -14px rgba(174,255,46,.5);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.theme-athlete .btn-primary:hover { background: #fff; color: var(--ink); transform: translateY(-3px); box-shadow: 0 22px 54px -14px rgba(174,255,46,.7); }

/* Contact / form */
.theme-athlete .contact { background: var(--ink); }
.theme-athlete .contact::before {
  background-image: linear-gradient(rgba(6,8,11,.82), rgba(6,8,11,.92)), url('/assets/img/bg-2.webp');
  opacity: .5;
}
.theme-athlete .contact-head h2 { color: #fff; border-left-color: var(--volt); }
.theme-athlete .contact-head p  { color: rgba(255,255,255,.62); }
.theme-athlete .lead-form label { color: rgba(255,255,255,.9); }
.theme-athlete .lead-form input {
  background: #0E1317; color: #fff; border: 1.5px solid rgba(255,255,255,.14);
}
.theme-athlete .lead-form input::placeholder { color: rgba(255,255,255,.4); }
.theme-athlete .lead-form input:focus { border-color: var(--volt); outline: none; box-shadow: 0 0 0 3px rgba(174,255,46,.18); }
.theme-athlete .lead-form .req { color: var(--volt); }
.theme-athlete .lead-success h3 { color: #fff; }
.theme-athlete .lead-success p  { color: rgba(255,255,255,.7); }
.theme-athlete .lead-success .check { color: var(--volt); }
