@charset "UTF-8";

/* ==========================================================================
   AURA DESIGN TOKENS
   ========================================================================== */
:root {
  /* Colors */
  --aura-bg: #1C1E24;
  --aura-surface: #2D313A;
  --aura-surface-alt: #3A3F4B;
  
  --aura-primary: #FF2A42;
  --aura-secondary: #00E5FF;
  --aura-accent: #DFFF00;
  
  --aura-text-main: #F0F2F5;
  --aura-text-muted: #9AA0A6;

  /* Typography */
  --aura-font-heading: 'Unbounded', sans-serif;
  --aura-font-body: 'Manrope', sans-serif;

  /* Spacing */
  --aura-section-y: 120px;
  --aura-section-x: 24px;
  --aura-gap-sm: 16px;
  --aura-gap-md: 32px;
  --aura-gap-lg: 64px;

  /* Borders & Radius */
  --aura-radius-card: 16px;
  --aura-radius-button: 9999px;
  --aura-radius-image: 16px;
  --aura-border-color: rgba(255, 255, 255, 0.1);
  --aura-border-width: 2px;

  /* Shadows */
  --aura-shadow-card: 0 12px 32px rgba(0, 0, 0, 0.3);
  --aura-shadow-glow-primary: 0 0 24px rgba(255, 42, 66, 0.4);
  --aura-shadow-glow-secondary: 0 0 24px rgba(0, 229, 255, 0.4);
  
  /* Transitions */
  --aura-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Native cursor only ? kill legacy custom dot/ring/splash */
.aura-cursor-dot,
.aura-cursor-ring,
#splash-cursor-canvas {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html.has-aura-cursor,
html.has-aura-cursor body,
html.has-aura-cursor a,
html.has-aura-cursor button {
  cursor: auto !important;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--aura-font-body);
  background-color: var(--aura-bg);
  color: var(--aura-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--aura-transition);
}

a:hover, a:focus {
  color: var(--aura-primary);
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accessibility: Remove outlines and provide custom focus states */
:focus-visible {
  outline: 2px solid var(--aura-secondary);
  outline-offset: 4px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--aura-font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--aura-gap-sm);
  color: var(--aura-text-main);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
  margin-bottom: 1em;
}

.text-muted {
  color: var(--aura-text-muted);
}

/* ==========================================================================
   LAYOUT & SHAPES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--aura-section-x);
}

.section {
  padding: var(--aura-section-y) 0;
  position: relative;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--aura-gap-md);
}

/* Skew transition helper */
.skew-section {
  position: relative;
  z-index: 1;
}
.skew-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: inherit;
  transform: skewY(-2deg);
  transform-origin: 0 50%;
  z-index: -1;
}

/* Diagonal Cut / Hero Transition ? disabled (straight edges) */
.hero-transition {
  clip-path: none;
}

/* Shared interactive grid ? offer + training */
.aura-grid-zone {
  position: relative;
  overflow: hidden;
  background: var(--aura-bg);
}

.aura-grid-zone__base,
.aura-grid-zone__snake {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aura-grid-zone__base {
  z-index: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: offer-grid-drift 22s linear infinite;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.aura-grid-zone__snake {
  z-index: 1;
  overflow: visible;
}

.aura-grid-zone__snake-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  height: 130px;
  margin: -65px 0 0 -65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.32) 0%, rgba(122, 255, 74, 0.14) 38%, transparent 68%);
  filter: blur(7px);
  opacity: 0;
  will-change: transform, opacity;
}

.aura-grid-zone > section {
  position: relative;
  z-index: 2;
}

.section--training {
  background: transparent;
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* Offer ? full-bleed viewport sync + GEO immersive */
.offer-sync {
  --offer-sync-header: 4.25rem;
  --offer-sync-viewport: calc(100dvh - var(--offer-sync-header));
  background: var(--aura-bg);
}

.offer-sync.section {
  padding: 0;
}

.offer-sync__mast {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2vh, 1.5rem);
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: clamp(2rem, 5vh, 4rem) 0 0 clamp(1.25rem, 5vw, 4rem);
  text-align: left;
  pointer-events: none;
}

.offer-sync:not(.offer-sync--static) .offer-sync__mast {
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

.offer-sync__title {
  margin: 0;
  font-family: var(--aura-font-heading);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.offer-sync__title-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.offer-sync__title-num {
  font-size: clamp(5rem, 18vw, 12rem);
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.25vw, 3px) var(--aura-accent);
  line-height: 0.75;
  margin-left: -0.05em;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.offer-sync__title-word {
  font-size: clamp(2.2rem, 6.8vw, 5.5rem);
  color: var(--aura-text-main);
  margin-top: -0.15em;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.85);
}

.offer-sync__mast-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: clamp(0.75rem, 1.5vw, 1.25rem);
  border-left: 2px solid var(--aura-secondary);
}

.offer-sync__kicker {
  margin: 0;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aura-secondary);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.offer-sync__kicker::before,
.offer-sync__kicker::after {
  display: none;
}

.offer-sync__pitch {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
  background: none;
  border: none;
  clip-path: none;
  padding: 0;
  backdrop-filter: none;
}

.offer-sync__pitch span {
  color: var(--aura-accent);
  font-weight: 800;
}

.offer-sync__pin {
  position: relative;
  min-height: var(--offer-sync-viewport);
}

.offer-sync__viewport {
  position: relative;
  width: 100%;
  height: var(--offer-sync-viewport);
  min-height: var(--offer-sync-viewport);
  overflow: hidden;
}

.offer-sync__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.offer-sync__stage::before,
.offer-sync__stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}

.offer-sync__stage::before {
  top: 0;
  height: 48%;
  background: linear-gradient(to bottom, rgba(8, 10, 14, 0.78) 0%, rgba(8, 10, 14, 0.34) 52%, transparent 100%);
}

.offer-sync__stage::after {
  bottom: 0;
  height: 42%;
  background: linear-gradient(
    to top,
    rgba(8, 10, 14, 0.78) 0%,
    rgba(8, 10, 14, 0.28) 52%,
    transparent 100%
  );
}

.offer-sync__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.offer-sync__ui {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.offer-sync__ui-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  flex: 1;
  min-height: 100%;
  padding-top: 0;
  padding-bottom: clamp(1.25rem, 3vh, 2rem);
}

.offer-sync__main {
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.8vh, 1rem);
  flex: 0 0 auto;
  width: 100%;
  max-width: min(54rem, 100%);
  pointer-events: auto;
  padding: 0;
  border: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  align-self: stretch;
  justify-self: start;
}

.offer-sync__rail-line {
  position: relative;
  flex-shrink: 0;
  align-self: stretch;
  width: 100%;
  height: 2px;
  min-height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.offer-sync__rail-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--aura-primary), var(--aura-secondary));
  transform: scaleX(0.08);
  transform-origin: left center;
}

.offer-sync__rail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1;
  gap: 0.35rem clamp(0.85rem, 2vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  min-height: auto;
}

.offer-sync__rail li {
  margin: 0;
}

.offer-sync__step {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  width: auto;
  padding: 0.2rem 0 0.35rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.offer-sync__step:not(.is-active) {
  opacity: 0.45;
}

.offer-sync__step.is-active {
  opacity: 1;
  transform: none;
  border-bottom-color: var(--aura-secondary);
}

.offer-sync__step-num {
  flex-shrink: 0;
  font-family: var(--aura-font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--aura-primary);
}

.offer-sync__step.is-active .offer-sync__step-num {
  color: var(--aura-secondary);
}

.offer-sync__step-tag {
  font-family: var(--aura-font-heading);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.offer-sync__step.is-active .offer-sync__step-tag {
  color: var(--aura-text-main);
}

.offer-sync__panel {
  position: relative;
  align-self: stretch;
  min-height: clamp(5.5rem, 14vh, 7.5rem);
  max-width: min(46rem, 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.offer-sync__panel-item {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  color: inherit;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.offer-sync__panel-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: inherit;
  text-decoration: none;
}

.offer-sync__panel-item.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.offer-sync__panel-title {
  margin: 0 0 0.4rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--aura-text-main);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.8);
}

.offer-sync__panel-text {
  margin: 0 0 0.75rem;
  max-width: 40rem;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.75);
}

.offer-sync__panel-item--hot .offer-sync__panel-title {
  color: var(--aura-accent);
}

.offer-sync__panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.72rem 1.25rem;
  border: 1px solid rgba(0, 229, 255, 0.62);
  background: rgba(0, 229, 255, 0.14);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  font-family: var(--aura-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aura-secondary);
  text-shadow: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-sync__panel-item--hot .offer-sync__panel-cta {
  border-color: rgba(223, 255, 0, 0.62);
  background: rgba(223, 255, 0, 0.12);
  color: var(--aura-accent);
}

.offer-sync__panel-item:hover .offer-sync__panel-cta,
.offer-sync__panel-link:hover .offer-sync__panel-cta,
.offer-sync__panel-link:focus-visible .offer-sync__panel-cta {
  color: #0a0a0c;
  background: var(--aura-secondary);
  border-color: var(--aura-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.28);
}

.offer-sync__panel-item--hot:hover .offer-sync__panel-cta,
.offer-sync__panel-item--hot .offer-sync__panel-link:hover .offer-sync__panel-cta,
.offer-sync__panel-item--hot .offer-sync__panel-link:focus-visible .offer-sync__panel-cta {
  color: #0a0a0c;
  background: var(--aura-accent);
  border-color: var(--aura-accent);
  box-shadow: 0 8px 24px rgba(223, 255, 0, 0.22);
}

.offer-sync:not(.offer-sync--static) .offer-sync__slide-body {
  display: none;
}

.offer-sync__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  z-index: 1;
  clip-path: inset(100% 0% 0% 0%);
  pointer-events: none;
  will-change: clip-path;
}

.offer-sync:not(.offer-sync--static) .offer-sync__slide {
  pointer-events: none !important;
  cursor: default;
}

.offer-sync__slide.is-active {
  z-index: 2;
  clip-path: inset(0% 0% 0% 0%);
  pointer-events: auto;
}

.offer-sync__slide[data-offer-slide="0"] {
  clip-path: inset(0% 0% 0% 0%);
  z-index: 1;
}

.offer-sync__slide-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: none;
}

.offer-sync__slide--portrait {
  background-color: #07090d;
}

.offer-sync__slide--landscape-fit {
  background-color: #07090d;
}

.offer-sync__slide--landscape-fit .offer-sync__slide-bg {
  background-position: center 28%;
}

.offer-sync__slide--fit-height {
  background-color: #07090d;
}

.offer-sync__slide--fit-height .offer-sync__slide-bg {
  background-position: center center;
}

.offer-sync__slide[data-offer-slide="2"] .offer-sync__slide-bg {
  background-position: 22% center;
}

.offer-sync__slide[data-offer-slide="3"] .offer-sync__slide-bg {
  background-position: center 38%;
}

.offer-sync__slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.65) 0%, rgba(8, 10, 14, 0.15) 30%, transparent 60%, rgba(8, 10, 14, 0.45) 85%, rgba(8, 10, 14, 0.8) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.55) 25%, transparent 65%);
  pointer-events: none;
}

.offer-sync__slide-body {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-left: 0;
  padding-bottom: clamp(0.5rem, 2vh, 1rem);
}

.offer-sync__slide-label {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--aura-font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.offer-sync__slide-title {
  margin: 0 0 0.5rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

.offer-sync__slide--hot .offer-sync__slide-title {
  color: var(--aura-accent);
}

.offer-sync__slide-text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.76);
}

.offer-sync__slide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(0, 229, 255, 0.62);
  background: rgba(0, 229, 255, 0.14);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  font-family: var(--aura-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aura-secondary);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-sync__slide--hot .offer-sync__slide-cta {
  border-color: rgba(223, 255, 0, 0.62);
  background: rgba(223, 255, 0, 0.12);
  color: var(--aura-accent);
}

.offer-sync:not(.offer-sync--static) .offer-sync__slide.is-active:hover .offer-sync__slide-cta,
.offer-sync:not(.offer-sync--static) .offer-sync__slide.is-active:focus-visible .offer-sync__slide-cta {
  color: #0a0a0c;
  background: var(--aura-secondary);
  border-color: var(--aura-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.28);
}

.offer-sync:not(.offer-sync--static) .offer-sync__slide--hot.is-active:hover .offer-sync__slide-cta,
.offer-sync:not(.offer-sync--static) .offer-sync__slide--hot.is-active:focus-visible .offer-sync__slide-cta {
  color: #0a0a0c;
  background: var(--aura-accent);
  border-color: var(--aura-accent);
  box-shadow: 0 8px 24px rgba(223, 255, 0, 0.22);
}

.offer-sync:not(.offer-sync--static) .offer-sync__slide.is-active:hover .offer-sync__slide-shade,
.offer-sync:not(.offer-sync--static) .offer-sync__slide.is-active:focus-visible .offer-sync__slide-shade,
.offer-sync:not(.offer-sync--static) .offer-sync__slide--hot.is-active:hover .offer-sync__slide-shade,
.offer-sync:not(.offer-sync--static) .offer-sync__slide--hot.is-active:focus-visible .offer-sync__slide-shade {
  transform: none;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.72) 0%, rgba(8, 10, 14, 0.22) 30%, transparent 60%, rgba(8, 10, 14, 0.5) 85%, rgba(8, 10, 14, 0.85) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.6) 25%, transparent 65%);
}

.offer-sync--static .offer-sync__slide.is-active:hover .offer-sync__slide-cta,
.offer-sync--static .offer-sync__slide.is-active:focus-visible .offer-sync__slide-cta {
  color: #0a0a0c;
  background: var(--aura-secondary);
  border-color: var(--aura-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.28);
}

.offer-sync--static .offer-sync__slide--hot.is-active:hover .offer-sync__slide-cta,
.offer-sync--static .offer-sync__slide--hot.is-active:focus-visible .offer-sync__slide-cta {
  color: #0a0a0c;
  background: var(--aura-accent);
  border-color: var(--aura-accent);
  box-shadow: 0 8px 24px rgba(223, 255, 0, 0.22);
}

.offer-sync--static .offer-sync__slide.is-active:hover .offer-sync__slide-shade,
.offer-sync--static .offer-sync__slide.is-active:focus-visible .offer-sync__slide-shade {
  background:
    linear-gradient(115deg, rgba(14, 16, 22, 0.88) 0%, rgba(14, 16, 22, 0.48) 40%, rgba(0, 229, 255, 0.1) 68%, rgba(14, 16, 22, 0.4) 100%);
}

.offer-sync--static .offer-sync__slide--hot.is-active:hover .offer-sync__slide-shade,
.offer-sync--static .offer-sync__slide--hot.is-active:focus-visible .offer-sync__slide-shade {
  background:
    linear-gradient(115deg, rgba(14, 16, 22, 0.88) 0%, rgba(14, 16, 22, 0.48) 40%, rgba(223, 255, 0, 0.12) 68%, rgba(14, 16, 22, 0.4) 100%);
}

/* Static / mobile ? vertical cards */
.offer-sync--static {
  --offer-sync-viewport: auto;
}

.offer-sync--static .offer-sync__pin,
.offer-sync--static .offer-sync__viewport {
  min-height: auto;
  height: auto;
}

.offer-sync--static .offer-sync__ui {
  position: relative;
  height: auto;
  pointer-events: auto;
}

.offer-sync--static .offer-sync__ui-inner {
  min-height: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.offer-sync--static .offer-sync__stage {
  position: relative;
  min-height: auto;
}

.offer-sync--static .offer-sync__main {
  display: none;
}

.offer-sync--static .offer-sync__panel {
  display: none;
}

.offer-sync--static .offer-sync__ui-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding-bottom: 1.5rem;
}

