:root {
  --blue: #07111f;
  --blue-2: #0f223a;
  --blue-3: #17375d;
  --premium: #cfd8e3;
  --premium-dark: #667588;
  --premium-soft: rgba(207, 216, 227, 0.18);
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.18);
  --muted: rgba(15, 34, 58, 0.68);
  --shadow: 0 24px 56px rgba(7, 17, 31, 0.18);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  padding-top: 82px;
  margin: 0;
  overflow-x: hidden;
  color: var(--blue);
  background: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-row {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.header-right,
.nav,
.lang-switcher,
.actions,
.contact-bar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--premium);
  border-radius: 50%;
  color: var(--premium);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand .brand-mark {
  border: 2px solid rgba(242, 217, 151, 0.92);
  background: #07111f url("images/padel-community-icon.svg?v=5") center / cover no-repeat;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--soft-white);
}

.header-right {
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(207, 216, 227, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  gap: 14px;
  color: var(--white);
}

.nav a,
.nav-button {
  position: relative;
  opacity: 0.88;
  font-size: 0.92rem;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: var(--premium);
  transition: width 0.2s ease;
}

.nav a:hover,
.nav-button:hover,
.nav a.is-active {
  color: var(--premium);
  opacity: 1;
}

.nav a.is-active {
  text-shadow: 0 0 18px rgba(242, 217, 151, 0.26);
}

.nav a.is-active:not(.nav-cta)::after {
  width: 100%;
}

.nav-cta,
.nav-button {
  padding: 10px 14px;
  border: 1px solid var(--premium);
  border-radius: 999px;
}

.nav-cta.is-active {
  background: var(--premium);
  color: var(--blue);
}

.nav-button {
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.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-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(242, 217, 151, 0.16), transparent 34%),
    #07111f;
  color: var(--white);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.cursor-light,
.padel-cursor {
  display: none;
}

@media (pointer: fine) and (min-width: 900px) {
  body.custom-cursor,
  body.custom-cursor a,
  body.custom-cursor button,
  body.custom-cursor input,
  body.custom-cursor select,
  body.custom-cursor textarea,
  body.custom-cursor summary {
    cursor: none;
  }

  .cursor-light {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 45;
    display: block;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(242, 217, 151, 0.18), rgba(64, 120, 255, 0.08) 38%, transparent 68%);
    mix-blend-mode: screen;
    opacity: 0;
    transform: translate3d(calc(var(--cursor-x, -500px) - 50%), calc(var(--cursor-y, -500px) - 50%), 0);
    transition: opacity 0.25s ease;
  }

  .padel-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 250;
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(7, 17, 31, 0.38);
    border-radius: 50%;
    pointer-events: none;
    background:
      radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.94), transparent 13%),
      radial-gradient(circle at 68% 76%, rgba(90, 118, 0, 0.34), transparent 36%),
      repeating-radial-gradient(circle at 42% 44%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 3px),
      radial-gradient(circle at 50% 50%, #dbff4d 0%, #c8ed33 48%, #94b411 100%);
    box-shadow: 0 10px 26px rgba(7, 17, 31, 0.28), 0 0 24px rgba(207, 255, 58, 0.32);
    opacity: 0;
    transform: translate3d(calc(var(--cursor-x, -50px) - 50%), calc(var(--cursor-y, -50px) - 50%), 0) rotate(var(--cursor-rotate, 0deg));
    transition: width 0.18s ease, height 0.18s ease, opacity 0.22s ease;
  }

  .padel-cursor::before,
  .padel-cursor::after {
    content: "";
    position: absolute;
    inset: 3px;
    border: 2px solid rgba(255, 255, 255, 0.64);
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(38deg);
    filter: blur(0.15px);
  }

  .padel-cursor::after {
    inset: 7px;
    border-color: rgba(7, 17, 31, 0.2);
    border-top-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-32deg);
  }

  body.cursor-active .cursor-light,
  body.cursor-active .padel-cursor {
    opacity: 1;
  }

  body.cursor-hover .padel-cursor {
    width: 38px;
    height: 38px;
  }
}

.loader-inner {
  width: min(420px, calc(100vw - 48px));
  display: grid;
  gap: 18px;
  text-align: center;
}

.loader-brand {
  font-family: "Cormorant Garamond", serif;
  color: var(--premium);
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.14em;
}

.loader-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.loader-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--premium), transparent);
  animation: loaderSweep 1.25s ease-in-out infinite;
}

