:root {
  --bg: #101111;
  --bg-soft: #171919;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-soft: #d5d5d5;
  --dark-text: #101010;
  --ferrari: #b54430;
  --ferrari-deep: #7d2f21;
  --ferrari-soft: #d98373;
  --white: #ffffff;
  --black: #000000;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --container: 1520px;
  --mouse-x: 50%;
  --mouse-y: 35%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

input,
select {
  color: var(--dark-text);
}

option {
  color: var(--dark-text);
  background: var(--white);
}

.motion-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.58;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(217, 131, 115, 0.14), transparent 18%),
    radial-gradient(circle at 10% 5%, rgba(181, 68, 48, 0.12), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(125, 47, 33, 0.14), transparent 25%),
    linear-gradient(180deg, #111212 0%, #0d0e0e 100%);
  background-size: 120% 120%, 100% 100%, 100% 100%, 100% 100%;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  animation: gridDrift 20s linear infinite;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.08) 48%, transparent 61%),
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(181, 68, 48, 0.04) 35px 36px);
  transform: translate3d(-18%, 0, 0);
  animation: lightSweep 11s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  opacity: 0.8;
}

.site-wrap {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
  padding: 18px 0 60px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: slideDown 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(255, 40, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 40, 0, 0.8), transparent 38%);
  animation: spinGlow 4.8s linear infinite;
  opacity: 0.65;
}

.brand-logo picture,
.brand-logo-img {
  position: relative;
  z-index: 1;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name,
.hero-kicker,
.mini-meta,
.chip,
.status-pill {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 600;
}

.brand-lock {
  display: inline-block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.nav-link.is-active,
.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link::after,
.access-chip::after,
.cta-button::after,
.cta-outline::after,
.inline-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.access-chip:hover::after,
.cta-button:hover::after,
.cta-outline:hover::after,
.inline-action:hover::after {
  transform: translateX(120%);
}

.nav-caret {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 270px;
  background: var(--white);
  color: var(--dark-text);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  padding: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(0.16, 1, 0.3, 1), transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #111;
}

.dropdown-link span {
  font-weight: 600;
}

.dropdown-link small {
  color: #606060;
}

.dropdown-link:hover {
  background: #f2f2f2;
}

.access-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ferrari), var(--ferrari-deep));
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(255, 40, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.access-chip.is-active {
  outline: 2px solid rgba(255, 255, 255, 0.4);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.mobile-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--white);
}

.mobile-menu {
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.95);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-shell {
  margin-top: 16px;
  position: relative;
  border-radius: 42px;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
  min-height: min(70vh, 640px);
  display: grid;
  align-content: center;
  background:
    linear-gradient(150deg, #8d1700 0%, #ff2800 35%, #6d1505 64%, #151010 100%);
  background-size: 140% 140%;
  animation: heroHeat 12s ease-in-out infinite alternate;
  box-shadow: 0 34px 90px rgba(255, 40, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform-style: preserve-3d;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.15) 0%, transparent 45%),
    linear-gradient(170deg, transparent 30%, rgba(255, 255, 255, 0.12) 100%);
  opacity: 0.65;
  z-index: -1;
  animation: heroLayerFloat 9s ease-in-out infinite alternate;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 42%, black, transparent 68%);
  opacity: 0.46;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08);
}

.hero-radar {
  position: absolute;
  inset: 10% 4% auto auto;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
}

