/* ============================================================
   MY TURN SPORTS — Global Styles
   ============================================================ */

:root {
  --navy:    #080c10;
  --navy-2:  #0d1420;
  --navy-3:  #121b26;
  --red:     #e01a3c;
  --red-dim: #9c1229;
  --gold:    #f0c040;
  --gold-dim:#a88420;
  --white:   #ffffff;
  --grey-1:  #c8d0da;
  --grey-2:  #7a8898;
  --grey-3:  #2a3444;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --container: 1200px;
  --radius:    6px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: #c01535;
  border-color: #c01535;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--grey-3);
}
.btn--ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--wide { width: 100%; max-width: 360px; }

/* ── Section labels / titles ── */
.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 3rem;
}
.highlight { color: var(--red); }
.gold { color: var(--gold); }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(8, 12, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: 2rem;
  max-width: var(--container);
  margin-inline: auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-my   { color: var(--red); }
.logo-turn { color: var(--white); }
.logo-sports {
  color: var(--gold);
  font-size: 0.85em;
  vertical-align: middle;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-1);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav__cta:hover { background: #c01535 !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(8, 12, 16, 0.98);
  padding: 1.25rem 2rem 1.75rem;
  gap: 1rem;
  border-top: 1px solid var(--grey-3);
}
.nav__mobile a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-1);
}
.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__hamburger { display: flex; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 26, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 26, 60, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__accent--left {
  width: 600px; height: 600px;
  top: -100px; left: -200px;
  background: radial-gradient(circle, rgba(224, 26, 60, 0.15) 0%, transparent 70%);
}
.hero__accent--right {
  width: 500px; height: 500px;
  bottom: -80px; right: -100px;
  background: radial-gradient(circle, rgba(240, 192, 64, 0.10) 0%, transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
.hero__col--media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo {
  width: 400px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__col--media { order: 2; }
  .hero__logo { width: 280px; }
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero__sub {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--grey-1);
  font-weight: 300;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-2);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--grey-2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}


/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  padding: 7rem 0;
  background: var(--navy-2);
  position: relative;
}
.pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-3), transparent);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 768px) {
  .pillars__grid { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--navy-3);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.pillar:hover { background: #16202e; }
.pillar--featured {
  background: linear-gradient(160deg, #16202e 0%, #0e1820 100%);
  border-top: 3px solid var(--red);
}
.pillar--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(224, 26, 60, 0.06), transparent 60%);
  pointer-events: none;
}
.pillar__number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.pillar:hover .pillar__number { color: var(--red); }
.pillar--featured .pillar__number { color: var(--red); }
.pillar__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}
.pillar__desc {
  font-size: 0.97rem;
  color: var(--grey-1);
  font-weight: 300;
  line-height: 1.75;
}


/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who {
  padding: 7rem 0;
  position: relative;
  background: var(--navy);
}
.who__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .who__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .who__grid { grid-template-columns: 1fr; }
}
.who__card {
  background: var(--navy-3);
  border: 1px solid var(--grey-3);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.who__card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  background: #121b26;
}
.who__card-icon {
  width: 44px; height: 44px;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.who__card-icon svg { width: 100%; height: 100%; }
.who__card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.who__card p {
  font-size: 0.93rem;
  color: var(--grey-1);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.who__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  display: inline-block;
}


/* ============================================================
   MISSION
   ============================================================ */
.mission {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.mission__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0306 0%, #080c10 50%, #06080f 100%);
}
.mission__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(224, 26, 60, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240, 192, 64, 0.06) 0%, transparent 60%);
}
.mission__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mission__line {
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  margin: 0 auto 2.5rem;
}
.mission__quote {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.mission__attr {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 5rem;
}
.mission__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.mission__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mission__stat-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
}
.mission__stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 500;
}
.mission__divider {
  width: 1px;
  height: 60px;
  background: var(--grey-3);
}
@media (max-width: 560px) {
  .mission__divider { display: none; }
}


/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist {
  padding: 7rem 0;
  background: var(--navy-2);
  position: relative;
}
.waitlist::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-dim), transparent);
}
.waitlist__sub {
  max-width: 580px;
  color: var(--grey-1);
  font-weight: 300;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.waitlist__form {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-1);
}
.form__group input,
.form__group select {
  background: var(--navy-3);
  border: 1px solid var(--grey-3);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form__group input::placeholder { color: var(--grey-2); }
.form__group input:focus,
.form__group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 26, 60, 0.15);
}
.form__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8898' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__group select option { background: var(--navy-3); color: var(--white); }
.form__note {
  font-size: 0.8rem;
  color: var(--grey-2);
  margin-top: 0.5rem;
}
.waitlist__success {
  display: none;
  max-width: 760px;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--navy-3);
  border: 1px solid var(--grey-3);
  border-radius: var(--radius);
}
.waitlist__success.visible { display: block; }
.success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.waitlist__success h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.waitlist__success p {
  color: var(--grey-1);
  font-weight: 300;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--grey-3);
  padding-top: 4rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 4rem;
}
.footer__brand {
  max-width: 280px;
}
.footer__tagline {
  font-size: 0.9rem;
  color: var(--grey-2);
  margin-top: 0.75rem;
  font-weight: 300;
  font-style: italic;
}
.footer__links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 0.25rem;
}
.footer__col a {
  font-size: 0.95rem;
  color: var(--grey-1);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--grey-3);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--grey-2);
  max-width: var(--container);
  margin-inline: auto;
}
