:root{
  --bg: #0b0f14;
  --panel: #101723;
  --panel2: #0e1520;
  --text: #e8eef7;
  --muted: #aab7c6;
  --border: rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --accent: #ff3b3b;
  --accent2: #ffb703;

  --radius: 18px;
  --container: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1100px 600px at 70% -20%, rgba(255,59,59,.20), transparent 55%),
    radial-gradient(900px 500px at 10% 10%, rgba(255,183,3,.14), transparent 55%),
    var(--bg);
  line-height: 1.55;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Announcement */
.announce{
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid var(--border);
}

.announce__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.announce__text{
  color: var(--muted);
  font-size: 14px;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11,15,20,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand__logo{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
}

.brand__name{
  font-weight: 750;
  letter-spacing: .2px;
}

.brand__sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: -2px;
}

/* Nav */
.nav{
  display: flex;
  align-items: center;
}

.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.nav__toggleBar{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.nav__menu{
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link{
  text-decoration: none;
  color: var(--muted);
  font-weight: 550;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
}

.nav__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #0b0f14;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 750;
  letter-spacing: .2px;
  box-shadow: 0 10px 26px rgba(255,59,59,.20);
  cursor: pointer;
}

.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn--small{
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* Hero */
.hero{
  padding: 52px 0 26px;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.pill{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.hero h1{
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 14px 0 10px;
}

.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}

.hero__cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero__stats{
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.stat{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-width: 150px;
}

.stat__num{
  font-weight: 900;
  font-size: 18px;
}

.stat__label{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.hero__art{
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* Sections */
.section{
  padding: 44px 0;
}

.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section__head h2{
  margin: 0;
  font-size: 28px;
}

.section__head p{
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cards--2{
  grid-template-columns: repeat(2, 1fr);
}

.cards--3{
  grid-template-columns: repeat(3, 1fr);
}

.card{
  background: rgba(16,23,35,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.card h3{
  margin: 0 0 10px;
}

.card p{
  margin: 0;
  color: var(--muted);
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li{
  margin: 8px 0;
}

.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}

/* Tables */
.tableWrap{
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(16,23,35,.60);
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
}

.table{
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.table th,
.table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
}

.table th{
  font-size: 13px;
  color: var(--muted);
  font-weight: 750;
}

.table td{
  color: var(--text);
  font-weight: 550;
}

/* Coaches */
.person{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.person h3{
  margin-top: 6px;
}

.person .avatar{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}

.person img.avatar--photo{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid rgba(255,183,3,.5);
}

.bioList{
  margin: 6px 0 8px;
  padding-left: 18px;
  color: var(--muted);
}

.bioList li{
  margin-bottom: 4px;
}

/* FAQ */
.faq{
  display: grid;
  gap: 10px;
}

.faq__item{
  border: 1px solid var(--border);
  background: rgba(16,23,35,.72);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.faq__item > summary{
  cursor: pointer;
  font-weight: 750;
  padding: 6px 0;
}

.faq__content{
  color: var(--muted);
  padding: 4px 0 10px;
}

/* Form */
.form{
  border: 1px solid var(--border);
  background: rgba(16,23,35,.72);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.form__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field{
  display: grid;
  gap: 6px;
}

.field span{
  font-size: 13px;
  color: var(--muted);
  font-weight: 650;
}

.field input,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(255,183,3,.55);
  box-shadow: 0 0 0 4px rgba(255,183,3,.10);
}

.field--full{
  grid-column: 1 / -1;
}

.form__actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Dropdown */
.field select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-size: 15px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,\
  <svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'>\
  <path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.field select:focus{
  border-color: rgba(255,183,3,.55);
  box-shadow: 0 0 0 4px rgba(255,183,3,.10);
}

.field select option{
  background: #0b0f14;
  color: white;
}

/* Checkbox */
.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
  color: var(--muted);
}

.check input{
  margin-top: 3px;
  transform: scale(1.1);
}

/* Contact */
.contact{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
}

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

.link{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.25);
}

.link:hover{
  border-bottom-color: rgba(255,183,3,.7);
}

.dot{
  color: var(--muted);
}

.muted{
  color: var(--muted);
}

.small{
  font-size: 13px;
}

/* Footer */
.footer{
  padding: 22px 0 30px;
  border-top: 1px solid var(--border);
  background: rgba(11,15,20,.65);
}

.footer__inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__brand{
  font-weight: 850;
}

/* Records / generic tabs */
.tabs{
  display: flex;
  gap: 10px;
  margin: 8px 0 14px;
  flex-wrap: wrap;
}

.tab{
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 750;
  cursor: pointer;
}

.tab.is-active{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0b0f14;
  border-color: transparent;
}

.tabPanel{
  display: none;
}

.tabPanel.is-active{
  display: block;
}

/* Pricing */
.pricingGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.priceCard{
  position: relative;
}

.priceCard--featured{
  border-color: rgba(255,183,3,.45);
  box-shadow: 0 16px 44px rgba(0,0,0,.25);
}

.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}

.price{
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 12px;
}

.price__amount{
  font-size: 34px;
  font-weight: 950;
}

.price__term{
  color: var(--muted);
  font-weight: 650;
}

#pricing .priceCard{
  max-width: 820px;
  margin: 0 auto;
}

/* Gallery */
.galleryPanel{
  display: none;
}

.galleryPanel.is-active{
  display: block;
}

.gallerySliderWrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.galleryTrack{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  width: 100%;
}

.galleryTrack::-webkit-scrollbar{
  display: none;
}

.galleryTrack .mediaCard{
  min-width: 360px;
  max-width: 360px;
  flex: 0 0 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(16,23,35,.72);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.galleryImage,
.galleryVideo{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #000;
}

.mediaBody{
  padding: 14px;
}

.mediaBody h3{
  margin: 0 0 6px;
}

.galleryArrow{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.galleryArrow:hover{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0b0f14;
}

/* Mobile */
@media (max-width: 900px){
  .hero__grid{
    grid-template-columns: 1fr;
  }

  .cards{
    grid-template-columns: 1fr;
  }

  .cards--2{
    grid-template-columns: 1fr;
  }

  .cards--3{
    grid-template-columns: 1fr;
  }

  .pricingGrid{
    grid-template-columns: 1fr;
  }

  .form__grid{
    grid-template-columns: 1fr;
  }

  .nav__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__menu{
    position: absolute;
    right: 18px;
    top: 64px;
    width: min(320px, calc(100vw - 36px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 8px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(16,23,35,.94);
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open{
    display: flex;
  }

  .galleryTrack .mediaCard{
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
  }

  .galleryImage,
  .galleryVideo{
    height: 190px;
  }

  .galleryArrow{
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}