:root {
  --color-bg: #040404;
  --color-bg-soft: #0e0b10;
  --color-surface: #171217;
  --color-surface-alt: #1f1820;
  --color-text: #f7f4fa;
  --color-text-strong: #ffffff;
  --color-muted: #cfc5d3;
  --color-accent: #fe59c2;
  --color-accent-dark: #65081f;
  --color-highlight: #fe59c2;
  --color-grey: #49423d;
  --glow-blue: #4c3cff;
  --glow-cyan: #39f0d8;
  --header-shell-gradient: linear-gradient(135deg, rgba(16, 12, 26, 0.38), rgba(8, 4, 18, 0.82));
  --shadow-soft: 0 20px 50px rgba(5, 0, 12, 0.55);
  --header-offset: clamp(86px, 11vw, 126px);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --font-sans: "Nunito", "Inter", "PP Neue Montreal", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Tektur", "Nunito", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", monospace;
  --max-width: 1200px;
  /* Color tokens (derived from existing palette) */
  --color-accent-rgb: 254, 89, 194;
  --glow-blue-rgb: 76, 60, 255;
  --glow-cyan-rgb: 57, 240, 216;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;

  /* Design aliases for clarity (non-breaking) */
  --brand-primary: var(--color-accent);
  --brand-secondary: var(--glow-blue);
  --brand-tertiary: var(--glow-cyan);
  --bg-base: var(--color-bg);
  --bg-soft: var(--color-bg-soft);
  --surface-base: var(--color-surface);
  --surface-alt: var(--color-surface-alt);
  --text-base: var(--color-text);
  --text-strong: var(--color-text-strong);
  --text-muted: var(--color-muted);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(180% 160% at 50% -30%, rgba(254, 89, 194, 0.18), transparent 45%),
    radial-gradient(180% 140% at 50% -40%, rgba(76, 60, 255, 0.22), transparent 52%),
    radial-gradient(circle at 70% 80%, rgba(57, 240, 216, 0.14), transparent 58%),
    linear-gradient(145deg, #0b0316 0%, #060112 45%, #02000a 100%);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-text-strong);
  margin: 0;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.text-gradient {
  background: linear-gradient(130deg, var(--color-accent), var(--glow-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.icon--arrow {
  width: 100%;
  height: 100%;
}

.cursor-trail {
  position: fixed;
  inset: 0;
  width: 100dvw;
  height: 100vh;
  pointer-events: none;
  z-index: 250;
  display: block;
  mix-blend-mode: screen;
}

@media (pointer: coarse) {
  .cursor-trail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-trail {
    display: none !important;
  }
}

.page {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-offset);
}

.hero,
.section {
  scroll-margin-top: calc(var(--header-offset) + 24px);
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page::before {
  background:
    radial-gradient(40% 40% at 22% 18%, rgba(254, 89, 194, 0.22), transparent 70%),
    radial-gradient(45% 45% at 78% 10%, rgba(76, 60, 255, 0.2), transparent 72%),
    radial-gradient(80% 60% at 50% 120%, rgba(32, 6, 60, 0.12), transparent 85%);
  opacity: 0.6;
}

.page::after {
  background: rgba(255, 255, 255, 0.015);
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 200;
  padding: clamp(6px, 1.5vw, 12px) clamp(20px, 6vw, 48px) clamp(10px, 1.8vw, 18px);
  background: transparent;
  box-shadow: none;
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 18px) clamp(18px, 3.5vw, 24px);
  border-radius: 999px;
  background: var(--header-shell-gradient);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 42px rgba(6, 0, 20, 0.32);
  backdrop-filter: blur(26px) saturate(160%);
}

.site-header__inner::before,
.site-header__inner::after {
  content: "";
  position: absolute;
  inset: 12px 22%;
  border-radius: inherit;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.22;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transform: translateX(0);
  animation: glassDrift 18s ease-in-out infinite;
}

.site-header__inner::after {
  inset: auto 16% 8px 16%;
  opacity: 0.16;
  background: linear-gradient(90deg, rgba(254, 89, 194, 0.16), rgba(76, 60, 255, 0.12), rgba(57, 240, 216, 0.16));
  animation: glassShimmer 14s linear infinite;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: start;
  text-decoration: none;
}

.brand:hover,
.brand:focus {
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
}

.brand__text {
  display: grid;
  gap: 3px;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  line-height: 1.05;
  text-align: left;
}

.brand__text-line {
  display: block;
  white-space: nowrap;
}

.brand--small .brand__mark {
  width: 30px;
  height: 30px;
}

.brand--small .brand__text {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  gap: 2px;
}

.site-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.8vw, 20px);
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 260;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(247, 244, 250, 0.75);
  text-decoration: none;
  transition: color 0.2s ease, background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.site-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(254, 89, 194, 0.45);
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 20% -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(254, 89, 194, 0.8), rgba(76, 60, 255, 0.8));
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: scaleX(0.6);
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  color: var(--color-text-strong);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__cta {
  display: none !important;
}

.site-header__actions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.site-header__cta {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-inline: clamp(24px, 3.6vw, 34px);
  min-height: 48px;
  box-shadow: 0 14px 30px rgba(241, 82, 173, 0.32);
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 4, 12, 0.8);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-strong);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  position: absolute;
  left: 50%;
  transform-origin: center;
}

.site-header__toggle span:nth-child(1) {
  top: 14px;
  transform: translateX(-50%);
}

