:root {
  --bg: #0d0d0d;
  --panel: #171717;
  --text: #f3f1ea;
  --muted: #9d9a91;
  --acid: #d7ff34;
  --red: #e14b32;
  --line: rgba(243, 241, 234, 0.15);
  --container: min(1280px, calc(100% - 40px));
  --sans: "Aptos", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 500 16px/1.45 var(--sans);
  text-transform: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button,
input,
select {
  font: inherit;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 9;
  transform: translateY(-180%);
  background: var(--acid);
  color: #111;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem max(20px, calc((100vw - 1280px) / 2));
  mix-blend-mode: difference;
}
.brand {
  font-weight: 950;
  line-height: 0.86;
}
.site-nav {
  display: flex;
  gap: 1rem;
}
.site-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
}
.site-nav a:hover {
  color: var(--acid);
}
.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.3rem auto;
  background: currentColor;
}
.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) brightness(0.52);
}
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0.9),
    rgba(13, 13, 13, 0.42),
    rgba(13, 13, 13, 0.82)
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 8rem 0 4rem;
}
.hero-copy p,
.join p,
.class-head p {
  color: var(--acid);
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  max-width: 9em;
  font-size: 6.8rem;
  line-height: 0.82;
}
h2 {
  font-size: 4.4rem;
  line-height: 0.86;
}
h3 {
  font-size: 2.2rem;
}
.button {
  display: inline-flex;
  margin-top: 1.4rem;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: #111;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
  background: var(--text);
}
.session {
  position: absolute;
  right: max(20px, calc((100vw - 1280px) / 2));
  bottom: 4rem;
  z-index: 1;
  width: 18rem;
  border-left: 3px solid var(--acid);
  padding: 1rem;
  background: rgba(13, 13, 13, 0.64);
}
.session span {
  color: var(--acid);
  text-transform: uppercase;
}
.session strong {
  display: block;
  margin: 0.4rem 0;
  font-size: 1.6rem;
  line-height: 1;
}
.manifesto,
.classes,
.membership,
.join {
  width: var(--container);
  margin: 0 auto;
  padding: 6.5rem 0;
}
.manifesto {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
}
.manifesto p {
  color: var(--muted);
  font-size: 1.1rem;
}
.classes {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 3rem;
  border-top: 1px solid var(--line);
}
.timetable {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.timetable article {
  display: grid;
  gap: 0.6rem;
  min-height: 12rem;
  padding: 1rem;
  background: var(--panel);
}
.timetable span {
  color: var(--acid);
}
.timetable strong {
  font-size: 1.45rem;
  text-transform: uppercase;
}
.timetable em {
  color: var(--muted);
  font-style: normal;
}
.coaches {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.coach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 36rem;
  background: #111;
}
.coach img {
  width: 100%;
  height: 100%;
}
.coach div {
  display: grid;
  align-content: end;
  padding: 2rem;
}
.coach span {
  color: var(--red);
  text-transform: uppercase;
}
.coach p {
  color: var(--muted);
}
.membership {
  display: grid;
  gap: 3rem;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.plans article {
  padding: 2rem;
  background: var(--panel);
}
.plans .featured {
  background: var(--acid);
  color: #111;
}
.plans span {
  display: block;
  text-transform: uppercase;
}
.plans strong {
  display: block;
  margin: 1rem 0;
  font-size: 2rem;
}
.plans p {
  color: inherit;
}
.join {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  border-top: 1px solid var(--line);
}
.join-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}
input,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #151515;
  color: var(--text);
  padding: 0.9rem;
}
footer {
  padding: 2rem max(20px, calc((100vw - 1280px) / 2))
    max(2rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer a {
  margin-left: 1rem;
  color: var(--text);
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    mix-blend-mode: normal;
    background: #0d0d0d;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    display: none;
    flex-direction: column;
    background: #111;
    border: 1px solid var(--line);
    padding: 1rem;
  }
  .site-nav.is-open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3rem;
  }
  .session {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: var(--container);
    margin: 0 auto 2rem;
  }
  .manifesto,
  .classes,
  .join,
  .coach {
    grid-template-columns: 1fr;
  }
  .timetable,
  .plans {
    grid-template-columns: 1fr;
  }
  .coaches {
    grid-template-columns: 1fr;
  }
  .join-form {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

html,
body {
  max-width: 100%;
  min-height: 100%;
  background: var(--bg);
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(215, 255, 52, 0.06) 1px, transparent 1px) 0 0 /
      7rem 7rem,
    repeating-linear-gradient(
      0deg,
      transparent 0 8px,
      rgba(255, 255, 255, 0.025) 8px 9px
    );
}

.site-header {
  isolation: isolate;
}

.hero > img,
.coach img {
  transform: translate3d(0, var(--parallax, 0), 0) scale(1.018);
  will-change: transform;
}

.coach {
  overflow: hidden;
}

.coach img,
.timetable article,
.plans article {
  transition:
    transform 520ms var(--ease),
    filter 520ms ease,
    background 520ms ease;
}

.coach:hover img {
  filter: contrast(1.1) saturate(0.75);
  transform: translate3d(0, calc(var(--parallax, 0) - 1rem), 0) scale(1.04);
}

.timetable article:hover,
.plans article:hover {
  background: #202020;
  transform: translate3d(0, -0.45rem, 0);
}

.plans .featured:hover {
  background: var(--text);
}

.site-nav {
  max-width: calc(100vw - 40px);
}

.site-nav a {
  position: relative;
}

.site-nav a::before {
  position: absolute;
  left: -0.55rem;
  top: 50%;
  width: 0.32rem;
  height: 0.32rem;
  content: "";
  transform: translate3d(-0.35rem, -50%, 0) scale(0);
  background: var(--acid);
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  transform: translate3d(0, -50%, 0) scale(1);
}

.button {
  box-shadow: 0 0 0 rgba(215, 255, 52, 0);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 1rem 2.8rem rgba(215, 255, 52, 0.16);
}

.reveal {
  clip-path: inset(0 9% 0 0);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease),
    clip-path 720ms var(--ease);
}

.reveal.is-visible {
  clip-path: inset(0);
}

.preview-world .site-header {
  position: sticky;
}

.preview-world,
.preview-world body {
  overscroll-behavior: contain;
  scroll-padding-top: 5.5rem;
}

.preview-world .site-nav {
  contain: paint;
}

.manifesto,
.classes,
.membership,
.join {
  position: relative;
}

.manifesto::before,
.membership::before {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--acid), transparent 42%);
  opacity: 0.28;
}

.session,
.join-form {
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
}

.join-form {
  padding: 1rem;
  border: 1px solid rgba(243, 241, 234, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

input,
select {
  transition:
    border-color 260ms var(--ease),
    background 260ms ease,
    transform 260ms var(--ease);
}

input:focus,
select:focus {
  border-color: rgba(215, 255, 52, 0.72);
  background: #1b1b1b;
  outline: none;
  transform: translate3d(0, -0.14rem, 0);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 340ms var(--ease);
}

.button:hover::after,
.button:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  .site-nav {
    right: 20px;
    width: min(20rem, calc(100vw - 40px));
    max-height: min(24rem, calc(100svh - 5.5rem));
    overflow: auto;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.5);
  }

  .site-nav.is-open {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero > img,
  .coach img,
  .coach:hover img {
    transform: none;
  }

  .reveal {
    clip-path: none;
  }
}