.loader-count {
  color: var(--soft-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.lang-switcher {
  flex: 0 0 auto;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.lang-btn {
  min-width: 40px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.lang-btn.active {
  background: var(--premium);
  color: var(--blue);
}

.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07111f;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.hero-court {
  position: absolute;
  inset: 10% -8% 0 auto;
  width: min(760px, 70vw);
  height: 78%;
  z-index: 1;
  border: 1px solid rgba(242, 217, 151, 0.2);
  border-radius: 2px;
  opacity: 0.76;
  transform: perspective(800px) rotateX(56deg) rotateZ(-10deg);
  transform-origin: bottom right;
  pointer-events: none;
}

.hero-court::before,
.hero-court::after,
.hero-court span {
  content: "";
  position: absolute;
  background: rgba(242, 217, 151, 0.34);
  box-shadow: 0 0 24px rgba(242, 217, 151, 0.14);
}

.hero-court::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.hero-court::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.hero-court span:nth-child(1) {
  left: 24%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.hero-court span:nth-child(2) {
  right: 24%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.hero-court span:nth-child(3) {
  left: 0;
  right: 0;
  bottom: 18%;
  height: 1px;
}

.kinetic-type {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  perspective: 980px;
}

.kinetic-type span {
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(242, 217, 151, 0.024);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 12vw, 13rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(242, 217, 151, 0.18);
  text-stroke: 1px rgba(242, 217, 151, 0.18);
  filter: drop-shadow(0 0 18px rgba(242, 217, 151, 0.045));
  mix-blend-mode: screen;
  opacity: 0;
  transform-style: preserve-3d;
  animation: kineticFloat 24s cubic-bezier(0.33, 0, 0.24, 1) infinite;
}

.kinetic-type span:nth-child(1) {
  animation-delay: -2s;
}

.kinetic-type span:nth-child(2) {
  animation-delay: -7s;
}

.kinetic-type span:nth-child(3) {
  animation-delay: -12s;
}

.kinetic-type span:nth-child(4) {
  animation-delay: -16s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.62), rgba(7, 17, 31, 0.2) 58%, rgba(7, 17, 31, 0.28)),
    linear-gradient(180deg, rgba(7, 17, 31, 0.18), rgba(7, 17, 31, 0.62));
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  padding: 92px 0 72px;
  color: var(--white);
}

.hero-copy {
  min-width: 0;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-copy .actions,
.hero-copy .hero-facts,
.community-globe {
  animation: heroReveal 0.9s ease both;
}

.hero-copy h1 {
  animation-delay: 0.08s;
}

.hero-copy p {
  animation-delay: 0.16s;
}

.hero-copy .actions {
  animation-delay: 0.24s;
}

.hero-copy .hero-facts,
.community-globe {
  animation-delay: 0.32s;
}

.eyebrow {
  color: var(--premium);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--premium-dark);
}

h1,
h2 {
  margin: 18px 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

p {
  line-height: 1.75;
}

.hero p {
  max-width: 760px;
  color: var(--soft-white);
  font-size: 1.08rem;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.actions.left {
  justify-content: flex-start;
}

.hero-location-hint {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 800;
}

.hero-locations {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 980px;
  margin-top: 12px;
}

.hero-locations a {
  position: relative;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(242, 217, 151, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero-locations a::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
}

.hero-locations a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.78);
}

.hero-locations a.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.2);
}

.hero-locations svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--premium);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-locations span {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 4px;
}

.hero-locations strong {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-locations small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.community-globe {
  width: min(39vw, 540px);
  min-width: 320px;
  justify-self: end;
  scroll-margin-top: 110px;
}

.globe-shell {
  position: relative;
  --zoom-x: 50%;
  --zoom-y: 50%;
  --globe-zoom: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  user-select: none;
  background: radial-gradient(circle at 50% 50%, rgba(207, 216, 227, 0.08), rgba(7, 17, 31, 0) 68%);
  filter: drop-shadow(0 34px 82px rgba(0, 0, 0, 0.34));
}

.globe-shell.is-dragging {
  cursor: grabbing;
}

.globe-shell.is-zoomed {
  cursor: zoom-out;
}

.globe-shell canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.globe-shell.globe-mobile-static {
  cursor: default;
  touch-action: auto;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.28), transparent 10%),
    radial-gradient(circle at 46% 40%, rgba(184, 255, 60, 0.18), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(34, 79, 127, 0.72), rgba(7, 17, 31, 0.18) 66%),
    url("images/earth_atmos_2048.jpg") center / cover no-repeat;
}

.globe-shell.globe-mobile-static::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(207, 216, 227, 0.22);
  border-radius: 50%;
  box-shadow: inset -22px -26px 44px rgba(0, 0, 0, 0.38), inset 18px 16px 32px rgba(255, 255, 255, 0.08);
}

.globe-shell.globe-mobile-static::after {
  content: "";
  position: absolute;
  left: 34%;
  top: 28%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8ff3c;
  box-shadow:
    48px 28px 0 -1px #b8ff3c,
    94px 72px 0 -2px #b8ff3c,
    8px 92px 0 -2px #b8ff3c,
    128px 118px 0 -2px #b8ff3c,
    0 0 18px rgba(184, 255, 60, 0.54);
}

.globe-shell.globe-mobile-static canvas,
.globe-shell.globe-mobile-static .globe-labels {
  display: none;
}

.globe-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.globe-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  padding: 5px 9px;
  border: 1px solid rgba(207, 216, 227, 0.28);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.78);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.globe-label.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.globe-label.is-focus-label {
  z-index: 4;
  border-color: rgba(184, 255, 60, 0.72);
  background: rgba(184, 255, 60, 0.94);
  color: var(--blue);
  box-shadow: 0 0 22px rgba(184, 255, 60, 0.38);
}

.globe-region-label {
  padding: 8px 13px;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0;
  pointer-events: auto;
  text-transform: uppercase;
  cursor: zoom-in;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.globe-location-index {
  width: min(96%, 560px);
  display: grid;
  gap: 8px;
  margin: 14px auto 18px;
  padding: 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  touch-action: pan-x;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  transition: opacity 0.18s ease, transform 0.18s ease, max-height 0.18s ease, margin 0.18s ease, padding 0.18s ease;
}

.globe-city-ribbon-row {
  width: max-content;
  display: flex;
  gap: 7px;
  animation: cityRibbon 32s linear infinite;
  will-change: transform;
}

.globe-city-ribbon-row-2 {
  animation-direction: reverse;
  animation-duration: 38s;
}

.globe-location-index:hover .globe-city-ribbon-row,
.globe-location-index:focus-within .globe-city-ribbon-row,
.globe-location-index.is-browsing .globe-city-ribbon-row {
  animation-play-state: paused;
}

.globe-location-index.is-browsing {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.globe-location-index.is-browsing::-webkit-scrollbar {
  display: none;
}

.globe-location-index.is-browsing .globe-city-ribbon-row {
  animation: none;
}

.globe-location-index.is-browsing button[aria-hidden="true"] {
  display: none;
}

.globe-location-index.is-hidden {
  max-height: 0;
  margin-top: -18px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

.globe-location-index button {
  appearance: none;
  min-width: max-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(207, 216, 227, 0.24);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.74);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1.05;
  cursor: zoom-in;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.globe-location-index button:hover,
.globe-location-index button:focus-visible,
.globe-location-index button.is-active-city {
  border-color: rgba(184, 255, 60, 0.62);
  background: rgba(184, 255, 60, 0.9);
  color: var(--blue);
  outline: none;
}

.globe-caption {
  width: min(92%, 420px);
  display: grid;
  gap: 4px;
  margin: 0 auto;
  padding: 16px 18px;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(207, 216, 227, 0.24);
  border-radius: var(--radius-md);
  background: rgba(7, 17, 31, 0.72);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.globe-caption strong {
  color: var(--premium);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.globe-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light:hover,
.btn-dark:hover {
  box-shadow: 0 18px 42px rgba(242, 217, 151, 0.22);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
}

.btn-dark {
  background: var(--blue);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--premium);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--premium-dark);
}

.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-facts div {
  padding: 14px 16px;
  border: 1px solid rgba(207, 216, 227, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-facts div:hover {
  border-color: rgba(242, 217, 151, 0.32);
  background: rgba(255, 255, 255, 0.075);
}

.hero-facts strong {
  display: block;
  margin-bottom: 3px;
  color: var(--premium);
  font-size: 1.18rem;
}

.signature-section {
  min-height: 76vh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.signature-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.16) 58%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.84));
}

.signature-content {
  position: relative;
  z-index: 1;
  padding: 92px 0;
}

.signature-content h2 {
  max-width: 980px;
  color: var(--white);
}

.signature-content p {
  max-width: 620px;
  color: var(--soft-white);
  font-size: 1.08rem;
}

.section {
  padding: 88px 0;
}

.white-section {
  background:
    linear-gradient(180deg, rgba(245, 238, 224, 0.32), rgba(255, 255, 255, 0) 22%),
    var(--white);
  color: var(--blue);
}

.dark-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 217, 151, 0.08), transparent 34%),
    linear-gradient(180deg, #0a1728, var(--blue) 42%, #0a1728);
  color: var(--white);
}