.site-header__toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.site-header__toggle span:nth-child(3) {
  bottom: 14px;
  transform: translateX(-50%);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__toggle[aria-expanded="true"] {
  background: rgba(254, 89, 194, 0.18);
  border-color: rgba(254, 89, 194, 0.48);
}

.site-header__toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(254, 89, 194, 0.4);
}

.site-header__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(254, 89, 194, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
}

.btn--primary {
  position: relative;
  z-index: 0;
  border: none;
  color: #fff;
  background: linear-gradient(132deg, #ff6fd8 0%, #ef3fb2 46%, #6a2be3 100%);
  box-shadow: 0 18px 34px rgba(241, 82, 173, 0.32);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(241, 82, 173, 0.4);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  border-color: rgba(254, 89, 194, 0.45);
  color: var(--color-text-strong);
  background: rgba(8, 0, 16, 0.4);
  box-shadow: 0 12px 24px rgba(5, 0, 12, 0.4);
}

.btn--outline:hover {
  background: rgba(8, 0, 16, 0.58);
  border-color: rgba(254, 89, 194, 0.65);
  box-shadow: 0 16px 30px rgba(5, 0, 12, 0.45);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-text-strong);
  background: rgba(7, 0, 12, 0.38);
  box-shadow: 0 10px 22px rgba(5, 0, 12, 0.35);
}

.btn--ghost:hover {
  background: rgba(7, 0, 12, 0.52);
}

.btn--small {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: min(900px, 100vh);
  padding: clamp(100px, 14vw, 160px) clamp(24px, 6vw, 110px) clamp(90px, 10vw, 130px);
  margin-top: clamp(-128px, -11vw, -80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  text-align: center;
  overflow: hidden;
  background: radial-gradient(160% 160% at 50% -8%, #140821 0%, #090215 45%, #03000a 100%);
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: -25%;
  filter: blur(140px);
  opacity: 0.52;
  animation: heroGradient 26s ease-in-out infinite alternate;
}

.hero__gradient--primary {
  background: radial-gradient(circle at 28% 30%, rgba(254, 89, 194, 0.55), transparent 65%);
  animation-delay: -8s;
}

.hero__gradient--secondary {
  background: radial-gradient(circle at 74% 60%, rgba(76, 60, 255, 0.45), transparent 60%);
  animation-delay: -14s;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(32px, 5vw, 56px);
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hero__intro {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 680px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(254, 89, 194, 0.34);
  background: rgba(12, 6, 18, 0.72);
  backdrop-filter: blur(14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: rgba(247, 244, 250, 0.82);
}

.hero__badge-text {
  font-weight: 600;
}

.hero__badge-mark {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 8px rgba(254, 89, 194, 0.5));
}

.hero__title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero__title span {
  display: inline-block;
  background: linear-gradient(120deg, var(--color-accent), var(--glow-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  color: rgba(247, 244, 250, 0.78);
  margin: 0 auto 10px;
  max-width: 640px;
}

.hero__deck {
  position: relative;
  width: min(540px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(20px, 4vw, 32px);
  margin-top: clamp(18px, 4vw, 36px);
  z-index: 2;
}

.hero-wheel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.hero-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: visible;
  background: radial-gradient(circle at 52% 44%, rgba(254, 89, 194, 0.22), rgba(12, 8, 20, 0.94) 72%);
  box-shadow:
    0 60px 140px rgba(5, 0, 18, 0.72),
    0 0 42px rgba(76, 60, 255, 0.35),
    inset 0 0 22px rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  z-index: 2;
  isolation: isolate;
}

.hero-wheel:hover {
  transform: rotateX(6deg) rotateY(-6deg) translateY(-6px);
}

.hero-wheel::before,
.hero-wheel::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-wheel::before {
  background: conic-gradient(from 120deg, rgba(254, 89, 194, 0) 0deg, rgba(254, 89, 194, 0.5) 60deg, rgba(76, 60, 255, 0) 120deg, rgba(57, 240, 216, 0.45) 190deg, rgba(254, 89, 194, 0) 260deg);
  filter: blur(20px);
  animation: heroHighlightSweep 14s linear infinite;
}

.hero-wheel::after {
  inset: -10%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.22), transparent 45%),
    radial-gradient(circle at 78% 72%, rgba(57, 240, 216, 0.25), transparent 42%);
  filter: blur(48px);
  opacity: 0.35;
}

.hero-wheel__layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.hero-wheel__layer--glow {
  inset: -24%;
  background: radial-gradient(circle, rgba(254, 89, 194, 0.42) 0%, rgba(76, 60, 255, 0.36) 48%, rgba(57, 240, 216, 0.28) 66%, transparent 80%);
  filter: blur(80px);
  opacity: 0.95;
  mix-blend-mode: screen;
  z-index: -2;
  animation: wheelGlowPulse 8s ease-in-out infinite;
}

.hero-wheel__layer--rim {
  inset: -2%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 65%);
  opacity: 0.75;
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.16),
    inset 0 0 6px rgba(254, 89, 194, 0.45),
    0 0 32px rgba(76, 60, 255, 0.35);
}

.hero-wheel__layer--mid {
  inset: 8%;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.22), rgba(5, 4, 10, 0.18) 50%),
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.16) 0deg, rgba(255, 255, 255, 0.03) 4deg, rgba(255, 255, 255, 0.03) 8deg);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.82);
  animation: wheelSpin 26s linear infinite;
  mix-blend-mode: lighten;
  opacity: 0.9;
}

