/* ─── COACHES PAGE: OPEN TO WORK ─── */

:root {
  --bg:        #FFFFFF;
  --bg-alt:    #FFFFFF;
  --surface:   #F4F4F6;
  --ink:       #111113;
  --ink-muted: #62636C;
  --ink-faint: #B0B1B8;
  --accent:    #E91E8C;
  --accent-lt: #FDF0F7;
  --line:      rgba(17,17,19,.07);
  --radius:    8px;
  --font-serif: 'Space Grotesk', system-ui, sans-serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --max:        1100px;
  --pad:        clamp(20px, 5vw, 60px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  background:
    linear-gradient(
      325deg,
      #3a18de 0%,
      #7a28e8 2.5%,
      #b03aec 5%,
      #d350f0 7.5%,
      #e468f2 10%,
      #eb84f4 13%,
      #f09ef6 17%,
      #f4b6f9 21%,
      #f7cdfb 26%,
      #f9e1fc 31%,
      #fbeefe 37%,
      #fdf7fe 43%,
      #fefcff 50%,
      #ffffff 50%
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 16px var(--pad);
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(17,17,19,.06);
  border-radius: 100px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 1px 2px rgba(17,17,19,.04), 0 8px 32px rgba(17,17,19,.06);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.nav-pill:hover {
  box-shadow: 0 1px 2px rgba(17,17,19,.04), 0 12px 40px rgba(17,17,19,.09);
  border-color: rgba(17,17,19,.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-muted);
  padding: 6px 14px;
  border-radius: 100px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: rgba(17,17,19,.05); }
.nav-links a.active { color: var(--accent); font-weight: 500; }
.nav-divider {
  width: 1px; height: 18px;
  background: rgba(17,17,19,.08);
  margin: 0 10px;
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  visibility: hidden;
}
.btn-ghost {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink-muted);
  transition: color .18s, border-color .18s, background .18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover { color: var(--ink); border-color: rgba(17,17,19,.2); background: var(--surface); }
.btn-solid {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  border: none;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-solid:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(17,17,19,.16); }
.btn-solid:active { transform: translateY(0); box-shadow: none; }
.nav-mobile-msgs {
  display: none;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #E91E8C;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity .18s, background .18s;
  text-decoration: none;
}
.nav-mobile-msgs:hover { opacity: .75; background: rgba(233,30,140,.06); }
.nav-mobile-dash {
  display: none;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #E91E8C;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity .18s, background .18s;
  text-decoration: none;
}
.nav-mobile-dash:hover { opacity: .75; background: rgba(233,30,140,.06); }
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
}

/* ─── HERO ─── */
.coaches-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 160px var(--pad) 80px;
}
.coaches-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.coaches-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.coaches-hero-title em {
  font-style: italic;
  color: var(--accent);
}
.coaches-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 480px;
}

/* ─── DIVIDER ─── */
.divider {
  border: none;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}

