:root {
  --blue: #005bff;
  --green: #95ff00;
  --black: #050505;
  --soft-black: #141414;
  --light: #0b0b0f;
  --white: #ffffff;
  --purple: #7424dc;
  --text: #f5f5f0;
  --muted: rgba(245, 245, 240, 0.72);
  --surface: #101014;
  --surface-strong: #18181d;
  --line: rgba(255, 255, 255, 0.14);
  --header-height: 116px;
  --button-shape: polygon(13px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 13px);
}

body[data-theme="light"] {
  --soft-black: #181818;
  --light: #f2f2f2;
  --text: #050505;
  --muted: rgba(24, 24, 24, 0.76);
  --surface: #ffffff;
  --surface-strong: #f8f8f8;
  --line: rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--light);
  font-family: "Chakra Petch", Arial, sans-serif;
  overflow-x: hidden;
}

.ufo-flyby {
  position: fixed;
  top: var(--ufo-y, 44vh);
  left: 0;
  z-index: 85;
  width: clamp(128px, 15vw, 230px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate3d(-34vw, 0, 0) rotate(var(--ufo-tilt, -7deg)) scale(var(--ufo-scale, 1));
  will-change: transform;
}

.ufo-flyby::before,
.ufo-flyby::after {
  position: absolute;
  top: 44%;
  right: 54%;
  z-index: -1;
  width: min(54vw, 680px);
  height: 26px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  content: "";
  transform-origin: right center;
}

.ufo-flyby::before {
  background: linear-gradient(90deg, rgba(149, 255, 0, 0), rgba(149, 255, 0, 0.16) 28%, rgba(149, 255, 0, 0.62));
  filter: blur(9px);
}

.ufo-flyby::after {
  height: 5px;
  background: linear-gradient(90deg, rgba(116, 36, 220, 0), rgba(116, 36, 220, 0.38) 34%, rgba(255, 255, 255, 0.72));
  filter: blur(2px);
}

.ufo-flyby img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.34));
}

.ufo-flyby.is-flying {
  animation: ufoFlyby 1800ms cubic-bezier(0.16, 0.84, 0.21, 1) both;
}

.ufo-flyby.is-flying img {
  animation: ufoShipFade 1800ms ease both;
}

.ufo-flyby.is-flying::before {
  animation: ufoTrail 4200ms ease-out both;
}

.ufo-flyby.is-flying::after {
  animation: ufoTrail 3600ms ease-out 120ms both;
}

@keyframes ufoFlyby {
  0% {
    transform: translate3d(-34vw, 0, 0) rotate(var(--ufo-tilt, -7deg)) scale(var(--ufo-scale, 1));
  }

  100% {
    transform: translate3d(118vw, -8vh, 0) rotate(var(--ufo-tilt, -7deg)) scale(var(--ufo-scale, 1));
  }
}

@keyframes ufoShipFade {
  0% {
    opacity: 0;
  }

  14%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ufoTrail {
  0% {
    opacity: 0;
    transform: scaleX(0.28);
  }

  12%,
  34% {
    opacity: 1;
    transform: scaleX(1);
  }

  62% {
    opacity: 0.38;
    transform: scaleX(1.08);
  }

  100% {
    opacity: 0;
    transform: scaleX(1.2);
  }
}

.cursor-moon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  width: 34px;
  height: 34px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 180ms ease;
  will-change: transform;
}

.cursor-moon.is-active {
  opacity: 1;
}

.cursor-moon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #ffffff 0 16%, #d7d3ff 17% 42%, #8a45ff 72%, #7424dc 100%);
  box-shadow:
    0 0 8px rgba(149, 255, 0, 0.52),
    0 0 14px rgba(116, 36, 220, 0.42);
  content: "";
  animation: cursorMoonOrbit 1.45s linear infinite;
}