.hero-wheel__layer--inner {
  inset: 26%;
  border-radius: 50%;
  background: radial-gradient(circle at 52% 50%, rgba(34, 20, 54, 0.92), rgba(5, 0, 12, 1) 76%);
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.1), 0 0 18px rgba(254, 89, 194, 0.28);
  display: grid;
  place-items: center;
  animation: wheelSpinReverse 16s linear infinite;
}

.hero-wheel__display {
  position: relative;
  width: 76%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(30, 14, 46, 0.95), rgba(6, 0, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 26px rgba(254, 89, 194, 0.42), 0 0 38px rgba(76, 60, 255, 0.4);
  display: grid;
  place-items: center;
  overflow: hidden;
  animation: blackballPulse 6.2s ease-in-out infinite;
}

.hero-wheel__display::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 20deg, rgba(254, 89, 194, 0.55), rgba(76, 60, 255, 0.45), rgba(57, 240, 216, 0.4), rgba(254, 89, 194, 0.55));
  filter: blur(22px);
  opacity: 0.95;
  animation: wheelSpin 16s linear infinite;
  z-index: 0;
}

.hero-wheel__display::after {
  content: "";
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
  opacity: 0.75;
}

.hero-wheel__display .dotborder {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  opacity: 0.92;
  animation: wheelSpin 12s linear infinite;
  z-index: 1;
}

.hero-wheel__display .blackball__logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-wheel__display img {
  position: relative;
  width: 62%;
  filter: drop-shadow(0 0 16px rgba(254, 89, 194, 0.65));
  animation: wheelSpinReverse 14s linear infinite;
  z-index: 2;
}

.hero-wheel__border {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-wheel__border--dotted {
  border: 1px dashed rgba(247, 244, 250, 0.38);
  box-shadow: 0 0 22px rgba(254, 89, 194, 0.25);
  animation: wheelSpin 18s linear infinite;
}

.hero-wheel__sky {
  position: absolute;
  inset: -34%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 32%, rgba(254, 89, 194, 0.3), transparent 62%),
    radial-gradient(circle at 68% 70%, rgba(76, 60, 255, 0.26), transparent 65%),
    radial-gradient(circle, rgba(12, 8, 24, 0.4), transparent 78%);
  filter: blur(120px);
  mix-blend-mode: screen;
  opacity: 0.72;
  z-index: -3;
  animation: heroGradient 40s linear infinite;
  pointer-events: none;
}

.hero-wheel__forest {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 20%, rgba(210, 255, 6, 0.22), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(149, 0, 255, 0.2), transparent 60%),
    radial-gradient(circle, rgba(8, 4, 14, 0.65), transparent 82%);
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.6;
  z-index: -2;
  animation: heroGradient 26s linear infinite reverse;
  pointer-events: none;
}

.hero-wheel__comet {
  position: absolute;
  width: 150%;
  height: 12px;
  left: -25%;
  top: 50%;
  transform-origin: center;
  z-index: 4;
  animation: heroCometOrbit 22s linear infinite;
  pointer-events: none;
}

.hero-wheel__comet .fly {
  width: 260px;
  height: 12px;
  background: linear-gradient(90deg, transparent 0%, rgba(254, 89, 194, 0.95) 38%, rgba(76, 60, 255, 0.75) 70%, rgba(57, 240, 216, 0.6) 86%, transparent 100%);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(0);
  animation: heroCometTrail 6.2s linear infinite;
}

.hero-wheel:hover .hero-wheel__layer--mid,
.hero-wheel:hover .hero-wheel__layer--inner,
.hero-wheel:hover .hero-wheel__border--dotted,
.hero-wheel:hover .hero-wheel__display::before,
.hero-wheel:hover .hero-wheel__display .dotborder,
.hero-wheel:hover .hero-wheel__display img {
  animation-duration: 10s;
}

.hero-wheel:hover .hero-wheel__display {
  animation-duration: 3.2s;
}

.hero-wheel:hover .hero-wheel__comet {
  animation-duration: 14s;
}

.hero-wheel:hover .hero-wheel__comet .fly {
  animation-duration: 3.2s;
}

@media (max-width: 960px), (pointer: coarse) {
  /* Убираем тяжёлые анимации для мобильных, чтобы снизить лаги */
  .site-header__inner::before,
  .site-header__inner::after,
  .hero-wheel,
  .hero-wheel::before,
  .hero-wheel__layer--glow,
  .hero-wheel__layer--mid,
  .hero-wheel__layer--inner,
  .hero-wheel__display,
  .hero-wheel__display::before,
  .hero-wheel__display .dotborder,
  .hero-wheel__display img,
  .hero-wheel__border--dotted,
  .hero-wheel__sky,
  .hero-wheel__forest,
  .hero-wheel__comet,
  .hero-wheel__comet .fly {
    animation: none !important;
  }

  .hero-wheel {
    transition: none;
  }

  .hero-wheel__layer--glow {
    filter: blur(60px);
  }

  .hero-wheel__sky {
    filter: blur(80px);
  }
}

.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  align-items: stretch;
  gap: clamp(12px, 3vw, 18px);
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding-inline: clamp(24px, 4vw, 36px);
  border-radius: 999px;
  pointer-events: auto;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

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

.hero__cta--primary {
  box-shadow: 0 22px 44px rgba(241, 82, 173, 0.32);
}