/* ─── HOW IT WORKS ─── */
.coaches-how {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad);
}
.section-eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 48px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(17,17,19,.08);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ─── COMING SOON / WAITLIST ─── */
.coaches-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 100px;
}
.cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(17,17,19,.04);
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.cta-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form {
  max-width: 460px;
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waitlist-fields {
  display: flex;
  gap: 10px;
}
.waitlist-input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid rgba(17,17,19,.12);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.waitlist-input::placeholder { color: var(--ink-faint); }
.waitlist-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,30,140,.1);
}
.waitlist-btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s;
}
.waitlist-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(233,30,140,.3);
}
.waitlist-btn:active { transform: translateY(0); box-shadow: none; }
.waitlist-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.waitlist-msg {
  font-size: 14px;
  line-height: 1.5;
  min-height: 21px;
  transition: opacity .3s;
}
.waitlist-msg.success { color: #16a34a; }
.waitlist-msg.error { color: #e53935; }
.waitlist-msg.duplicate { color: var(--accent); }
.cta-fine {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 12px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 56px var(--pad) 36px;
  margin-top: 0;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-logo { display: flex; align-items: center; }
.footer-tagline {
  font-size: 13px;
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.7;
  color: var(--ink-muted);
}
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col-title {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col-links a {
  font-size: 13.5px;
  color: var(--ink-muted);
  transition: color .18s;
}
.footer-col-links a:hover { color: var(--ink); }
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.footer-social-link {
  color: #999999;
  display: inline-flex;
  transition: color 0.2s;
}
.footer-social-link:hover { color: #EA0BBD; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.footer-copy { font-size: 12px; color: var(--ink-faint); }
.sport-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--ink-faint);
  background: transparent;
}
.sport-chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-lt);
}
.footer-sports { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-divider { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-msgs { display: flex; }
  .nav-mobile-dash { display: flex; }
  .nav-msgs-desktop { display: none !important; }
  .nav-dash-desktop { display: none !important; }
  .nav-auth { margin-left: auto; margin-right: 6px; }
  .nav-auth .btn-solid { font-size: 11px; padding: 6px 14px; }
  .nav-auth .btn-ghost { font-size: 11px; padding: 6px 12px; }
  .nav-pill.menu-open {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 12px 18px;
  }
  .nav-pill.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 10;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .nav-pill.menu-open .nav-links a {
    padding: 8px 12px;
    font-size: 14px;
  }
  .footer-links { gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .coaches-hero { padding: 130px var(--pad) 60px; }
  .section-title { margin-bottom: 32px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 680px) {
  .cta-card { padding: 40px 24px; }
  .waitlist-fields { flex-direction: column; }
  .waitlist-btn { width: 100%; justify-content: center; }
}

@media (max-width: 500px) {
  .nav-auth { gap: 4px; margin-left: 0; }
  .nav-auth .btn-ghost,
  .nav-auth .btn-solid,
  .nav-auth #nav-mode-badge { display: none !important; }
  .nav-auth .nav-mobile-msgs { display: flex !important; }
  .nav-auth .nav-mobile-dash { display: flex !important; }
  .nav-pill.menu-open .nav-auth {
    display: flex; flex-wrap: wrap; align-items: center;
    width: 100%; order: 11; gap: 0; justify-content: center;
  }
  .nav-pill.menu-open .nav-auth .nav-mobile-msgs,
  .nav-pill.menu-open .nav-auth .nav-mobile-dash { display: flex !important; width: 32px; order: 10; }
  .nav-pill.menu-open .nav-auth .btn-ghost {
    display: flex !important; width: 100%; justify-content: center;
    border-radius: 10px; font-size: 14px; padding: 11px 14px;
    margin: 0; border: none; background: none; color: var(--ink); font-weight: 500; order: 1;
  }
  .nav-pill.menu-open .nav-auth .btn-ghost.nav-msgs-desktop,
  .nav-pill.menu-open .nav-auth .btn-ghost.nav-dash-desktop { display: none !important; }
  .nav-pill.menu-open .nav-auth .btn-solid {
    display: flex !important; width: 100%; justify-content: center;
    border-radius: 10px; font-size: 14px; padding: 11px 14px; order: 2;
  }
  .nav-pill.menu-open .nav-auth #nav-mode-badge {
    display: inline-flex !important; margin: 0 0 0 8px; order: 11; font-size: 11px !important;
  }
  .nav-pill.menu-open .nav-auth::before {
    content: ''; display: block; width: 100%; height: 1px;
    background: var(--line); margin: 8px 0; order: 9;
  }
  .coaches-hero { padding-top: 110px; }
  .coaches-how { padding: 48px var(--pad); }
  .coaches-cta { padding: 48px var(--pad) 60px; }
  .step-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  body {
    background:
      linear-gradient(
        325deg,
        #3a18de 0%,
        #7a28e8 3%,
        #b03aec 6%,
        #d350f0 10%,
        #eb84f4 15%,
        #f4b6f9 22%,
        #f9e1fc 32%,
        #fdf7fe 42%,
        #ffffff 56%
      );
    background-attachment: scroll;
  }
  footer { padding: 32px var(--pad) 20px; }
  .footer-top { gap: 24px; }
  .footer-logo svg { height: 30px; }
  .footer-tagline { font-size: 12px; margin-top: 8px; }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .footer-col-title { font-size: 10px; margin-bottom: 8px; }
  .footer-col-links a { font-size: 12px; line-height: 1.8; }
  .footer-col-links { gap: 4px; }
  .footer-bottom { padding-top: 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-copy { font-size: 11px; }
  .sport-chip { font-size: 11px; padding: 4px 10px; }
}

@media (max-width: 380px) {
  .nav-logo svg { height: 16px; }
  .footer-links { grid-template-columns: 1fr 1fr 1fr; }
}