.ochre-section {
  background:
    linear-gradient(135deg, rgba(183, 139, 74, 0.16), transparent 42%),
    linear-gradient(135deg, var(--blue-3), var(--blue));
  color: var(--white);
}

.section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-head p,
.dark-text p {
  color: var(--blue-2);
}

.dark-section .section-head p,
.ochre-section p {
  color: var(--soft-white);
}

.seo-copy {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.65;
}

.seo-copy.dark {
  color: rgba(15, 34, 58, 0.68);
}

.consent-note {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(15, 34, 58, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent-note.light {
  color: rgba(255, 255, 255, 0.62);
}

.seo-page {
  min-height: 100vh;
}

.seo-page-content {
  max-width: 820px;
  padding: 42px 0;
}

.seo-page-content h1 {
  color: inherit;
}

.seo-page-content p {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.seo-landing {
  min-height: 100vh;
  background: var(--white);
}

.seo-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
}

.seo-hero.dark {
  background: var(--blue);
  color: var(--white);
}

.seo-hero.light {
  background: var(--white);
  color: var(--blue);
}

.seo-hero img {
  width: 100%;
  height: 100%;
  min-height: 72vh;
  object-fit: cover;
}

.seo-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 96px);
}

.seo-brand {
  width: fit-content;
  margin-bottom: 54px;
}

.seo-brand.dark {
  color: var(--blue);
}

.seo-hero-copy p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.seo-info-grid {
  width: min(var(--container), calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
}

.seo-info-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(207, 216, 227, 0.5);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.seo-info-grid strong {
  color: var(--blue);
  font-size: 1.02rem;
}

.seo-info-grid span {
  color: rgba(15, 34, 58, 0.7);
  line-height: 1.55;
}

.bohdan-profile-page {
  background: #f4f7fb;
}

.bohdan-profile {
  color: var(--blue);
}

.bohdan-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  min-height: 720px;
  background:
    linear-gradient(120deg, rgba(5, 13, 25, 0.96), rgba(8, 25, 46, 0.86)),
    var(--blue);
  color: var(--white);
}

.bohdan-hero-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.bohdan-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 25, 0.08), rgba(5, 13, 25, 0.72)),
    linear-gradient(0deg, rgba(5, 13, 25, 0.7), transparent 42%);
}

.bohdan-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.bohdan-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 72px clamp(24px, 5vw, 78px);
}

.bohdan-hero-copy h1 {
  max-width: 760px;
  margin: 16px 0;
  font-size: clamp(4rem, 8vw, 8rem);
}

.bohdan-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.bohdan-hero-actions,
.bohdan-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bohdan-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(143, 156, 173, 0.32);
}

.bohdan-stat-strip article,
.bohdan-audience-grid article {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.bohdan-stat-strip strong,
.bohdan-audience-grid strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.bohdan-stat-strip span,
.bohdan-audience-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.bohdan-photo-section {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 82px) 0 0;
}

.bohdan-photo-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.bohdan-photo-head h2 {
  max-width: 760px;
  color: var(--blue);
}

.bohdan-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.bohdan-photo-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue);
  box-shadow: 0 18px 48px rgba(15, 34, 58, 0.12);
}

.bohdan-photo-grid figure.wide {
  grid-column: span 2;
}

.bohdan-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.bohdan-photo-grid figure:hover img {
  transform: scale(1.035);
}

.bohdan-photo-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(5, 13, 25, 0.68);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.bohdan-photo-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 13, 25, 0.48), transparent 48%);
  pointer-events: none;
}

.bohdan-photo-grid figcaption {
  z-index: 1;
}

.bohdan-section {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0;
}

.bohdan-section + .bohdan-section {
  border-top: 1px solid rgba(15, 34, 58, 0.12);
}

.bohdan-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.bohdan-section h2,
.bohdan-contact h2 {
  max-width: 760px;
  color: var(--blue);
}

.bohdan-rich-text {
  display: grid;
  gap: 18px;
}

.bohdan-rich-text p,
.bohdan-story-copy p {
  margin: 0;
  color: rgba(15, 34, 58, 0.74);
  font-size: 1.02rem;
  line-height: 1.72;
}

.bohdan-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.bohdan-profile-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bohdan-profile-notes article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(15, 34, 58, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(242, 217, 151, 0.2), rgba(255, 255, 255, 0) 44%),
    var(--white);
  box-shadow: 0 16px 42px rgba(15, 34, 58, 0.08);
}

.bohdan-profile-notes h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.18;
}

.bohdan-profile-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.bohdan-card-grid,
.bohdan-projects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bohdan-card-grid article,
.bohdan-projects article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(143, 156, 173, 0.28);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 34, 58, 0.08);
}

.bohdan-card-grid article span,
.bohdan-projects article span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--premium-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bohdan-card-grid h3,
.bohdan-projects h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.bohdan-card-grid p,
.bohdan-projects p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.bohdan-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
}

