:root{
  --bg:#000000;
  --text:#EEF1FA;
  --muted:#A7B0C6;
  --muted2:#76819A;

  --blue:#3B82F6;
  --blue2:#60A5FA;

  --line: rgba(255,255,255,.08);
  --line2: rgba(255,255,255,.05);

  --surface: rgba(255,255,255,.03);
  --surface2: rgba(255,255,255,.02);

  --radius: 14px;
  --radius2: 18px;

  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --shadow2: 0 12px 34px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Black base with subtle grey gradient for character */
.bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      1200px 900px at 20% 12%,
      rgba(255,255,255,.05),
      transparent 62%
    ),
    radial-gradient(
      900px 700px at 80% 18%,
      rgba(255,255,255,.03),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      #000000 0%,
      #080808 38%,
      #0C0C0C 55%,
      #000000 100%
    );
}



/* Layout */
.wrap{
  max-width: 1240px;
  margin:0 auto;
  padding:0 28px;
}
@media (max-width:720px){
  .wrap{padding:0 18px}
}

/* Progress */
.progress{
  position:fixed; top:0; left:0; right:0;
  height:2px; z-index:80;
  background:transparent;
}
.progress__bar{
  height:2px; width:0%;
  background: rgba(255,255,255,.65);
}

/* Nav */
.nav{
  position:sticky; top:0; z-index:70;
  background: rgba(5,6,10,.58);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line2);
}
.nav.is-scrolled{
  background: rgba(5,6,10,.78);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color:inherit;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}

.brand__mark{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  flex:0 0 auto;

  /* IMPORTANT: removes the square look */
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand__mark img{
  width:34px;
  height:34px;
  display:block;
  object-fit:contain;
}

.brand__name{font-weight:800; letter-spacing:.4px}
.brand__tag{font-size:12px; color:var(--muted2); margin-top:2px}

.nav__links{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:center;
  flex:1;
}
.nav__links a{
  color: var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
}
.nav__links a:hover{color:var(--text)}
@media (max-width:860px){
  .nav__links{display:none}
}

.nav__cta{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
}
.btn:active{transform: translateY(1px)}
.btn--ghost{
  background:transparent;
  border-color: rgba(255,255,255,.10);
}
.btn--primary{
  background: rgba(59,130,246,.18);
  border-color: rgba(59,130,246,.38);
}
.btn--primary:hover{
  background: rgba(59,130,246,.24);
  border-color: rgba(59,130,246,.48);
}
.btn--full{width:100%}

/* Typography */
.kicker{
  color: rgba(255,255,255,.65);
  font-weight:700;
  letter-spacing:.6px;
  font-size:12px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.h1{
  font-size:58px;
  line-height:1.02;
  margin:0 0 14px;
  letter-spacing:-1.2px;
}
.h1__muted{color: rgba(255,255,255,.55)}
@media (max-width:520px){
  .h1{font-size:42px}
}

.h2{
  font-size:30px;
  margin:0 0 10px;
  letter-spacing:-.5px;
}

.lead{
  color: var(--muted);
  font-size:22px;
  line-height:1.7;
  max-width: 62ch;
  margin:0 0 18px;
}
.sublead{
  color: var(--muted);
  line-height:1.6;
  margin:0;
  max-width: 85ch;
}
.fine{
  color: var(--muted2);
  font-size:12px;
  line-height:1.6;
}

/* Sections */
.hero{
  padding:72px 0 34px;
}
.section{
  padding:60px 0;
}
.section__head{
  margin-bottom:18px;
}
.divider{
  height:1px;
  background: rgba(255,255,255,.06);
  width:100%;
}

/* HERO layout */
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:start;
}
@media (max-width:980px){
  .hero__grid{grid-template-columns:1fr}
}
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 18px;
}

.hero__lines{
  margin-top:16px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top:14px;
  display:grid;
  gap:12px;
}
.line{
  display:grid;
  grid-template-columns: 170px 1fr;
  gap:12px;
}
.line__k{
  font-weight:800;
  font-size:13px;
}
.line__v{
  color: var(--muted);
  font-size:13px;
  line-height:1.6;
}
@media (max-width:720px){
  .line{grid-template-columns:1fr}
}

/* Aside */
.aside{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding:18px;
}
.aside__title{font-weight:800; font-size:14px}
.aside__sub{color: var(--muted2); font-size:12px; margin-top:4px}
.aside__cta{margin-top:14px}
.aside__note{
  margin-top:10px;
  color: rgba(255,255,255,.55);
  font-size:12px;
}