.hero-radar span {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  animation: radarPulse 4.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-radar span:nth-child(2) {
  animation-delay: 1.2s;
}

.hero-radar span:nth-child(3) {
  animation-delay: 2.4s;
}

.hero-speedlines {
  position: absolute;
  inset: auto -18% 12% 36%;
  height: 190px;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(100deg, transparent 0 22px, rgba(255, 255, 255, 0.17) 23px 24px);
  transform: skewY(-10deg);
  animation: speedLines 7s linear infinite;
  opacity: 0.34;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
  transform: translateZ(24px);
}

.hero-kicker {
  margin: 0 0 10px;
  color: #ffe2dc;
  font-size: 0.95rem;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 0.96;
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  max-width: 12ch;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6.5vw, 5.55rem);
  max-width: 11ch;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-copy h1 .brand-lock {
  background: linear-gradient(180deg, #ffffff 0%, #ffe1da 64%, #ffb2a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h1 span {
  color: #fff2ef;
}

.hero-copy p {
  max-width: 52ch;
  margin: 16px 0 0;
  color: #ffefe9;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.6;
}

.hero-media,
.glove-stage {
  justify-self: end;
  width: min(100%, 480px);
  aspect-ratio: 4 / 3;
  max-height: 430px;
  border-radius: 30px 30px 100px 30px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.glove-stage {
  width: min(100%, 620px);
  max-height: none;
  aspect-ratio: 1.22 / 1;
  border-radius: 42px 42px 120px 42px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(255, 40, 0, 0.26), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
  perspective: 1200px;
  transform:
    perspective(1200px)
    rotateX(calc(var(--glove-tilt-y, 0) * 1deg))
    rotateY(calc(var(--glove-tilt-x, 0) * 1deg));
  --canvas-tilt-x: 0;
  --canvas-tilt-y: 0;
}

.glove-stage::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 12%;
  bottom: 11%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), transparent 68%);
  filter: blur(12px);
  transform: translateZ(-120px) rotateX(76deg);
}

.impact-orbit {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotateX(68deg) rotateZ(18deg);
  animation: impactOrbit 7s linear infinite;
}

.glove-canvas {
  position: absolute;
  inset: 6% 4% 12%;
  width: 92%;
  height: 82%;
  display: block;
  border-radius: 34px;
  transform:
    translate3d(0, 0, 70px)
    rotateX(calc(var(--canvas-tilt-y) * 0.42deg))
    rotateY(calc(var(--canvas-tilt-x) * 0.52deg));
  filter: drop-shadow(0 36px 28px rgba(0, 0, 0, 0.35));
}

.impact-orbit::before,
.impact-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.impact-orbit::after {
  inset: -18%;
  border-color: rgba(255, 40, 0, 0.22);
}

.impact-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

.impact-burst span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform-origin: left center;
  opacity: 0;
  animation: burstRay 3.1s ease-out infinite;
}

.impact-burst span:nth-child(1) { transform: rotate(8deg); animation-delay: 0s; }
.impact-burst span:nth-child(2) { transform: rotate(48deg); animation-delay: 0.08s; }
.impact-burst span:nth-child(3) { transform: rotate(102deg); animation-delay: 0.16s; }
.impact-burst span:nth-child(4) { transform: rotate(170deg); animation-delay: 0.24s; }
.impact-burst span:nth-child(5) { transform: rotate(226deg); animation-delay: 0.32s; }
.impact-burst span:nth-child(6) { transform: rotate(306deg); animation-delay: 0.4s; }

.glove-card {
  right: 7%;
  bottom: 9%;
  transform: translateZ(140px);
}

.glove-specs {
  position: absolute;
  left: 6%;
  bottom: 10%;
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 8px;
  width: min(58%, 260px);
  z-index: 2;
}

.glove-specs div {
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(8, 8, 8, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.glove-specs span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #ffbaaa;
  font-weight: 700;
}

.glove-specs strong {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media:hover {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-media:hover img {
  transform: scale(1.1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.22), transparent 58%);
  transform: translateX(-120%);
  animation: mediaGlint 6.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-live-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-live-card span {
  color: #ffad9d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-live-card strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-proof-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 720px;
}

.hero-proof-rail div {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-proof-rail div::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  transform: translateX(-100%);
  animation: railScan 3.8s ease-in-out infinite;
}

.hero-proof-rail div:nth-child(2)::after {
  animation-delay: 0.5s;
}

.hero-proof-rail div:nth-child(3)::after {
  animation-delay: 1s;
}

.hero-proof-rail strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-proof-rail span {
  display: block;
  margin-top: 3px;
  color: #ffdfd8;
  font-size: 0.86rem;
}

.hero-search {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 190px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px;
}

.ring-scroll-hero {
  position: relative;
  margin-top: 16px;
  min-height: 130vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  gap: 14px;
}

.ring-scroll-track {
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--line);
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.ring-panel {
  min-height: 38vh;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  background: rgba(15, 16, 16, 0.9);
  margin-bottom: 12px;
}

.ring-panel:last-child {
  margin-bottom: 0;
}

.ring-panel-intro h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 14ch;
}

.ring-panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
}

.ring-panel p {
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 58ch;
}

.ring-panel-ring {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(181, 68, 48, 0.18), rgba(14, 14, 14, 0.92) 55%);
}