@keyframes cursorMoonOrbit {
  from {
    transform: rotate(0deg) translateX(13px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(13px) rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .cursor-moon {
    display: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(130px, 210px) 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: var(--header-height);
  padding: 24px clamp(24px, 4vw, 64px) 18px;
  background: rgba(11, 11, 15, 0.88);
  backdrop-filter: blur(14px);
}

body[data-theme="light"] .site-header {
  background: rgba(242, 242, 242, 0.9);
}

.is-scrolled .site-header {
  z-index: 120;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 152px;
  height: 64px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  line-height: 1;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

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

.cta {
  --cta-bg: var(--purple);
  --cta-fg: var(--white);
  --cta-border: var(--cta-bg);
  --cta-border-width: 0px;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  color: var(--cta-fg);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.cta::before,
.cta::after {
  position: absolute;
  clip-path: var(--button-shape);
  content: "";
}

.cta::before {
  z-index: -2;
  inset: 0;
  background: var(--cta-border);
}

.cta::after {
  z-index: -1;
  inset: var(--cta-border-width);
  background: var(--cta-bg);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.cta-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms ease;
}

.cta:hover .cta-icon,
.cta:focus-visible .cta-icon {
  transform: translate(2px, -2px);
}

.cta-header {
  min-width: 164px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  border: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--black);
  background: var(--green);
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .language-switch {
  background: rgba(0, 0, 0, 0.04);
}

.theme-icon {
  font-size: 22px;
}

@media (min-width: 861px) {
  .language-switch {
    position: absolute;
    top: 42px;
    left: clamp(214px, 17vw, 300px);
  }
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid var(--text);
  background: transparent;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 10px);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  padding: 10px clamp(24px, 4vw, 64px) 0;
  overflow: visible;
  background:
    radial-gradient(circle at 78% 14%, rgba(116, 36, 220, 0.24), transparent 32%),
    radial-gradient(circle at 34% 58%, rgba(149, 255, 0, 0.08), transparent 34%),
    var(--light);
}

body[data-theme="light"] .hero {
  background: var(--light);
}

.is-scrolled .hero {
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: min(835px, 59vw);
  align-self: start;
}

.hero h1 {
  margin: -2px 0 24px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(82px, 10.2vw, 196px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.headline-today {
  color: var(--purple);
}

.hero-bottom {
  display: flex;
  align-items: end;
  gap: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-primary {
  --cta-bg: var(--purple);
  min-width: 150px;
}

.cta-secondary {
  --cta-bg: #0b0b0f;
  --cta-fg: var(--text);
  --cta-border: rgba(255, 255, 255, 0.82);
  --cta-border-width: 1px;
  min-width: 150px;
}

body[data-theme="light"] .cta-secondary {
  --cta-bg: #f2f2f2;
  --cta-fg: var(--black);
  --cta-border: var(--black);
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  --cta-bg: var(--green);
  --cta-fg: var(--black);
  --cta-border: var(--green);
}

.value-list {
  display: grid;
  gap: 1px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-character {
  position: absolute;
  z-index: 50;
  top: clamp(-132px, -7.5vw, -92px);
  right: clamp(70px, calc(45vw - 578px), 340px);
  bottom: auto;
  width: min(50vw, 730px);
  isolation: isolate;
  pointer-events: none;
}

.hero-character-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
  transform: translateZ(0);
  will-change: opacity, filter, transform;
}

.hero-character-image-point,
.hero-character-image-alt,
.hero-character-image-flex,
.hero-character-image-open {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-character-image-point,
.hero-character-image-open {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translate3d(-50%, 0, 0);
}

.hero-character::before,
.hero-character::after {
  position: absolute;
  inset: -4% -6%;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.hero-character::before {
  background:
    linear-gradient(100deg, transparent 21%, rgba(255, 255, 255, 0.92) 48%, rgba(149, 255, 0, 0.92) 50%, transparent 74%),
    linear-gradient(180deg, transparent 0 46%, rgba(255, 255, 255, 0.82) 48%, rgba(116, 36, 220, 0.76) 50%, transparent 53% 100%);
  mix-blend-mode: screen;
}

.hero-character::after {
  background: repeating-linear-gradient(
    180deg,
    rgba(149, 255, 0, 0) 0 11px,
    rgba(149, 255, 0, 0.26) 12px,
    rgba(116, 36, 220, 0.22) 13px,
    rgba(149, 255, 0, 0) 16px
  );
  mix-blend-mode: color-dodge;
}

.hero-character.is-swap-ready .hero-character-image-primary {
  animation: heroPrimarySwap 20s cubic-bezier(0.45, 0, 0.2, 1) infinite both;
}

.hero-character.is-swap-ready .hero-character-image-point {
  animation: heroPointSwap 20s cubic-bezier(0.45, 0, 0.2, 1) infinite both;
}

.hero-character.is-swap-ready .hero-character-image-alt {
  animation: heroAltSwap 20s cubic-bezier(0.45, 0, 0.2, 1) infinite both;
}

.hero-character.is-swap-ready .hero-character-image-flex {
  animation: heroFlexSwap 20s cubic-bezier(0.45, 0, 0.2, 1) infinite both;
}

.hero-character.is-swap-ready .hero-character-image-open {
  animation: heroOpenSwap 20s cubic-bezier(0.45, 0, 0.2, 1) infinite both;
}

.hero-character.is-swap-ready::before {
  animation: heroFlash 20s cubic-bezier(0.45, 0, 0.2, 1) infinite both;
}

.hero-character.is-swap-ready::after {
  animation: heroScan 20s cubic-bezier(0.45, 0, 0.2, 1) infinite both;
}

@keyframes heroPrimarySwap {
  0%,
  16%,
  97%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
    transform: translate3d(0, 0, 0) scale(1);
  }

  19%,
  94% {
    opacity: 0;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58)) brightness(1.08) saturate(1.06);
    transform: translate3d(0, 0, 0) scale(1.004);
  }
}

@keyframes heroPointSwap {
  0%,
  16%,
  38%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58)) brightness(1.08) saturate(1.06);
    transform: translate3d(-50%, 0, 0) scale(0.998);
  }

  20%,
  35% {
    opacity: 1;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

@keyframes heroAltSwap {
  0%,
  38%,
  58%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58)) brightness(1.08) saturate(1.06);
    transform: translate3d(0, 0, 0) scale(0.998);
  }

  40%,
  55% {
    opacity: 1;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroFlexSwap {
  0%,
  58%,
  78%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58)) brightness(1.08) saturate(1.06);
    transform: translate3d(0, 0, 0) scale(0.998);
  }

  60%,
  75% {
    opacity: 1;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroOpenSwap {
  0%,
  78%,
  97%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58)) brightness(1.08) saturate(1.06);
    transform: translate3d(-50%, 0, 0) scale(0.998);
  }

  80%,
  94% {
    opacity: 1;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

@keyframes heroFlash {
  0%,
  15%,
  21%,
  37%,
  43%,
  57%,
  63%,
  77%,
  83%,
  93%,
  99%,
  100% {
    opacity: 0;
    transform: translateX(-8%) skewX(-7deg);
  }

  18%,
  40%,
  60%,
  80%,
  96% {
    opacity: 0.28;
    transform: translateX(8%) skewX(-7deg);
  }
}

@keyframes heroScan {
  0%,
  16%,
  21%,
  38%,
  43%,
  58%,
  63%,
  78%,
  83%,
  94%,
  99%,
  100% {
    opacity: 0;
    transform: translateY(-2px);
  }

  18%,
  40%,
  60%,
  80%,
  96% {
    opacity: 0.16;
    transform: translateY(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-character.is-swap-ready .hero-character-image-primary,
  .hero-character.is-swap-ready .hero-character-image-point,
  .hero-character.is-swap-ready .hero-character-image-alt,
  .hero-character.is-swap-ready .hero-character-image-flex,
  .hero-character.is-swap-ready .hero-character-image-open,
  .hero-character.is-swap-ready::before,
  .hero-character.is-swap-ready::after {
    animation: none;
  }
}

.price-card {
  position: absolute;
  z-index: 80;
  right: clamp(24px, 4.8vw, 72px);
  bottom: 0;
  width: min(240px, 20vw);
  min-width: 216px;
  padding: 30px 28px 28px;
  color: var(--white);
  background: var(--purple);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%, 0 23%);
  font-family: "Chakra Petch", Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.price-card:hover,
.price-card:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-4px);
}

.price-kicker,
.price-period {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 1px 0 -4px;
  font-weight: 700;
  line-height: 0.8;
}

.currency {
  font-size: 40px;
}

.price-main {
  font-size: 78px;
}

.price-cents {
  font-size: 34px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.price-card li span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.intro-band {
  position: relative;
  z-index: 60;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 56px 24px;
  color: var(--white);
  background: var(--black);
}

.intro-band p {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(36px, 6vw, 82px);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.section-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(72px, 8vw, 118px) 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(8px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
  animation: sectionReveal 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.18;
}

.section-heading {
  display: grid;
  gap: 4px;
  max-width: 820px;
  margin-bottom: 42px;
}

.opening-band {
  position: relative;
  z-index: 70;
  padding: clamp(58px, 7vw, 92px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(149, 255, 0, 0.12), transparent 22%, rgba(116, 36, 220, 0.16) 72%, transparent),
    var(--black);
}

.opening-band::before,
.opening-band::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--green), transparent);
  content: "";
}

.opening-band::before {
  top: 18px;
}

.opening-band::after {
  bottom: 18px;
}

.opening-grid,
.split-layout,
.location-grid,
.training-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.opening-band .eyebrow {
  color: var(--green);
}

.opening-band h2,
.plans-section h2,
.location-section h2,
.facilities-section h2,
.training-section h2,
.faq-section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(46px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.opening-copy {
  display: grid;
  gap: 18px;
}

.opening-copy p {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.opening-copy p + p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.35;
  text-transform: none;
}

.plans-section {
  background: var(--light);
}

.plan-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background: #0b0b0f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(34px 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%, 0 34px);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.plan-card:hover,
.plan-card:focus-visible {
  border-color: rgba(149, 255, 0, 0.58);
  box-shadow: 0 24px 60px rgba(116, 36, 220, 0.24);
  transform: translateY(-4px);
}

body[data-theme="light"] .plan-card {
  color: var(--white);
  background: #0b0b0f;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.plan-label {
  margin: 0;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--green);
  font-family: "Chakra Petch", Arial, sans-serif;
  font-weight: 700;
  line-height: 0.8;
}

.plan-price span {
  font-size: clamp(92px, 12vw, 156px);
}

.plan-price small {
  font-size: clamp(38px, 5vw, 70px);
}

.plan-period {
  margin: -6px 0 6px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

body[data-theme="light"] .plan-period {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

body[data-theme="light"] .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.check-list .material-symbols-outlined {
  color: var(--green);
  font-size: 22px;
}

.location-section {
  color: var(--white);
  background: var(--black);
}

.location-section .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.location-section address {
  margin-top: 28px;
  color: var(--green);
  font-style: normal;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.cta-location {
  --cta-bg: var(--green);
  --cta-fg: var(--black);
  --cta-border: var(--green);
  margin-top: 30px;
  min-width: 178px;
}

.location-image {
  margin: 0;
  overflow: hidden;
  background: var(--black);
  clip-path: polygon(34px 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%, 0 34px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.location-image img {
  display: block;
  width: 100%;
  height: min(72vw, 760px);
  object-fit: cover;
  object-position: center;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.facility-card,
.training-list article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.facility-card .material-symbols-outlined,
.facility-card .facility-icon,
.training-list .material-symbols-outlined {
  color: var(--purple);
  font-size: 38px;
}

.facility-card .facility-icon {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.facility-card h3,
.training-list h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.facility-card p,
.training-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.training-section {
  background: linear-gradient(90deg, var(--green) 0 14px, transparent 14px), var(--light);
}

.training-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-section {
  background: var(--surface-strong);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 22px 24px;
  background: var(--light);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-list details p {
  padding-top: 12px;
}

.contact-section {
  color: var(--white);
  background: var(--black);
}

.contact-section .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--light);
  font: inherit;
}

.site-footer {
  padding: 34px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}

body[data-theme="light"] .site-footer {
  color: var(--black);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 26px;
  align-items: center;
}

.footer-grid img {
  width: 130px;
  max-width: 100%;
  aspect-ratio: 1448 / 1086;
  height: auto;
  object-fit: contain;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid a {
  color: inherit;
}

.footer-grid p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 98px;
  }

  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero-copy {
    max-width: 64vw;
  }

  .hero-character {
    top: -70px;
    right: clamp(34px, 8vw, 92px);
    bottom: auto;
    width: min(56vw, 590px);
  }

  .price-card {
    width: 216px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 86px;
  }

  .site-header {
    grid-template-columns: 124px 1fr auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    width: 124px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(11, 11, 15, 0.97);
  }

  body[data-theme="light"] .main-nav {
    background: rgba(242, 242, 242, 0.97);
  }

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

  .main-nav a {
    padding: 14px 10px;
  }

  .cta-header {
    min-width: 48px;
    width: 48px;
    height: 44px;
    padding: 0;
    font-size: 0;
  }

  .cta-header span {
    font-size: 22px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch button {
    min-width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 18px 18px 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(66px, 20vw, 128px);
  }

  .hero-bottom {
    align-items: start;
    flex-direction: column-reverse;
    gap: 18px;
    padding-bottom: 700px;
  }

  .hero-character {
    top: auto;
    right: 50%;
    bottom: 126px;
    width: min(82vw, 430px);
    transform: translateX(54%);
  }

  .price-card {
    right: 18px;
    bottom: 0;
    width: 218px;
  }

  .section-inner {
    width: min(100% - 36px, 720px);
  }

  .opening-grid,
  .split-layout,
  .location-grid,
  .training-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .facility-grid,
  .training-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-grid p {
    text-align: left;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 108px 1fr auto;
  }

  .brand {
    width: 108px;
  }

  .hero h1 {
    font-size: clamp(58px, 22vw, 92px);
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .cta-primary,
  .cta-secondary {
    flex: 1 1 150px;
    min-width: 0;
    padding: 0 16px;
  }

  .hero-bottom {
    padding-bottom: 700px;
  }

  .hero-character {
    top: auto;
    bottom: 138px;
    width: min(96vw, 380px);
    transform: translateX(58%);
  }

  .price-card {
    left: 18px;
    right: auto;
    width: calc(100% - 36px);
    min-width: 0;
    padding: 28px 24px;
  }

  .price-card ul {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