.offer-sync--static .offer-sync__mast {
  width: 100%;
  max-width: none;
  padding-top: 0;
  text-align: left;
  align-items: flex-start;
  padding-inline: 0;
}

.offer-sync--static .offer-sync__title-stack {
  align-items: flex-start;
}

.offer-sync--static .offer-sync__title-num {
  font-size: clamp(4rem, 15vw, 6rem);
}

.offer-sync--static .offer-sync__title-word {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
}

.offer-sync--static .offer-sync__mast-copy {
  padding-left: 0;
  border-left: none;
  margin-top: 0.5rem;
}

.offer-sync--static .offer-sync__kicker::before,
.offer-sync--static .offer-sync__kicker::after {
  display: none;
}

.offer-sync--static .offer-sync__pitch {
  max-width: none;
  text-align: left;
}

.offer-sync--static .offer-sync__slides {
  display: grid;
  gap: 1rem;
  height: auto;
}

.offer-sync--static .offer-sync__slide {
  position: relative;
  inset: auto;
  min-height: clamp(14rem, 52vw, 18rem);
  clip-path: none !important;
  transform: none !important;
  filter: none !important;
  pointer-events: auto;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.offer-sync--static .offer-sync__slide-body {
  margin-left: 0;
  max-width: none;
}

.offer-sync--static .offer-sync__slide-bg {
  inset: 0;
  transform: none;
}

.geo-immersive {
  background: var(--aura-bg);
}

.geo-immersive__split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: clamp(26rem, 72vh, 42rem);
}

.geo-immersive__half {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
}

.geo-immersive__half--sochi {
  border-right: none;
}

.geo-immersive__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
  will-change: transform;
}

.geo-immersive__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%);
  transition: background 0.5s ease;
}

.geo-immersive__split:hover .geo-immersive__half:not(:hover) .geo-immersive__bg {
  filter: brightness(0.42) saturate(0.65);
  transform: scale(1.02);
}

.geo-immersive__split:hover .geo-immersive__half:not(:hover) .geo-immersive__shade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.geo-immersive__half:hover .geo-immersive__bg,
.geo-immersive__half:focus-visible .geo-immersive__bg {
  transform: scale(1.12);
  filter: brightness(1.05) saturate(1.12);
}

.geo-immersive__half:hover .geo-immersive__shade,
.geo-immersive__half:focus-visible .geo-immersive__shade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
}

.geo-immersive__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.geo-immersive__meta {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--aura-font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.geo-immersive__half--sochi .geo-immersive__meta {
  color: var(--aura-primary);
}

.geo-immersive__city {
  margin: 0 0 0.65rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

.geo-immersive__spots {
  margin: 0 0 0.45rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.geo-immersive__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 22rem;
}

@media (max-width: 900px) {
  .train-menu__dock {
    grid-template-columns: 1fr;
  }

  .offer-sync__intro-top {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-sync__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .offer-sync__rail {
    gap: 0.25rem 0.85rem;
  }

  .offer-sync__panel-item {
    padding: 0;
  }

  .offer-sync__slide-body {
    margin-left: 0;
    max-width: none;
  }

  .geo-immersive__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .geo-immersive__half {
    min-height: 22rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-sync__slide,
  .offer-sync__slide-bg,
  .geo-immersive__bg {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aura-grid-zone__base {
    animation: none;
  }

  .aura-grid-zone__snake-dot {
    display: none;
  }
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--aura-font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--aura-radius-button);
  border: none;
  cursor: pointer;
  transition: all var(--aura-transition);
  text-align: center;
}

.btn-primary {
  background-color: #e0142c;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 42, 66, 0.2);
}
.btn-primary:hover, .btn-primary:focus {
  transform: scale(1.05);
  box-shadow: var(--aura-shadow-glow-primary);
  color: #fff;
  background-color: #c8102e;
}

.btn-secondary {
  background-color: transparent;
  color: var(--aura-secondary);
  border: var(--aura-border-width) solid var(--aura-secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--aura-secondary);
  color: #1C1E24;
  box-shadow: var(--aura-shadow-glow-secondary);
}

.btn-vk {
  background-color: #0057c2;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.22);
}

.btn-vk:hover,
.btn-vk:focus {
  transform: scale(1.05);
  background-color: #0049a8;
  box-shadow: 0 6px 18px rgba(0, 119, 255, 0.35);
  color: #fff;
}

.home-final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.home-final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-final-cta__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.72) 45%, rgba(8, 10, 14, 0.9) 100%);
}

.home-final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-final-cta__title {
  margin: 0 0 1rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--aura-primary);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.home-final-cta__lead {
  margin: 0 auto 2rem;
  max-width: 38rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Cards (Glassmorphism) */
.aura-card {
  background: var(--aura-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--aura-radius-card);
  padding: var(--aura-gap-md);
  box-shadow: var(--aura-shadow-card);
  transition: border-color var(--aura-transition), transform var(--aura-transition);
}
.aura-card:hover {
  border-color: var(--aura-secondary);
  transform: translateY(-4px);
}

/* Header ? full width sticky, aligned */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(28, 30, 36, 0.94);
  border-bottom: 1px solid var(--aura-border-color);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.site-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none !important;
  flex-shrink: 0;
}

.site-brand__mark {
  font-family: var(--aura-font-heading);
  font-weight: 900;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

.site-brand__mark em {
  font-style: normal;
  color: var(--aura-primary);
}

.site-brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aura-text-muted);
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav__list,
.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.15rem 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a,
.main-navigation a {
  display: block;
  font-family: var(--aura-font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.45rem 0.55rem;
  border-radius: 0;
  color: var(--aura-text-muted) !important;
  text-decoration: none !important;
}

.site-nav__list a:hover,
.main-navigation a:hover,
.site-nav__list .current-menu-item > a {
  color: var(--aura-secondary) !important;
  background: transparent;
}

.site-header__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav__cta-mobile {
  display: none;
}

.btn--compact {
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
}

/* Training services dropdown */
.site-nav__list > .menu-item-has-children {
  position: relative;
}

.site-nav__list > .menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 13.5rem;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(12, 14, 18, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 80;
}

.site-nav__list > .menu-item-has-children:hover > .sub-menu,
.site-nav__list > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__list .sub-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.66rem;
  color: rgba(240, 242, 245, 0.78) !important;
  white-space: nowrap;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible {
  color: #fff !important;
  background: rgba(255, 42, 66, 0.16);
}

@media (max-width: 1100px) {
  .site-nav__list > .menu-item-has-children > .sub-menu,
  .site-nav__list > .menu-item-has-children:hover > .sub-menu,
  .site-nav__list > .menu-item-has-children:focus-within > .sub-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    margin: 0.35rem 0 0.5rem;
    border: 0;
    background: transparent;
    padding: 0 0 0 0.75rem;
  }

  .site-nav__list .sub-menu a {
    font-size: 0.8rem;
    padding: 0.3rem 0;
    white-space: normal;
  }
}


.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  position: relative;
  cursor: pointer;
  justify-self: end;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.nav-toggle__bar {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(240, 242, 245, 0.92);
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 4.25rem;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 1rem clamp(1rem, 3vw, 2rem) 1.25rem;
    background: rgba(28, 30, 36, 0.98);
    border-bottom: 1px solid var(--aura-border-color);
    max-height: calc(100vh - 4.25rem);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list,
  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
  }

  .site-nav__list a,
  .main-navigation a {
    font-size: 0.85rem;
    padding: 0.35rem 0;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav__cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.75rem;
  }

  .site-nav__cta-mobile .btn {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  background-color: var(--aura-surface);
  padding: var(--aura-section-y) 0 calc(var(--aura-section-y) / 2);
  border-top: var(--aura-border-width) solid var(--aura-border-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--aura-gap-md);
  margin-bottom: var(--aura-gap-lg);
}
.footer-col h4,
.footer-col__title {
  font-size: 1.1rem;
  font-family: var(--aura-font-heading);
  font-weight: 700;
  color: var(--aura-text-muted);
  margin: 0 0 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: var(--aura-text-main);
}
.footer-col a:hover {
  color: var(--aura-accent);
}

.footer-bottom {
  text-align: center;
  color: var(--aura-text-muted);
  font-size: 0.875rem;
  padding-top: var(--aura-gap-md);
  border-top: 1px solid var(--aura-border-color);
}

/* Brand Rail Placeholder */
.brand-rail {
  background-color: var(--aura-accent); /* Or Primary depending on layout */
  color: var(--aura-bg);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
}
.brand-rail-inner {
  display: inline-block;
  font-family: var(--aura-font-heading);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* ==========================================================================
   MOTION ? Hero, Grid, Brand Rail (lightweight)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
}

.hero-section--spotlight {
  align-items: flex-end;
  justify-content: center;
  padding: clamp(5rem, 11vh, 6.5rem) 0 clamp(3.5rem, 9vh, 6rem);
  text-align: center;
}

.hero-section__poster,
.hero-section__video,
.hero-section__veil {
  position: absolute;
  inset: 0;
}

.hero-section__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-section__video.is-ready {
  opacity: 1;
}

.hero-section__poster.is-video-ready {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-section--spotlight .hero-section__veil {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 229, 255, 0.08), transparent 55%),
    linear-gradient(to top, rgba(28, 30, 36, 0.94) 0%, rgba(28, 30, 36, 0.45) 38%, rgba(28, 30, 36, 0.08) 68%, rgba(28, 30, 36, 0.22) 100%);
}