.hero__cta--secondary {
  box-shadow: 0 16px 34px rgba(5, 0, 18, 0.42);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 3vw, 18px);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.hero__stats li {
  display: grid;
  gap: 6px;
  justify-items: center;
  background: rgba(12, 6, 22, 0.78);
  border: 1px solid rgba(254, 89, 194, 0.22);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2.5vw, 18px);
  color: rgba(247, 244, 250, 0.9);
  font-size: 0.92rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(5, 0, 12, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.hero__stats li:hover {
  border-color: rgba(254, 89, 194, 0.45);
  transform: translateY(-4px);
}

.hero__stats span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-strong);
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    justify-items: stretch;
  }

  .hero__intro {
    justify-items: start;
    text-align: left;
    align-items: start;
  }

  .hero__badge {
    justify-self: start;
  }

  .hero__deck {
    margin-top: 0;
    justify-items: center;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    justify-content: stretch;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .hero__lead {
    margin: 0 0 10px;
  }
}

.hero__scroll {
  position: absolute;
  bottom: clamp(60px, 10vw, 120px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 250, 0.35);
  background: rgba(7, 0, 12, 0.55);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.hero__scroll span {
  display: inline-block;
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: rgba(247, 244, 250, 0.9);
  position: relative;
  animation: heroScroll 2.4s ease-in-out infinite;
}

.hero__scroll span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(247, 244, 250, 0.85);
  border-bottom: 2px solid rgba(247, 244, 250, 0.85);
}

.hero__scroll:hover {
  transform: translateY(4px);
  border-color: rgba(254, 89, 194, 0.5);
  background: rgba(5, 0, 12, 0.65);
}

@keyframes heroGradient {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(120deg) scale(1.05);
  }
  100% {
    transform: rotate(240deg) scale(1);
  }
}

@keyframes wheelGlowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes heroHighlightSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes wheelSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes wheelSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes blackballPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 0 20px rgba(254, 89, 194, 0.4), 0 0 30px rgba(76, 60, 255, 0.32);
  }
  50% {
    transform: scale(0.96);
    box-shadow: inset 0 0 28px rgba(254, 89, 194, 0.55), 0 0 42px rgba(76, 60, 255, 0.44);
  }
}

@keyframes heroCometOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes heroCometTrail {
  0%,
  65% {
    opacity: 0;
    transform: translateX(0) scaleX(0.4);
  }
  70% {
    opacity: 1;
  }
  85% {
    opacity: 0.8;
    transform: translateX(-240px) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-320px) scaleX(1.1);
  }
}

@keyframes heroScroll {
  0%,
  100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(4px);
  }
}

.section {
  padding: 120px clamp(20px, 7vw, 64px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

#media.section {
  max-width: min(1380px, 96vw);
}

.section p {
  color: rgba(247, 244, 250, 0.78);
}

.section--dark {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 120px clamp(20px, 7vw, 60px);
  margin-block: 90px;
  background: linear-gradient(140deg, rgba(23, 18, 28, 0.88), rgba(10, 8, 12, 0.88));
  overflow: hidden;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(254, 89, 194, 0.16), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(57, 240, 216, 0.14), transparent 45%);
  z-index: 0;
}

.section--dark > * {
  position: relative;
  z-index: 1;
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(18px, 4vw, 40px);
  margin-bottom: clamp(24px, 5vw, 48px);
  align-items: center;
}

.about-founder__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(254, 89, 194, 0.22);
  box-shadow: 0 20px 40px rgba(5, 0, 12, 0.45);
}

.about-founder__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-founder__body h3 {
  margin-bottom: 12px;
}

.about-founder__body p {
  margin-bottom: 12px;
  color: rgba(247, 244, 250, 0.85);
}

.about-founder__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(247, 244, 250, 0.78);
}

  .about-founder__list li + li {
    margin-top: 6px;
  }

.about-map {
  margin-top: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(254, 89, 194, 0.2);
  box-shadow: 0 30px 60px rgba(5, 0, 12, 0.45);
}

.ya-map {
  width: 100%;
  height: clamp(260px, 35vw, 420px);
  background:
    radial-gradient(circle at 20% 8%, rgba(254, 89, 194, 0.18), transparent 55%),
    radial-gradient(circle at 82% 10%, rgba(76, 60, 255, 0.22), transparent 50%),
    linear-gradient(145deg, rgba(10, 6, 18, 0.96), rgba(6, 3, 12, 0.9));
  position: relative;
  overflow: hidden;
}

.ya-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(6, 3, 12, 0.35), rgba(18, 10, 28, 0.12));
}

.ya-map--compact {
  height: 280px;
}

.map-pin {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.map-pin__title {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(8, 4, 14, 0.88);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(3, 0, 10, 0.45);
}

.map-pin__icon-wrap {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(254, 89, 194, 0.9), rgba(76, 60, 255, 0.9));
  color: #fff;
  box-shadow: 0 18px 30px rgba(254, 89, 194, 0.35);
}

.map-pin__icon {
  width: 100%;
  height: 100%;
}

.map-pin__entry {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(8, 4, 14, 0.82);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 22px rgba(3, 0, 10, 0.35);
}

.map-pin__entry-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section--accent {
  background: linear-gradient(150deg, rgba(254, 89, 194, 0.18), rgba(76, 60, 255, 0.12));
  border-radius: var(--radius-lg);
  padding: 120px clamp(20px, 7vw, 60px);
  margin-block: 90px;
  position: relative;
  overflow: hidden;
}

.section--accent > * {
  position: relative;
  z-index: 1;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.section__header h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 0;
}

.section__header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(254, 89, 194, 0.6), rgba(76, 60, 255, 0.5));
}

.section__header p {
  color: rgba(247, 244, 250, 0.72);
  margin: 0;
}