.bohdan-story-copy {
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: var(--white);
}

.bohdan-story-copy h2,
.bohdan-contact h2 {
  color: var(--white);
}

.bohdan-story-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.bohdan-story-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(173, 125, 56, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(242, 217, 151, 0.34), rgba(255, 255, 255, 0) 52%),
    var(--white);
}

.bohdan-story-panel strong {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bohdan-story-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

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

.bohdan-partner-list span {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 34, 58, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--blue-2);
  font-weight: 800;
  line-height: 1.45;
}

.bohdan-partner-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--premium-dark);
}

.bohdan-audience {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--blue);
  color: var(--white);
}

.bohdan-audience .bohdan-section-head h2 {
  color: var(--white);
}

.bohdan-audience-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.3fr;
  gap: 14px;
}

.bohdan-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(48px, 6vw, 78px) max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(242, 217, 151, 0.16), transparent 42%),
    var(--blue);
  color: var(--white);
}

.bohdan-contact h2 {
  margin-bottom: 0;
}

.two-col,
.pricing-grid,
.event-grid,
.next-grid,
.tournament-layout,
.team-grid,
.forms-grid,
.lists-grid,
.capacity-row {
  display: grid;
  gap: 20px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.cards-stack,
.dashboard,
.people-list {
  display: grid;
  gap: 16px;
}

.card,
.form,
.price-card,
.feature-card,
.coach-card,
.next-card,
.dashboard-card,
.event-card,
.dark-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card,
.form,
.price-card,
.feature-card,
.coach-card {
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(143, 156, 173, 0.28);
}

.card,
.form,
.price-card,
.next-card,
.dashboard-card,
.event-card,
.dark-panel {
  padding: 28px;
}

.card h3,
.form h3,
.price-card h3,
.coach-card h3,
.event-card h3 {
  margin-top: 0;
}

.coach-badge {
  display: none;
}

.coach-location {
  width: fit-content;
  border: 1px solid rgba(183, 139, 74, 0.32);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(183, 139, 74, 0.08);
  color: var(--ochre);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.partner-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.forms-grid .form {
  display: flex;
  flex-direction: column;
}

.forms-grid .form .btn {
  margin-top: auto;
}

.partner-showcase {
  max-width: 1180px;
  margin: 0 auto;
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: stretch;
  overflow: hidden;
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(207, 216, 227, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(242, 217, 151, 0.18), rgba(242, 217, 151, 0) 38%),
    linear-gradient(120deg, #07111f, #10243f 72%, #18385f);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(5, 13, 25, 0.22);
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 217, 151, 0.75), transparent);
}

.partner-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-copy .badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--premium);
  border-color: rgba(242, 217, 151, 0.3);
}

.partner-copy h3 {
  max-width: 620px;
  margin: 18px 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.partner-copy p {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.partner-points {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 12px;
  align-content: center;
}

.partner-points span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid rgba(207, 216, 227, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.partner-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 0;
  border-radius: 50%;
  background: var(--premium);
  box-shadow: 0 0 0 5px rgba(242, 217, 151, 0.12);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(242, 217, 151, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.price-card span,
.event-card span,
.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--premium-soft);
  color: var(--blue);
  border: 1px solid rgba(143, 156, 173, 0.35);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dark-section .event-card span,
.dark-section .badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--premium);
  border-color: rgba(207, 216, 227, 0.34);
}

.price-card strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--blue);
  font-size: 1.25rem;
}

.price-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 132px;
  padding: 16px;
  box-shadow: none;
}

.price-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.price-card h3 {
  margin: 0;
  font-size: 1rem;
}

.price-card strong {
  grid-column: 2;
}

.price-card span {
  grid-row: span 3;
  align-self: start;
  margin-bottom: 0;
  padding: 7px 10px;
  font-size: 0.74rem;
}

.feature-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  padding: 0;
}

.camp-cover-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.camp-cover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.78), rgba(7, 17, 31, 0.18) 62%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.82));
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-3), var(--premium));
}

.camp-cover-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
  filter: saturate(1.05) contrast(1.02);
}

.feature-card div {
  padding: 32px;
}

.camp-cover-card div {
  width: min(560px, 100%);
  margin: 28px;
  padding: 24px;
  border: 1px solid rgba(242, 217, 151, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 31, 0.58);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.camp-cover-card h3 {
  color: var(--white);
}

.camp-cover-card p {
  color: rgba(255, 255, 255, 0.78);
}

.camp-cover-card .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
}

.next-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.next-card {
  min-height: 100%;
  border: 1px solid rgba(242, 217, 151, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.camp-detail-card {
  margin-top: 22px;
  background: var(--premium-soft);
  color: var(--blue);
  border-color: rgba(143, 156, 173, 0.3);
}

.tournament-highlight-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.09);
}

.tournament-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(242, 217, 151, 0.16), transparent),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(255, 255, 255, 0.04) 49px 50px);
  transform: translateX(-100%);
  animation: liveSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.tournament-highlight-card .badge {
  position: relative;
}

.tournament-highlight-card .badge::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #d9ff4d;
  box-shadow: 0 0 16px rgba(217, 255, 77, 0.88);
  animation: statusPulse 1.4s ease-in-out infinite;
}

.how-it-works {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(242, 217, 151, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.how-it-works .eyebrow {
  white-space: nowrap;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.steps-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.22s ease, background 0.22s ease;
}

.steps-grid article:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.steps-grid span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--premium);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.steps-grid strong {
  color: var(--white);
  font-size: 0.9rem;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.3;
}

.next-card h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.next-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.camp-detail-card h3 {
  color: var(--blue);
}

.camp-detail-card p {
  color: var(--blue-2);
}

.next-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.next-meta strong {
  color: var(--premium);
  font-size: 1.2rem;
}

.next-meta span {
  color: rgba(255, 255, 255, 0.74);
}

.camp-detail-card .next-meta span {
  color: var(--blue-2);
}

.next-list {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.next-list span {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.camp-detail-card .next-list span {
  color: var(--blue-2);
}

.next-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--premium);
}

.next-card .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.dark-panel {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
  border: 1px solid rgba(207, 216, 227, 0.22);
}

.coach-course-image {
  width: 100%;
  height: 260px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--premium), var(--blue-3));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 70%, rgba(0, 0, 0, 0.74) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 70%, rgba(0, 0, 0, 0.74) 86%, transparent 100%);
}