.hero-spotlight {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.hero-spotlight__tag {
  margin: 0 0 1rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.65rem, 1.1vw, 0.78rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.hero-spotlight__glitch {
  position: relative;
  display: block;
  margin: 0 auto 0.85rem;
  max-width: 100%;
  cursor: default;
}

.hero-spotlight__seo-block {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
}

.hero-spotlight__seo {
  margin: 0 0 0.55rem;
  font-family: var(--aura-font-heading);
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--aura-text-main);
  text-wrap: balance;
}

.hero-spotlight__seo-lead {
  margin: 0 0 0.75rem;
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  line-height: 1.55;
  color: var(--aura-text-main);
  text-wrap: balance;
}

.hero-spotlight__seo-lead strong {
  font-weight: 700;
  color: var(--aura-text-main);
}

.hero-spotlight__seo-lead a {
  color: var(--aura-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-spotlight__seo-lead a:hover {
  color: var(--aura-accent);
  border-bottom-color: var(--aura-accent);
}

.hero-spotlight__seo-geo-label {
  color: var(--aura-text-muted);
  margin-right: 0.35em;
}

.hero-spotlight__seo-geo {
  margin: 0;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aura-text-muted);
}

.hero-spotlight__seo-geo a {
  color: var(--aura-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-spotlight__seo-geo a:hover {
  color: var(--aura-accent);
  border-bottom-color: var(--aura-accent);
}

.hero-spotlight__coach,
.hero-spotlight__geo {
  display: none;
}

.hero-spotlight__layer {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  font-family: var(--aura-font-heading);
  font-weight: 900;
  font-size: clamp(2.75rem, 10.5vw, 6.75rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-spotlight__layer span {
  display: block;
}

.hero-spotlight__layer--a span:nth-child(1) { color: var(--aura-text-main); }
.hero-spotlight__layer--a span:nth-child(2) { color: var(--aura-primary); }
.hero-spotlight__layer--a span:nth-child(3) { color: var(--aura-accent); }

.hero-spotlight__layer--b,
.hero-spotlight__layer--acid,
.hero-spotlight__layer--blood {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.hero-spotlight__layer--b span:nth-child(1) { color: var(--aura-secondary); }
.hero-spotlight__layer--b span:nth-child(2) { color: var(--aura-primary); }
.hero-spotlight__layer--b span:nth-child(3) { color: var(--aura-accent); }

.hero-spotlight__layer--acid span { color: var(--aura-secondary); }
.hero-spotlight__layer--blood span { color: var(--aura-primary); }

@media (hover: hover) and (pointer: fine) {
  .hero-spotlight__glitch:hover .hero-spotlight__layer--a {
    opacity: 0;
  }

  .hero-spotlight__glitch:hover .hero-spotlight__layer--b {
    opacity: 1;
  }

  .hero-spotlight__glitch:hover .hero-spotlight__layer--acid {
    opacity: 0.75;
    transform: translate(-4px, 2px);
  }

  .hero-spotlight__glitch:hover .hero-spotlight__layer--blood {
    opacity: 0.75;
    transform: translate(4px, -2px);
  }
}

.hero-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hero-section--cinema,
.hero-section__inner,
.hero-section__copy,
.hero-headline,
.hero-watermark {
  /* legacy hero layouts */
}

.hero-line {
  display: block;
}

.hero-line--xl {
  font-family: var(--aura-font-heading);
  font-weight: 900;
  font-size: clamp(2.6rem, 8.8vw, 5.8rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--aura-text-main);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero-line--shift {
  padding-left: clamp(1.25rem, 7vw, 4.5rem);
}

.hero-line--accent-inline {
  font-style: normal;
  color: var(--aura-primary);
  text-shadow: 0 0 28px rgba(255, 42, 66, 0.4);
}

.hero-line--accent {
  color: var(--aura-primary);
  text-shadow: 0 0 30px rgba(255, 42, 66, 0.35);
}

.hero-line--name {
  margin-top: 0.15em;
  font-family: var(--aura-font-heading);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.8vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--aura-accent);
}

.hero-glitch {
  position: relative;
  display: inline-block;
  cursor: default;
}

.hero-glitch__main {
  position: relative;
  z-index: 2;
}

.hero-glitch__acid,
.hero-glitch__blood {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hero-glitch__acid {
  color: var(--aura-secondary);
}

.hero-glitch__blood {
  color: var(--aura-primary);
}

.hero-glitch:hover .hero-glitch__acid {
  opacity: 0.85;
  transform: translate(-3px, 2px);
}

.hero-glitch:hover .hero-glitch__blood {
  opacity: 0.85;
  transform: translate(3px, -2px);
}

.hero-lead {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--aura-text-main);
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hero-pills li {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(45, 49, 58, 0.55);
  font-family: var(--aura-font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
}

.hero-scroll-cue,
.hero-watermark,
.hero-section__stage,
.hero-cinema-title,
.hero-line--shift {
  display: none !important;
}

@keyframes hero-rise-in {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scroll-pulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

@keyframes hero-scroll-pulse-right {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

.hero-rise {
  opacity: 0;
  animation: hero-rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-rise--1 { animation-delay: 0.05s; }
.hero-rise--2 { animation-delay: 0.18s; }
.hero-rise--3 { animation-delay: 0.32s; }
.hero-rise--4 { animation-delay: 0.48s; }
.hero-rise--5 { animation-delay: 0.58s; }
.hero-rise--6 { animation-delay: 0.66s; }
.hero-rise--7 { animation-delay: 0.76s; }

.hero-section__media,
.hero-section__bg,
.hero-section__content,
.hero-section__eyebrow,
.hero-section__lead,
.hero-section__actions,
.hero-title,
.hero-title-main,
.hero-title-glitch {
  /* legacy */
}

.hero-rotating-wrapper,
.hero-rotating-word,
.hero-title-static,
.hero-title-accent {
  display: none !important;
}

.jib-rail-scene,
#splash-cursor-canvas {
  display: none !important;
}

/* Offer block ? Magic UI bento (ported to WP) */
.offer-section {
  position: relative;
  overflow: hidden;
}

.offer-section--bento {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: transparent;
}

.offer-bento__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, #000 20%, transparent 75%);
  animation: offer-grid-drift 18s linear infinite;
}

@keyframes offer-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 44px 44px, 44px 44px; }
}

@keyframes offer-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes offer-gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes offer-border-beam {
  0% { --beam-angle: 0deg; }
  100% { --beam-angle: 360deg; }
}

.offer-bento__marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 42, 66, 0.06);
  padding: 0.55rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.offer-bento__marquee--top {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.offer-bento__marquee--inner {
  position: absolute;
  inset: auto 0 28% 0;
  border: none;
  background: transparent;
  padding: 0;
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.offer-bento__marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding-inline: 1.25rem;
  animation: offer-marquee 28s linear infinite;
}

.offer-bento__marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 22s;
}

.offer-bento__marquee-track span {
  font-family: var(--aura-font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aura-text-muted);
  white-space: nowrap;
}

.offer-bento__container {
  position: relative;
  z-index: 1;
}

.offer-bento__head {
  max-width: 52rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.offer-bento__head-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.offer-bento__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.2rem 0.45rem;
  font-family: var(--aura-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--aura-bg);
  background: var(--aura-accent);
  transform: skewX(-8deg);
}

.offer-bento__eyebrow {
  font-family: var(--aura-font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.offer-bento__title {
  display: flex;
  flex-direction: column;
  gap: 0.38em;
  margin: 0 0 1rem;
  font-family: var(--aura-font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.offer-bento__title span {
  display: block;
}

.offer-bento__title-gradient {
  background: linear-gradient(
    90deg,
    var(--aura-primary) 0%,
    var(--aura-secondary) 35%,
    var(--aura-accent) 70%,
    var(--aura-primary) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: offer-gradient-shift 7s linear infinite;
}

.offer-bento__lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.6;
  color: var(--aura-text-muted);
}

.offer-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(10.5rem, auto);
  gap: 0.85rem;
}

.offer-bento__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 11.5rem;
  overflow: hidden;
  border-radius: var(--aura-radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  background: var(--aura-surface);
  box-shadow: var(--aura-shadow-card);
  transform: translateZ(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease, box-shadow 0.35s ease;
}

.offer-bento__card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: var(--aura-shadow-glow-secondary);
}

.offer-bento__card--featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 22rem;
}

.offer-bento__card:not(.offer-bento__card--featured):not(.offer-bento__card--crew) {
  grid-column: span 5;
}

.offer-bento__card--crew {
  grid-column: span 12;
  min-height: 13rem;
}

.offer-bento__beam {
  position: absolute;
  inset: -1px;
  z-index: 4;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--beam-angle, 0deg),
    transparent 0deg,
    var(--aura-primary) 60deg,
    var(--aura-secondary) 120deg,
    var(--aura-accent) 180deg,
    transparent 240deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
  animation: offer-border-beam 5s linear infinite;
  pointer-events: none;
}

.offer-bento__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-bento__card:hover .offer-bento__media {
  transform: scale(1.08);
}

.offer-bento__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(28, 30, 36, 0.96) 0%, rgba(28, 30, 36, 0.55) 42%, rgba(28, 30, 36, 0.15) 100%);
}

.offer-bento__veil--crew {
  background:
    linear-gradient(105deg, rgba(28, 30, 36, 0.94) 0%, rgba(28, 30, 36, 0.72) 45%, rgba(255, 42, 66, 0.18) 100%);
}

.offer-bento__body {
  position: relative;
  z-index: 3;
  padding: 1.15rem 1.2rem 1.25rem;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.offer-bento__card:hover .offer-bento__body {
  transform: translateY(-6px);
}

.offer-bento__num {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--aura-font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--aura-accent);
}

.offer-bento__name {
  margin: 0 0 0.35rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

.offer-bento__desc {
  margin: 0 0 0.65rem;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--aura-text-muted);
}

.offer-bento__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--aura-font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aura-secondary);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.offer-bento__card:hover .offer-bento__cta {
  opacity: 1;
  transform: translateY(0);
}

.offer-bento__cta--hot {
  color: var(--aura-accent);
}

.scroll-line {
  display: block;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .offer-bento__card--featured {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 16rem;
  }

  .offer-bento__card:not(.offer-bento__card--featured):not(.offer-bento__card--crew) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .offer-section--bento {
    margin-top: 0;
  }

  .offer-bento {
    grid-template-columns: 1fr;
  }

  .offer-bento__card,
  .offer-bento__card--featured,
  .offer-bento__card:not(.offer-bento__card--featured):not(.offer-bento__card--crew),
  .offer-bento__card--crew {
    grid-column: span 1;
    min-height: 14rem;
  }

  .offer-bento__cta {
    opacity: 1;
    transform: none;
  }

  .offer-bento__title {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-bento__grid-bg,
  .offer-bento__marquee-track,
  .offer-bento__title-gradient,
  .offer-bento__beam {
    animation: none;
  }

  .offer-bento__card:hover {
    transform: none;
  }

  .offer-bento__card:hover .offer-bento__media {
    transform: scale(1.02);
  }
}

.proof-dome-section.section {
  position: relative;
  padding: 0;
  min-height: calc(100svh - 4.25rem);
  max-height: calc(100svh - 4.25rem);
  background: var(--aura-bg);
  overflow: hidden;
}

.proof-dome__bleed {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: calc(100svh - 4.25rem);
  min-height: calc(100svh - 4.25rem);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 1;
}

.proof-dome-section__head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  max-width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 2.8vh, 1.65rem) clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vh, 2.5rem);
  text-align: center;
  pointer-events: none;
  background: transparent;
}

.proof-dome-section__head::before {
  content: "";
  position: absolute;
  inset: -6% 4% -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 92% 88% at 50% 46%, rgba(28, 30, 36, 0.72) 0%, rgba(28, 30, 36, 0.38) 42%, rgba(28, 30, 36, 0.08) 68%, transparent 82%);
  filter: blur(10px);
}

.proof-dome-section__head::after {
  display: none;
}

.proof-dome-section__head .proof-dome-head__glitch {
  pointer-events: auto;
}

.proof-dome-head__tag {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  margin: 0 0 0.85rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.68rem, 1.05vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aura-secondary);
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(0, 229, 255, 0.25);
}

.proof-dome-head__tag-word {
  display: inline-block;
  padding: 0;
  background: none;
  box-shadow: none;
}

.proof-dome-head {
  margin: 0 0 0.65rem;
}

.proof-dome-head__glitch {
  position: relative;
  display: block;
  max-width: 100%;
  cursor: default;
}

.proof-dome-head__layer {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  font-family: var(--aura-font-heading);
  font-weight: 900;
  font-size: clamp(2.35rem, 7.4vw, 4.75rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.78));
}

.proof-dome-head__line {
  display: block;
}

.proof-dome-head__line--shift {
  padding-left: clamp(0.25rem, 4vw, 2.25rem);
  color: var(--aura-text-main);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.95),
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 12px 32px rgba(0, 0, 0, 0.85),
    0 0 48px rgba(0, 0, 0, 0.55);
}

.proof-dome-head__line--flush {
  padding-right: clamp(0.5rem, 6vw, 3.25rem);
  text-align: right;
}

.proof-dome-head__line--red {
  color: var(--aura-primary);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.95),
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 0 32px rgba(255, 42, 66, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.85);
}

.proof-dome-head__rotator {
  display: inline-grid;
  align-self: center;
  height: 1.08em;
  margin-top: 0.12em;
  overflow: hidden;
  font-size: clamp(1.65rem, 5.2vw, 3.1rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--aura-secondary);
}

.proof-dome-head__rotator-track {
  display: flex;
  flex-direction: column;
  animation: proof-dome-head-rotate 7s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.proof-dome-head__rotator-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.08em;
  line-height: 1.08em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.95),
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 0 28px rgba(0, 229, 255, 0.45),
    0 12px 28px rgba(0, 0, 0, 0.85);
}

@keyframes proof-dome-head-rotate {
  0%, 14% { transform: translateY(0); }
  16%, 30% { transform: translateY(-16.6667%); }
  32%, 46% { transform: translateY(-33.3333%); }
  48%, 62% { transform: translateY(-50%); }
  64%, 78% { transform: translateY(-66.6667%); }
  80%, 94% { transform: translateY(-83.3333%); }
  100% { transform: translateY(-83.3333%); }
}

.proof-dome-head__layer--b,
.proof-dome-head__layer--acid,
.proof-dome-head__layer--blood {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.proof-dome-head__layer--b .proof-dome-head__line--shift { color: var(--aura-secondary); }
.proof-dome-head__layer--b .proof-dome-head__line--red { color: var(--aura-accent); }
.proof-dome-head__layer--b .proof-dome-head__rotator { color: var(--aura-primary); }
.proof-dome-head__layer--acid span { color: var(--aura-secondary); }
.proof-dome-head__layer--blood span { color: var(--aura-primary); }

.proof-dome-head__glitch:hover .proof-dome-head__layer--a {
  opacity: 0;
}

.proof-dome-head__glitch:hover .proof-dome-head__layer--b {
  opacity: 1;
}

.proof-dome-head__glitch:hover .proof-dome-head__layer--acid {
  opacity: 0.55;
  transform: translate(-3px, 1px);
}

.proof-dome-head__glitch:hover .proof-dome-head__layer--blood {
  opacity: 0.55;
  transform: translate(3px, -1px);
}

.proof-dome-head__meta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.6rem;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.proof-dome-head__stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.24rem 0.65rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aura-bg);
  background: var(--aura-primary);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  box-shadow: 0 8px 24px rgba(255, 42, 66, 0.35);
}

.proof-dome-head__lead,
.proof-dome-head__geo {
  margin: 0;
  font-family: var(--aura-font-heading);
  font-weight: 800;
  line-height: 1.35;
  text-wrap: balance;
}

.proof-dome-head__lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.75rem;
  max-width: min(34rem, 100%);
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.1vw, 1.38rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aura-text-main);
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.9),
    0 0 36px rgba(0, 0, 0, 0.55);
}

.proof-dome-head__lead .pd-w + .pd-w {
  margin-left: 0;
}

.proof-dome-head__geo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem 0.55rem;
  max-width: min(36rem, 100%);
  margin: 0 auto;
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.82);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.proof-dome-head__geo .pd-w--cyan {
  margin-left: 0;
}

.proof-dome-head__slash {
  display: none;
}

.pd-w--acid { color: var(--aura-accent); }
.pd-w--cyan { color: var(--aura-secondary); }
.pd-w--red { color: var(--aura-primary); }

.proof-dome__stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
  isolation: isolate;
  background: var(--aura-bg);
}

.proof-dome__stage::before,
.proof-dome__stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 6;
  pointer-events: none;
}

.proof-dome__stage::before {
  top: 0;
  height: clamp(56px, 10vh, 88px);
  background: linear-gradient(
    to bottom,
    rgba(28, 30, 36, 0.38) 0%,
    rgba(28, 30, 36, 0.06) 62%,
    transparent 100%
  );
}

.proof-dome__stage::after {
  bottom: 0;
  height: clamp(72px, 12vh, 108px);
  background: linear-gradient(
    to top,
    rgba(28, 30, 36, 0.5) 0%,
    rgba(28, 30, 36, 0.12) 48%,
    transparent 100%
  );
}

.proof-dome__bar {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 2.8vh, 1.85rem);
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 1.5rem);
  padding: 0;
  pointer-events: none;
}

.proof-dome-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.85rem 0.85rem 1.45rem;
  border: none;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.78rem, 1.15vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #e0142c;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(255, 42, 66, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  pointer-events: auto;
}

.proof-dome-section__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 36px rgba(255, 42, 66, 0.55);
  color: var(--aura-text-main);
}

.proof-dome-section__cta:focus-visible {
  outline: 2px solid var(--aura-accent);
  outline-offset: 3px;
}

#proof-dome-root {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#proof-dome-root > .sphere-root {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .proof-dome-section__head {
    padding-top: 0.65rem;
    padding-bottom: 2rem;
  }

  .proof-dome-head__layer {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .proof-dome-head__rotator {
    font-size: clamp(1.25rem, 6.5vw, 1.75rem);
  }

  .proof-dome-head__lead,
  .proof-dome-head__geo {
    font-size: 0.92rem;
  }

  .proof-dome-head__lead {
    font-size: 0.98rem;
  }

  .proof-dome-head__tag {
    gap: 0.35rem 0.85rem;
    letter-spacing: 0.14em;
  }

  .proof-dome__bar {
    bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-dome-head__rotator-track {
    animation: none;
  }

  .proof-dome-head__rotator-track span:not(:first-child) {
    display: none;
  }
}

/* Trust ? dual marquee band (no cards) */
.trust-band {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: var(--aura-bg);
}

.trust-band__marquee {
  overflow: hidden;
  padding: clamp(0.55rem, 1.2vw, 0.85rem) 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-band__marquee--acid {
  background: var(--aura-accent);
  color: var(--aura-bg);
}

.trust-band__marquee--red {
  background: var(--aura-primary);
  color: var(--aura-text-main);
}

.trust-band__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  width: max-content;
  padding-inline: clamp(1rem, 3vw, 2rem);
  animation: trust-band-marquee 26s linear infinite;
  will-change: transform;
}

.trust-band__track--reverse {
  animation-direction: reverse;
  animation-duration: 32s;
}

.trust-band__chunk {
  display: inline-block;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-band__dock {
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
  background:
    radial-gradient(ellipse 80% 120% at 50% 50%, rgba(45, 49, 58, 0.35), transparent 70%),
    var(--aura-bg);
}

.trust-band__copy {
  max-width: 42rem;
  margin: 0 auto;
  font-family: var(--aura-font-body);
  font-size: clamp(1rem, 1.65vw, 1.12rem);
  line-height: 1.65;
  text-align: center;
  text-wrap: balance;
  color: rgba(240, 242, 245, 0.88);
}

.trust-band__em {
  font-family: var(--aura-font-heading);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--aura-text-main);
}

.trust-band__em--red { color: var(--aura-primary); }
.trust-band__em--cyan { color: var(--aura-secondary); }

.trust-band__link {
  color: var(--aura-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.trust-band__link:hover,
.trust-band__link:focus-visible {
  color: var(--aura-accent);
  border-bottom-color: var(--aura-accent);
}

@keyframes trust-band-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-band__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 0.65rem 1rem;
  }

  .trust-band__marquee {
    mask-image: none;
  }
}

.brand-rail-container {
  overflow: hidden;
}

.brand-rail-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
}

.brand-rail-item {
  display: inline-block;
  font-family: var(--aura-font-heading);
  font-size: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-rail--static {
  white-space: normal;
}

.brand-rail--static .brand-rail-track,
.brand-rail--static .brand-rail-inner {
  transform: none !important;
  animation: none !important;
}

.timeline-container {
  position: relative;
}

.timeline-line-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  background: linear-gradient(to bottom, var(--aura-secondary), var(--aura-primary));
  opacity: 0.65;
  pointer-events: none;
}

.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--aura-shadow-glow-secondary);
  border-color: var(--aura-secondary);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 88vh;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-spotlight__seo {
    font-size: clamp(1.08rem, 4.8vw, 1.4rem);
  }

  .hero-spotlight__seo-lead {
    font-size: 0.92rem;
  }

  .hero-spotlight__seo-geo {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .hero-spotlight__layer {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .hero-spotlight__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-spotlight__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-line--xl {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rise {
    opacity: 1;
    animation: none;
  }

  .hero-scroll-cue {
    animation: none;
  }

  .hero-section__video {
    display: none !important;
  }

  .hero-section__poster {
    opacity: 1 !important;
  }

  .hero-section--spotlight .hero-section__veil {
    background: rgba(28, 30, 36, 0.88);
  }

  .hero-title-glitch-layer,
  .brand-rail-track {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-primary { color: var(--aura-primary); }
.text-secondary { color: var(--aura-secondary); }
.text-accent { color: var(--aura-accent); }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aura-primary);
  color: #fff;
  padding: 12px 24px;
  z-index: 10000;
  border-radius: var(--aura-radius-button);
  font-weight: bold;
}
.skip-link:focus {
  top: 20px;
}

/* About page ? unified pro layout */
.about-page {
  --about-border: rgba(255, 255, 255, 0.08);
  --about-muted: rgba(240, 242, 245, 0.72);
}

/* Hero */
.about-page__hero {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.about-page__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 72% 38%, rgba(255, 42, 66, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 8% 90%, rgba(0, 229, 255, 0.1) 0%, transparent 58%),
    var(--aura-bg);
}

.about-page__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 46%);
  align-items: start;
  gap: clamp(2rem, 5vw, 3.75rem);
  min-height: auto;
  padding: clamp(3.25rem, 5.5vh, 4.25rem) 0 clamp(1.25rem, 2.5vh, 1.85rem);
}