.mission-banner {
  margin-top: clamp(24px, 3vw, 48px);
  width: 100%;
  border: 1px solid rgba(193, 155, 245, 0.32);
  border-radius: calc(var(--radius-lg) + 6px);
  padding: clamp(26px, 5vw, 48px);
  background: linear-gradient(150deg, rgba(24, 16, 32, 0.7), rgba(12, 8, 20, 0.55));
}

.mission-banner__content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.mission-banner__text {
  margin: 0 auto;
  max-width: min(840px, 92vw);
  font-size: clamp(1.05rem, 3vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: rgba(247, 244, 250, 0.92);
}

svg[height='0'][aria-hidden='true'] {
  position: fixed;
}

.feature-grid,
.card-grid,
.review-grid,
.media-grid,
.contact-grid,
.studio-grid,
.payment-grid {
  display: grid;
  gap: 28px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.card,
.review-card,
.media-card,
.studio-grid__item,
.steps li {
  position: relative;
  isolation: isolate;
}

.feature-card::before,
.card::before,
.review-card::before,
.media-card::before,
.studio-grid__item::before,
.steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(254, 89, 194, 0.35), rgba(76, 60, 255, 0.25));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover::before,
.card:hover::before,
.review-card:hover::before,
.media-card:hover::before,
.studio-grid__item:hover::before,
.steps li:hover::before {
  opacity: 1;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(28, 20, 30, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.feature-card h3 {
  margin-top: 0;
}

.course-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-tab {
  background: rgba(18, 14, 20, 0.7);
  color: rgba(247, 244, 250, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.course-tab.is-active {
  background: linear-gradient(135deg, rgba(254, 89, 194, 0.3), rgba(76, 60, 255, 0.25));
  color: var(--color-text-strong);
  border-color: rgba(254, 89, 194, 0.4);
  box-shadow: 0 10px 25px rgba(254, 89, 194, 0.22);
  transform: translateY(-2px);
}

.course-panels {
  display: grid;
}

.course-panel[hidden] {
  display: none;
}

.course-panel.is-active {
  animation: fadeIn 0.4s ease;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(18, 14, 20, 0.85);
  border: 1px solid rgba(254, 89, 194, 0.18);
  box-shadow: 0 18px 40px rgba(7, 0, 12, 0.45);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card > .btn,
.card > button {
  margin-top: auto;
  align-self: flex-start;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(207, 197, 211, 0.75);
}

.card ul li::marker {
  color: rgba(254, 89, 194, 0.6);
}

.card__price {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
  color: var(--color-highlight);
}

.card--light {
  background: rgba(249, 242, 252, 0.08);
  color: var(--color-text-strong);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.card--light .card__price {
  color: var(--color-accent);
}

.studio-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.studio-grid__item {
  background: rgba(26, 18, 30, 0.7);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  background: rgba(26, 18, 28, 0.72);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.steps__number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(254, 89, 194, 0.6), rgba(76, 60, 255, 0.6));
  color: var(--color-text-strong);
  margin-bottom: 12px;
}

.media-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.media-card {
  background: rgba(18, 14, 20, 0.78);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 89, 194, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.media-card__thumb {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius-sm);
}

.media-card__thumb--photo {
  min-height: 200px;
  background:
    radial-gradient(circle at 20% 30%, rgba(254, 89, 194, 0.28), transparent 65%),
    radial-gradient(circle at 80% 35%, rgba(76, 60, 255, 0.32), transparent 70%),
    radial-gradient(circle at 50% 80%, rgba(57, 240, 216, 0.25), transparent 70%),
    linear-gradient(155deg, rgba(20, 10, 26, 0.92), rgba(8, 4, 14, 0.92));
}

.media-card__thumb--photo::before,
.media-card__thumb--photo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.7;
}

.media-card__thumb--photo::before {
  inset: 18% 28% auto 18%;
  height: 58%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
}

.media-card__thumb--photo::after {
  inset: auto 18% 12% 30%;
  height: 52%;
  background: radial-gradient(circle, rgba(254, 89, 194, 0.45), rgba(254, 89, 194, 0));
  transform: rotate(-22deg);
  opacity: 0.55;
}

.media-card__thumb--audio,
.media-card__thumb--video {
  background: rgba(8, 4, 14, 0.85);
  padding: 0;
  aspect-ratio: 16 / 9;
}

.media-card__embed {
  position: relative;
  flex: 1;
}

.media-card__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  overflow: hidden;
}

.media-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  align-self: flex-start;
  margin-top: 12px;
}

.media-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.media-card__secondary {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.media-card__secondary:hover,
.media-card__secondary:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.slider {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(254, 89, 194, 0.35);
  background: rgba(10, 6, 16, 0.75);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.slider__btn:hover:not(:disabled) {
  background: rgba(254, 89, 194, 0.35);
  border-color: rgba(254, 89, 194, 0.6);
  transform: translateY(-2px);
}

.slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.slider__btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.slider__track {
  display: flex;
  flex: 1 1 auto;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 24px;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 12px;
  scrollbar-width: none;
  margin-left: 24px;
}

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

.slider__track > * {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.slider--reviews {
  gap: 24px;
}

.slider--reviews .slider__track {
  padding-inline: clamp(4px, 2vw, 18px);
}

.slider--reviews .slider__track > * {
  flex: 0 0 clamp(300px, 29vw, 380px);
}

.slider--media {
  gap: 24px;
}

.slider--media .slider__btn {
  width: 56px;
  height: 56px;
}

.slider--media .slider__btn svg {
  width: 30px;
  height: 30px;
}

.slider--media .slider__track {
  padding-inline: clamp(4px, 2vw, 18px);
}

.slider--media .slider__track .media-card {
  flex: 0 0 clamp(300px, 29vw, 410px);
}

.slider-hint {
  display: none;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: center;
  opacity: 0.7;
  margin-top: clamp(10px, 2vw, 16px);
}

.slider-hint--mobile {
  display: none;
}

.slider-hint__icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  animation: swipe 1.6s ease-in-out infinite;
}

@keyframes swipe {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  40%, 60% {
    transform: translateX(10px);
    opacity: 0.9;
  }
}

@media (max-width: 740px) {
  #media.section {
    max-width: none;
    width: 100dvw;
    padding: 100px 0 90px;
  }

  #media .section__header {
    padding: 0 20px;
  }

  #reviews.section {
    max-width: none;
    width: 100dvw;
    padding: 100px 0 90px;
  }

  #reviews .section__header {
    padding: 0 20px;
  }

  .slider--media {
    gap: 16px;
    position: relative;
    width: 100dvw;
    margin-left: calc(-50dvw + 50%);
  }

  .slider--media .slider__btn {
    display: none;
  }

  .slider--media .slider__track {
    padding-inline: 32px 72px;
    gap: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .slider--media .slider__track .media-card {
    flex: 0 0 min(74vw, 320px);
  }

  .slider--reviews {
    gap: 16px;
    position: relative;
    width: 100dvw;
    margin-left: calc(-50dvw + 50%);
  }

  .slider--reviews .slider__btn {
    display: none;
  }

  .slider--reviews .slider__track {
    padding-inline: clamp(18px, 6vw, 32px);
    gap: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .slider--reviews .slider__track > * {
    flex: 0 0 min(74vw, 320px);
    scroll-snap-align: start;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(18, 14, 20, 0.78);
  border: 1px solid rgba(254, 89, 194, 0.2);
  color: var(--color-text);
  min-height: 100%;
  overflow: hidden;
}

.review-card__media {
  position: relative;
  display: block;
  height: clamp(180px, 48vw, 220px);
  margin: -28px -28px 18px;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  isolation: isolate;
}

.review-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.review-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 2, 12, 0.05) 0%, rgba(8, 2, 12, 0.35) 58%, rgba(18, 8, 30, 0.55) 100%),
    radial-gradient(circle at 18% 22%, rgba(254, 89, 194, 0.32), transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(76, 60, 255, 0.28), transparent 62%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.review-card:hover .review-card__avatar {
  transform: scale(1.06);
}

.review-card__badge {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.review-card__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-strong);
}

.review-card__quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(247, 244, 250, 0.88);
  font-style: normal;
  position: relative;
  padding-left: 18px;
}

.review-card__quote::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 8px;
  height: 80%;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(254, 89, 194, 0.7), rgba(76, 60, 255, 0.6));
  opacity: 0.9;
}