/* Mini table */
.miniTable{
  margin-top:12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.05);
  overflow:hidden;
  background: rgba(0,0,0,.10);
}
.miniRow{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:12px;
  padding:12px 14px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.miniRow:first-child{border-top:0}
.miniHead{
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.65);
  text-transform:uppercase;
  letter-spacing:.7px;
  font-size:11px;
  font-weight:800;
}
.miniKey{font-weight:800; font-size:13px}
.miniVal{color: var(--muted); font-size:13px; line-height:1.55}
@media (max-width:520px){
  .miniRow{grid-template-columns:1fr}
}

/* HOW */
.howGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
@media (max-width:980px){
  .howGrid{grid-template-columns:1fr}
}
.howItem{
  padding:0;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top:16px;
}
.howNum{
  color: rgba(255,255,255,.6);
  font-weight:800;
  letter-spacing:.8px;
  font-size:12px;
  margin-bottom:10px;
}
.howTitle{font-weight:800; margin-bottom:8px}
.howText{color: var(--muted); font-size:13px; line-height:1.6}

.note{
  margin-top:18px;
  padding:12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted2);
  font-size:12px;
  line-height:1.6;
}

/* VALUE */
.valueGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
  margin-top:12px;
}
@media (max-width:980px){
  .valueGrid{grid-template-columns:1fr}
}

/* Table */
.table{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.012);
  overflow:hidden;
}
.trow{
  display:grid;
  grid-template-columns: 190px 1fr;
  gap:12px;
  padding:14px 16px;
  border-top: 1px solid rgba(255,255,255,.035);
}
.trow:first-child{border-top:0}
.thead{
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.65);
  text-transform:uppercase;
  letter-spacing:.7px;
  font-size:11px;
  font-weight:800;
}
.tkey{font-weight:800}
.tval{color: var(--muted); font-size:13px; line-height:1.6}
@media (max-width:720px){
  .trow{grid-template-columns:1fr}
}

/* Membership (one controlled card) */
.membership{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(59,130,246,.22);
  box-shadow: var(--shadow2);
  padding:20px;
}
.membership__top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.membership__title{font-weight:800; letter-spacing:.3px}
.membership__price{font-weight:800; font-size:32px}
.membership__price span{font-size:13px; color: var(--muted2); font-weight:700}
.membership__sub{color: var(--muted); font-size:13px; line-height:1.6; margin:12px 0 14px}
.membership__list{
  display:grid;
  gap:10px;
  color: var(--muted);
  font-size:13px;
  padding:14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.membership__cta{margin-top:14px}

/* Forms */
.form{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.015);
  padding:18px;
}
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
@media (max-width:980px){
  .formGrid{grid-template-columns:1fr}
}
.field{display:grid; gap:8px}
label{
  font-size:12px;
  color: var(--muted2);
  font-weight:700;
}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color: rgba(59,130,246,.55);
}
.formActions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:12px;
}
.formMsg{
  color: var(--muted);
  font-size:13px;
}

/* Athlete */
.athleteGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
  margin-top:12px;
}
@media (max-width:980px){
  .athleteGrid{grid-template-columns:1fr}
}

/* FAQ */
.faq{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.012);
  overflow:hidden;
}
.faq__q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px;
  background: transparent;
  border:0;
  color: var(--text);
  cursor:pointer;
  font-weight:800;
  border-top: 1px solid rgba(255,255,255,.04);
}
.faq__q:first-child{border-top:0}
.faq__q:hover{background: rgba(255,255,255,.02)}
.faq__icon{color: rgba(255,255,255,.6)}
.faq__a{
  display:none;
  padding:0 16px 16px 16px;
  color: var(--muted);
  line-height:1.6;
  font-size:13px;
}
.faq__q.is-open + .faq__a{display:block}

/* Footer */
.footer{
  margin-top: 30px;
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.008);
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
@media (max-width:720px){
  .footer__inner{flex-direction:column; align-items:flex-start}
}
.footer__right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer__right a{
  color: rgba(255,255,255,.70);
}
.footer__right a:hover{
  color: rgba(255,255,255,.92);
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{transition:none; opacity:1; transform:none}
}

.footer{
  min-height: 120px !important;
  position: relative !important;
  z-index: 9999 !important;
}