.ring-panel-copy {
  position: relative;
  z-index: 2;
}

.ring-panel-ring::before,
.ring-panel-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ring-panel-ring::before {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -80px;
}

.ring-panel-ring::after {
  width: 220px;
  height: 220px;
  right: 30px;
  bottom: -60px;
}

.hero-search.hero-search-matte {
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
}

.ring-visual-stage {
  position: absolute;
  inset: 0 0 auto 0;
  pointer-events: none;
  height: 100%;
  z-index: 0;
}

.ring-depth-grid {
  position: absolute;
  inset: 7% 34% 20% 6%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(1000px) rotateX(62deg);
  opacity: 0.35;
}

.ring-scanlines {
  position: absolute;
  inset: 8% 35% 22% 8%;
  background: repeating-linear-gradient(180deg, transparent 0 9px, rgba(255, 255, 255, 0.035) 10px 11px);
  border-radius: 30px;
  opacity: 0.35;
}

.ring-state-pill {
  position: absolute;
  top: 4%;
  left: 9%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(16, 16, 16, 0.8);
  color: #f3d2ca;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 8px 12px;
}

.fighter-dock {
  position: sticky;
  top: 88px;
  align-self: start;
  display: grid;
  gap: 12px;
  z-index: 2;
}

.fighter-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 17, 17, 0.95);
  padding: 16px;
}

.fighter-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.fighter-card p {
  color: var(--text-soft);
}

.fighter-card-actions {
  display: flex;
  gap: 8px;
}

.fighter-stats,
.fighter-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.fighter-stats div,
.fighter-kpis div {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  padding: 10px;
}