.lead-form,
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(22, 16, 24, 0.9);
  padding: clamp(28px, 6vw, 48px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 89, 194, 0.18);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.lead-form::before,
.payment-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, rgba(254, 89, 194, 0.6), rgba(76, 60, 255, 0.45));
  opacity: 0.85;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.form-grid label,
.payment-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--color-muted);
}

.form-grid label.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* Promo code collapsible */
.promo-toggle {
  display: inline-block;
  cursor: pointer;
  color: rgba(247, 244, 250, 0.9);
  font-weight: 600;
  margin-bottom: 6px;
}

.promo-toggle:hover,
.promo-toggle:focus-visible {
  text-decoration: underline;
  outline: none;
}

.promo-label {
  display: inline-block;
  color: rgba(247, 244, 250, 0.9);
  font-weight: 600;
  margin-bottom: 6px;
  cursor: pointer;
}

.promo-label:hover,
.promo-label:focus-visible {
  text-decoration: underline;
  outline: none;
}

/* Enforce initial hidden state regardless of UA stylesheet */
[data-promo-container][hidden],
[data-promo-label][hidden] {
  display: none !important;
}

/* Chevron for toggle/label */
.promo-toggle::after,
.promo-label::after { content: none; }

/* Promo code field */
.promo-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 280ms ease, opacity 220ms ease, transform 220ms ease;
}

.promo-field.is-open {
  opacity: 1;
  transform: translateY(0);
}