@media (min-width: 901px) {
  .about-page__hero-copy {
    align-self: start;
  }

  /* Right column must not stretch the hero: height comes from left copy only */
  .about-page__hero-lanyard {
    align-self: start;
    height: 0;
    min-height: 0;
    margin-top: 0;
    overflow: visible;
  }

  .about-page__hero-lanyard .about-lanyard-root {
    position: absolute;
    top: -1.75rem;
    left: 0;
    right: 0;
    width: 100%;
  }
}

.about-page__hero-copy {
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.about-page__kicker {
  margin: 0 0 0.7rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.68rem, 1.05vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.about-page__title {
  margin: 0 0 0.85rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--aura-text-main);
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(255, 42, 66, 0.12);
}

.about-page__seo {
  max-width: 36rem;
  margin: 0 0 1.15rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-wrap: balance;
  color: var(--aura-text-main);
}

/* Wider proof rail with air, no card boxes */
.about-page__mark {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  max-width: 40rem;
}

.about-page__mark-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.15rem;
}

.about-page__stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.28rem 0.75rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aura-bg);
  background: var(--aura-primary);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  box-shadow: 0 8px 24px rgba(255, 42, 66, 0.35);
}

.about-page__mark-lead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  margin: 0;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.88rem, 1.35vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.about-page__brutal {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1.35rem;
  margin: 0;
  padding: 0.55rem 0 0.35rem 1rem;
  width: 100%;
  max-width: none;
  border: 0;
  border-left: 3px solid var(--aura-primary);
  background: none;
}

.about-page__brutal-row {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.about-page__brutal-num {
  font-family: var(--aura-font-heading);
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.85),
    0 0 22px rgba(255, 42, 66, 0.25);
}

.about-page__brutal-num--blood {
  color: var(--aura-primary);
}

.about-page__brutal-num--cyan {
  color: var(--aura-secondary);
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.85),
    0 0 22px rgba(0, 229, 255, 0.25);
}

.about-page__brutal-label {
  font-family: var(--aura-font-heading);
  font-size: clamp(0.64rem, 0.95vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.78);
  line-height: 1.25;
}

.about-page__lead {
  max-width: 40rem;
  margin: 0 0 0.75rem;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.55;
  color: rgba(240, 242, 245, 0.9);
  text-wrap: pretty;
}

.about-page__lead--tight {
  margin-bottom: 1rem;
  color: rgba(240, 242, 245, 0.82);
}

.about-page__geo-block {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-page__geo-title {
  margin: 0 0 0.15rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.68rem, 0.95vw, 0.76rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.about-page__geo {
  max-width: none;
  margin: 0;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(240, 242, 245, 0.72);
}

.about-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.about-page__hero-actions .btn {
  padding: 0.85rem 1.65rem;
  font-family: var(--aura-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .about-page__brutal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 0.65rem;
    padding-left: 0.75rem;
  }

  .about-page__brutal-num {
    font-size: clamp(1.55rem, 8vw, 1.95rem);
  }

  .about-page__mark-lead {
    gap: 0.3rem 0.7rem;
  }

  .about-page__seo {
    font-size: clamp(0.98rem, 4.6vw, 1.15rem);
  }
}

.about-page__hero-lanyard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  width: 100%;
  touch-action: none;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.about-lanyard-root {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  min-height: 0;
  height: auto;
  overflow: visible;
  pointer-events: auto;
}

.lanyard-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  pointer-events: auto;
}

.lanyard-wrapper canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: auto;
  touch-action: none;
}

/* Story ? cinematic split: full-bleed photo + text */
.about-page__story {
  padding: 0;
  border-block: 1px solid var(--about-border);
  overflow: hidden;
}

.about-page__story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(520px, 58vh, 680px);
}

.about-page__story-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0a0b0d;
}

.about-page__story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 11, 13, 0.05) 0%,
    rgba(10, 11, 13, 0.08) 38%,
    rgba(28, 30, 36, 0.72) 68%,
    var(--aura-bg) 100%
  );
  pointer-events: none;
}

.about-page__story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  display: block;
}

.about-page__story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 3.5rem) clamp(2.25rem, 5vw, 3.75rem) clamp(1.25rem, 2.5vw, 2rem);
  background: var(--aura-bg);
  border: none;
  border-radius: 0;
}

.about-page__story-copy .about-page__section-kicker {
  margin-bottom: 0.65rem;
}

.about-page__story-copy .about-page__section-title {
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.about-page__story-lead {
  margin: 0 0 1.05rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.72;
  color: rgba(240, 242, 245, 0.94);
}

.about-page__story-text {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: clamp(0.92rem, 1.15vw, 0.98rem);
  line-height: 1.7;
  color: var(--aura-text-muted);
}

.about-page__story-copy .about-page__timeline-mini {
  margin-top: 0.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--about-border);
}

/* Section shared */
.about-page__section-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--aura-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.about-page__section-title {
  margin: 0 0 1rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

.about-page__section-lead {
  max-width: 40rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--about-muted);
}

.about-page__section-head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-page__section-head--center {
  text-align: center;
}

.about-page__section-head--center .about-page__section-lead {
  margin-inline: auto;
}

.about-page__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-page__split--reverse .about-page__split-copy {
  order: 2;
}

.about-page__split--reverse .about-page__contest-grid {
  order: 1;
}

.about-page__split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--aura-radius-md, 8px);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-page__split-copy p {
  margin: 0 0 1rem;
  line-height: 1.68;
  color: var(--about-muted);
}

.about-page__timeline-mini {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--about-border);
}

.about-page__timeline-mini li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--about-border);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--about-muted);
}

.about-page__timeline-mini strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--aura-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

/* Training ? setlist manifesto (unique to about, no homepage photo clone) */
.about-page__training {
  position: relative;
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, rgba(255, 42, 66, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 92% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
    var(--aura-bg);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: clamp(3rem, 7vh, 4.75rem);
  overflow: hidden;
}

.about-set {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-set__aside {
  position: sticky;
  top: 6rem;
}

.about-set__title {
  margin: 0 0 1.15rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--aura-text-main);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}

.about-set__lead {
  margin: 0 0 1.5rem;
  max-width: 22rem;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.55;
  color: rgba(240, 242, 245, 0.82);
}

.about-set__cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem 0.7rem 1.15rem;
  font-family: var(--aura-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--aura-bg);
  background: var(--aura-primary);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 10px 28px rgba(255, 42, 66, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.about-set__cta:hover,
.about-set__cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: var(--aura-bg);
}

.about-set__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-set__row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(4.5rem, 9vw, 6.5rem) minmax(0, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: start;
  padding: clamp(1.35rem, 2.8vh, 1.85rem) 0 clamp(1.35rem, 2.8vh, 1.85rem) 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.about-set__row--cyan:hover,
.about-set__row--cyan:focus-within,
.about-set__row--cyan:active,
.about-set__row--cyan.is-hot {
  border-left-color: var(--aura-secondary);
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, transparent 55%);
}

.about-set__row--blood:hover,
.about-set__row--blood:focus-within,
.about-set__row--blood:active,
.about-set__row--blood.is-hot {
  border-left-color: var(--aura-primary);
  background: linear-gradient(90deg, rgba(255, 42, 66, 0.1) 0%, transparent 55%);
}

.about-set__row--acid:hover,
.about-set__row--acid:focus-within,
.about-set__row--acid:active,
.about-set__row--acid.is-hot {
  border-left-color: var(--aura-accent);
  background: linear-gradient(90deg, rgba(223, 255, 0, 0.08) 0%, transparent 55%);
}

.about-set__num {
  font-family: var(--aura-font-heading);
  font-size: clamp(2.8rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
  text-shadow: none;
  user-select: none;
  transition: color 0.25s ease, -webkit-text-stroke-color 0.25s ease;
}

.about-set__row--cyan .about-set__num {
  -webkit-text-stroke-color: rgba(0, 229, 255, 0.55);
}

.about-set__row--blood .about-set__num {
  -webkit-text-stroke-color: rgba(255, 42, 66, 0.55);
}

.about-set__row--acid .about-set__num {
  -webkit-text-stroke-color: rgba(223, 255, 0, 0.55);
}

.about-set__row--cyan:hover .about-set__num,
.about-set__row--cyan:focus-within .about-set__num,
.about-set__row--cyan:active .about-set__num,
.about-set__row--cyan.is-hot .about-set__num {
  color: var(--aura-secondary);
  -webkit-text-stroke-color: transparent;
}

.about-set__row--blood:hover .about-set__num,
.about-set__row--blood:focus-within .about-set__num,
.about-set__row--blood:active .about-set__num,
.about-set__row--blood.is-hot .about-set__num {
  color: var(--aura-primary);
  -webkit-text-stroke-color: transparent;
}

.about-set__row--acid:hover .about-set__num,
.about-set__row--acid:focus-within .about-set__num,
.about-set__row--acid:active .about-set__num,
.about-set__row--acid.is-hot .about-set__num {
  color: var(--aura-accent);
  -webkit-text-stroke-color: transparent;
}

.about-set__content {
  min-width: 0;
  padding-top: 0.15rem;
}

.about-set__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.85rem;
  margin: 0 0 0.45rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-set__name {
  margin: 0 0 0.55rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--aura-text-main);
  transition: transform 0.22s ease;
}

.about-set__row--acid .about-set__name {
  color: var(--aura-accent);
}

.about-set__text {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.55;
  color: rgba(240, 242, 245, 0.78);
}

@media (max-width: 900px) {
  .train-menu__dock {
    grid-template-columns: 1fr;
  }

  .about-set {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-set__aside {
    position: static;
  }

  .about-page .about-set__title {
    /* Fit longest line ????????? + air between lines */
    font-size: min(2.85rem, calc((100vw - 3rem) / 7.35));
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 100%;
  }

  .about-set__row {
    grid-template-columns: 3.75rem minmax(0, 1fr);
    padding-left: 0.65rem;
  }

  .about-set__num {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }
}

/* Contests & projects ? urban calm: type + Logo Loop marquees */
.about-page__contests {
  background: var(--aura-bg);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: clamp(2.75rem, 6vh, 4rem);
}

.about-loop__head {
  margin-bottom: clamp(1.75rem, 3.5vh, 2.35rem);
}

.about-loop__head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0.65rem;
}

.about-loop__title {
  margin: 0;
  font-family: var(--aura-font-heading);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

.about-loop__lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.5;
  color: rgba(240, 242, 245, 0.72);
}

.about-loop__cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.6rem 1.15rem 0.6rem 1rem;
  font-family: var(--aura-font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--aura-bg);
  background: var(--aura-primary);
  clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.about-loop__cta:hover,
.about-loop__cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: var(--aura-bg);
}

.about-loop__label {
  margin: 0 0 0.85rem;
  font-family: var(--aura-font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aura-primary);
}

.about-loop__top {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  max-width: 44rem;
}

.about-loop__top li {
  margin: 0;
  padding: 0.7rem 0;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--aura-text-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-loop__top li:first-child {
  color: var(--aura-primary);
}

.about-loop__final {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin: 0 0 clamp(1.75rem, 3.5vh, 2.35rem);
  font-family: var(--aura-font-heading);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.88);
}

.about-loop__final-tag {
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--aura-bg);
  background: var(--aura-accent);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}

.about-loop__rails {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-loop__rail-label {
  margin: 0 0 0.55rem;
  font-family: var(--aura-font-heading);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.45);
}

.about-loop__rail--cyan .about-loop__rail-label {
  color: rgba(0, 229, 255, 0.7);
}

.about-loop__track-wrap {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  user-select: none;
}

.about-loop__track-wrap.is-dragging {
  cursor: grabbing;
}

.about-loop__track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  /* CSS fallback; JS takes over when available */
  animation: about-loop-marquee 90s linear infinite;
}

.about-loop__track--reverse {
  animation-name: about-loop-marquee-rev;
  animation-duration: 105s;
}

.about-loop__track-wrap.is-js .about-loop__track {
  animation: none;
}

.about-loop__track span {
  flex: 0 0 auto;
  padding: 0 1.35rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.55);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.about-loop__track-wrap:hover .about-loop__track span,
.about-loop__track-wrap.is-dragging .about-loop__track span {
  color: rgba(240, 242, 245, 0.82);
}

.about-loop__track span::after {
  content: '';
  display: inline-block;
  width: 0.32em;
  height: 0.32em;
  margin-left: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 42, 66, 0.55);
  vertical-align: 0.15em;
}

.about-loop__rail--cyan .about-loop__track span::after {
  background: rgba(0, 229, 255, 0.5);
}

@keyframes about-loop-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes about-loop-marquee-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .about-loop__track,
  .about-loop__track--reverse {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 0.55rem;
  }

  .about-loop__track-wrap {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .about-loop__track span[aria-hidden='true'] {
    display: none;
  }
}

/* Final CTA */
.about-page__cta {
  position: relative;
  overflow: hidden;
}

.about-page__cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 42, 66, 0.22) 0%, transparent 70%),
    var(--aura-bg);
}

.about-page__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.about-page__cta-title {
  margin: 0 0 1rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--aura-text-main);
}

.about-page__cta-lead {
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--about-muted);
}

.about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   Training menu ? full-width rows
   ========================================================================== */
.train-page .train-menu {
  padding-top: clamp(5.25rem, 10vh, 6.25rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
}

.train-menu__hero {
  padding-bottom: clamp(1.15rem, 2.2vh, 1.6rem);
  margin-bottom: clamp(0.65rem, 1.2vh, 0.85rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.train-menu__kicker {
  margin: 0 0 0.5rem;
  font-family: var(--aura-font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.train-menu__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3.5vw, 2.5rem);
  align-items: end;
}

.train-menu__title {
  margin: 0;
  font-family: var(--aura-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
}

.train-menu__lead {
  margin: 0;
  max-width: 34rem;
  justify-self: end;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.55;
  color: rgba(240, 242, 245, 0.76);
}

.train-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.train-menu__item {
  margin: 0;
}

.train-row {
  --row-accent: var(--aura-primary);
  position: relative;
  display: block;
  min-height: clamp(11rem, 22vh, 15rem);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  transition: filter 0.3s ease;
}

.train-row--cyan { --row-accent: var(--aura-secondary); }
.train-row--acid { --row-accent: var(--aura-accent); }

.train-row:hover,
.train-row:focus-visible {
  outline: none;
  filter: brightness(1.04);
}

.train-row__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.train-row:hover .train-row__bg,
.train-row:focus-visible .train-row__bg {
  transform: scale(1.08);
  filter: brightness(1.06) saturate(1.06);
}

.train-row__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 13, 0.9) 0%,
    rgba(7, 9, 13, 0.55) 42%,
    rgba(7, 9, 13, 0.15) 68%,
    rgba(7, 9, 13, 0.45) 100%
  );
  pointer-events: none;
}

.train-row__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: clamp(3.5rem, 8vw, 5.5rem) minmax(0, 1fr);
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: center;
  min-height: clamp(11rem, 22vh, 15rem);
  padding: clamp(1.15rem, 3vw, 2rem) clamp(1.25rem, 5vw, 4rem);
}