.course-date-note {
  max-width: 560px;
  margin-top: 18px;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.dark-panel li {
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-2), var(--premium));
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 452px;
}

.gallery-grid .gallery-focus-top {
  object-position: center 18%;
}

.locations-section {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  overflow: auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(207, 216, 227, 0.94)),
    var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.62s cubic-bezier(0.2, 0.72, 0.18, 1), opacity 0.32s ease;
}

.locations-section .container {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.locations-section .section-head {
  margin: 0;
  text-align: left;
}

.locations-section .section-head h2 {
  max-width: 420px;
}

body.location-panel-open {
  overflow: hidden;
}

body.location-panel-open .site-header,
body.location-panel-open main > section:not(.locations-section) {
  transform: translateX(-18vw) scale(0.96);
  opacity: 0.38;
  transition: transform 0.62s cubic-bezier(0.2, 0.72, 0.18, 1), opacity 0.32s ease;
}

body.location-panel-open .locations-section {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.location-close {
  grid-column: 1;
  justify-self: start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: -8px;
  padding: 0 16px;
  border: 1px solid rgba(102, 117, 136, 0.38);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.location-slider {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0;
  perspective: 1200px;
}

.location-card {
  display: none;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px 28px;
  align-content: center;
  min-height: 560px;
  padding: 30px;
  border: 1px solid rgba(143, 156, 173, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(207, 216, 227, 0.38)),
    url("images/padel-community-1.jpg") right center / cover;
  color: var(--blue);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 54%, rgba(255, 255, 255, 0.78) 72%, rgba(255, 255, 255, 0.32));
  pointer-events: none;
}

.location-card > * {
  position: relative;
  z-index: 1;
}

.location-card.muted {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(207, 216, 227, 0.42)),
    url("images/padel-community-3.jpg") right center / cover;
}

.location-card.is-active {
  display: grid;
  border-color: rgba(102, 117, 136, 0.7);
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.28);
  animation: locationPageIn 0.58s cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.location-card h3 {
  margin: 8px 0 12px;
  color: var(--blue);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.location-card > .brand-mark {
  width: 132px;
  height: 132px;
  grid-row: span 3;
  align-self: start;
  border-color: rgba(7, 17, 31, 0.22);
  color: var(--blue);
  font-size: 1.5rem;
}

.location-meta {
  display: grid;
  max-width: 520px;
  gap: 10px;
}

.location-meta p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(102, 117, 136, 0.22);
}

.location-meta strong {
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.location-coach {
  display: grid;
  grid-template-columns: 112px 1fr;
  max-width: 560px;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(102, 117, 136, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
}

.location-coach img {
  width: 112px;
  height: 132px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--premium), var(--blue-3));
}

.location-coach h4 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 1.1rem;
}

.location-coach p {
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .locations-section {
    align-items: flex-start;
    padding: 0;
  }

  .locations-section .container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .locations-section .section-head,
  .location-close,
  .location-slider {
    grid-column: 1;
    grid-row: auto;
  }

  .location-close {
    margin-bottom: 0;
  }

  .location-slider {
    max-width: none;
  }

  .location-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .location-card::before {
    background: rgba(255, 255, 255, 0.92);
  }

  .location-card > .brand-mark {
    width: 82px;
    height: 82px;
    grid-row: auto;
    font-size: 0.9rem;
  }

  .location-card h3 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .location-coach {
    grid-template-columns: 86px 1fr;
  }

  .location-coach img {
    width: 86px;
    height: 104px;
  }
}

.event-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.event-grid:has(.event-card:only-child) {
  grid-template-columns: minmax(0, 680px);
}

.event-card,
.dashboard-card,
.dark-form {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(207, 216, 227, 0.22);
  box-shadow: none;
}

.tournament-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

.capacity-row div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.capacity-row strong {
  display: block;
  color: var(--premium);
  font-size: 1.7rem;
}

.progress-bar {
  height: 12px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--premium), var(--white));
}

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

.people-list {
  min-height: 120px;
}

.level-availability-note {
  margin: -4px 0 8px;
  color: var(--premium);
  font-size: 0.86rem;
  line-height: 1.35;
}

.level-group {
  display: grid;
  gap: 10px;
}

.level-group + .level-group {
  margin-top: 18px;
}

.level-group h4 {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
}

.person-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.person-row small,
.empty-state {
  color: var(--soft-white);
}

.team-grid {
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  margin-inline: auto;
}

.academy-team-section .team-grid .coach-card:nth-child(5) {
  grid-column: 2;
}

.academy-team-section .team-grid .coach-card:nth-child(6) {
  grid-column: 3;
}

.founder-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(20px, 4vw, 46px);
  max-width: 1180px;
  margin: 24px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(15, 34, 58, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(242, 217, 151, 0.32), rgba(255, 255, 255, 0) 42%),
    var(--white);
  color: var(--blue);
  box-shadow: 0 16px 44px rgba(15, 34, 58, 0.08);
}

.founder-section .founder-spotlight {
  margin-top: 0;
}

.founder-media {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--blue);
}

.founder-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 22%;
}

.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(4px, 2vw, 16px) 0;
}

.founder-spotlight h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.95;
}

.founder-spotlight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.founder-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 4px;
}

.founder-story-toggle {
  display: grid;
  gap: 14px;
}

.founder-story-toggle summary {
  display: none;
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.founder-facts span {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(15, 34, 58, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.founder-facts strong {
  color: var(--blue);
  font-size: 1.02rem;
  line-height: 1.1;
}

.founder-facts small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.founder-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.founder-socials a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(15, 34, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-socials a:hover {
  border-color: rgba(173, 125, 56, 0.45);
  background: var(--premium-soft);
}

.founder-mini-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.founder-mini-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--blue);
}

.founder-mini-gallery img:nth-child(2) {
  object-position: center 18%;
}

.price-accordion {
  max-width: 1180px;
  margin: 24px auto 0;
  border-top: 1px solid rgba(15, 34, 58, 0.16);
  border-bottom: 1px solid rgba(15, 34, 58, 0.16);
}

.price-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  list-style: none;
  cursor: pointer;
  color: var(--blue);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-accordion summary::-webkit-details-marker {
  display: none;
}

.price-accordion summary::after {
  content: "+";
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(15, 34, 58, 0.2);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.28rem;
  line-height: 1;
}

.price-accordion[open] summary::after {
  content: "-";
}

.price-accordion .pricing-grid {
  margin: 0 0 20px;
}

.coach-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(207, 216, 227, 0.8), rgba(23, 55, 93, 0.18)) border-box;
}