.promo-status {
  font-size: 13px;
  color: rgba(247, 244, 250, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 20px;
}

.promo-status[data-state="ok"] {
  color: #39f0d8;
}

.promo-status[data-state="fail"] {
  color: rgba(255, 120, 120, 0.9);
}

.promo-status__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.promo-status__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.promo-status__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-status__main {
  font-weight: 700;
}

.promo-status__desc {
  opacity: 0.95;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(254, 89, 194, 0.28);
  background:
    linear-gradient(135deg, rgba(254, 89, 194, 0.16), rgba(76, 60, 255, 0.12)),
    rgba(8, 6, 14, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 28px rgba(6, 0, 18, 0.35);
  color: var(--color-text-strong);
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

input[data-invalid="true"] {
  border-color: rgba(255, 120, 120, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 120, 120, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(57, 240, 216, 0.55);
  box-shadow: 0 0 0 3px rgba(57, 240, 216, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(57, 240, 216, 0.18), rgba(76, 60, 255, 0.12)),
    rgba(5, 4, 10, 0.92);
}

.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(135deg, rgba(254, 89, 194, 0.16), rgba(76, 60, 255, 0.12)),
    rgba(8, 6, 14, 0.88),
    url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(247,244,250,0.85)' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, 12px;
  background-position: center, center, calc(100% - 18px) 52%;
}

.lead-form select:focus {
  background-image:
    linear-gradient(135deg, rgba(57, 240, 216, 0.18), rgba(76, 60, 255, 0.12)),
    rgba(5, 4, 10, 0.92),
    url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(247,244,250,0.95)' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lead-form select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--color-text-strong);
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 244, 250, 0.48);
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  flex-wrap: nowrap;
}

.checkbox--inline {
  display: inline-flex;
  justify-content: flex-start;
  gap: 12px;
}

.form-grid .checkbox {
  justify-self: start;
}

.checkbox input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.checkbox span {
  color: rgba(247, 244, 250, 0.78);
  line-height: 1.4;
  white-space: nowrap;
  max-width: 100%;
}

.form-status {
  min-height: 22px;
  font-size: 14px;
  color: var(--color-muted);
}

.lead-form__actions {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1fr);
  gap: clamp(16px, 4vw, 48px);
  align-items: stretch;
  justify-content: space-between;
}

.lead-form__actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 56px;
}

.lead-form__booking {
  text-align: center;
}

@media (max-width: 720px) {
  .lead-form__actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.payment-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.payment-note {
  margin-top: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 89, 194, 0.18);
  background: rgba(18, 14, 24, 0.65);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.payment-steps {
  margin: 0;
  padding-left: 18px;
  color: rgba(247, 244, 250, 0.78);
}

.payment-steps li + li {
  margin-top: 6px;
}

.policy-list {
  padding-left: 18px;
  color: rgba(247, 244, 250, 0.75);
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.contact-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(20, 14, 26, 0.92), rgba(10, 6, 16, 0.92));
  border: 1px solid rgba(254, 89, 194, 0.14);
  box-shadow: 0 30px 50px rgba(5, 0, 12, 0.55);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 10% 12% auto;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(254, 89, 194, 0.25), transparent 65%);
  opacity: 0.4;
  filter: blur(8px);
  z-index: 0;
}

.contact-card--map::before {
  inset: auto 10% -40px;
}

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

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254, 89, 194, 0.1);
  border: 1px solid rgba(254, 89, 194, 0.3);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-strong);
  margin-bottom: 14px;
}

.contact-card__meta {
  color: rgba(247, 244, 250, 0.7);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.contact-card__note {
  margin-top: 18px;
  color: rgba(247, 244, 250, 0.65);
  font-size: 0.9rem;
}

.contact-card__group {
  margin-top: 8px;
}


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

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-strong);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-link span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 250, 0.62);
}

.contact-link strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: rgba(247, 244, 250, 0.9);
  word-break: break-word;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(254, 89, 194, 0.4);
  background: rgba(254, 89, 194, 0.12);
  text-decoration: none;
}

  .contact-list {
    list-style: none;
    padding: 0;
    color: rgba(247, 244, 250, 0.78);
  }

.social {
  display: flex;
  gap: 12px;
}

.social a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(254, 89, 194, 0.28);
  background: rgba(18, 14, 24, 0.7);
  color: var(--color-text-strong);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social a:hover {
  background: linear-gradient(135deg, rgba(254, 89, 194, 0.28), rgba(76, 60, 255, 0.24));
  transform: translateY(-2px);
}

.map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(254, 89, 194, 0.18);
  min-height: 240px;
  position: relative;
}

.map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