.fighter-stats span,
.fighter-kpis span {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.fighter-stats strong,
.fighter-kpis strong {
  display: block;
  margin-top: 4px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.discipline-coming {
  margin-top: 16px;
  min-height: 112vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.discipline-scroll-track {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.discipline-panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 16, 16, 0.92);
  padding: 24px;
  min-height: 43vh;
  margin-bottom: 12px;
}

.discipline-panel:last-child {
  margin-bottom: 0;
}

.discipline-panel h1,
.discipline-panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.discipline-panel h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

.discipline-panel p,
.discipline-panel li {
  color: var(--text-soft);
}

.discipline-visual {
  position: sticky;
  top: 88px;
  height: 82vh;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 35% 30%, rgba(181, 68, 48, 0.16), rgba(15, 15, 15, 0.92) 60%);
  overflow: hidden;
}

.discipline-wrap-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.discipline-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f2d2cb;
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.search-field {
  display: grid;
  gap: 5px;
  color: var(--white);
  font-size: 0.85rem;
  padding: 0 8px;
}

.search-field span {
  font-weight: 600;
}

.search-field select,
.search-field input,
.inline-form input,
.stack-form select,
.auth-form input,
.auth-form select,
.inline-filter select {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: #111;
}

.cta-button,
.cta-outline,
.inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-button {
  color: var(--white);
  background: linear-gradient(135deg, #121212 0%, #282828 100%);
}

.cta-button:hover,
.cta-outline:hover,
.inline-action:hover {
  transform: translateY(-2px);
}

.cta-button.small,
.cta-outline {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.cta-outline {
  border: 1px solid var(--line);
  color: var(--white);
  background: transparent;
}

.section {
  padding: 34px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.network-section,
.command-section {
  position: relative;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head h2,
.split-card h2,
.detail-copy h1,
.detail-panel h2,
.feature-tile h2,
.price-card h2,
.auth-side h2,
.site-footer .footer-brand,
.waitlist h2,
.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1;
}

.section-head h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.section-head p {
  margin: 6px 0 0;
  color: var(--text-soft);
  max-width: 62ch;
}

.link-arrow {
  color: #ffb3a4;
  font-weight: 700;
}

.card-row,
.card-grid,
.mini-grid,
.result-grid,
.stats-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.card-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.clubs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.club-card,
.split-card,
.stat-card,
.mini-card,
.result-card,
.feature-tile,
.price-card,
.auth-card,
.auth-side,
.detail-panel,
.filter-panel,
.results-panel,
.waitlist {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.club-card::before,
.split-card::before,
.stat-card::before,
.mini-card::before,
.result-card::before,
.feature-tile::before,
.price-card::before,
.auth-card::before,
.auth-side::before,
.detail-panel::before,
.filter-panel::before,
.results-panel::before,
.waitlist::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 128, 102, 0.16), transparent 36%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.club-card:hover,
.split-card:hover,
.stat-card:hover,
.mini-card:hover,
.result-card:hover,
.feature-tile:hover,
.price-card:hover,
.auth-card:hover,
.auth-side:hover,
.detail-panel:hover,
.filter-panel:hover,
.results-panel:hover,
.waitlist:hover {
  border-color: rgba(255, 128, 102, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.club-card:hover::before,
.split-card:hover::before,
.stat-card:hover::before,
.mini-card:hover::before,
.result-card:hover::before,
.feature-tile:hover::before,
.price-card:hover::before,
.auth-card:hover::before,
.auth-side:hover::before,
.detail-panel:hover::before,
.filter-panel:hover::before,
.results-panel:hover::before,
.waitlist:hover::before {
  opacity: 1;
}

.club-card {
  overflow: hidden;
}

.block-link {
  display: block;
}

.club-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), filter 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.club-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}

.club-card-body {
  padding: 16px;
}

.club-card-body h3,
.mini-card h3,
.result-card h3 {
  margin: 8px 0;
  font-size: 1.3rem;
}

.club-card-body p,
.mini-card p,
.result-card p,
.split-card p,
.footer-copy,
.form-message,
.waitlist p,
.detail-copy p,
.auth-side li {
  margin: 0 0 10px;
  color: var(--text-soft);
  line-height: 1.55;
}

.chip {
  color: #ffd9d0;
  background: rgba(255, 40, 0, 0.2);
  border: 1px solid rgba(255, 40, 0, 0.4);
  border-radius: 999px;
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.85rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 14px;
}

.network-stage,
.signal-card,
.command-board {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.network-stage {
  min-height: 460px;
  padding: 28px;
  display: grid;
  align-content: end;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.network-stage::before,
.command-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 34% 44%, rgba(255, 40, 0, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0.9;
  pointer-events: none;
}

.pulse-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pulse-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%);
  animation: nodePulse 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.pulse-ring.two {
  animation-delay: 1.2s;
}

.pulse-ring.three {
  animation-delay: 2.4s;
}

.pulse-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 40, 0, 0), rgba(255, 128, 102, 0.72), rgba(255, 255, 255, 0));
  animation: lineCharge 3.4s ease-in-out infinite;
}

.pulse-line.line-one {
  transform: rotate(-22deg);
}

.pulse-line.line-two {
  transform: rotate(38deg);
  animation-delay: 0.6s;
}

.pulse-line.line-three {
  transform: rotate(148deg);
  animation-delay: 1.2s;
}

.pulse-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 800;
  background: rgba(12, 12, 12, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  animation: nodeFloat 5.5s ease-in-out infinite alternate;
}

.pulse-node.athlete {
  left: 14%;
  top: 30%;
}

.pulse-node.club {
  right: 13%;
  top: 25%;
  animation-delay: 0.8s;
}

.pulse-node.city {
  left: 52%;
  top: 48%;
  background: rgba(255, 40, 0, 0.86);
  animation-delay: 1.1s;
}

.pulse-node.level {
  left: 24%;
  bottom: 22%;
  animation-delay: 1.6s;
}

.pulse-node.weight {
  right: 18%;
  bottom: 24%;
  animation-delay: 2.1s;
}

.network-copy {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.network-copy h3,
.signal-card h3,
.command-copy h2 {
  margin: 12px 0 8px;
  font-family: "Sora", sans-serif;
  line-height: 1;
}

.network-copy h3 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.network-copy p,
.signal-card p,
.command-copy p {
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.signal-stack {
  display: grid;
  gap: 14px;
}

.signal-card {
  min-height: 144px;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent, rgba(255, 40, 0, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 128, 102, 0.48);
  background: rgba(255, 255, 255, 0.075);
}

.signal-card:hover::before {
  transform: translateX(120%);
}

.signal-card span {
  color: #ffad9d;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.signal-card h3 {
  font-size: 1.6rem;
}

.command-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  align-items: stretch;
}

.command-copy {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 40, 0, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.command-copy h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.command-copy .cta-outline {
  margin-top: 18px;
}

.command-board {
  padding: 24px;
  display: grid;
  gap: 12px;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.command-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.command-row::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--ferrari), rgba(255, 255, 255, 0.8));
  animation: commandLoad 4.2s ease-in-out infinite;
}

.command-row:nth-child(2)::after {
  animation-delay: 0.5s;
}

.command-row:nth-child(3)::after {
  animation-delay: 1s;
}

.command-row:nth-child(4)::after {
  animation-delay: 1.5s;
}

.command-row span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 0 rgba(255, 40, 0, 0);
}

.command-row.is-hot span {
  background: var(--ferrari);
  animation: statusPing 1.8s ease-out infinite;
}

.command-row strong {
  color: var(--white);
}

.command-row em {
  color: #ffad9d;
  font-style: normal;
  font-weight: 800;
}

.split-card {
  padding: 24px;
}

.split-card.dark {
  background: linear-gradient(145deg, rgba(255, 40, 0, 0.18), rgba(255, 255, 255, 0.05));
}

.split-card ol,
.split-card ul,
.detail-panel ul,
.price-card ul,
.auth-side ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.split-card li,
.detail-panel li,
.price-card li,
.auth-side li {
  margin-bottom: 9px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 20px;
}

.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.stat-card span {
  color: var(--text-soft);
}

.waitlist {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.inline-form {
  display: grid;
  gap: 10px;
}

.inline-form input {
  border-radius: 14px;
  padding: 12px 14px;
}

.form-message {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.arena-os,
.validation-lab {
  position: relative;
}

.arena-os::before,
.validation-lab::before {
  content: "";
  position: absolute;
  inset: -4% -1% auto;
  height: 130px;
  pointer-events: none;
  background: radial-gradient(circle at 18% 60%, rgba(255, 40, 0, 0.24), transparent 42%);
  opacity: 0.75;
}

.arena-grid,
.validation-grid {
  display: grid;
  gap: 14px;
}

.arena-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.arena-console,
.arena-kpi,
.validation-flow,
.validation-board {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.arena-console {
  padding: 16px;
}

.arena-toolbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.arena-toolbar label {
  display: grid;
  gap: 5px;
  color: var(--white);
}

.arena-toolbar .arena-search {
  grid-column: span 2;
}

.arena-toolbar .arena-search input {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
}

.arena-toolbar button {
  align-self: end;
}

.arena-stream {
  display: grid;
  gap: 10px;
  max-height: 620px;
  overflow: auto;
  padding-right: 4px;
}

.arena-stream::-webkit-scrollbar {
  width: 7px;
}

.arena-stream::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 128, 102, 0.65);
}

.arena-event-card,
.arena-empty {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.arena-event-card h3 {
  margin: 8px 0;
}

.arena-event-card.is-hidden {
  display: none;
}

.arena-empty {
  text-align: center;
}

.arena-empty h3 {
  margin: 6px 0 8px;
}

.arena-empty p {
  margin: 0;
  color: var(--text-soft);
}

.arena-side {
  display: grid;
  gap: 14px;
}

.arena-kpi {
  padding: 16px;
}

.arena-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.arena-kpi-grid div {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.arena-kpi-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.arena-kpi-grid span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.pipeline-track {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 9px 12px;
  color: var(--text-soft);
}

.pipeline-step span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.pipeline-step.is-active {
  border-color: rgba(255, 128, 102, 0.58);
  color: var(--white);
  background: rgba(255, 40, 0, 0.14);
}

.pipeline-step.is-active span {
  background: linear-gradient(140deg, var(--ferrari), var(--ferrari-deep));
}

.class-ticker {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.class-ticker-row {
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.class-ticker-row strong {
  display: block;
  margin-bottom: 4px;
}

.class-ticker-row span {
  color: var(--text-soft);
  font-size: 0.87rem;
}

.validation-grid {
  grid-template-columns: 1fr 1fr;
}

.validation-flow,
.validation-board {
  padding: 18px;
}

.flow-step {
  margin-bottom: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.flow-step strong {
  display: block;
  margin-bottom: 4px;
}

.flow-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.flow-step.is-live {
  border-color: rgba(255, 128, 102, 0.52);
  background: rgba(255, 40, 0, 0.15);
}

.validation-board header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.validation-board h3 {
  margin: 0;
}

#validationBadge {
  border-radius: 999px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe0d9;
  font-size: 0.85rem;
  font-weight: 700;
}

.validation-rows {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.validation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
}

.validation-row strong {
  display: block;
  margin-bottom: 3px;
}

.validation-row p {
  margin: 0;
  color: var(--text-soft);
}

.status-pill {
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.82rem;
  min-width: 118px;
  text-align: center;
}

.status-pill.is-ok {
  border-color: rgba(93, 255, 176, 0.46);
  background: rgba(24, 142, 84, 0.35);
}

.page-hero {
  margin-top: 16px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 40, 0, 0.22), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
}

.page-hero.compact h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  max-width: 14ch;
}

.page-hero p {
  margin: 10px 0 0;
  color: #f0e3e0;
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.result-card,
.feature-tile,
.price-card,
.detail-panel,
.auth-card,
.auth-side,
.filter-panel,
.results-panel {
  padding: 18px;
}

.mini-meta {
  margin: 0;
  font-size: 0.78rem;
  color: #ffad9d;
}

.inline-action {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  width: fit-content;
}

.hover-lift {
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 128, 102, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.reveal-in {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.booking-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 14px;
}

.stack-form,
.auth-form,
.inline-filter {
  display: grid;
  gap: 10px;
}

.stack-form label,
.auth-form label,
.inline-filter label {
  display: grid;
  gap: 6px;
  color: var(--white);
}

.results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.results-head.top-space {
  margin-top: 16px;
}

.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-actions,
.card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.tag-pill {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.detail-hero {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.detail-copy {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-panel ul {
  color: var(--text-soft);
}

.detail-actions {
  display: flex;
  gap: 10px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-tile h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card.featured {
  background: linear-gradient(145deg, rgba(255, 40, 0, 0.24), rgba(255, 255, 255, 0.06));
}

.auth-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.tab-button.is-active {
  background: linear-gradient(135deg, rgba(255, 40, 0, 0.7), rgba(201, 31, 0, 0.7));
  border-color: rgba(255, 255, 255, 0.2);
}

.auth-form {
  display: none;
}

.auth-form.is-visible {
  display: grid;
}

.site-footer {
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 14px;
}

.footer-title {
  margin: 0 0 8px;
  color: #ffad9d;
  font-weight: 700;
}

.footer-grid a {
  display: block;
  margin: 5px 0;
  color: var(--text-soft);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-brand {
  font-size: 1.8rem;
}

.footer-bottom {
  margin: 20px 0 0;
  color: #b9b9b9;
}

.prose p {
  color: var(--text-soft);
  line-height: 1.7;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 48px 48px, 48px 48px;
  }
}

@keyframes lightSweep {
  0%,
  48% {
    transform: translate3d(-28%, 0, 0);
  }
  100% {
    transform: translate3d(28%, 0, 0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spinGlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroHeat {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 42%;
  }
}

@keyframes heroLayerFloat {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@keyframes radarPulse {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  18% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes speedLines {
  to {
    background-position: 180px 0;
  }
}

@keyframes mediaGlint {
  0%,
  52% {
    transform: translateX(-125%);
  }
  100% {
    transform: translateX(125%);
  }
}

@keyframes railScan {
  0%,
  30% {
    transform: translateX(-105%);
  }
  78%,
  100% {
    transform: translateX(105%);
  }
}

@keyframes nodePulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  20% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2);
  }
}

@keyframes lineCharge {
  0%,
  100% {
    opacity: 0.16;
    filter: blur(0);
  }
  50% {
    opacity: 0.82;
    filter: blur(0.4px);
  }
}

@keyframes nodeFloat {
  from {
    transform: translate3d(0, -6px, 0);
  }
  to {
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes commandLoad {
  0% {
    width: 0%;
    opacity: 0.2;
  }
  42% {
    width: 76%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

@keyframes statusPing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 40, 0, 0.48);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(255, 40, 0, 0);
  }
}

@keyframes impactOrbit {
  to {
    transform: rotateX(68deg) rotateZ(378deg);
  }
}

@keyframes burstRay {
  0%,
  38% {
    opacity: 0;
    width: 0;
  }
  44% {
    opacity: 0.72;
    width: 24%;
  }
  68%,
  100% {
    opacity: 0;
    width: 32%;
  }
}

@media (max-width: 1150px) {
  .hero-content,
  .detail-hero,
  .auth-layout,
  .waitlist,
  .booking-layout,
  .split-section,
  .network-grid,
  .arena-grid,
  .validation-grid,
  .discipline-coming,
  .command-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-media {
    justify-self: stretch;
    width: 100%;
    max-height: 430px;
  }

  .ring-scroll-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fighter-dock,
  .discipline-visual {
    position: relative;
    top: 0;
  }

  .glove-stage {
    justify-self: stretch;
    width: 100%;
  }

  .signal-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-grid,
  .mini-grid,
  .feature-grid,
  .pricing-grid,
  .stats-grid,
  .card-grid.clubs-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .access-chip {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-shell {
    padding: 24px;
  }

  .hero-radar,
  .hero-speedlines {
    opacity: 0.38;
  }

  .ring-panel {
    min-height: auto;
  }

  .ring-depth-grid,
  .ring-scanlines {
    inset: 10% 8% 18% 8%;
  }

  .signal-stack {
    grid-template-columns: 1fr;
  }

  .hero-proof-rail {
    grid-template-columns: 1fr;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .arena-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .arena-toolbar .arena-search {
    grid-column: span 2;
  }

  .search-field {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .site-wrap {
    width: min(calc(100% - 14px), var(--container));
    padding-top: 10px;
  }

  .topbar {
    top: 8px;
    border-radius: 24px;
  }

  .page-hero,
  .section-white,
  .site-footer,
  .split-card,
  .waitlist {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .arena-toolbar {
    grid-template-columns: 1fr;
  }

  .arena-toolbar .arena-search {
    grid-column: span 1;
  }

  .hero-live-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .glove-stage {
    aspect-ratio: 0.95 / 1;
    border-radius: 30px 30px 82px 30px;
  }

  .glove-canvas {
    inset: 10% 3% 20%;
    width: 94%;
    height: 70%;
  }

  .glove-specs {
    width: min(68%, 260px);
    left: 5%;
    bottom: 11%;
  }

  .fighter-card-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-field {
    display: none;
  }

  .reveal-in {
    opacity: 1;
    transform: none;
  }
}