.coach-card img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  object-position: center 28%;
  background: linear-gradient(135deg, var(--premium), var(--blue-3));
}

.coach-avatar-placeholder {
  position: relative;
  width: 100%;
  height: 252px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(207, 216, 227, 0.08), transparent 32%),
    linear-gradient(135deg, #050d19, #07111f 72%, #0f223a);
}

.feature-card img,
.gallery-grid img,
.coach-card img,
.coach-avatar-placeholder {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0, 0, 0, 0.72) 84%, transparent 100%);
}

.coach-card .coach-img-focus-top {
  object-position: center 12%;
}

.coach-card .coach-img-focus-andrii {
  object-position: center 42%;
  transform: scale(1.18);
}

.coach-card .coach-img-focus-right {
  object-position: 78% 28%;
}

.coach-card > div:not(.coach-avatar-placeholder) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.coach-card .coach-badge {
  width: fit-content;
  display: none;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--premium-soft);
  color: var(--blue);
  border: 1px solid rgba(143, 156, 173, 0.32);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coach-card h3 {
  margin-bottom: 0;
  font-size: 1.24rem;
  line-height: 1.05;
}

.coach-card p {
  flex: 1;
  margin-top: 0;
  display: -webkit-box;
  min-height: 4.8em;
  overflow: hidden;
  color: rgba(15, 34, 58, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.coach-card .btn {
  margin-top: auto;
}

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

.admin-panel {
  display: grid;
  gap: 22px;
}

.admin-panel-head,
.admin-tournament-top,
.admin-player-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.admin-panel-head,
.admin-tournament-top {
  align-items: flex-start;
}

.admin-panel-head h3,
.admin-tournament-top h4 {
  margin: 6px 0 0;
}

.admin-create-form,
.admin-tournament-list,
.admin-player-list {
  display: grid;
  gap: 12px;
}

.admin-create-form {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(7, 17, 31, 0.04);
}

.admin-tournament-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(143, 156, 173, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.admin-tournament-card p {
  margin: 8px 0 0;
  color: var(--premium-dark);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.admin-stats div {
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(7, 17, 31, 0.05);
}

.admin-stats strong,
.admin-stats span,
.admin-player-row small {
  display: block;
}

.admin-stats strong {
  font-size: 1.2rem;
}

.admin-stats span,
.admin-player-row small {
  color: var(--premium-dark);
  font-size: 0.82rem;
}

.admin-tournament-card summary {
  cursor: pointer;
  font-weight: 800;
}

.admin-player-list {
  margin-top: 12px;
}

.admin-player-row {
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(7, 17, 31, 0.05);
}

.admin-text-button {
  border: 0;
  background: transparent;
  color: var(--blue-3);
  cursor: pointer;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(143, 156, 173, 0.38);
  border-radius: var(--radius-md);
  outline: none;
  background: var(--white);
  color: var(--blue);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(143, 156, 173, 0.16);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note,
.account-result {
  margin: 12px 0 0;
  color: var(--blue);
  font-weight: 700;
}

.telegram-note,
#tournamentMessage {
  display: block;
  margin: 12px 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(242, 217, 151, 0.46);
  border-radius: var(--radius-md);
  background: rgba(242, 217, 151, 0.16);
  color: var(--premium);
  font-weight: 900;
  line-height: 1.45;
}

#tournamentMessage:empty {
  display: none;
}

#tournamentMessage a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.telegram-alert-title {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-form .form-note {
  color: var(--premium);
}

.account-result {
  display: grid;
  gap: 12px;
}

.account-stack {
  display: grid;
  gap: 20px;
}

.account-card {
  padding: 16px;
  border: 1px solid rgba(143, 156, 173, 0.28);
  border-radius: var(--radius-md);
  background: rgba(207, 216, 227, 0.16);
}

.contact-bar {
  flex-wrap: wrap;
  gap: 12px;
}

.contact-bar a {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  padding: 30px 0;
  background: var(--blue);
  color: var(--white);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-row p {
  margin-bottom: 0;
  color: var(--soft-white);
}

.footer-row a {
  color: var(--premium);
  font-weight: 800;
}

.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.footer-seo-links a {
  color: rgba(207, 216, 227, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-credit {
  font-size: 0.78rem;
  opacity: 0.74;
  align-self: flex-end;
}

.academy-admin-main {
  min-height: 100vh;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 0%, rgba(200, 164, 93, 0.18), transparent 28%),
    #080705;
  color: var(--white);
}

.academy-admin-lock {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 164, 93, 0.2), transparent 28%),
    rgba(8, 7, 5, 0.96);
}

.academy-admin-lock.hidden {
  display: none;
}

.academy-admin-lock-card {
  width: min(440px, 100%);
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(242, 217, 151, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.academy-admin-lock-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4rem);
}

.academy-admin-lock-card p,
.academy-admin-hero p,
.academy-admin-panel p,
.academy-admin-status,
.academy-admin-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.academy-admin-lock-card input,
.academy-admin-form input,
.academy-admin-form textarea,
.academy-admin-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(242, 217, 151, 0.18);
  border-radius: var(--radius-md);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.academy-admin-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
  font-family: inherit;
}

.academy-admin-lock-card input::placeholder,
.academy-admin-form input::placeholder,
.academy-admin-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.academy-admin-error,
.academy-admin-status.is-error {
  min-height: 20px;
  color: #fca5a5;
  font-weight: 800;
}

.academy-admin-main .btn-light,
.academy-admin-lock .btn-light {
  background: linear-gradient(135deg, #f4ddb0, #ad7d38);
  color: #120d08;
  box-shadow: 0 18px 34px rgba(200, 164, 93, 0.24);
}

.academy-admin-main .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.academy-admin-main .btn-danger {
  border: 1px solid rgba(248, 113, 113, 0.52);
  background: rgba(127, 29, 29, 0.22);
  color: #fecaca;
}

.academy-admin-hero,
.academy-admin-panel,
.academy-admin-grid {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.academy-admin-hero {
  margin-bottom: 28px;
}

.academy-admin-hero h1 {
  max-width: 860px;
}

.academy-admin-hero p {
  max-width: 760px;
}

.academy-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.academy-admin-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(242, 217, 151, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.academy-admin-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.academy-admin-settings,
.academy-admin-form,
.academy-admin-grid,
.academy-admin-stack,
.academy-admin-list {
  display: grid;
  gap: 12px;
}

.academy-admin-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.academy-price-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.academy-admin-auth.hidden,
.academy-admin-settings .hidden {
  display: none;
}

.academy-admin-form button,
.academy-admin-form .academy-admin-status {
  grid-column: 1 / -1;
}

.academy-admin-form textarea,
.admin-advanced {
  grid-column: 1 / -1;
}

.admin-advanced {
  padding: 12px;
  border: 1px solid rgba(242, 217, 151, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.admin-advanced summary {
  cursor: pointer;
  color: rgba(242, 217, 151, 0.9);
  font-weight: 900;
}

.admin-advanced[open] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-advanced[open] summary,
.admin-advanced[open] textarea {
  grid-column: 1 / -1;
}

.academy-admin-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) 150px 120px auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(242, 217, 151, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.academy-admin-card h3,
.academy-admin-card p {
  margin: 0;
}

.academy-admin-card h3 {
  margin-top: 8px;
  font-size: 1.05rem;
}

.academy-admin-pill {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(242, 217, 151, 0.22);
  border-radius: 999px;
  color: #d7b56d;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-admin-stat {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.academy-admin-stat strong,
.academy-admin-stat span,
.academy-admin-player strong,
.academy-admin-player small {
  display: block;
}

.academy-admin-stat strong {
  color: #f2d997;
  font-size: 1.35rem;
}

.academy-admin-stat span,
.academy-admin-player small,
.academy-admin-empty {
  color: rgba(255, 255, 255, 0.62);
}

.academy-admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.academy-admin-card details {
  grid-column: 1 / -1;
}

.academy-admin-card summary {
  cursor: pointer;
  color: #d7b56d;
  font-weight: 900;
}

.academy-admin-players {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.academy-admin-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.academy-admin-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.academy-admin-list-item strong,
.academy-admin-list-item small {
  display: block;
}

.academy-admin-list-item small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.academy-admin-text-btn {
  border: 0;
  background: transparent;
  color: #d7b56d;
  cursor: pointer;
  font-weight: 900;
}

.academy-admin-empty {
  padding: 16px;
  border: 1px solid rgba(242, 217, 151, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.motion-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.motion-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.motion-reveal:nth-child(2n) {
  transition-delay: 0.04s;
}

.motion-reveal:nth-child(3n) {
  transition-delay: 0.08s;
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes locationPageIn {
  0% {
    opacity: 0;
    transform: translateX(70px) rotateY(-7deg) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
  }
}

@keyframes cityRibbon {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes kineticFloat {
  0% {
    opacity: 0;
    transform: translate3d(58vw, -34vh, -120px) rotateX(18deg) rotateY(-18deg) rotateZ(-7deg) scale(0.72);
  }
  14% {
    opacity: 0.22;
  }
  42% {
    opacity: 0.18;
    transform: translate3d(-10vw, -11vh, 20px) rotateX(0deg) rotateY(10deg) rotateZ(2deg) scale(1);
  }
  72% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-72vw, 24vh, -160px) rotateX(-16deg) rotateY(22deg) rotateZ(8deg) scale(0.82);
  }
}

@keyframes liveSweep {
  0%,
  52% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }

  .site-loader {
    display: none;
  }

  .kinetic-type span {
    opacity: 0.14;
    animation: none;
    transform: translate3d(-12%, -16%, 0) scale(0.92);
  }
}

@media (max-width: 1100px) {
  .header-row {
    min-height: 74px;
    padding: 14px 0;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .header-right {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(207, 216, 227, 0.22);
    border-radius: var(--radius-lg);
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-header.menu-open .header-right {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .nav a,
  .nav-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-cta,
  .nav-button {
    border-radius: var(--radius-md);
  }

  .nav a.is-active {
    background: rgba(242, 217, 151, 0.14);
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .hero-court {
    inset: auto -22% 10% auto;
    width: 92vw;
    height: 48%;
    opacity: 0.28;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .community-globe {
    width: min(64vw, 400px);
    min-width: 0;
    justify-self: center;
    margin-top: 8px;
  }

  .hero-locations {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
  }

  .two-col,
  .pricing-grid,
  .feature-card,
  .event-grid,
  .next-grid,
  .steps-grid,
  .tournament-layout,
  .team-grid,
  .forms-grid,
  .lists-grid,
  .capacity-row,
  .admin-stats,
  .academy-admin-panel,
  .academy-admin-card {
    grid-template-columns: 1fr;
  }

  .academy-admin-form {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

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

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

  .seo-hero,
  .seo-info-grid {
    grid-template-columns: 1fr;
  }

  .bohdan-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bohdan-hero-media {
    min-height: 420px;
  }

  .bohdan-hero-media::after {
    background: linear-gradient(0deg, rgba(5, 13, 25, 0.74), rgba(5, 13, 25, 0.04) 60%);
  }

  .bohdan-hero-copy {
    max-width: none;
    padding: 34px 20px 44px;
  }

  .bohdan-hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .bohdan-stat-strip,
  .bohdan-card-grid,
  .bohdan-profile-notes,
  .bohdan-projects,
  .bohdan-story,
  .bohdan-two-col,
  .bohdan-audience-grid {
    grid-template-columns: 1fr;
  }

  .bohdan-stat-strip {
    gap: 1px;
  }

  .bohdan-photo-section {
    width: min(100% - 28px, 1180px);
    padding-top: 34px;
  }

  .bohdan-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .bohdan-photo-grid figure.wide {
    grid-column: auto;
  }

  .bohdan-photo-grid figcaption {
    font-size: 0.76rem;
  }

  .bohdan-section {
    width: min(100% - 28px, 1180px);
    padding: 44px 0;
  }

  .bohdan-card-grid article,
  .bohdan-projects article {
    min-height: 0;
  }

  .bohdan-story-copy,
  .bohdan-story-panel {
    border-radius: var(--radius-md);
  }

  .bohdan-contact {
    display: grid;
  }

  .seo-hero img {
    min-height: 360px;
  }

  .seo-info-grid {
    margin-top: 18px;
  }

  .camp-cover-card {
    min-height: 360px;
  }

  .camp-cover-card div {
    margin: 18px;
  }

}

@media (max-width: 700px) {
  body {
    padding-top: 75px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 0.78rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-court {
    display: none;
  }

  .kinetic-type {
    display: none;
  }

  .kinetic-type span {
    font-size: clamp(3.4rem, 18vw, 6.8rem);
    letter-spacing: 0.06em;
    color: rgba(242, 217, 151, 0.045);
    -webkit-text-stroke-color: rgba(242, 217, 151, 0.26);
    text-stroke-color: rgba(242, 217, 151, 0.26);
    animation-duration: 21s;
  }

  .hero-content {
    padding: 54px 0 48px;
  }

  .community-globe {
    width: min(78vw, 310px);
    margin-top: 4px;
  }

  .globe-caption {
    margin-top: 0;
    padding: 12px 14px;
  }

  .globe-location-index {
    left: 50%;
    width: min(calc(100vw - 24px), 360px);
    display: grid;
    grid-template-columns: none;
    justify-content: stretch;
    gap: 7px;
    overflow: hidden;
    margin-top: 14px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 0;
    transform: translateX(-50%);
    scroll-snap-type: none;
    scrollbar-width: auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    opacity: 0.82;
  }

  .globe-city-ribbon-row,
  .globe-city-ribbon-row-2 {
    animation-duration: 68s;
  }

  .globe-location-index.is-hidden {
    transform: translate(-50%, -8px);
  }

  .globe-location-index button {
    min-width: max-content;
    min-height: 28px;
    padding: 5px 9px;
    border-color: rgba(207, 216, 227, 0.2);
    background: rgba(7, 17, 31, 0.58);
    font-size: 0.52rem;
    line-height: 1.08;
    white-space: nowrap;
  }

  .globe-caption strong {
    font-size: 0.72rem;
  }

  .globe-caption span {
    font-size: 0.76rem;
  }

  .globe-label {
    padding: 4px 7px;
    font-size: 0.62rem;
  }

  .hero-location-hint {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-locations a {
    min-height: 58px;
    padding: 10px;
  }

  .hero-locations strong {
    font-size: 0.72rem;
  }

  .hero-locations small {
    font-size: 0.68rem;
  }

  .hero .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .hero .actions .btn {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero .actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .hero-facts {
    display: none;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-facts div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
  }

  .hero-facts strong {
    margin-bottom: 0;
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .hero-facts span {
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .academy-team-section .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .academy-team-section .team-grid .coach-card:nth-child(5),
  .academy-team-section .team-grid .coach-card:nth-child(6) {
    grid-column: auto;
  }

  .academy-team-section .coach-card {
    display: grid;
    grid-template-columns: minmax(118px, 38%) 1fr;
    min-height: 176px;
    overflow: hidden;
    border-radius: var(--radius-md);
  }

  .academy-team-section .coach-card img,
  .academy-team-section .coach-avatar-placeholder {
    width: 100%;
    height: 100%;
    min-height: 176px;
    object-position: center 18%;
  }

  .academy-team-section .coach-card > div:not(.coach-avatar-placeholder) {
    gap: 8px;
    padding: 14px;
  }

  .academy-team-section .coach-card h3 {
    font-size: 1.06rem;
    line-height: 1.12;
  }

  .academy-team-section .coach-card p {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .academy-team-section .coach-card .btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .founder-spotlight {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .founder-media img {
    min-height: 320px;
  }

  .founder-content {
    gap: 12px;
    padding: 0;
  }

  .founder-spotlight h3 {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  .founder-spotlight p {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .founder-copy-grid,
  .founder-facts {
    grid-template-columns: 1fr;
  }

  .founder-story-toggle {
    gap: 12px;
  }

  .founder-story-toggle summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2px;
    padding: 0 14px;
    border: 1px solid rgba(15, 34, 58, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .founder-story-toggle summary::after {
    content: "+";
    margin-left: 10px;
    font-size: 1rem;
    line-height: 1;
  }

  .founder-story-toggle[open] summary::after {
    content: "-";
  }

  .founder-story-toggle:not([open]) .founder-copy-grid {
    display: none;
  }

  .founder-facts {
    gap: 8px;
  }

  .founder-mini-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .founder-mini-gallery img {
    height: 92px;
    border-radius: var(--radius-sm);
  }

  .partner-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 16px;
    border-radius: var(--radius-md);
  }

  .partner-copy h3 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .partner-copy p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .partner-points {
    gap: 8px;
  }

  .partner-points span {
    min-height: 52px;
    padding: 12px;
    font-size: 0.8rem;
  }

  .price-accordion {
    margin-top: 18px;
  }

  .price-accordion summary {
    min-height: 56px;
    font-size: 0.88rem;
  }

  .price-accordion summary::after {
    width: 32px;
    height: 32px;
    font-size: 1.08rem;
  }

  .price-accordion .pricing-grid {
    margin-bottom: 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .seo-hero-copy {
    padding: 28px 18px 44px;
  }

  .seo-brand {
    margin-bottom: 32px;
  }

  .seo-info-grid {
    width: min(100% - 24px, var(--container));
  }

  .price-card {
    min-height: 0;
    padding: 12px;
  }

  .price-card p {
    display: none;
  }

  .camp-cover-card {
    min-height: 420px;
  }

  .camp-cover-card div {
    margin: 12px;
    padding: 18px;
  }

  .signature-section {
    min-height: 68vh;
  }

  .signature-content {
    padding: 70px 0;
  }

  .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, 118px);
    gap: 8px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 100%;
  }

  .person-row,
  .footer-row {
    flex-direction: column;
  }
}