.map--elevated {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.media-modal {
  position: fixed;
  inset: 0;
  padding: clamp(16px, 4vw, 32px);
  background: rgba(8, 4, 12, 0.78);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2200;
}

.media-modal[hidden] {
  display: none;
}

.media-modal__content {
  width: min(840px, 100%);
  background: rgba(10, 6, 16, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(254, 89, 194, 0.35);
  box-shadow: 0 48px 120px rgba(3, 0, 8, 0.65);
  padding: clamp(20px, 4vw, 30px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-modal__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
}

.media-modal__body {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(6, 2, 10, 0.85);
}

.media-modal__body video,
.media-modal__body audio {
  display: block;
  width: 100%;
  background: #000;
}

.media-modal__body video {
  max-height: min(520px, 70vh);
}

.media-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.media-modal__close:hover {
  background: rgba(254, 89, 194, 0.28);
  transform: translateY(-2px);
}

.media-modal__close:focus-visible {
  outline: 2px solid rgba(254, 89, 194, 0.6);
  outline-offset: 2px;
}

.media-modal__close svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.9);
}

.is-modal-open {
  overflow: hidden;
}

.contact-card--map .map {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-card--map .map .ya-map {
  flex: 1;
  height: 280px;
}

.contact-hints {
  margin: 16px 0 24px;
  padding-left: 18px;
  color: rgba(247, 244, 250, 0.68);
  font-size: 0.95rem;
}

.contact-card__btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.placeholder {
  letter-spacing: 4px;
}

.site-footer {
  border-top: 1px solid rgba(254, 89, 194, 0.18);
  background: linear-gradient(120deg, rgba(11, 6, 14, 0.95), rgba(18, 12, 24, 0.95));
  padding: 54px 24px;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.popup {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 4, 0.88);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.popup[hidden] {
  display: none;
}

.popup__content {
  background: rgba(17, 12, 17, 0.94);
  padding: clamp(28px, 6vw, 46px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 89, 194, 0.24);
  box-shadow: var(--shadow-soft);
  position: relative;
  max-width: 420px;
  text-align: center;
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--color-muted);
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: rgba(18, 14, 20, 0.9);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 89, 194, 0.2);
  box-shadow: var(--shadow-soft);
  max-width: min(520px, 90vw);
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  z-index: 400;
  color: rgba(247, 244, 250, 0.85);
}

.cookie-banner .btn.btn--small {
  background: linear-gradient(135deg, rgba(254, 89, 194, 0.9), rgba(76, 60, 255, 0.85));
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
}

.cookie-banner[hidden] {
  display: none;
}

.will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.will-animate.is-visible {
  opacity: 1;
  transform: none;
}

.legal-page {
  background: radial-gradient(circle at top, rgba(254, 89, 194, 0.08), transparent 55%), var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) clamp(18px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-container h1 {
  margin-bottom: 12px;
}

.legal-container h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.requisites {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 12px 20px;
  background: rgba(17, 12, 17, 0.85);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 89, 194, 0.16);
}

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

.requisites dd {
  margin: 0;
}
@media (max-width: 375px) {
  .brand__text {
    display: none;
  }
}

@media (max-width: 640px) {
  .requisites {
    grid-template-columns: 1fr;
  }

  .site-header__cta {
    display: inline-flex;
    font-size: 0.78rem;
    padding-inline: 18px;
    min-height: 40px;
  }

}

@media (max-width: 1250px) {
  .site-header {
    padding-inline: clamp(14px, 6vw, 36px);
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    gap: 16px;
    padding-inline: clamp(18px, 8vw, 28px);
    overflow: visible;
  }

  .site-nav {
    position: fixed;
    top: clamp(88px, 16vw, 148px);
    left: 50%;
    transform: translate(-50%, -24px) scale(0.96);
    width: min(420px, calc(100% - 32px));
    background: transparent;
    border-radius: 32px;
    padding: clamp(22px, 5vw, 32px);
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(5, 0, 12, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s ease;
    z-index: 190;
    max-height: calc(100vh - clamp(120px, 24vw, 220px));
    overflow-y: auto;
    overflow-x: hidden;
    isolation: isolate;
  }

  .site-nav > * {
    position: relative;
    z-index: 1;
  }

  .site-nav::before,
  .site-nav::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
  }

  .site-nav::before {
    inset: 0;
    background:
      radial-gradient(80% 120% at 20% 0%, rgba(254, 89, 194, 0.18), transparent 68%),
      radial-gradient(70% 110% at 80% 0%, rgba(76, 60, 255, 0.16), transparent 72%),
      var(--header-shell-gradient);
    background-color: rgba(8, 4, 12, 0.88);
    -webkit-backdrop-filter: blur(26px) saturate(160%);
    backdrop-filter: blur(26px) saturate(160%);
    opacity: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 50px rgba(5, 0, 12, 0.5);
  }

  .site-nav::after {
    inset: auto 16% 12px 16%;
    opacity: 0.18;
    background: linear-gradient(90deg, rgba(254, 89, 194, 0.24), rgba(76, 60, 255, 0.2), rgba(57, 240, 216, 0.24));
  }

  .site-nav a {
    width: 100%;
    font-size: 1.05rem;
    justify-content: center;
    padding: 14px 18px;
    color: var(--color-text-strong);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(5, 0, 12, 0.4);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    position: relative;
    border-radius: 999px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus,
  .site-nav a.is-active {
    transform: none;
    background: linear-gradient(135deg, rgba(254, 89, 194, 0.28), rgba(76, 60, 255, 0.2));
    border-color: rgba(254, 89, 194, 0.4);
    box-shadow: 0 18px 42px rgba(254, 89, 194, 0.22);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    pointer-events: all;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__cta {
    display: inline-flex;
    font-size: 0.82rem;
    padding-inline: clamp(16px, 4vw, 24px);
    min-height: 42px;
  }

  .site-nav__cta {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 920px) {
  .hero {
    padding: clamp(140px, 26vw, 200px) clamp(18px, 9vw, 56px) clamp(110px, 18vw, 180px);
    /*margin-top: -72px;*/
  }

  .hero__inner {
    gap: clamp(32px, 8vw, 56px);
  }

  .hero__deck {
    width: min(520px, 92vw);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 780px) {
  .hero__deck {
    width: min(400px, 92vw);
    gap: 20px;
    margin-top: 32px;
  }

  .about-founder {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 4vw, 24px);
    align-items: stretch;
  }

  .hero__cta {
    width: 100%;
    transform: none;
    box-shadow: none;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-offset: clamp(78px, 20vw, 110px);
  }

  .section {
    padding: 80px 18px;
  }

  .section--dark,
  .section--accent {
    padding: 110px 18px;
  }

  .hero {
    padding: 120px 18px 96px;
    margin-top: -107px;
  }

  .hero__badge {
    letter-spacing: 0.22em;
    font-size: 0.78rem;
  }

  .hero__title {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__deck {
    width: min(340px, 92vw);
    gap: 18px;
    margin-top: 28px;
  }

  .hero__cta {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero__stats {
    gap: 12px;
  }

  .hero__scroll {
    bottom: clamp(48px, 14vw, 84px);
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    padding-inline: 18px;
  }

  .brand__text {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    gap: 2px;
  }

  .site-nav {
    width: calc(100% - 24px);
  }

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

  .cookie-banner {
    bottom: 18px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes waveMove {
  from {
    transform: translateX(-15%);
  }
  to {
    transform: translateX(15%);
  }
}

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