.train-row__num {
  font-family: var(--aura-font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.28);
  user-select: none;
}

.train-row--blood .train-row__num { -webkit-text-stroke-color: rgba(255, 42, 66, 0.55); }
.train-row--cyan .train-row__num { -webkit-text-stroke-color: rgba(0, 229, 255, 0.55); }

.train-row__content {
  min-width: 0;
  max-width: 38rem;
}

.train-row__meta {
  margin: 0 0 0.35rem;
  font-family: var(--aura-font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--row-accent);
}

.train-row__title {
  margin: 0 0 0.35rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.train-row__text {
  margin: 0 0 0.5rem;
  font-size: clamp(0.86rem, 1.1vw, 0.95rem);
  line-height: 1.45;
  color: rgba(240, 242, 245, 0.82);
}

.train-row__go {
  font-family: var(--aura-font-heading);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.45);
  transition: color 0.25s ease;
}

.train-row:hover .train-row__go,
.train-row:focus-visible .train-row__go {
  color: var(--row-accent);
}

.train-menu__dock {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: clamp(1.35rem, 2.5vh, 1.85rem);
  padding-top: clamp(1rem, 2vh, 1.35rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.train-menu__panel {
  padding: clamp(1.1rem, 2vw, 1.45rem);
  background: rgba(10, 12, 16, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.train-menu__panel--process { border-left: 3px solid var(--aura-primary); }
.train-menu__panel--faq { border-left: 3px solid var(--aura-secondary); }

.train-menu__panel-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--aura-font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.42);
}

.train-menu__panel-title {
  margin: 0 0 0.9rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.train-menu__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.train-menu__steps li {
  display: grid;
  grid-template-columns: 1.85rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.train-menu__steps span {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  font-family: var(--aura-font-heading);
  font-size: 0.58rem;
  font-weight: 900;
  color: #07090d;
  background: var(--aura-primary);
  clip-path: polygon(0 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

.train-menu__steps li:nth-child(2) span { background: var(--aura-secondary); }
.train-menu__steps li:nth-child(3) span { background: var(--aura-accent); }

.train-menu__steps strong {
  display: block;
  margin: 0 0 0.1rem;
  font-family: var(--aura-font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.train-menu__steps p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(240, 242, 245, 0.65);
}

.train-menu__faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.train-menu__faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.7rem 0;
  font-family: var(--aura-font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.train-menu__faq summary:hover { color: var(--aura-secondary); }
.train-menu__faq summary::-webkit-details-marker { display: none; }

.train-menu__faq details p {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(240, 242, 245, 0.68);
}

@media (max-width: 768px) {
  .train-menu__hero-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
  }

  .train-menu__lead {
    justify-self: start;
    max-width: none;
  }

  .train-row__inner {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    padding-inline: clamp(1rem, 4vw, 1.25rem);
    min-height: clamp(10rem, 40vw, 13rem);
  }

  .train-row {
    min-height: clamp(10rem, 40vw, 13rem);
  }

  .train-menu__dock {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .train-row__bg {
    transition: none;
  }
}

/* Detail page leftovers */
.train-page__crumb {
  margin: 0 0 0.75rem;
  font-family: var(--aura-font-heading);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.45);
}

.train-page__crumb a {
  color: var(--aura-secondary);
  text-decoration: none;
}

.train-intro {
  padding-top: clamp(5rem, 9vh, 6rem);
  padding-bottom: clamp(1.35rem, 3vh, 2rem);
  background: var(--aura-bg);
}

.train-intro__inner { max-width: 42rem; }

.train-intro__kicker {
  margin: 0 0 0.7rem;
  font-family: var(--aura-font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.train-intro__title,
.train-flow__title {
  margin: 0;
  font-family: var(--aura-font-heading);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.train-intro__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.train-intro__lead {
  margin: 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(240, 242, 245, 0.76);
}

.train-end__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.2rem;
  font-family: var(--aura-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #07090d;
  background: var(--aura-primary);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.train-fmt__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.8rem;
  margin: 1rem 0 1.1rem;
}

.train-fmt__price {
  font-family: var(--aura-font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--aura-accent);
}

.train-fmt__price-note {
  font-size: 0.9rem;
  color: rgba(240, 242, 245, 0.6);
}

.train-fmt__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.train-fmt__body {
  padding-block: 0 clamp(1.75rem, 3.5vh, 2.75rem);
}

.train-fmt__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
  gap: 1rem 1.2rem;
  align-items: start;
}

.train-fmt__figure {
  margin: 0;
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
  max-height: 17rem;
  overflow: hidden;
  background: #0a0c10;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.train-fmt__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.train-fmt__copy { grid-column: 1; }

.train-fmt__p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(240, 242, 245, 0.8);
}

.train-fmt__aside {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #10131a;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.train-fmt__aside--blood { border-color: rgba(255, 42, 66, 0.4); }
.train-fmt__aside--cyan { border-color: rgba(0, 229, 255, 0.4); }
.train-fmt__aside--acid { border-color: rgba(223, 255, 0, 0.4); }

.train-fmt__aside-label {
  margin: 0 0 0.7rem;
  font-family: var(--aura-font-heading);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.5);
}

.train-fmt__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.train-fmt__includes li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(240, 242, 245, 0.88);
}

.train-fmt__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--aura-primary);
}

.train-fmt__aside--cyan .train-fmt__includes li::before { background: var(--aura-secondary); }
.train-fmt__aside--acid .train-fmt__includes li::before { background: var(--aura-accent); }

.train-faq-band {
  padding-block: clamp(1.5rem, 3vh, 2.25rem);
  background: var(--aura-bg);
}

.train-faq-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem 2rem;
}

.train-faq__item {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.train-faq__q {
  margin: 0 0 0.3rem;
  font-family: var(--aura-font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.train-faq__a {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(240, 242, 245, 0.7);
}

.train-menu--more {
  padding-block: clamp(1.25rem, 2.5vh, 2rem) clamp(2rem, 4vh, 3rem);
}

.train-set__link {
  text-decoration: none;
  color: inherit;
  display: grid;
  width: 100%;
}

.train-set__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.train-set__name { color: #fff !important; }

@media (max-width: 900px) {
  .train-menu__dock {
    grid-template-columns: 1fr;
  }

  .train-faq-band__grid,
  .train-fmt__grid {
    grid-template-columns: 1fr;
  }

  .train-fmt__aside,
  .train-fmt__copy {
    grid-column: 1;
  }

  .train-fmt__figure {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}

/* ==========================================================================
   CITY PAGE ? ?????? ???????? / geo landings
   ========================================================================== */
.city-page {
  background: var(--aura-bg, #1C1E24);
  color: var(--aura-text-main, #F0F2F5);
  overflow: clip;
}

/* NN ? one continuous soft atmosphere across the whole page */
.city-page--nn {
  position: relative;
  isolation: isolate;
  background: var(--aura-bg, #1C1E24);
}

.city-page--nn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 92% 16% at 10% 5%, rgba(255, 42, 66, 0.11), transparent 74%),
    radial-gradient(ellipse 70% 12% at 90% 12%, rgba(0, 229, 255, 0.065), transparent 72%),
    radial-gradient(ellipse 80% 15% at 78% 28%, rgba(223, 255, 0, 0.04), transparent 74%),
    radial-gradient(ellipse 85% 16% at 16% 38%, rgba(255, 42, 66, 0.085), transparent 72%),
    radial-gradient(ellipse 78% 15% at 86% 48%, rgba(0, 229, 255, 0.06), transparent 72%),
    radial-gradient(ellipse 88% 18% at 24% 58%, rgba(255, 42, 66, 0.095), transparent 70%),
    radial-gradient(ellipse 72% 14% at 78% 64%, rgba(0, 229, 255, 0.055), transparent 72%),
    radial-gradient(ellipse 80% 14% at 36% 78%, rgba(223, 255, 0, 0.035), transparent 74%),
    radial-gradient(ellipse 70% 12% at 70% 90%, rgba(255, 42, 66, 0.07), transparent 74%);
}

.city-page--nn > * {
  position: relative;
  z-index: 1;
}

.city-page--nn .city-hero,
.city-page--nn .city-story,
.city-page--nn .city-spots,
.city-page--nn .city-offer,
.city-page--nn .city-faq,
.city-page--nn .city-links {
  background: transparent;
}

.city-page--nn .city-hero::after {
  background: linear-gradient(
    180deg,
    rgba(28, 30, 36, 0) 0%,
    rgba(28, 30, 36, 0.28) 55%,
    rgba(28, 30, 36, 0.55) 100%
  );
}

.city-page--nn .city-story::before,
.city-page--nn .city-story::after {
  height: clamp(1.5rem, 3.5vh, 2.75rem);
}

.city-page--nn .city-story::before {
  background: linear-gradient(
    180deg,
    rgba(28, 30, 36, 0.4) 0%,
    rgba(28, 30, 36, 0) 100%
  );
}

.city-page--nn .city-story::after {
  background: linear-gradient(
    0deg,
    rgba(28, 30, 36, 0.4) 0%,
    rgba(28, 30, 36, 0) 100%
  );
}

.city-page--nn .city-story__visual::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 55%,
    rgba(28, 30, 36, 0.28) 82%,
    rgba(28, 30, 36, 0.55) 100%
  );
}

.city-page--nn .city-offer::before {
  background:
    radial-gradient(ellipse 55% 55% at 20% 45%, rgba(255, 42, 66, 0.07), transparent 68%),
    radial-gradient(ellipse 45% 40% at 80% 58%, rgba(0, 229, 255, 0.045), transparent 68%);
}

.city-page--nn .city-spots__visual::after {
  background: linear-gradient(
    270deg,
    transparent 0%,
    transparent 70%,
    rgba(28, 30, 36, 0.22) 88%,
    rgba(28, 30, 36, 0.5) 100%
  );
}

@media (max-width: 980px) {
  .city-page--nn .city-spots__visual::after {
    background: linear-gradient(
      180deg,
      transparent 42%,
      rgba(28, 30, 36, 0.28) 78%,
      rgba(28, 30, 36, 0.55) 100%
    );
  }
}

/* Sochi ? same dark base as NN, soft cyan glow (not a blue fill) */
.city-page--sochi {
  position: relative;
  isolation: isolate;
  background: var(--aura-bg, #1C1E24);
}

.city-page--sochi::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 92% 16% at 10% 5%, rgba(0, 229, 255, 0.11), transparent 74%),
    radial-gradient(ellipse 70% 12% at 90% 12%, rgba(80, 160, 255, 0.07), transparent 72%),
    radial-gradient(ellipse 80% 15% at 78% 28%, rgba(223, 255, 0, 0.035), transparent 74%),
    radial-gradient(ellipse 85% 16% at 16% 38%, rgba(0, 200, 255, 0.09), transparent 72%),
    radial-gradient(ellipse 78% 15% at 86% 48%, rgba(0, 229, 255, 0.065), transparent 72%),
    radial-gradient(ellipse 88% 18% at 24% 58%, rgba(0, 180, 255, 0.1), transparent 70%),
    radial-gradient(ellipse 72% 14% at 78% 64%, rgba(100, 190, 255, 0.055), transparent 72%),
    radial-gradient(ellipse 80% 14% at 36% 78%, rgba(223, 255, 0, 0.03), transparent 74%),
    radial-gradient(ellipse 70% 12% at 70% 90%, rgba(0, 229, 255, 0.08), transparent 74%);
}

.city-page--sochi > * {
  position: relative;
  z-index: 1;
}

.city-page--sochi .city-hero,
.city-page--sochi .city-story,
.city-page--sochi .city-spots,
.city-page--sochi .city-offer,
.city-page--sochi .city-faq,
.city-page--sochi .city-links {
  background: transparent;
}

.city-page--sochi .city-hero__kicker {
  color: var(--aura-secondary, #00E5FF);
}

.city-page--sochi .city-hero__title-city + .city-hero__title-city {
  color: var(--aura-secondary, #00E5FF);
}

.city-page--sochi .city-hero::after {
  background: linear-gradient(
    180deg,
    rgba(28, 30, 36, 0) 0%,
    rgba(28, 30, 36, 0.28) 55%,
    rgba(28, 30, 36, 0.55) 100%
  );
}

.city-page--sochi .city-story::before,
.city-page--sochi .city-story::after {
  height: clamp(1.5rem, 3.5vh, 2.75rem);
}

.city-page--sochi .city-story::before {
  background: linear-gradient(
    180deg,
    rgba(28, 30, 36, 0.4) 0%,
    rgba(28, 30, 36, 0) 100%
  );
}

.city-page--sochi .city-story::after {
  background: linear-gradient(
    0deg,
    rgba(28, 30, 36, 0.4) 0%,
    rgba(28, 30, 36, 0) 100%
  );
}

.city-page--sochi .city-story__visual::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 55%,
    rgba(28, 30, 36, 0.28) 82%,
    rgba(28, 30, 36, 0.55) 100%
  );
}

.city-page--sochi .city-offer::before {
  background:
    radial-gradient(ellipse 55% 55% at 20% 45%, rgba(0, 229, 255, 0.08), transparent 68%),
    radial-gradient(ellipse 45% 40% at 80% 58%, rgba(80, 160, 255, 0.05), transparent 68%);
}

.city-page--sochi .city-offer__title-line--accent {
  color: var(--aura-secondary, #00E5FF);
}

.city-page--sochi .city-offer__meta-price {
  color: var(--aura-secondary, #00E5FF);
}

.city-page--sochi .city-spots__visual::after {
  background: linear-gradient(
    270deg,
    transparent 0%,
    transparent 70%,
    rgba(28, 30, 36, 0.22) 88%,
    rgba(28, 30, 36, 0.5) 100%
  );
}

.city-page--sochi .city-rail {
  background: var(--aura-secondary, #00E5FF);
  color: #101216;
}

.city-page--sochi .city-cta__title {
  color: var(--aura-secondary, #00E5FF);
}

@media (max-width: 980px) {
  .city-page--sochi .city-spots__visual::after {
    background: linear-gradient(
      180deg,
      transparent 42%,
      rgba(28, 30, 36, 0.28) 78%,
      rgba(28, 30, 36, 0.55) 100%
    );
  }
}

.city-section-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.74rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.55);
}

.city-section-kicker--acid { color: var(--aura-accent, #DFFF00); }
.city-section-kicker--cyan { color: var(--aura-secondary, #00E5FF); }
.city-section-kicker--red { color: var(--aura-primary, #FF2A42); }

.city-section-title {
  margin: 0 0 0.85rem;
  max-width: 46rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
}

.city-section-lead {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.6;
  color: rgba(240, 242, 245, 0.76);
}

.city-section-lead--center {
  margin-inline: auto;
  text-align: center;
}

.city-section-text {
  margin: 0 0 1.15rem;
  max-width: 40rem;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
  color: rgba(240, 242, 245, 0.68);
}

.city-block-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vh, 2.5rem);
}

.city-block-head .city-section-title {
  margin-inline: auto;
}

/* Hero ? soft blend: type left, photo right (no hard cut) */
.city-hero.section {
  padding: 0;
}

.city-hero {
  --city-screen: calc(100svh - 4.25rem);
  position: relative;
  box-sizing: border-box;
  height: var(--city-screen);
  max-height: var(--city-screen);
  min-height: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--aura-bg, #1C1E24);
  border-bottom: none;
}

.city-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(4rem, 10vh, 7rem);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(28, 30, 36, 0) 0%,
    rgba(28, 30, 36, 0.45) 45%,
    var(--aura-bg, #1C1E24) 100%
  );
}

.city-hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
  width: 100%;
  height: 100%;
  min-height: 0;
}

.city-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.2rem, 0.7vh, 0.5rem);
  padding:
    clamp(1.15rem, 2.8vh, 2rem)
    clamp(1.25rem, 3vw, 2.5rem)
    clamp(1.15rem, 2.8vh, 2rem)
    clamp(1.25rem, 6vw, 5rem);
  max-width: min(38rem, 100%);
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--aura-bg, #1C1E24) 0%,
    var(--aura-bg, #1C1E24) 58%,
    rgba(28, 30, 36, 0.72) 82%,
    rgba(28, 30, 36, 0) 100%
  );
}

.city-hero__kicker {
  margin: 0 0 0.2rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aura-accent, #DFFF00);
}

.city-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.city-hero__title-city {
  display: block;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(2.65rem, 6.8vw, 4.85rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #fff;
}

.city-hero__title-city + .city-hero__title-city {
  color: var(--aura-primary, #FF2A42);
}

.city-hero__title-sub {
  display: block;
  margin-top: 0.75rem;
  max-width: 18rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.95rem, 1.65vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.76);
}

.city-hero__lead {
  margin: 0.35rem 0 0;
  max-width: 32rem;
  width: 100%;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.58;
  color: rgba(240, 242, 245, 0.72);
}

.city-hero__visual {
  position: relative;
  z-index: 1;
  margin: 0 0 0 -12%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.city-hero__visual::before {
  display: none;
}

.city-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Screen-fit for hero + story + spots on desktop */
@media (min-width: 901px) {
  .city-page {
    --city-screen: calc(100svh - 4.25rem);
  }

  .city-page > .city-story.section,
  .city-page > .city-spots.section {
    box-sizing: border-box;
    height: var(--city-screen);
    max-height: var(--city-screen);
    min-height: 0;
    padding: 0;
    display: block;
    overflow: hidden;
  }

  .city-story,
  .city-spots {
    padding-top: 0;
    padding-bottom: 0;
  }

  .city-story__panel,
  .city-spots__panel {
    height: 100%;
    min-height: 0;
  }
}

/* Story ? fill right column: full-width copy + row split */
.city-story.section {
  position: relative;
  padding: 0;
  border-block: none;
  overflow: hidden;
  background: var(--aura-bg, #1C1E24);
  isolation: isolate;
}

.city-story::before,
.city-story::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  height: clamp(2.25rem, 5vh, 4rem);
  pointer-events: none;
}

.city-story::before {
  top: 0;
  background: linear-gradient(
    180deg,
    var(--aura-bg, #1C1E24) 0%,
    rgba(28, 30, 36, 0.35) 50%,
    rgba(28, 30, 36, 0) 100%
  );
}

.city-story::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    var(--aura-bg, #1C1E24) 0%,
    rgba(28, 30, 36, 0.35) 50%,
    rgba(28, 30, 36, 0) 100%
  );
}

.city-story__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.city-story__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0a0b0d;
}

.city-story__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 58%,
    rgba(28, 30, 36, 0.5) 84%,
    var(--aura-bg, #1C1E24) 100%
  );
  pointer-events: none;
}

.city-story__img {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transform: scale(1.03);
  will-change: transform;
}

.city-story__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.15rem, 0.55vh, 0.4rem);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding:
    clamp(1.1rem, 2.5vh, 1.85rem)
    clamp(1.5rem, 3.5vw, 3rem)
    clamp(1.1rem, 2.5vh, 1.85rem)
    clamp(1.15rem, 2.4vw, 2rem);
}

.city-story__kicker {
  margin: 0 0 0.15rem;
  font-size: clamp(0.72rem, 1vw, 0.8rem);
}

.city-story__title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin: 0 0 0.4rem;
  max-width: none;
  width: 100%;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(2.35rem, 4.8vw, 3.75rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.city-story__title-line {
  display: block;
  white-space: nowrap;
}

.city-story__title-line--acid {
  color: var(--aura-accent, #DFFF00);
}

.city-story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin: 0 0 0.4rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.76rem, 1vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-story__tags .pd-w {
  letter-spacing: 0.12em;
}

.city-story__lead {
  margin: 0 0 1rem;
  max-width: none;
  width: 100%;
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: rgba(240, 242, 245, 0.86);
}

.city-story__lead .pd-w {
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.city-story__set {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.city-story__row {
  display: grid;
  grid-template-columns: minmax(13rem, 0.42fr) minmax(0, 0.58fr);
  column-gap: clamp(1rem, 2.5vw, 2rem);
  row-gap: 0.35rem;
  align-items: center;
  padding: 0.9rem 0.25rem 0.9rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid transparent;
}

.city-story__row:last-child {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.city-story__row--acid { border-left-color: rgba(223, 255, 0, 0.7); }
.city-story__row--red { border-left-color: rgba(255, 42, 66, 0.85); }
.city-story__row--cyan { border-left-color: rgba(0, 229, 255, 0.8); }

.city-story__row-main {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.city-story__row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.75rem;
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.66rem, 0.9vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.city-story__row-tags .pd-w {
  letter-spacing: 0.1em;
}

.city-story__row-name {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.city-story__row-text {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(240, 242, 245, 0.66);
}

@media (prefers-reduced-motion: reduce) {
  .city-story__img {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 1100px) {
  .city-story__row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .city-story__title-line {
    white-space: normal;
  }
}

/* Spots ? split like story: seasons setlist + photo */
.city-spots {
  position: relative;
  padding: 0;
  background: var(--aura-bg, #1C1E24);
  border-block: none;
  overflow: hidden;
}

.city-spots__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.city-spots__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.15rem, 0.55vh, 0.4rem);
  box-sizing: border-box;
  min-height: 0;
  width: 100%;
  padding:
    clamp(1.1rem, 2.5vh, 1.85rem)
    clamp(1.25rem, 3vw, 2.25rem)
    clamp(1.1rem, 2.5vh, 1.85rem)
    clamp(1.25rem, 5vw, 4.25rem);
}

.city-spots__kicker {
  margin: 0 0 0.15rem;
  font-size: clamp(0.72rem, 1vw, 0.8rem);
}

.city-spots__title {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  margin: 0 0 0.35rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.city-spots__title-line {
  display: block;
}

.city-spots__lead {
  margin: 0 0 0.95rem;
  max-width: none;
  width: 100%;
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: rgba(240, 242, 245, 0.84);
}

.city-spots__lead .pd-w {
  letter-spacing: 0.01em;
}

.city-spots__set {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.city-spots__row {
  display: grid;
  grid-template-columns: minmax(11rem, 0.4fr) minmax(0, 0.6fr);
  column-gap: clamp(0.9rem, 2vw, 1.6rem);
  row-gap: 0.35rem;
  align-items: start;
  padding: 0.85rem 0.2rem 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid transparent;
}

.city-spots__row:last-child {
  border-bottom: none;
  padding-bottom: 0.2rem;
}

.city-spots__row--winter {
  border-left-color: rgba(0, 229, 255, 0.85);
}

.city-spots__row--summer {
  border-left-color: rgba(223, 255, 0, 0.8);
}

.city-spots__row-main {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.city-spots__row-label {
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.66rem, 0.9vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.45);
}

.city-spots__row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.7rem;
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.66rem, 0.9vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.city-spots__row-tags .pd-w {
  letter-spacing: 0.1em;
}

.city-spots__row-name {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.18;
}

.city-spots__row-body {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  padding-top: 0.05rem;
}

.city-spots__row-text {
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(240, 242, 245, 0.68);
}

.city-spots__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.8rem;
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.66rem, 0.9vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.5);
}

.city-spots__feats span {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  line-height: 1.3;
}

.city-spots__row--winter .city-spots__feats {
  color: rgba(0, 229, 255, 0.72);
}

.city-spots__row--summer .city-spots__feats {
  color: rgba(223, 255, 0, 0.72);
}

.city-spots__visual {
  position: relative;
  margin: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #0a0b0d;
  border: none;
  border-radius: 0;
  max-height: none;
}

.city-spots__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    transparent 0%,
    transparent 72%,
    rgba(28, 30, 36, 0.28) 90%,
    var(--aura-bg, #1C1E24) 100%
  );
}

.city-spots__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  /* Rider sits left-center in the frame ? keep him visible, no heavy zoom crop */
  object-position: 18% 42%;
}

@media (max-width: 980px) {
  .city-spots__panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .city-spots__visual {
    min-height: min(48svh, 380px);
    height: min(48svh, 380px);
    order: -1;
  }

  .city-spots__visual::after {
    background: linear-gradient(
      180deg,
      transparent 40%,
      rgba(28, 30, 36, 0.45) 78%,
      var(--aura-bg, #1C1E24) 100%
    );
  }

  .city-spots__visual img {
    object-position: 30% 35%;
  }

  .city-spots__copy {
    padding: 1.5rem 1.15rem 2.15rem;
    gap: 0.3rem;
  }

  .city-spots__title {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
    line-height: 0.96;
  }

  .city-spots__lead {
    font-size: clamp(1rem, 3.4vw, 1.1rem);
    line-height: 1.58;
    margin-bottom: 1rem;
  }

  .city-spots__row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-block: 0.9rem;
  }

  .city-spots__row-name {
    font-size: clamp(1.05rem, 4vw, 1.2rem);
  }

  .city-spots__row-text {
    font-size: clamp(0.95rem, 3.3vw, 1.05rem);
    line-height: 1.5;
  }
}

/* Offer ? ProfileCard product shelf: big card + briefing panel */
.city-offer {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --pointer-from-center: 0;
  --pointer-from-top: 0.5;
  --pointer-from-left: 0.5;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --card-opacity: 0;
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: center;
  padding-block: clamp(2.5rem, 5vh, 4rem);
  background: transparent;
  overflow: hidden;
}

.city-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.city-offer__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.city-offer__shelf {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(26rem, 1.22fr);
  gap: clamp(1.75rem, 4.5vw, 3.75rem);
  align-items: center;
}

.city-offer__tilt {
  position: relative;
  width: min(100%, 28rem);
  justify-self: end;
  perspective: 640px;
  transform: translate3d(0, 0, 0.1px);
}

.city-offer__shell {
  position: relative;
  z-index: 1;
}

.city-offer__card {
  position: relative;
  width: 100%;
  height: min(82svh, 680px);
  overflow: hidden;
  border-radius: 1.75rem;
  background: #0a0b0e;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateZ(0) rotateX(var(--rotate-y)) rotateY(var(--rotate-x));
  transition: transform 0.9s ease;
  will-change: transform;
}

.city-offer__tilt.is-active .city-offer__card {
  transition: none;
}

.city-offer__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  pointer-events: none;
}

.city-offer__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.82) 0%, rgba(8, 9, 12, 0.35) 28%, transparent 48%),
    linear-gradient(0deg, rgba(8, 9, 12, 0.78) 0%, rgba(8, 9, 12, 0.28) 34%, transparent 52%);
}

.city-offer__details {
  position: absolute;
  top: 1.2rem;
  left: 1.1rem;
  right: 1.1rem;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.city-offer__card-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aura-accent, #DFFF00);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
}

.city-offer__card-name {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  line-height: 0.95;
}

.city-offer__card-name span {
  display: block;
}

.city-offer__card-role {
  margin: 0.45rem 0 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.city-offer__dock {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 6;
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 9, 12, 0.72);
  pointer-events: none;
}

.city-offer__dock-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.city-offer__price-value {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--aura-accent, #DFFF00);
  line-height: 1;
}

.city-offer__status {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240, 242, 245, 0.72);
}

.city-offer__status::before {
  content: '';
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: #3DFF8A;
  box-shadow: 0 0 0 3px rgba(61, 255, 138, 0.2);
  vertical-align: 0.05em;
}

.city-offer__dock-note {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(240, 242, 245, 0.55);
}

.city-offer__brief {
  min-width: 0;
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.1rem, 0.45vh, 0.3rem);
}

.city-offer__kicker {
  margin: 0 0 0.15rem;
}

.city-offer__title {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  margin: 0 0 0.35rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(2.25rem, 4.6vw, 3.55rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.city-offer__title-line {
  display: block;
  white-space: nowrap;
}

.city-offer__title-line--accent {
  color: var(--aura-accent, #DFFF00);
}

.city-offer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin: 0 0 0.4rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.city-offer__tags .pd-w,
.city-offer__lead .pd-w,
.city-offer__row-tags .pd-w {
  font-weight: 800;
}

.city-offer__lead {
  margin: 0 0 0.95rem;
  max-width: none;
  width: 100%;
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.58;
  color: rgba(240, 242, 245, 0.8);
}

.city-offer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  margin: 0 0 0.95rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(240, 242, 245, 0.7);
}

.city-offer__meta-price {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.04em;
  color: var(--aura-accent, #DFFF00);
}

.city-offer__set {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: none;
  width: 100%;
  counter-reset: offer-set;
}

.city-offer__row {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 0.58fr);
  gap: 0.4rem 1.25rem;
  align-items: center;
  padding: 0.85rem 0.2rem 0.85rem 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid transparent;
}

.city-offer__row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.city-offer__row--red { border-left-color: rgba(255, 42, 66, 0.85); }
.city-offer__row--acid { border-left-color: rgba(223, 255, 0, 0.8); }
.city-offer__row--cyan { border-left-color: rgba(0, 229, 255, 0.8); }

.city-offer__row-main {
  display: grid;
  gap: 0.28rem;
}

.city-offer__row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.7rem;
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.66rem, 0.9vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.city-offer__row-name {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.18;
}

.city-offer__row-text {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.5;
  color: rgba(240, 242, 245, 0.68);
}

.city-offer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 36rem;
  margin-bottom: 0.85rem;
}

.city-offer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.city-offer__btn--tg {
  color: #fff;
  background: var(--aura-primary, #FF2A42);
  box-shadow: 0 10px 26px rgba(255, 42, 66, 0.32);
}

.city-offer__btn--tg:hover,
.city-offer__btn--tg:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff;
}

.city-offer__btn--vk {
  color: #fff;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.5);
}

.city-offer__btn--vk:hover,
.city-offer__btn--vk:focus-visible {
  background: rgba(0, 229, 255, 0.22);
  transform: translateY(-1px);
  color: #fff;
}

.city-offer__more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240, 242, 245, 0.5);
  transition: color 0.2s ease;
}

.city-offer__more:hover,
.city-offer__more:focus-visible {
  color: var(--aura-accent, #DFFF00);
}

@media (max-width: 1024px) {
  .city-offer {
    min-height: 0;
    align-items: stretch;
  }

  .city-offer__shelf {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    justify-items: center;
  }

  .city-offer__tilt {
    width: min(100%, 24rem);
    justify-self: center;
  }

  .city-offer__card {
    height: min(70svh, 560px);
  }

  .city-offer__brief {
    width: min(100%, 44rem);
    max-width: none;
  }
}

@media (max-width: 640px) {
  .city-offer__tilt {
    width: min(100%, 21rem);
  }

  .city-offer__card {
    height: min(64svh, 480px);
    border-radius: 1.4rem;
  }

  .city-offer__row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding-block: 1.1rem;
  }

  .city-offer__actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .city-offer__title {
    font-size: clamp(2.1rem, 9vw, 2.85rem);
  }

  .city-offer__title-line {
    white-space: normal;
  }

  .city-offer__lead {
    font-size: clamp(1rem, 3.4vw, 1.1rem);
    line-height: 1.58;
  }

  .city-offer__row-name {
    font-size: clamp(1.05rem, 4vw, 1.2rem);
  }

  .city-offer__row-text {
    font-size: clamp(0.95rem, 3.3vw, 1.05rem);
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .city-offer__card {
    transform: none !important;
    transition: none !important;
  }
}

/* FAQ */
.city-faq {
  background: transparent;
  padding-block: clamp(4rem, 8vh, 6rem);
}

.city-faq__list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.city-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  padding: 0;
  overflow: hidden;
  transition: background 0.25s ease;
}

.city-faq__item[open] {
  background: rgba(16, 18, 22, 0.28);
}

.city-faq__q {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  padding: clamp(1.05rem, 2vw, 1.25rem) 0.2rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(0.9rem, 1.45vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s ease;
}

.city-faq__q::-webkit-details-marker {
  display: none;
}

.city-faq__q::marker {
  content: '';
}

.city-faq__num {
  font-size: clamp(0.78rem, 1.05vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(240, 242, 245, 0.38);
  transition: color 0.25s ease;
}

.city-faq__q-text {
  min-width: 0;
}

.city-faq__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.08);
  color: var(--aura-secondary, #00E5FF);
  transition: transform 0.28s ease, background 0.25s ease, border-color 0.25s ease;
}

.city-faq__icon::before,
.city-faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.city-faq__icon::before {
  width: 0.85rem;
  height: 2px;
}

.city-faq__icon::after {
  width: 2px;
  height: 0.85rem;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.city-faq__q:hover .city-faq__q-text,
.city-faq__item[open] .city-faq__q-text {
  color: var(--aura-secondary, #00E5FF);
}

.city-faq__item[open] .city-faq__num {
  color: var(--aura-secondary, #00E5FF);
}

.city-faq__item[open] .city-faq__icon {
  background: rgba(0, 229, 255, 0.16);
  border-color: var(--aura-secondary, #00E5FF);
  transform: rotate(90deg);
}

.city-faq__item[open] .city-faq__icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.city-faq__body {
  padding: 0 0.2rem 1.45rem;
  padding-left: calc(0.2rem + 1.8rem + clamp(0.85rem, 2vw, 1.25rem));
}

.city-faq__a {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
  color: rgba(240, 242, 245, 0.76);
}

@media (max-width: 640px) {
  .city-faq__body {
    padding-left: 0.15rem;
  }

  .city-faq__icon {
    width: 2.45rem;
    height: 2.45rem;
  }
}

/* Rail ? seamless infinite marquee, equal gaps, no dead pause */
.city-rail {
  --city-rail-gap: clamp(1.15rem, 2.5vw, 1.85rem);
  background: var(--aura-accent, #DFFF00);
  color: #12141a;
  padding: clamp(0.95rem, 2vh, 1.25rem) 0;
  overflow: hidden;
  line-height: 1;
}

.city-rail__viewport {
  overflow: hidden;
  width: 100%;
}

.city-rail__track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: city-rail-marquee 72s linear infinite;
}

.city-rail__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.city-rail__item {
  flex-shrink: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.35rem, 3.6vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.city-rail__item::after {
  content: '';
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  margin-inline: var(--city-rail-gap);
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  vertical-align: 0.22em;
}

@keyframes city-rail-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .city-rail__track {
    animation: none;
  }
}

/* Links ? site CTA buttons */
.city-links {
  padding-block: clamp(3.5rem, 7vh, 5.5rem);
}

.city-links__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.city-links__btn-acid {
  background-color: var(--aura-accent, #DFFF00);
  color: #101216;
  box-shadow: 0 4px 12px rgba(223, 255, 0, 0.18);
}

.city-links__btn-acid:hover,
.city-links__btn-acid:focus {
  transform: scale(1.05);
  color: #101216;
  box-shadow: 0 0 24px rgba(223, 255, 0, 0.35);
}

@media (max-width: 640px) {
  .city-links__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .city-links__actions .btn {
    width: 100%;
  }
}

/* CTA */
.city-cta {
  position: relative;
  padding-block: clamp(5rem, 12vh, 8rem);
  overflow: hidden;
  text-align: center;
}

.city-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.city-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 18, 22, 0.78), rgba(16, 18, 22, 0.9));
}

.city-cta__inner {
  position: relative;
  z-index: 1;
}

.city-cta__title {
  margin: 0 0 0.9rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(2.45rem, 5.8vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--aura-primary, #FF2A42);
}

.city-cta__lead {
  margin: 0 auto 1.65rem;
  max-width: 36rem;
  width: 100%;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.6;
  color: rgba(240, 242, 245, 0.76);
}

.city-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .city-story__grid {
    grid-template-columns: 1fr;
  }

  .city-story__panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .city-story__visual {
    min-height: min(42svh, 320px);
  }

  .city-story__visual::after {
    background: linear-gradient(
      180deg,
      transparent 40%,
      rgba(28, 30, 36, 0.55) 72%,
      var(--aura-bg, #1C1E24) 100%
    );
  }

  .city-story__copy {
    padding: 1.5rem 1.15rem 2.15rem;
    gap: 0.3rem;
  }

  .city-story__title {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
    line-height: 0.98;
  }

  .city-story__lead {
    font-size: clamp(1rem, 3.4vw, 1.1rem);
    line-height: 1.58;
    margin-bottom: 1rem;
  }

  .city-story__row {
    padding-block: 0.9rem;
  }

  .city-story__row-name {
    font-size: clamp(1.05rem, 4vw, 1.2rem);
  }

  .city-story__row-text {
    font-size: clamp(0.95rem, 3.3vw, 1.05rem);
    line-height: 1.5;
  }

  .city-hero {
    --city-screen: auto;
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .city-hero__shell {
    grid-template-columns: 1fr;
    height: auto;
  }

  .city-hero__copy {
    max-width: none;
    width: 100%;
    gap: 0.4rem;
    padding:
      1.5rem
      1.15rem
      clamp(2.25rem, 6vh, 3rem);
    background: var(--aura-bg, #1C1E24);
  }

  .city-hero__visual {
    min-height: min(58svh, 420px);
    height: min(58svh, 420px);
    order: -1;
    margin: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }

  .city-hero__title-city {
    font-size: clamp(2.6rem, 13vw, 3.9rem);
    line-height: 0.92;
  }

  .city-hero__title-sub {
    max-width: none;
    font-size: clamp(0.98rem, 3.8vw, 1.15rem);
    line-height: 1.3;
  }

  .city-hero__lead {
    max-width: none;
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    line-height: 1.58;
  }
}

@media (max-width: 640px) {
  .city-cta__actions {
    width: 100%;
  }

  .city-cta__actions .btn {
    width: 100%;
  }
}

/* Responsive Overrides */
@media (max-width: 768px) {
  :root {
    --aura-section-y: 80px;
    --aura-gap-lg: 40px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* URBAN TRAINING FORMAT REDESIGN */
.train-page--urban {
  --urban-bg: #0d0d0f;
  --urban-surface: #141417;
  --urban-border: rgba(255,255,255,0.05);
  /* ?????? ????? ????? ? ????? ??? ?????????? ? ???? ?? ????????? */
  --fmt-num-col: 3.25rem;
  --fmt-num-gap: 1rem;
}

@media (min-width: 769px) {
  .train-page--urban {
    --fmt-num-col: 4.5rem;
    --fmt-num-gap: 1.2rem;
  }
}

@media (min-width: 960px) {
  .train-page--urban {
    --fmt-num-col: 4.75rem;
    --fmt-num-gap: 1.25rem;
  }
}

/* Photo / video hero ? clean mast, no kicker/CTAs */
.train-fmt-hero {
  position: relative;
  min-height: clamp(68vh, 78vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: clamp(6.5rem, 12vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}

/* Full-screen cover video, web-optimized source */
.train-fmt-hero--video {
  min-height: 100svh;
  height: 100svh;
  aspect-ratio: auto;
  max-height: none;
  width: 100%;
  align-items: flex-end;
  background: #0a0a0c;
}

.train-fmt-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0c;
}

.train-fmt-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .train-fmt-hero__video {
    display: none;
  }

  .train-fmt-hero--video .train-fmt-hero__media {
    background-image: var(--train-fmt-hero-poster, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.train-fmt-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
  filter: none;
}

.train-fmt-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.78) 0%, rgba(8, 8, 10, 0.42) 36%, rgba(8, 8, 10, 0.08) 62%, transparent 82%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.35) 0%, transparent 28%, transparent 58%, rgba(8, 8, 10, 0.72) 100%);
}

.train-fmt-hero--video .train-fmt-hero__veil {
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.7) 0%, rgba(8, 8, 10, 0.32) 34%, rgba(8, 8, 10, 0.05) 58%, transparent 78%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.28) 0%, transparent 30%, transparent 55%, rgba(8, 8, 10, 0.65) 100%);
}

.train-fmt-hero__veil--blood::before,
.train-fmt-hero__veil--cyan::before,
.train-fmt-hero__veil--acid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  opacity: 0.85;
}

.train-fmt-hero__veil--blood::before {
  background: linear-gradient(90deg, var(--aura-primary, #FF2A42), transparent 55%);
}

.train-fmt-hero__veil--cyan::before {
  background: linear-gradient(90deg, var(--aura-secondary, #00E5FF), transparent 55%);
}

.train-fmt-hero__veil--acid::before {
  background: linear-gradient(90deg, var(--aura-accent, #DFFF00), transparent 55%);
}

.train-fmt-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-left: 0.15rem;
}

.train-fmt-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.train-fmt-hero__crumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.train-fmt-hero__crumb a:hover {
  color: #fff;
}

.train-fmt-hero__crumb-sep {
  opacity: 0.45;
}

.train-fmt-hero__title {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.25rem;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.45);
  max-width: 14ch;
}

.train-page--blood .train-fmt-hero__title {
  text-shadow:
    0 0 40px rgba(255, 42, 66, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

.train-page--cyan .train-fmt-hero__title {
  text-shadow:
    0 0 40px rgba(0, 229, 255, 0.16),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

.train-fmt-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 28rem;
  margin: 0;
  font-weight: 450;
}

@media (max-width: 768px) {
  .train-fmt-hero {
    min-height: 72vh;
    align-items: flex-end;
    padding-bottom: 3rem;
    overflow: visible;
  }

  .train-fmt-hero--video {
    min-height: 100svh;
    height: 100svh;
    aspect-ratio: auto;
    max-height: none;
  }

  .train-fmt-hero__veil {
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.25) 0%, rgba(8, 8, 10, 0.4) 40%, rgba(8, 8, 10, 0.88) 100%);
  }

  .train-fmt-hero__title {
    max-width: none;
    font-size: clamp(
      1.78rem,
      min(8.8vw, calc((100vw - 2.15rem) / 14 * 1.1)),
      2.95rem
    );
    letter-spacing: -0.045em;
    line-height: 0.98;
    overflow: hidden;
    box-sizing: border-box;
  }

  .train-fmt-hero__lead {
    max-width: none;
  }
}

.train-fmt-results__price {
  display: none;
}

.train-fmt-results__cta {
  display: none;
}

/* Hit list ? pains block */
.train-fmt-hit {
  --hit-gutter: clamp(1.5rem, 4vw, 3.5rem);
  --hit-accent: var(--aura-primary, #FF2A42);
  --hit-accent-soft: rgba(255, 42, 66, 0.12);
  --hit-num-col: var(--fmt-num-col, 3.25rem);
  --hit-num-gap: var(--fmt-num-gap, 1rem);
  position: relative;
  padding-top: clamp(5.5rem, 10vw, 8.5rem);
  padding-bottom: clamp(5.5rem, 10vw, 8.5rem);
  background:
    radial-gradient(ellipse 48% 52% at 0% 30%, var(--hit-accent-soft), transparent 70%),
    linear-gradient(180deg, #0e0e12 0%, #141418 100%);
  overflow: hidden;
}

.train-fmt-hit::before {
  content: "PAIN";
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  user-select: none;
}

.train-fmt-hit--cyan {
  --hit-accent: var(--aura-secondary, #00E5FF);
  --hit-accent-soft: rgba(0, 229, 255, 0.1);
}

.train-fmt-hit--acid {
  --hit-accent: var(--aura-accent, #DFFF00);
  --hit-accent-soft: rgba(223, 255, 0, 0.08);
}

.train-fmt-hit > .container {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--hit-gutter);
  padding-right: var(--hit-gutter);
}

.train-fmt-hit__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  max-width: 74rem;
}

@media (min-width: 960px) {
  .train-fmt-hit__shell {
    grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(3.5rem, 7vw, 6rem);
  }
}

.train-fmt-hit__head {
  max-width: 28rem;
}

.train-fmt-hit__title {
  display: flex;
  align-items: flex-start;
  gap: 0.04em;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0;
}

.train-fmt-hit__title-word {
  display: block;
}

.train-fmt-hit__title-mark {
  color: var(--hit-accent);
  text-shadow: 0 0 36px color-mix(in srgb, var(--hit-accent) 40%, transparent);
}

.train-fmt-hit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.train-fmt-hit__item,
.train-fmt-deal__result {
  display: grid;
  grid-template-columns: var(--fmt-num-col, 3.25rem) minmax(0, 1fr);
  column-gap: var(--fmt-num-gap, 1rem);
  row-gap: 0.85rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.train-fmt-hit__item:first-child,
.train-fmt-deal__result:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.train-fmt-hit__item:last-child,
.train-fmt-deal__result:last-child {
  padding-bottom: 0.2rem;
}

.train-fmt-hit__num,
.train-fmt-deal__idx {
  margin: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.train-fmt-hit__num {
  color: color-mix(in srgb, var(--hit-accent) 72%, #fff 0%);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.train-fmt-hit__item:hover .train-fmt-hit__num {
  opacity: 1;
  transform: translateX(2px);
}

.train-fmt-hit__copy,
.train-fmt-deal__copy {
  display: grid;
  gap: 0.4rem;
  max-width: 30rem;
  min-width: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  margin-left: 0;
}

.train-fmt-hit__item-title {
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.train-fmt-hit__text {
  margin: 0;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: -0.01em;
}

@media (max-width: 700px) {
  .train-page--urban {
    --fmt-num-col: 3.1rem;
    --fmt-num-gap: 1rem;
  }

  .train-fmt-hit__item,
  .train-fmt-deal__result {
    padding: 1.15rem 0;
  }

  .train-fmt-hit__num,
  .train-fmt-deal__idx {
    font-size: clamp(1.5rem, 8vw, 1.9rem);
  }

  .train-fmt-hit__head {
    max-width: none;
  }
}

/* Process flow ? how the session goes */
.train-fmt-flow {
  --flow-accent: var(--aura-primary, #FF2A42);
  --flow-gutter: clamp(1.25rem, 3.2vw, 2.5rem);
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 42, 66, 0.1), transparent 55%),
    #121216;
  overflow: hidden;
}

/* Full-bleed width: equal side gutters, no 1440 centered dead space */
.train-fmt-flow > .container {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--flow-gutter);
  padding-right: var(--flow-gutter);
}

.train-fmt-flow--cyan {
  --flow-accent: var(--aura-secondary, #00E5FF);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(0, 229, 255, 0.1), transparent 55%),
    #121216;
}

.train-fmt-flow--acid {
  --flow-accent: var(--aura-accent, #DFFF00);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(223, 255, 0, 0.08), transparent 55%),
    #121216;
}

.train-fmt-flow__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  width: 100%;
  box-sizing: border-box;
}

.train-fmt-flow__head {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 1.15rem;
  align-content: start;
  justify-items: start;
}

@media (min-width: 1100px) {
  .train-fmt-flow__shell {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: clamp(2rem, 4vw, 3.5rem);
  }

  .train-fmt-flow__head {
    position: sticky;
    top: 6.5rem;
  }
}

.train-fmt-flow__title {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  color: var(--flow-accent);
  margin: 0;
  max-width: 100%;
}

.train-fmt-flow__note {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  max-width: 22rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--flow-accent);
}

.train-fmt-flow__note-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flow-accent);
}

.train-fmt-flow__note-text {
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.train-fmt-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-width: 0;
  width: 100%;
  z-index: 1;
}

.train-fmt-flow__list::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--flow-accent) 0%,
    rgba(255, 255, 255, 0.12) 55%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

@media (min-width: 700px) {
  .train-fmt-flow__list::before {
    left: 2.35rem;
  }
}

.train-fmt-flow__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.35rem;
  align-items: start;
  padding: 1.15rem 0;
  position: relative;
}

.train-fmt-flow__item + .train-fmt-flow__item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.train-fmt-flow__index {
  position: relative;
  z-index: 1;
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0d0d10;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 6px #121216;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 700px) {
  .train-fmt-flow__index {
    width: 4.7rem;
    height: 4.7rem;
  }
}

.train-fmt-flow__item:hover .train-fmt-flow__index {
  border-color: var(--flow-accent);
  box-shadow:
    0 0 0 6px #121216,
    0 0 24px color-mix(in srgb, var(--flow-accent) 35%, transparent);
}

.train-fmt-flow__num {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.train-fmt-flow__body {
  padding-top: 0.35rem;
  min-width: 0;
}

@media (min-width: 700px) {
  .train-fmt-flow__body {
    padding-top: 0.85rem;
  }
}

.train-fmt-flow__name {
  margin: 0 0 0.55rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}

.train-fmt-flow__desc {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

/* Deal band ? hard conversion */
.train-fmt-deal {
  --deal-accent: var(--aura-primary, #FF2A42);
  --deal-gutter: clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, color-mix(in srgb, var(--deal-accent) 18%, transparent), transparent 60%),
    #09090c;
  overflow: hidden;
}

.train-fmt-deal--cyan {
  --deal-accent: var(--aura-secondary, #00E5FF);
}

.train-fmt-deal--acid {
  --deal-accent: var(--aura-accent, #DFFF00);
}

.train-fmt-deal > .container {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--deal-gutter);
  padding-right: var(--deal-gutter);
}

.train-fmt-deal__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.75rem, 5.5vw, 4.5rem);
  max-width: 80rem;
}

.train-fmt-deal__watermark {
  position: absolute;
  right: -4%;
  top: -8%;
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(7rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.train-fmt-deal__top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
}

@media (min-width: 980px) {
  .train-fmt-deal__top {
    grid-template-columns: minmax(14rem, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.train-fmt-deal__title {
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.train-fmt-deal__results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 980px) {
  /* ????? margin: 0 ? ????? ????? ???????????? */
  .train-fmt-deal__results {
    margin-left: clamp(9rem, 11vw, 13.5rem) !important;
  }
}

.train-fmt-deal__idx {
  color: color-mix(in srgb, var(--deal-accent) 72%, #fff 0%);
  opacity: 0.9;
}

.train-fmt-deal__result-title {
  margin: 0;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.train-fmt-deal__result-text {
  margin: 0;
  max-width: 30rem;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: -0.01em;
}

@media (max-width: 979px) {
  .train-fmt-deal__results {
    margin-left: 0 !important;
  }
}

.train-fmt-deal__mount {
  min-height: 10rem;
  margin-top: clamp(0.5rem, 2vw, 1.25rem);
}

.train-fmt-deal__mount.is-mounted {
  min-height: 0;
}

.train-fmt-deal__noscript {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.25rem;
  background: var(--deal-accent, #ff2a42);
  color: #0a0a0c;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

/* Legacy results hooks kept inert after deal redesign */
.train-fmt-results {
  display: none;
}

/* Gallery band */
.train-fmt-gallery {
  --tg-accent: var(--aura-primary, #ff2a42);
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, color-mix(in srgb, var(--tg-accent) 14%, transparent), transparent 62%),
    #09090c;
  overflow: hidden;
}

.train-page {
  overflow-x: clip;
}

.train-fmt-gallery--cyan {
  --tg-accent: var(--aura-secondary, #00e5ff);
}

.train-fmt-gallery--acid {
  --tg-accent: var(--aura-accent, #dfff00);
}

.train-fmt-gallery__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.train-fmt-gallery__mount {
  min-height: 12rem;
}

.train-fmt-gallery__mount.is-mounted {
  min-height: 0;
}

#train-gallery-data {
  display: none;
}

/* Training format FAQ ? city-faq style on format pages */
.train-fmt-faq {
  padding-block: clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(255, 42, 66, 0.08), transparent 62%),
    #09090c;
}

.train-fmt-faq--cyan {
  background:
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(0, 229, 255, 0.08), transparent 62%),
    #09090c;
}

.train-fmt-faq--acid {
  background:
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(223, 255, 0, 0.07), transparent 62%),
    #09090c;
}

.train-fmt-faq .city-faq__list {
  max-width: none;
  width: 100%;
  margin-inline: 0;
}

.train-fmt-faq .city-section-title {
  max-width: min(100%, 28rem);
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.train-fmt-faq .city-section-lead {
  max-width: 40rem;
}

.train-fmt-faq .city-faq__q-text {
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 700;
  line-height: 1.42;
}

.train-fmt-faq .city-faq__a {
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  line-height: 1.62;
  color: rgba(240, 242, 245, 0.82);
}

.train-fmt-faq .city-faq__item[open] {
  background: rgba(16, 18, 22, 0.42);
  box-shadow: inset 3px 0 0 0 var(--train-fmt-faq-accent, var(--aura-primary, #ff2a42));
}

.train-fmt-faq--blood {
  --train-fmt-faq-accent: var(--aura-primary, #ff2a42);
}

.train-fmt-faq--cyan {
  --train-fmt-faq-accent: var(--aura-secondary, #00e5ff);
}

.train-fmt-faq--acid {
  --train-fmt-faq-accent: var(--aura-accent, #dfff00);
}

.train-fmt-faq__cta {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.train-fmt-faq__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.6rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  background: var(--train-fmt-faq-accent, var(--aura-primary, #ff2a42));
  color: #0a0a0c;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.train-fmt-faq__cta-btn:hover,
.train-fmt-faq__cta-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #0a0a0c;
}

.train-fmt-faq__cta-note {
  margin: 0;
  max-width: 26rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(240, 242, 245, 0.58);
}

.train-fmt-faq .city-faq__item {
  border-color: rgba(255, 255, 255, 0.1);
}

.train-fmt-faq--blood .city-faq__item[open] .city-faq__num,
.train-fmt-faq--blood .city-faq__item[open] .city-faq__icon {
  color: var(--aura-primary, #ff2a42);
  border-color: color-mix(in srgb, var(--aura-primary, #ff2a42) 45%, transparent);
}

.train-fmt-faq--cyan .city-faq__item[open] .city-faq__num,
.train-fmt-faq--cyan .city-faq__item[open] .city-faq__icon {
  color: var(--aura-secondary, #00e5ff);
  border-color: color-mix(in srgb, var(--aura-secondary, #00e5ff) 45%, transparent);
}

.train-fmt-faq--acid .city-faq__item[open] .city-faq__num,
.train-fmt-faq--acid .city-faq__item[open] .city-faq__icon {
  color: var(--aura-accent, #dfff00);
  border-color: color-mix(in srgb, var(--aura-accent, #dfff00) 45%, transparent);
}

.train-fmt-gallery__fallback {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .train-fmt-gallery__fallback {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.train-fmt-gallery__fallback-item {
  margin: 0;
  overflow: hidden;
}

.train-fmt-gallery__fallback-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.train-fmt-gallery__fallback-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Legacy gallery grid (unused) */
.train-fmt-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .train-fmt-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.train-fmt-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.train-fmt-gallery__item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(30%);
}

.train-fmt-gallery__item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* FAQ Details/Summary (Urban) */
.train-faq--urban .train-faq__details {
  border-bottom: 1px solid var(--urban-border);
  padding: 1.5rem 0;
}

.train-faq--urban .train-faq__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--aura-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.train-faq--urban .train-faq__summary::-webkit-details-marker {
  display: none;
}

.train-faq--urban .train-faq__icon {
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--aura-primary);
}

.train-faq--urban .train-faq__details[open] .train-faq__icon {
  transform: rotate(45deg);
}

.train-faq--urban .train-faq__body {
  padding-top: 1rem;
  color: var(--aura-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   LEGAL PAGES + COOKIE BANNER
   ========================================================================== */
.legal-page__article {
  max-width: 46rem;
  margin: 0 auto;
}

.legal-page__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aura-secondary);
}

.legal-page__title {
  margin: 0 0 1.5rem;
  font-family: var(--aura-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.legal-page__content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--aura-font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--aura-primary);
}

.legal-page__content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.legal-page__content p,
.legal-page__content li {
  color: var(--aura-text-muted);
  line-height: 1.65;
}

.legal-page__content ul {
  padding-left: 1.2rem;
}

.legal-page__content a {
  color: var(--aura-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__updated {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: rgba(240, 242, 245, 0.55);
}

.legal-page__table {
  width: 100%;
  margin: 1rem 0;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.legal-page__table th,
.legal-page__table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--aura-border-color);
  text-align: left;
  vertical-align: top;
}

.legal-page__table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.legal-page__table code {
  font-size: 0.82em;
  color: var(--aura-accent);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible {
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  background: rgba(18, 20, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.cookie-banner__title {
  margin: 0 0 0.45rem;
  font-family: var(--aura-font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.cookie-banner__text {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(240, 242, 245, 0.78);
}

.cookie-banner__text a {
  color: var(--aura-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-start;
}

.cookie-banner__accept {
  min-width: 9rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1.25rem;
    align-items: end;
  }

  .cookie-banner__title,
  .cookie-banner__text {
    grid-column: 1;
  }

  .cookie-banner__actions {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}


/* ==========================================================================
   404 ? off-piste / wrong line
   ========================================================================== */
.err404 {
  position: relative;
  min-height: calc(100svh - 4.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(3.5rem, 8vh, 5.5rem) 0 clamp(4rem, 9vh, 6rem);
  background: var(--aura-bg, #1C1E24);
  color: var(--aura-text-main, #F0F2F5);
}

.err404__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.err404__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.err404__glow--red {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: -8%;
  left: -6%;
  background: rgba(255, 42, 66, 0.28);
  animation: err404-glow-drift 9s ease-in-out infinite alternate;
}

.err404__glow--cyan {
  width: min(48vw, 360px);
  height: min(48vw, 360px);
  right: -4%;
  bottom: 8%;
  background: rgba(0, 229, 255, 0.16);
  animation: err404-glow-drift 11s ease-in-out infinite alternate-reverse;
}

.err404__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  transform: perspective(600px) rotateX(52deg) translateY(-8%);
  transform-origin: center top;
  opacity: 0.7;
}

.err404__powder {
  position: absolute;
  inset: -20% 0 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 28% 42%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 46% 12%, rgba(223, 255, 0, 0.55), transparent),
    radial-gradient(1px 1px at 62% 55%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 78% 28%, rgba(0, 229, 255, 0.5), transparent),
    radial-gradient(1px 1px at 88% 68%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 34% 76%, rgba(255, 42, 66, 0.45), transparent),
    radial-gradient(1px 1px at 54% 88%, rgba(255, 255, 255, 0.3), transparent);
  animation: err404-powder-fall 14s linear infinite;
  opacity: 0.85;
}

.err404__powder--b {
  animation-duration: 19s;
  animation-delay: -6s;
  opacity: 0.55;
  transform: scaleX(-1);
}

.err404__powder--c {
  animation-duration: 22s;
  animation-delay: -11s;
  opacity: 0.4;
}

.err404__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.err404__kicker {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.7rem;
  margin: 0 0 1.25rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: err404-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.err404__kicker-sep {
  color: rgba(240, 242, 245, 0.35);
}

.err404__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.15rem, 1.5vw, 0.55rem);
  margin: 0 0 1.35rem;
  line-height: 0.85;
  animation: err404-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.err404__digit {
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(5.5rem, 22vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--aura-text-main, #F0F2F5);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.err404__digit:first-child {
  color: transparent;
  -webkit-text-stroke: 2px rgba(240, 242, 245, 0.85);
}

.err404__digit:last-child {
  color: var(--aura-primary, #FF2A42);
}

.err404__digit--board {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(5.5rem, 22vw, 10.5rem);
  height: clamp(5.5rem, 22vw, 10.5rem);
}

.err404__zero {
  position: relative;
  z-index: 1;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 229, 255, 0.75);
  animation: err404-zero-pulse 2.8s ease-in-out infinite;
}

.err404__board {
  position: absolute;
  width: clamp(4.8rem, 18vw, 8.5rem);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 18px rgba(255, 42, 66, 0.35));
  animation: err404-board-ride 3.6s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
}

.err404__board-deck {
  fill: var(--aura-primary, #FF2A42);
}

.err404__board-edge {
  fill: #1C1E24;
  stroke: var(--aura-accent, #DFFF00);
  stroke-width: 1.5;
}

.err404__board-bolt {
  fill: var(--aura-accent, #DFFF00);
}

.err404__board-line {
  stroke: rgba(240, 242, 245, 0.35);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.err404__title {
  margin: 0 0 1rem;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: clamp(1.85rem, 6.5vw, 3.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--aura-text-main, #F0F2F5);
  animation: err404-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.err404__title span {
  color: rgba(240, 242, 245, 0.42);
}

.err404__lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-family: var(--aura-font-body, 'Manrope', sans-serif);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.55;
  color: rgba(240, 242, 245, 0.72);
  animation: err404-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.err404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
  animation: err404-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.err404__btn {
  min-width: min(100%, 11.5rem);
  text-decoration: none;
}

.err404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: center;
  font-family: var(--aura-font-heading, 'Unbounded', sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: err404-rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.err404__links a {
  color: rgba(240, 242, 245, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.err404__links a:hover,
.err404__links a:focus-visible {
  color: var(--aura-secondary, #00E5FF);
}

@keyframes err404-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes err404-board-ride {
  0% {
    transform: translate(-118%, 18%) rotate(-18deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  50% {
    transform: translate(0, -6%) rotate(-6deg);
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translate(118%, -22%) rotate(12deg);
    opacity: 0;
  }
}

@keyframes err404-zero-pulse {
  0%, 100% {
    -webkit-text-stroke-color: rgba(0, 229, 255, 0.55);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    -webkit-text-stroke-color: rgba(0, 229, 255, 0.95);
    filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.35));
  }
}

@keyframes err404-powder-fall {
  from {
    transform: translateY(-8%);
  }
  to {
    transform: translateY(28%);
  }
}

@keyframes err404-glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(6%, 4%) scale(1.08);
  }
}

@media (max-width: 720px) {
  .err404 {
    padding: 3.25rem 0 3.75rem;
    min-height: calc(100svh - 4.25rem);
  }

  .err404__digit:first-child {
    -webkit-text-stroke-width: 1.5px;
  }

  .err404__zero {
    -webkit-text-stroke-width: 1.5px;
  }

  .err404__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .err404__btn {
    width: 100%;
    min-width: 0;
  }

  .err404__links {
    gap: 0.55rem 1rem;
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .err404__glow,
  .err404__powder,
  .err404__board,
  .err404__zero,
  .err404__kicker,
  .err404__code,
  .err404__title,
  .err404__lead,
  .err404__actions,
  .err404__links {
    animation: none !important;
  }

  .err404__board {
    transform: translate(0, -4%) rotate(-8deg);
    opacity: 1;
  }

  .err404__kicker,
  .err404__code,
  .err404__title,
  .err404__lead,
  .err404__actions,
  .err404__links {
    opacity: 1;
    transform: none;
  }
}
