@charset "UTF-8";
:root {
  --color-brand: #0037e6;
  --color-brand-strong: #002bb8;
  --color-brand-bright: #6680ff;
  --color-brand-weak: rgba(0, 55, 230, 0.14);
  --gradient-brand: linear-gradient(135deg, #2f4dff 0%, #002bb8 100%);
  --glow-brand: 0 0 0 1px rgba(0, 55, 230, 0.4), 0 0 42px rgba(0, 55, 230, 0.42);
  --brand-rgb: 0, 55, 230;
  --color-brand-contrast: #fff;
  --ambient-rgb: var(--brand-rgb);
  --color-bg: #06080d;
  --color-bg-2: #0a0c12;
  --color-surface: #13161c;
  --color-surface-2: #181c23;
  --color-elevated: #1f242c;
  --color-line: rgba(255, 255, 255, 0.08);
  --color-line-strong: rgba(255, 255, 255, 0.16);
  --color-text: #f2f4f7;
  --color-text-muted: #aab2bb;
  --color-text-subtle: #949ca5;
  --font-display: "Anton", system-ui, sans-serif;
  --ls-display: 0.025em;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra: 800;
  --dur-fast: 0.15s;
  --dur-base: 0.4s;
  --dur-slow: 0.7s;
  --dur-slower: 1.1s;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius: var(--radius-md);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --z-bg: 0;
  --z-content: 10;
  --z-cursor: 9000;
  --z-transition: 9500;
  --z-loader: 9800;
}

[data-theme=ardc] {
  --color-brand: #0037e6;
  --color-brand-strong: #002bb8;
  --color-brand-bright: #6680ff;
  --color-brand-weak: rgba(0, 55, 230, 0.16);
  --gradient-brand: linear-gradient(135deg, #2f4dff 0%, #002bb8 100%);
  --glow-brand: 0 0 0 1px rgba(0, 55, 230, 0.45), 0 0 60px rgba(0, 55, 230, 0.5);
  --brand-rgb: 0, 55, 230;
  --color-brand-contrast: #fff;
}

[data-theme=smp] {
  --color-brand: #ffc800;
  --color-brand-strong: #e0a800;
  --color-brand-bright: #ffd84d;
  --color-brand-weak: rgba(255, 200, 0, 0.16);
  --gradient-brand: linear-gradient(135deg, #ffd23d 0%, #edaf00 100%);
  --glow-brand: 0 0 0 1px rgba(255, 200, 0, 0.45), 0 0 60px rgba(255, 200, 0, 0.55);
  --brand-rgb: 255, 200, 0;
  --color-brand-contrast: #171200;
  --ambient-rgb: 255, 154, 10;
  --color-secondary: #d80d0d;
  --color-secondary-bright: #f15d5d;
  --secondary-rgb: 216, 13, 13;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--color-brand);
  color: var(--color-brand-contrast, #fff);
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none;
  }
}
:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 4px;
}

.u-display {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
}

.u-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.u-overline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line__inner {
  display: block;
  will-change: transform;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body.page {
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--color-bg);
}

body.page.is-menu-open {
  overflow: hidden;
}

html {
  scrollbar-gutter: stable;
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-brand) var(--color-bg-2);
  }
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-2);
  border-left: 1px solid var(--color-line, rgba(255, 255, 255, 0.06));
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-brand-bright), var(--color-brand) 45%, var(--color-brand-strong));
  border-radius: 999px;
  border: 3px solid var(--color-bg-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-bright);
}

::-webkit-scrollbar-corner {
  background: var(--color-bg-2);
}

:root {
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1360px;
  --section-pad: clamp(5rem, 12vh, 11rem);
}

@media (max-width: 1440px) {
  :root {
    --gutter: 30px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --gutter: 20px;
  }
}
.content {
  position: relative;
  z-index: var(--z-content);
}

section {
  position: relative;
}

.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.06em;
}

.line__inner {
  display: block;
  will-change: transform;
  transform: translateY(120%);
}

.line__accent {
  color: var(--color-brand-bright);
}

[data-reveal] {
  will-change: transform, opacity;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
}

.link-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand-bright);
  transition: transform 0.5s var(--ease-out-expo);
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--color-line-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo), background 0.5s;
}

.link-arrow:hover svg {
  transform: translateY(3px);
}

.link-arrow:hover::after {
  transform: scaleX(1);
  background: var(--color-brand-bright);
}

.section-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-display);
  line-height: 1.1;
}

.atmos {
  position: fixed;
  inset: 0;
  z-index: var(--z-bg);
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.16), transparent 60%), var(--color-bg);
}

.atmos__gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.atmos__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, transparent 75%);
  opacity: 0.6;
}

.atmos__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.atmos__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(135% 120% at 50% 40%, transparent 52%, rgba(0, 0, 0, 0.72) 100%);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.cursor__dot, .cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  will-change: transform;
  backface-visibility: hidden;
}

.cursor__dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--color-brand-bright);
  box-shadow: 0 0 12px 2px rgba(var(--brand-rgb), 0.8);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.cursor__ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: invert(0.04);
  -webkit-backdrop-filter: invert(0.04);
  display: grid;
  place-items: center;
  transition: width 0.28s var(--ease-out-expo), height 0.28s var(--ease-out-expo), margin 0.28s var(--ease-out-expo), border-color 0.22s ease, background 0.22s ease;
}

.cursor__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s var(--ease-out-expo);
  white-space: nowrap;
}

.cursor.is-hovering .cursor__ring {
  width: 66px;
  height: 66px;
  margin: -33px 0 0 -33px;
  border-color: rgba(var(--brand-rgb), 0.9);
  background: rgba(var(--brand-rgb), 0.12);
}

.cursor.is-hovering .cursor__label {
  opacity: 1;
  transform: scale(1);
}

.cursor.is-hovering .cursor__dot {
  background: #fff;
  box-shadow: 0 0 16px 4px rgba(var(--brand-rgb), 0.95);
}

.cursor.is-down .cursor__ring {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
}

.cursor.is-idle .cursor__dot {
  animation: cursor-pulse 2.2s ease-in-out infinite;
}

@keyframes cursor-pulse {
  0%, 100% {
    box-shadow: 0 0 10px 2px rgba(var(--brand-rgb), 0.6);
  }
  50% {
    box-shadow: 0 0 18px 5px rgba(var(--brand-rgb), 0.95);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cursor.is-idle .cursor__dot {
    animation: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}
:root {
  --masthead-h: calc(clamp(50px, 4.4vw, 64px) * 1.342 + clamp(1rem, 2.4vw, 1.7rem) * 2);
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  --badge-w: clamp(50px, 4.4vw, 64px);
  --ctl-h: clamp(42px, 3.1vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.4vw, 1.7rem) var(--gutter);
  transition: transform 0.6s var(--ease-out-expo), background 0.5s var(--ease-standard), backdrop-filter 0.5s var(--ease-standard), padding 0.5s var(--ease-out-expo), box-shadow 0.55s var(--ease-standard);
}

.masthead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.7) 50%, transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease-standard);
}

.masthead.is-stuck {
  --badge-w: clamp(38px, 3.2vw, 46px);
  --ctl-h: clamp(38px, 2.7vw, 40px);
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.74), rgba(6, 8, 13, 0.56));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 20px 52px -26px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding-top: clamp(0.5rem, 1.1vw, 0.78rem);
  padding-bottom: clamp(0.5rem, 1.1vw, 0.78rem);
}

.masthead.is-stuck::after {
  opacity: 1;
}

.masthead.is-stuck .masthead__brand {
  gap: clamp(0.6rem, 1vw, 0.9rem);
}

.masthead.is-stuck .btn-login {
  box-shadow: 0 6px 18px -8px rgba(var(--brand-rgb), 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.masthead.is-hidden {
  transform: translateY(-100%);
}

.masthead__brand {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.3vw, 1.2rem);
  transition: gap 0.5s var(--ease-out-expo);
}

.masthead__logo {
  display: inline-flex;
}

.masthead__badge {
  width: var(--badge-w);
  height: auto;
  filter: invert(1) drop-shadow(0 3px 14px rgba(0, 0, 0, 0.7));
  transition: width 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.masthead__brand:hover .masthead__badge {
  transform: rotate(-4deg) scale(1.05);
}

.masthead__word {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  max-width: 13ch;
  line-height: 1.34;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .masthead__word {
    display: none;
  }
}
.masthead__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.4rem);
}

.btn-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  height: var(--ctl-h);
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-contrast, #fff);
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.9), rgba(var(--brand-rgb), 0.45));
  box-shadow: 0 10px 30px -10px rgba(var(--brand-rgb), 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s, height 0.5s var(--ease-out-expo), width 0.5s var(--ease-out-expo);
}

.btn-login__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  aspect-ratio: 1;
  margin: -110% 0 0 -110%;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(var(--brand-rgb), 0.9) 80deg, var(--color-brand-bright) 140deg, transparent 220deg, transparent 360deg);
  animation: btnGlowSpin 5s linear infinite;
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-login::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.4) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease-out-expo);
}

.btn-login__icon {
  display: inline-flex;
}

.btn-login__icon svg {
  width: 15px;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(var(--brand-rgb), 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-login:hover .btn-login__glow {
  opacity: 0.55;
}

.btn-login:hover::after {
  transform: translateX(130%);
}

.btn-login:hover .btn-login__icon svg {
  transform: translateX(3px);
}

@media screen and (max-width: 576px) {
  .btn-login__label {
    display: none;
  }
  .btn-login {
    width: var(--ctl-h);
    padding: 0;
  }
  .btn-login__icon svg {
    width: 17px;
  }
}
@keyframes btnGlowSpin {
  to {
    transform: rotate(360deg);
  }
}
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: var(--ctl-h);
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.45s, background 0.45s, transform 0.5s var(--ease-out-expo), height 0.5s var(--ease-out-expo), width 0.5s var(--ease-out-expo);
}

@media screen and (max-width: 576px) {
  .burger {
    width: var(--ctl-h);
    padding: 0;
  }
}
.burger__box {
  position: relative;
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
}

.burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform 0.45s var(--ease-out-expo), background 0.35s, top 0.4s var(--ease-out-expo), opacity 0.3s;
}

.burger__line:nth-child(1) {
  top: 0;
  transform-origin: left center;
}

.burger__line:nth-child(2) {
  top: 6px;
  transform-origin: right center;
}

.burger__line:nth-child(3) {
  top: 12px;
  transform-origin: left center;
}

.burger__text {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.4s;
}

@media screen and (max-width: 576px) {
  .burger__text {
    display: none;
  }
}
.burger:hover {
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.1);
  transform: translateY(-1px);
}

.burger:hover .burger__text {
  color: #fff;
}

.burger:hover .burger__line {
  background: #fff;
}

.burger:hover .burger__line:nth-child(1) {
  transform: scaleX(0.55);
}

.burger:hover .burger__line:nth-child(2) {
  transform: scaleX(0.8);
  transition-delay: 0.06s;
}

.burger:hover .burger__line:nth-child(3) {
  transform: scaleX(0.55);
  transition-delay: 0.12s;
}

.burger[aria-expanded=true] .burger__line {
  background: var(--color-text);
  transition-delay: 0s;
}

.burger[aria-expanded=true] .burger__line:nth-child(1) {
  top: 6px;
  transform-origin: center;
  transform: rotate(45deg);
}

.burger[aria-expanded=true] .burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger[aria-expanded=true] .burger__line:nth-child(3) {
  top: 6px;
  transform-origin: center;
  transform: rotate(-45deg);
}

.megamenu {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  pointer-events: none;
}

.megamenu__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #080a10, #05070c);
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.megamenu__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(130% 110% at 18% 12%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(130% 110% at 18% 12%, #000 0%, transparent 70%);
}

.megamenu__glow {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 70vw;
  height: 70vw;
  max-width: 920px;
  max-height: 920px;
  background: radial-gradient(circle, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.2), transparent 60%);
  will-change: transform, opacity;
  animation: mmGlowDrift 14s ease-in-out infinite alternate;
}

.megamenu__aura {
  position: absolute;
  left: -12%;
  bottom: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.12), transparent 62%);
  will-change: transform, opacity;
  animation: mmAuraDrift 18s ease-in-out infinite alternate;
}

.megamenu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.megamenu:not(.is-open) .megamenu__glow, .megamenu:not(.is-open) .megamenu__aura {
  animation-play-state: paused;
}

.megamenu.is-animating .megamenu__close, .megamenu.is-animating .mpanel__links a, .megamenu.is-animating .qbtn {
  transition: none !important;
}

.megamenu__close {
  position: absolute;
  top: clamp(1.5rem, 3.5vh, 2.8rem);
  right: clamp(1.6rem, 4vw, 3.4rem);
  z-index: 5;
  width: clamp(52px, 5vw, 62px);
  height: clamp(52px, 5vw, 62px);
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: transform 0.6s var(--ease-out-expo), border-color 0.45s, background 0.45s, box-shadow 0.45s;
}

.megamenu__close-x {
  position: relative;
  width: 20px;
  height: 20px;
}

.megamenu__close-x span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: var(--color-text);
  transition: background 0.3s;
}

.megamenu__close-x span:first-child {
  transform: rotate(45deg);
}

.megamenu__close-x span:last-child {
  transform: rotate(-45deg);
}

.megamenu__close:hover {
  transform: rotate(90deg) scale(1.06);
  border-color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.14);
  box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0.08), 0 0 30px rgba(var(--brand-rgb), 0.4);
}

.megamenu__close:hover .megamenu__close-x span {
  background: var(--color-brand-bright);
}

.megamenu.is-open .megamenu__close {
  opacity: 1;
}

.megamenu__stage {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(5.5rem, 13vh, 9rem) var(--gutter) clamp(3rem, 7vh, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  opacity: 0;
}

@media screen and (max-width: 992px) {
  .megamenu__stage {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: clamp(1.6rem, 4vh, 2.6rem);
    overflow-y: auto;
    padding-block: clamp(4.5rem, 9vh, 6rem) clamp(2.5rem, 6vh, 4rem);
  }
}
.megamenu__index {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1.15vh, 0.95rem);
  padding-left: 1.4rem;
}

.megamenu__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: linear-gradient(var(--color-brand), var(--color-brand-bright));
  box-shadow: 0 0 14px rgba(var(--brand-rgb), 0.75);
  opacity: 0;
  pointer-events: none;
  will-change: transform, height;
}

.megamenu__panel {
  position: relative;
  height: clamp(420px, 54vh, 560px);
  padding-left: clamp(1.8rem, 3.2vw, 3.4rem);
  border-left: 1px solid var(--color-line);
}

@media screen and (max-width: 992px) {
  .megamenu__panel {
    border-left: 0;
    padding-left: 0;
    height: auto;
    min-height: 0;
  }
}
.megamenu__quick {
  position: absolute;
  left: clamp(1.8rem, 3.2vw, 3.4rem);
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media screen and (max-width: 992px) {
  .megamenu__quick {
    position: relative;
    left: 0;
    margin-top: 1.8rem;
  }
}
.midx {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: clamp(0.9rem, 1.7vw, 1.4rem);
  padding: clamp(0.45rem, 1.2vh, 0.85rem) 0 clamp(0.45rem, 1.2vh, 0.85rem) clamp(0.6rem, 1.4vw, 1.1rem);
}

.midx__bar {
  display: none;
}

.midx__no {
  flex: 0 0 auto;
  width: 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  transition: color 0.45s var(--ease-out-expo);
}

.midx__label {
  position: relative;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.35rem, 2.7vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: var(--ls-display);
  color: var(--color-text-muted);
  transition: color 0.45s var(--ease-out-expo), transform 0.55s var(--ease-out-expo), text-shadow 0.5s var(--ease-out-expo);
}

.midx:hover, .midx:focus-visible, .midx.is-active {
  outline: none;
}

.midx:hover .midx__no, .midx:focus-visible .midx__no, .midx.is-active .midx__no {
  color: var(--color-brand-bright);
}

.midx:hover .midx__label, .midx:focus-visible .midx__label, .midx.is-active .midx__label {
  color: #fff;
  transform: translateX(0.45rem);
  text-shadow: 0 0 22px rgba(var(--brand-rgb), 0.45);
}

.midx.is-current .midx__label {
  color: var(--color-brand-bright);
}

.midx.is-current.is-active .midx__label {
  color: #fff;
}

.mpanel {
  position: absolute;
  inset: 0 0 auto 0;
  padding-left: inherit;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  filter: blur(7px);
  transition: opacity 0.45s var(--ease-standard), transform 0.6s var(--ease-out-expo), filter 0.5s var(--ease-out-expo), visibility 0.45s;
}

.mpanel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
}

@media screen and (max-width: 992px) {
  .mpanel.is-active {
    position: relative;
    inset: auto;
  }
}
.mpanel__eyebrow {
  display: block;
  padding-left: 1.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  margin-bottom: clamp(1.4rem, 3.2vh, 2.2rem);
}

.mpanel__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(1.9rem, auto);
  gap: clamp(0.55rem, 1.3vh, 0.95rem) clamp(1.6rem, 2.6vw, 2.8rem);
  align-content: start;
}

/* dense panels (Venue carries the full visit + records set) need a third
   column, otherwise the rows run past .megamenu__quick at the panel's foot */
.mpanel__links--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.1rem, 1.8vw, 2rem);
}

@media screen and (max-width: 1200px) {
  .mpanel__links--wide {
    column-gap: clamp(0.9rem, 1.4vw, 1.4rem);
  }
}
@media screen and (max-width: 992px) {
  .mpanel__links--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .mpanel__links--wide {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .mpanel__links {
    grid-template-columns: 1fr;
  }
}
.mpanel__links a {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 1.9rem;
  padding: 0.15rem 0 0.15rem 1.15rem;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.15;
  white-space: nowrap;
  color: var(--color-text-muted);
  transition: color 0.35s var(--ease-standard), transform 0.45s var(--ease-out-expo), text-shadow 0.45s var(--ease-out-expo);
}

.mpanel__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.7rem;
  height: 1px;
  background: var(--color-brand-bright);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.7);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out-expo);
}

.mpanel__links a:hover, .mpanel__links a:focus-visible {
  outline: none;
  color: #fff;
  transform: translateX(0.4rem);
  text-shadow: 0 0 18px rgba(var(--brand-rgb), 0.4);
}

.mpanel__links a:hover::before, .mpanel__links a:focus-visible::before {
  transform: translateY(-50%) scaleX(1);
}

.qbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  height: 46px;
  padding: 0 0.4rem 0 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: border-color 0.4s, background 0.4s, color 0.4s, transform 0.5s var(--ease-out-expo);
}

.qbtn__icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line-strong);
  flex: 0 0 auto;
  transition: background 0.4s var(--ease-standard), border-color 0.4s;
}

.qbtn__icon svg {
  width: 14px;
  transition: transform 0.45s var(--ease-out-expo);
}

.qbtn:hover {
  transform: translateY(-2px);
  border-color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.1);
}

.qbtn:hover .qbtn__icon {
  border-color: var(--color-brand-bright);
  color: var(--color-brand-bright);
}

.qbtn:hover .qbtn__icon svg {
  transform: translateX(2px);
}

.qbtn--primary {
  border-color: transparent;
  background: var(--gradient-brand);
  color: var(--color-brand-contrast, #fff);
  box-shadow: 0 12px 32px -12px rgba(var(--brand-rgb), 0.8);
}

.qbtn--primary .qbtn__icon {
  background: rgba(255, 255, 255, 0.16);
  border-color: transparent;
}

.qbtn--primary:hover {
  background: var(--gradient-brand);
  box-shadow: 0 18px 40px -12px rgba(var(--brand-rgb), 0.95);
}

.qbtn--primary:hover .qbtn__icon {
  background: rgba(255, 255, 255, 0.26);
  border-color: transparent;
  color: inherit;
}

@media screen and (max-width: 992px) {
  .megamenu.is-touch .megamenu__close {
    top: max(0.85rem, env(safe-area-inset-top) + 0.5rem);
    right: max(0.85rem, env(safe-area-inset-right) + 0.5rem);
    width: 48px;
    height: 48px;
  }
  .megamenu.is-touch .megamenu__stage {
    display: block;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
    padding-inline: clamp(1.35rem, 6vw, 2.5rem);
    padding-top: max(clamp(4rem, 7vh, 4.75rem), env(safe-area-inset-top) + 3.6rem);
    padding-bottom: max(clamp(2.5rem, 8vh, 4rem), env(safe-area-inset-bottom) + 2.25rem);
  }
  .megamenu.is-touch .megamenu__stage::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .megamenu.is-touch .megamenu__marker {
    display: none;
  }
  .megamenu.is-touch .megamenu__panel {
    display: none;
  }
  .megamenu.is-touch .megamenu__index {
    padding-left: 0;
    gap: 0;
  }
  .megamenu.is-touch .megamenu__quick {
    margin-top: clamp(2rem, 6vh, 3rem);
    gap: 0.7rem;
  }
  .megamenu.is-touch .qbtn {
    min-height: 48px;
    padding-inline: 1.35rem;
  }
  .megamenu.is-touch .m-acc {
    border-bottom: 1px solid var(--color-line);
  }
  .megamenu.is-touch .m-acc:first-of-type {
    border-top: 1px solid var(--color-line);
  }
  .megamenu.is-touch .m-acc__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 60px;
  }
  .megamenu.is-touch .m-acc__head .midx {
    flex: 1 1 auto;
    align-items: center;
    min-height: 60px;
    padding: clamp(0.85rem, 2.4vh, 1.3rem) 0;
    gap: 0;
  }
  .megamenu.is-touch .m-acc__head .midx__no {
    display: none;
  }
  .megamenu.is-touch .m-acc__head .midx__label {
    font-size: clamp(1.4rem, 5.6vw, 1.85rem);
    transform: none !important;
    text-shadow: none;
  }
  .megamenu.is-touch .m-acc__toggle {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: none;
    color: var(--color-text-subtle);
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
  }
  .megamenu.is-touch .m-acc__toggle svg {
    width: 22px;
    height: 22px;
    transition: transform 0.32s var(--ease-out-expo);
  }
  .megamenu.is-touch .m-acc__toggle:focus-visible {
    outline: none;
    background: rgba(var(--brand-rgb), 0.14);
    color: var(--color-brand-bright);
  }
  .megamenu.is-touch .m-acc.is-expanded .m-acc__toggle {
    color: var(--color-brand-bright);
  }
  .megamenu.is-touch .m-acc.is-expanded .m-acc__toggle svg {
    transform: rotate(180deg);
  }
  .megamenu.is-touch .m-acc.is-expanded .midx__label {
    color: #fff;
  }
  .megamenu.is-touch .m-acc__body {
    height: 0;
    overflow: hidden;
    will-change: height;
  }
  .megamenu.is-touch .m-acc .mpanel {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    transition: none;
    padding: 0 0 clamp(1.25rem, 4vh, 1.9rem);
  }
  .megamenu.is-touch .mpanel__eyebrow {
    display: none;
  }
  .megamenu.is-touch .mpanel__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0.4rem;
  }
  .megamenu.is-touch .mpanel__links a {
    width: auto;
    min-height: 48px;
    padding: 0.6rem 0 0.6rem 1.15rem;
    font-size: 1.05rem;
    white-space: normal;
    transform: none !important;
    text-shadow: none;
  }
  .megamenu.is-touch .mpanel__links a::before {
    display: none;
  }
}
@keyframes mmGlowDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  to {
    transform: translate3d(-4%, 4%, 0) scale(1.12);
    opacity: 1;
  }
}
@keyframes mmAuraDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 0.7;
  }
  to {
    transform: translate3d(5%, -3%, 0) scale(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .megamenu__bg {
    clip-path: none;
  }
  .megamenu__stage {
    opacity: 1;
  }
  .megamenu__glow,
  .megamenu__aura {
    animation: none;
  }
  .mpanel {
    transition: none;
    filter: none;
  }
  /* the active panel's own visibility:visible stops the closed shell's
     visibility:hidden from inheriting — with the stage forced opaque
     above, it bled through the page. Re-hide it while the menu is shut. */
  .megamenu:not(.is-open) .mpanel.is-active {
    visibility: hidden;
  }
}
.footer {
  position: relative;
  padding: clamp(3.5rem, 9vh, 7rem) var(--gutter) 0;
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-line);
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
}

.footer__glow {
  position: absolute;
  left: 50%;
  bottom: -55%;
  width: 130vw;
  height: 90vw;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.16), transparent 70%);
}

.footer__watermark {
  position: absolute;
  left: 50%;
  bottom: clamp(2.5rem, 5vh, 4.5rem);
  transform: translateX(-50%);
  width: min(1180px, 92vw);
  height: auto;
  opacity: 0.035;
  filter: blur(0.3px);
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  mask-image: radial-gradient(115% 130% at 50% 50%, #000 38%, transparent 82%);
  -webkit-mask-image: radial-gradient(115% 130% at 50% 50%, #000 38%, transparent 82%);
}

.footer__top, .footer__contact, .footer__bar {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin-inline: auto;
}

.footer {
  --footer-rhythm: clamp(2.4rem, 5vh, 3.5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 2.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: var(--footer-rhythm);
}

@media screen and (max-width: 992px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.footer__brand {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
}

.footer__brand img {
  display: block;
  width: 60px;
  height: auto;
  filter: invert(1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s var(--ease-out-expo);
}

.footer__brand:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.footer__desc {
  margin-top: 1.3rem;
  max-width: 38ch;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* group gap must read wider than the head→links gap inside a column,
     or the two rows of columns blur into one list */
  --footer-group-gap: clamp(2rem, 4vh, 2.75rem);
  gap: 0.65rem clamp(1.2rem, 2.5vw, 2.2rem);
  margin-top: calc(-1 * var(--footer-group-gap));
}

@media screen and (max-width: 576px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__col {
  /* subgrid: every column in a row shares the heading track, so a
     wrapping head (Competitors & Officials) can't stagger its siblings'
     links and no fixed two-line reservation is needed */
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  row-gap: 0.65rem;
  align-content: start;
}

@supports not (grid-template-rows: subgrid) {
  .footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
}
.footer__col a {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--color-text) 80%, var(--color-text-muted));
  width: fit-content;
  position: relative;
  transition: color 0.35s, transform 0.4s var(--ease-out-expo);
}

.footer__col a:hover {
  color: var(--color-brand-bright);
  transform: translateX(4px);
}

.footer__head {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 0.7rem;
  padding-top: var(--footer-group-gap);
  align-self: end;
  line-height: 1.3;
}

.footer__contact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  padding: var(--footer-rhythm) 0 0;
  border-top: 1px solid var(--color-line);
}

@media screen and (max-width: 992px) {
  .footer__contact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .footer__contact {
    grid-template-columns: 1fr;
  }
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--color-text);
}

.footer__ic {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  color: var(--color-brand-bright);
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out-expo);
}

.footer__ic svg {
  width: 18px;
  height: 18px;
}

.footer__contact-item:hover .footer__ic {
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.12);
  transform: translateY(-2px);
}

.footer__ic-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer__contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: var(--footer-rhythm) 0 clamp(1.6rem, 3.5vh, 2.4rem);
  margin-top: var(--footer-rhythm);
  border-top: 1px solid var(--color-line);
}

.footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer__legal a {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  padding: 0 1rem;
  position: relative;
  transition: color 0.35s;
}

.footer__legal a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background: var(--color-line-strong);
}

.footer__legal a:hover {
  color: var(--color-brand-bright);
}

.soc {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  color: var(--color-text-muted);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s, border-color 0.4s, transform 0.5s var(--ease-out-expo);
}

.soc svg {
  width: 17px;
  height: 17px;
  position: relative;
  z-index: 1;
}

.soc::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient-brand);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out-expo);
}

.soc:hover {
  color: var(--color-brand-contrast, #fff);
  border-color: transparent;
  transform: translateY(-3px);
}

.soc:hover::before {
  transform: translateY(0);
}

.newsletter {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 340px;
}

.newsletter .u-overline {
  color: var(--color-brand-bright);
}

.newsletter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-line-strong);
  transition: border-color 0.4s;
}

.newsletter__field:focus-within {
  border-color: var(--color-brand-bright);
}

.newsletter__input {
  flex: 1;
  background: none;
  border: none;
  outline: none !important;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0;
}

.newsletter__input::placeholder {
  color: var(--color-text-subtle);
}

.newsletter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-brand-bright);
}

.newsletter__btn svg {
  width: 22px;
  transition: transform 0.5s var(--ease-out-expo);
}

.newsletter__btn:hover svg {
  transform: translateX(4px);
}

[data-theme=smp] .masthead__badge {
  width: auto;
  height: calc(var(--badge-w) * 1.342);
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.7));
  transition: height 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

[data-theme=smp] .masthead__word {
  display: none;
}

[data-theme=smp] .footer__brand img {
  width: auto;
  height: 80.52px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
}

[data-theme=smp],
[data-theme=ardc] {
  --section-pad: 60px;
}

@media screen and (max-width: 992px) {
  [data-theme=smp],
  [data-theme=ardc] {
    --section-pad: 48px;
  }
}
@media screen and (max-width: 768px) {
  [data-theme=smp],
  [data-theme=ardc] {
    --section-pad: 40px;
  }
}
[data-theme=smp] .footer {
  padding-top: var(--section-pad);
}

.xswitch {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 640;
  width: clamp(54px, 4.2vw, 64px);
  text-decoration: none;
  color: var(--color-text);
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: translateY(-50%) translateX(118%);
  transition: transform 0.85s var(--ease-out-expo), opacity 0.7s ease;
  will-change: transform, opacity;
}

.xswitch.is-ready {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.xswitch.is-tucked {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(118%);
}

.xswitch__tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1.1vh, 0.9rem);
  padding: clamp(0.85rem, 1.5vh, 1.15rem) 0;
  border: 1px solid var(--color-line-strong);
  border-right: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: linear-gradient(150deg, rgba(20, 23, 30, 0.72), rgba(10, 12, 17, 0.62));
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  box-shadow: -10px 0 34px -16px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 0 0 1px rgba(var(--brand-rgb), 0.04);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.5s, box-shadow 0.6s var(--ease-out-expo), background 0.5s, transform 0.28s var(--ease-out-expo);
  animation: xsw-float 7s ease-in-out 1.1s infinite;
}

.xswitch__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.xswitch__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 13px 13px;
  mask-image: radial-gradient(120% 80% at 50% 30%, #000 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 30%, #000 35%, transparent 85%);
  opacity: 0.5;
}

.xswitch__glow {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 150%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.4), transparent 62%);
  filter: blur(8px);
  animation: xsw-breathe 5.5s ease-in-out infinite;
}

.xswitch__sweep {
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  transform: translateY(-120%);
  transition: transform 0.9s var(--ease-out-expo);
}

.xswitch__swap {
  width: 17px;
  height: 17px;
  color: var(--color-brand-bright);
  opacity: 0.85;
  transition: transform 0.6s var(--ease-out-expo), opacity 0.4s;
}

.xswitch__screen {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(38px, 3vw, 44px);
  height: clamp(38px, 3vw, 44px);
  border-radius: var(--radius-sm, 8px);
  background: radial-gradient(120% 120% at 50% 0%, rgba(var(--brand-rgb), 0.12), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  will-change: transform;
}

.xswitch__logo {
  max-width: 84%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s var(--ease-out-expo);
}

.xswitch__bracket {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1.5px solid rgba(var(--brand-rgb), 0.55);
  transition: border-color 0.4s, width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo);
}

.xswitch__bracket--tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.xswitch__bracket--tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
}

.xswitch__bracket--bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
}

.xswitch__bracket--br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.xswitch__name {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-block: 0.1rem;
  transition: color 0.4s, letter-spacing 0.5s var(--ease-out-expo);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.xswitch__pulse {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 64%;
  overflow: visible;
  pointer-events: none;
  opacity: 0.7;
}

.xswitch__pulse-rail {
  stroke: rgba(var(--brand-rgb), 0.35);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}

.xswitch__pulse-node {
  fill: var(--color-brand-bright);
  filter: drop-shadow(0 0 4px rgba(var(--brand-rgb), 0.9));
  animation: xsw-node 3.4s ease-in-out infinite;
}

.xswitch:hover .xswitch__tab, .xswitch:focus-visible .xswitch__tab {
  border-color: rgba(var(--brand-rgb), 0.6);
  box-shadow: -16px 0 46px -16px rgba(var(--brand-rgb), 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(var(--brand-rgb), 0.12);
}

.xswitch:hover .xswitch__sweep, .xswitch:focus-visible .xswitch__sweep {
  transform: translateY(120%);
}

.xswitch:hover .xswitch__swap, .xswitch:focus-visible .xswitch__swap {
  transform: rotate(180deg);
  opacity: 1;
}

.xswitch:hover .xswitch__logo, .xswitch:focus-visible .xswitch__logo {
  transform: scale(1.06);
}

.xswitch:hover .xswitch__name, .xswitch:focus-visible .xswitch__name {
  color: #fff;
  letter-spacing: 0.42em;
}

.xswitch:hover .xswitch__bracket, .xswitch:focus-visible .xswitch__bracket {
  border-color: var(--color-brand-bright);
  width: 8px;
  height: 8px;
}

.xswitch:focus-visible {
  outline: none;
}

.xswitch:focus-visible .xswitch__tab {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 3px;
}

.xswitch.is-leaving .xswitch__tab {
  transform: scale(0.95);
  border-color: var(--color-brand-bright);
  box-shadow: -20px 0 60px -10px rgba(var(--brand-rgb), 0.85), inset 0 0 0 1px rgba(var(--brand-rgb), 0.3);
  animation: none;
}

.xswitch.is-leaving .xswitch__glow {
  opacity: 1;
  animation: xsw-pulse-out 0.5s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .xswitch {
    top: auto;
    right: clamp(0.9rem, 4vw, 1.4rem);
    bottom: clamp(0.9rem, 4vw, 1.4rem);
    width: auto;
    transform: translateY(140%);
  }
  .xswitch.is-ready {
    transform: translateY(0);
  }
  .xswitch.is-tucked {
    transform: translateY(140%);
  }
  .xswitch .xswitch__tab {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.95rem 0.6rem 0.7rem;
    border-right: 1px solid var(--color-line-strong);
    border-radius: 999px;
    animation: none;
  }
  .xswitch .xswitch__pulse {
    display: none;
  }
  .xswitch .xswitch__swap {
    width: 15px;
    height: 15px;
  }
  .xswitch .xswitch__screen {
    width: 30px;
    height: 30px;
  }
  .xswitch .xswitch__name {
    writing-mode: horizontal-tb;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin: 0;
  }
}
[data-theme=smp] .xswitch__logo {
  filter: invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

body.is-menu-open .xswitch {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(118%);
}

@media screen and (max-width: 768px) {
  body.is-menu-open .xswitch {
    transform: translateY(140%);
  }
}
@keyframes xsw-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes xsw-breathe {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}
@keyframes xsw-node {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateY(74px);
    opacity: 0;
  }
}
@keyframes xsw-pulse-out {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}
@media (prefers-reduced-motion: reduce) {
  .xswitch {
    transition: opacity 0.4s ease;
  }
  .xswitch, .xswitch.is-ready, .xswitch.is-tucked {
    transform: translateY(-50%);
  }
}
@media screen and (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .xswitch, .xswitch.is-ready, .xswitch.is-tucked {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .xswitch__tab,
  .xswitch__glow,
  .xswitch__pulse-node {
    animation: none;
  }
  .xswitch__sweep {
    display: none;
  }
  body.is-menu-open .xswitch,
  .xswitch.is-tucked {
    opacity: 0;
  }
}
.totop {
  position: fixed;
  right: clamp(1.1rem, 2.4vw, 2rem);
  bottom: clamp(1.1rem, 3vh, 2rem);
  z-index: 620;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: var(--color-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(26px) scale(0.86);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-standard), transform 0.55s var(--ease-out-expo), color 0.3s;
}

.totop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.totop__disc {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  background: linear-gradient(150deg, rgba(20, 23, 30, 0.78), rgba(10, 12, 17, 0.66));
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.65);
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s;
}

.totop__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.totop__ring-base, .totop__ring-fill {
  fill: none;
  stroke-width: 2;
}

.totop__ring-base {
  stroke: rgba(255, 255, 255, 0.1);
}

.totop__ring-fill {
  stroke: rgba(var(--brand-rgb), 0.9);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 6px rgba(var(--brand-rgb), 0.5));
}

.totop__arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--ease-out-expo);
}

.totop:hover, .totop:focus-visible {
  color: var(--color-brand-contrast);
}

.totop:hover .totop__disc, .totop:focus-visible .totop__disc {
  border-color: rgba(var(--brand-rgb), 0.65);
  background: var(--gradient-brand);
  box-shadow: 0 14px 38px -12px rgba(var(--brand-rgb), 0.6);
}

.totop:hover .totop__arrow, .totop:focus-visible .totop__arrow {
  transform: translateY(-2px);
}

.totop:focus-visible {
  outline: none;
}

.totop:active .totop__arrow {
  transform: translateY(-4px) scale(0.94);
}

@media screen and (max-width: 768px) {
  .totop {
    width: 48px;
    height: 48px;
    right: clamp(0.9rem, 4vw, 1.4rem);
    bottom: calc(clamp(0.9rem, 4vw, 1.4rem) + 64px);
  }
  .totop__arrow {
    width: 18px;
    height: 18px;
  }
}
body.is-menu-open .totop {
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px) scale(0.86);
}

@media (prefers-reduced-motion: reduce) {
  .totop {
    transition: opacity 0.3s ease;
  }
  .totop, .totop.is-visible {
    transform: none;
  }
  .totop__arrow {
    transition: none;
  }
}
.sp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: max(clamp(7rem, 15vh, 10rem), var(--masthead-h) + clamp(1rem, 4vh, 3rem)) var(--gutter) var(--section-pad);
  overflow: hidden;
}

.sp-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.sp-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.98) contrast(1.05);
  transform: scale(1.06);
  will-change: transform;
}

.sp-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.5) 0%, transparent 34%, rgba(3, 4, 7, 0.3) 74%, rgba(3, 4, 7, 0.94) 100%), linear-gradient(82deg, rgba(3, 4, 7, 0.82) 12%, rgba(3, 4, 7, 0.42) 38%, transparent 62%), radial-gradient(46% 58% at 76% 58%, rgba(3, 4, 7, 0.5), transparent 72%);
}

.sp-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(140% 100% at 50% 100%, #000 30%, transparent 76%);
  -webkit-mask-image: radial-gradient(140% 100% at 50% 100%, #000 30%, transparent 76%);
}

.sp-hero__circuit {
  position: absolute;
  z-index: -1;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(440px, 52vw, 880px);
  height: auto;
  opacity: 0.24;
  pointer-events: none;
}

.sp-hero__circuit path {
  fill: none;
  stroke: rgba(var(--brand-rgb), 0.55);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 8px rgba(var(--brand-rgb), 0.5));
}

@media screen and (max-width: 992px) {
  .sp-hero__circuit {
    opacity: 0.12;
  }
}
.sp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.86fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

@media screen and (max-width: 992px) {
  .sp-hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vh, 3rem);
    align-items: start;
  }
}
.sp-hero__content {
  max-width: none;
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: clamp(1rem, 2.4vh, 1.6rem);
}

.sp-hero__eyebrow-line {
  position: relative;
  display: inline-block;
  width: clamp(34px, 4vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-brand-bright), rgba(var(--brand-rgb), 0.15));
  transform-origin: left center;
  animation: sp-eyebrow-draw 1s var(--ease-out-expo) both 0.3s;
}

.sp-hero__eyebrow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.9);
  animation: sp-eyebrow-run 3.4s var(--ease-in-out, ease-in-out) infinite 1.2s;
}

.sp-hero__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
}

.sp-hero .line {
  display: block;
  overflow: hidden;
}

.sp-hero .line__inner {
  display: block;
}

.sp-hero .line__accent {
  color: var(--color-brand-bright);
}

.sp-hero__sub {
  max-width: 46ch;
  margin-top: clamp(1.3rem, 3vh, 2rem);
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.6;
}

.sp-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 3.5vh, 2.4rem);
}

.sp-hero__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem clamp(1.6rem, 2.4vw, 2.4rem);
  margin-top: clamp(1.9rem, 4vh, 2.8rem);
  padding-top: clamp(1.3rem, 2.8vh, 2rem);
  border-top: 1px solid var(--color-line);
  list-style: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.sp-hero__specs li {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sp-hero__specs li + li::before {
  content: "";
  position: absolute;
  left: clamp(-0.8rem, -1.2vw, -1.2rem);
  top: 50%;
  width: 1px;
  height: 0.9em;
  transform: translateY(-50%);
  background: linear-gradient(var(--color-brand-bright), rgba(var(--brand-rgb), 0.2));
  opacity: 0.6;
}

.sp-hero__specs b {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sp-hero__scroll {
  position: absolute;
  bottom: clamp(1.2rem, 3vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.sp-hero__scroll span.bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--color-brand-bright), transparent);
  animation: sp-scroll 1.8s ease-in-out infinite;
  transform-origin: top;
}

@media screen and (max-width: 992px) {
  .sp-hero__scroll {
    display: none;
  }
}
.sp-btn {
  --btn-h: clamp(52px, 5.4vh, 60px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  height: var(--btn-h);
  padding: 0 0.55rem 0 1.5rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-contrast, #fff);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--gradient-brand);
  box-shadow: 0 16px 44px -14px rgba(var(--brand-rgb), 0.8);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-standard), border-color 0.4s, background 0.4s;
}

.sp-btn__icon {
  display: inline-grid;
  place-items: center;
  width: calc(var(--btn-h) - 16px);
  height: calc(var(--btn-h) - 16px);
  border-radius: 50%;
  background: rgba(23, 18, 0, 0.16);
  flex: 0 0 auto;
  transition: background 0.4s;
}

.sp-btn__icon svg {
  width: 17px;
  transition: transform 0.45s var(--ease-out-expo);
}

.sp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.34) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease-out-expo);
}

.sp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px -12px rgba(var(--brand-rgb), 0.95);
}

.sp-btn:hover::before {
  transform: translateX(120%);
}

.sp-btn:hover .sp-btn__icon svg {
  transform: translateX(3px);
}

.sp-btn--ghost {
  background: transparent;
  border: 1px solid var(--color-line-strong);
  box-shadow: none;
  color: var(--color-text);
}

.sp-btn--ghost .sp-btn__icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line-strong);
}

.sp-btn--ghost::before {
  display: none;
}

.sp-btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.08);
  box-shadow: 0 18px 44px -20px rgba(var(--brand-rgb), 0.6);
}

.sp-btn--ghost:hover .sp-btn__icon {
  border-color: var(--color-brand-bright);
  color: var(--color-brand-bright);
}

.sp-dash {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 1.5vw, 1.6rem);
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(24, 13, 15, 0.66), rgba(9, 10, 14, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  box-shadow: 0 44px 100px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--brand-rgb), 0.1), 0 0 56px -24px rgba(var(--brand-rgb), 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 992px) {
  .sp-dash {
    max-width: 440px;
  }
}
.sp-dash__sheen {
  position: absolute;
  inset: -40%;
  z-index: -1;
  background: radial-gradient(40% 40% at 30% 18%, rgba(var(--brand-rgb), 0.26), transparent 70%);
  animation: sp-dash-sheen 9s ease-in-out infinite alternate;
}

.sp-dash__edge {
  position: absolute;
  top: 0;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-brand-bright), transparent);
  box-shadow: 0 0 16px rgba(var(--brand-rgb), 0.9);
}

.sp-dash__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: clamp(0.9rem, 1.6vh, 1.2rem);
  margin-bottom: clamp(0.9rem, 1.6vh, 1.2rem);
  border-bottom: 1px solid var(--color-line);
}

.sp-dash__live {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

.sp-dash__livedot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.7);
  animation: sp-pulse 1.6s ease-out infinite;
}

.sp-dash__flag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
}

.sp-dash__flag-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #36d399;
  box-shadow: 0 0 8px rgba(54, 211, 153, 0.8);
}

.sp-dash__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.6rem, 1vw, 0.9rem);
  margin-bottom: clamp(0.6rem, 1vw, 0.9rem);
}

.sp-dash__strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.75rem clamp(0.85rem, 1.3vw, 1.05rem);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.02);
}

@media screen and (max-width: 360px) {
  .sp-dash__strip {
    justify-content: flex-start;
  }
}
.sp-dash__pulse {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(0.7rem, 1.3vh, 1rem);
  padding-top: clamp(0.7rem, 1.3vh, 1rem);
  border-top: 1px solid var(--color-line);
}

.sp-dash__pulse-k {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.sp-dash__pulse-svg {
  flex: 1;
  height: 22px;
  overflow: visible;
}

.sp-dash__pulse-base {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.sp-dash__pulse-sig {
  fill: none;
  stroke: var(--color-brand-bright);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 70 250;
  filter: drop-shadow(0 0 4px rgba(var(--brand-rgb), 0.9));
  animation: sp-flow 2.6s linear infinite, sp-flicker 3.1s steps(1) infinite;
}

.sp-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.sp-stat__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text-subtle);
  flex: 0 0 auto;
}

.sp-stat__dot--ok {
  background: #36d399;
  box-shadow: 0 0 8px rgba(54, 211, 153, 0.8);
  animation: sp-dot-glow 2.4s ease-in-out infinite;
}

.sp-stat__k {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.sp-stat__v {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.sp-metric {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.7rem;
  row-gap: 0.1rem;
  padding: clamp(0.7rem, 1.2vw, 0.95rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-line);
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out-expo);
}

.sp-metric__ic {
  grid-row: 1/3;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--color-brand-bright);
}

.sp-metric__ic svg {
  width: 19px;
  height: 19px;
}

.sp-metric__ic--wind svg path {
  animation: sp-wind 2.6s ease-in-out infinite;
}

.sp-metric__ic--sun svg circle {
  transform-origin: 12px 12px;
  animation: sp-breathe 3.4s ease-in-out infinite;
}

.sp-metric__ic--sun svg path {
  transform-origin: 12px 12px;
  animation: sp-sun-rays 9s linear infinite;
}

.sp-metric__ic--drop svg {
  animation: sp-drop 3s ease-in-out infinite;
}

.sp-metric__mercury {
  stroke: var(--color-brand-bright);
  stroke-width: 2.6;
  animation: sp-mercury 2.4s ease-in-out infinite;
}

.sp-metric__k {
  align-self: end;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.sp-metric__v {
  align-self: start;
  font-family: var(--font-display);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.2;
  color: #fff;
}

.sp-metric__v b {
  font-weight: var(--fw-bold);
}

.sp-metric__v small {
  font-size: 0.62em;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.sp-metric__v--glow b {
  animation: sp-value-glow 3.2s ease-in-out infinite;
}

.sp-metric:hover {
  border-color: rgba(var(--brand-rgb), 0.4);
  background: rgba(var(--brand-rgb), 0.06);
  transform: translateY(-2px);
}

@keyframes sp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.6);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(var(--brand-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0);
  }
}
@keyframes sp-scroll {
  0%, 100% {
    transform: scaleY(0.3);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes sp-flow {
  to {
    stroke-dashoffset: -206;
  }
}
@keyframes sp-wind {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.85;
  }
  50% {
    transform: translateX(1.5px);
    opacity: 1;
  }
}
@keyframes sp-mercury {
  0%, 100% {
    stroke-dasharray: 3 14;
  }
  50% {
    stroke-dasharray: 9 14;
  }
}
@keyframes sp-dash-sheen {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(10%, 8%, 0);
  }
}
@keyframes sp-flicker {
  0%, 100% {
    opacity: 1;
  }
  48% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
  52% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  80% {
    opacity: 0.7;
  }
  82% {
    opacity: 1;
  }
}
@keyframes sp-sun-rays {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sp-breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
@keyframes sp-drop {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(1.5px);
    opacity: 1;
  }
}
@keyframes sp-dot-glow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(54, 211, 153, 0.6);
  }
  50% {
    box-shadow: 0 0 12px rgb(54, 211, 153);
  }
}
@keyframes sp-value-glow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(var(--brand-rgb), 0);
  }
  50% {
    text-shadow: 0 0 16px rgba(var(--brand-rgb), 0.55);
  }
}
@keyframes sp-eyebrow-draw {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes sp-eyebrow-run {
  0% {
    left: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-hero__eyebrow-line,
  .sp-hero__eyebrow-line::after,
  .sp-hero__scroll span.bar,
  .sp-dash__livedot,
  .sp-dash__sheen,
  .sp-dash__pulse-sig,
  .sp-metric__ic--wind svg path,
  .sp-metric__ic--sun svg circle,
  .sp-metric__ic--sun svg path,
  .sp-metric__ic--drop svg,
  .sp-metric__mercury,
  .sp-metric__v--glow b,
  .sp-stat__dot--ok {
    animation: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero:not(.is-live) .line__inner {
    transform: translateY(120%);
    animation: sp-hero-safety 0.9s ease 6s forwards;
  }
  html.has-js .sp-hero:not(.is-live) .sp-hero__content [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    animation: sp-hero-safety 0.9s ease 6s forwards;
  }
  html.has-js .sp-hero:not(.is-live) .sp-dash {
    opacity: 0;
    transform: translateY(44px);
    filter: blur(8px);
    animation: sp-hero-safety 0.9s ease 6s forwards;
  }
  html.has-js .sp-hero:not(.is-live) .sp-hero__scroll {
    opacity: 0;
    animation: sp-hero-safety 0.9s ease 6s forwards;
  }
}
@keyframes sp-hero-safety {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.sp-gallery {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  isolation: isolate;
}

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

.sp-gallery__grid {
  position: absolute;
  inset: 0;
  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: 70px 70px;
  mask-image: radial-gradient(120% 80% at 50% 50%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 50%, #000 0%, transparent 78%);
}

.sp-gallery__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 60vh;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--brand-rgb), 0.12), transparent 70%);
  animation: sp-gal-glow 12s ease-in-out infinite alternate;
}

.sp-gallery__head {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.4rem, 5.5vh, 3.8rem);
}

@media screen and (max-width: 992px) {
  .sp-gallery__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
  }
}
.sp-gallery__headline .u-overline {
  display: block;
  color: var(--color-brand-bright);
  margin-bottom: clamp(0.9rem, 2vh, 1.3rem);
}

.sp-gallery__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.9rem, 3.3vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: var(--ls-display);
  white-space: nowrap;
}

.sp-gallery__title .line {
  display: block;
  overflow: hidden;
}

.sp-gallery__title .line__inner {
  display: block;
}

@media screen and (max-width: 576px) {
  .sp-gallery__title {
    white-space: normal;
  }
}
.sp-gallery__actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

@media screen and (max-width: 576px) {
  .sp-gallery__actions {
    width: 100%;
    flex-direction: column;
  }
}
.sp-gallery__rows {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.4vw, 1.3rem);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.sp-gallery__row {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: sp-drift 66s linear infinite;
}

.sp-gallery__row--rev {
  animation-direction: reverse;
  animation-duration: 84s;
}

.sp-shot {
  position: relative;
  flex: 0 0 auto;
  width: clamp(336px, 36vw, 432px);
  height: clamp(226px, 25vw, 292px);
  margin-right: clamp(0.8rem, 1.4vw, 1.3rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-bg-2);
  isolation: isolate;
  transform: translateZ(0);
  transition: border-color 0.5s, box-shadow 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.sp-shot__pic {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.sp-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) brightness(0.86) contrast(1.05) saturate(1.02);
  transform: scale(1.04);
  transition: filter 0.7s var(--ease-standard), transform 1.1s var(--ease-out-expo);
}

.sp-shot__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 38%, rgba(3, 4, 7, 0.82) 100%), linear-gradient(150deg, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-standard);
}

.sp-shot__cat {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.55);
  border: 1px solid var(--color-line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s, transform 0.5s var(--ease-out-expo);
}

.sp-shot__info {
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
}

.sp-shot__where {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.55s var(--ease-out-expo);
}

.sp-shot__where b {
  display: block;
  margin-top: 0.2rem;
  color: #fff;
  font-weight: 600;
}

.sp-shot__view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s 0.05s, transform 0.55s 0.05s var(--ease-out-expo);
}

.sp-shot__view svg {
  width: 18px;
}

.sp-shot:hover {
  z-index: 4;
  border-color: rgba(var(--brand-rgb), 0.5);
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.9), 0 0 36px -10px rgba(var(--brand-rgb), 0.55);
}

.sp-shot:hover img {
  filter: grayscale(0) brightness(0.98) contrast(1.06) saturate(1.08);
  transform: scale(1.1);
}

.sp-shot:hover .sp-shot__scrim {
  opacity: 1;
}

.sp-shot:hover .sp-shot__cat,
.sp-shot:hover .sp-shot__where,
.sp-shot:hover .sp-shot__view,
.sp-shot:focus-within .sp-shot__cat,
.sp-shot:focus-within .sp-shot__where,
.sp-shot:focus-within .sp-shot__view {
  opacity: 1;
  transform: none;
}

.sp-shot:focus-within .sp-shot__scrim {
  opacity: 1;
}

@media (hover: none) {
  .sp-shot .sp-shot__scrim,
  .sp-shot .sp-shot__cat,
  .sp-shot .sp-shot__where {
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 576px) {
  .sp-shot {
    width: clamp(250px, 80vw, 340px);
    height: clamp(170px, 54vw, 228px);
  }
}
@keyframes sp-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes sp-gal-glow {
  from {
    opacity: 0.7;
    transform: translate(-52%, -50%) scale(1);
  }
  to {
    opacity: 1;
    transform: translate(-48%, -50%) scale(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-gallery__row {
    animation: none;
  }
  .sp-gallery__glow {
    animation: none;
  }
}
.sp-faq {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.sp-faq__head {
  margin-bottom: clamp(2.2rem, 5vh, 3.5rem);
}

.sp-faq__head .u-overline {
  display: block;
  color: var(--color-brand-bright);
  margin-bottom: 1rem;
}

.sp-faq__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
}

.sp-faq__grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media screen and (max-width: 768px) {
  .sp-faq__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.sp-faq__cats {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media screen and (max-width: 768px) {
  .sp-faq__cats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}
.sp-faq__cat {
  appearance: none;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.4s, background 0.4s;
}

.sp-faq__cat span.n {
  font-size: 0.75rem;
  opacity: 0.85;
}

.sp-faq__cat::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--color-brand-bright);
  transition: width 0.4s var(--ease-out-expo);
}

.sp-faq__cat:hover {
  color: var(--color-text);
}

.sp-faq__cat.is-active {
  color: #fff;
  background: rgba(var(--brand-rgb), 0.1);
}

.sp-faq__cat.is-active::before {
  width: 16px;
}

@media screen and (max-width: 768px) {
  .sp-faq__cat {
    border: 1px solid var(--color-line-strong);
  }
  .sp-faq__cat.is-active {
    border-color: transparent;
  }
  .sp-faq__cat::before {
    display: none;
  }
}
.sp-faq__list {
  border-top: 1px solid var(--color-line);
}

.sp-q {
  border-bottom: 1px solid var(--color-line);
}

.sp-q.is-filtered {
  display: none;
}

.sp-q__btn {
  width: 100%;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.3rem, 2.6vh, 1.9rem) 0;
  color: var(--color-text);
  transition: color 0.4s, padding-left 0.5s var(--ease-out-expo);
}

.sp-q__q {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: var(--ls-display);
}

.sp-q__icon {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  transition: border-color 0.4s, background 0.4s, transform 0.6s var(--ease-out-expo);
}

.sp-q__icon::before, .sp-q__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.4s;
}

.sp-q__icon::before {
  width: 13px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.sp-q__icon::after {
  width: 1.5px;
  height: 13px;
  transform: translate(-50%, -50%);
}

.sp-q__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-out-expo);
}

.sp-q__panel-in {
  overflow: hidden;
  min-height: 0;
}

.sp-q__a {
  padding-bottom: clamp(1.3rem, 2.6vh, 1.9rem);
  max-width: none;
  padding-right: calc(38px + 1.5rem);
  color: var(--color-text-muted);
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}

.sp-q:hover .sp-q__btn {
  padding-left: 0.6rem;
  color: #fff;
}

.sp-q:hover .sp-q__icon {
  border-color: var(--color-brand-bright);
}

.sp-q.is-open .sp-q__btn {
  color: #fff;
}

.sp-q.is-open .sp-q__icon {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--color-brand-contrast, #fff);
  transform: rotate(180deg);
}

.sp-q.is-open .sp-q__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.sp-q.is-open .sp-q__panel {
  grid-template-rows: 1fr;
}

.sp-q.is-open .sp-q__a {
  opacity: 1;
  transform: none;
}

.sp-hero--cl .sp-hero__still {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.48) saturate(0.96) contrast(1.06);
  transform: scale(1.06);
  will-change: transform;
}

.sp-hero--cl .sp-hero__circuit {
  opacity: 0.34;
  right: -12%;
  width: clamp(480px, 56vw, 960px);
}

@media screen and (max-width: 992px) {
  .sp-hero--cl .sp-hero__circuit {
    opacity: 0.14;
  }
}
.cl-board {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 0.8vw, 0.65rem);
  margin-bottom: clamp(0.6rem, 1vw, 0.9rem);
}

.cl-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  column-gap: clamp(0.7rem, 1.2vw, 1rem);
  padding: clamp(0.62rem, 1.1vw, 0.85rem) clamp(0.75rem, 1.2vw, 1rem);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  transition: border-color 0.4s, background 0.4s;
}

.cl-row:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  background: rgba(var(--brand-rgb), 0.05);
}

.cl-row:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 2px;
}

.cl-row__idx {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--color-text-subtle);
}

.cl-row__name {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  min-width: 0;
}

.cl-row__name b {
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cl-row__name span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cl-row__len {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-brand-bright);
  white-space: nowrap;
}

.cl-row__len small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 0.18rem;
}

.cl-row__turns {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.cl-intro,
.clx,
.cld,
.clf,
.cls,
.clr,
.cl-cta {
  scroll-margin-top: calc(var(--masthead-h, 84px) + 16px);
}

.cl-intro {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.cl-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: start;
}

@media screen and (max-width: 992px) {
  .cl-intro__grid {
    grid-template-columns: 1fr;
  }
}
.cl-intro__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
  color: #fff;
}

.cl-intro__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.06em;
}

.cl-intro__title .line__inner {
  display: block;
}

.cl-intro__title .line__accent {
  color: var(--color-brand-bright);
}

.cl-intro__copy {
  margin-top: clamp(1.2rem, 2.6vh, 1.8rem);
  max-width: 58ch;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

.cl-intro__copy b {
  color: var(--color-text);
  font-weight: 600;
}

.cl-intro__copy + .cl-intro__copy {
  margin-top: 1rem;
}

.cl-intro__ledger {
  position: relative;
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
}

.cl-intro__ledger::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(var(--color-brand), rgba(var(--brand-rgb), 0.05));
}

.cl-intro__ledger-k {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cl-intro__facts {
  margin-top: 1.1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.cl-intro__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.85rem 0;
}

.cl-intro__facts li + li {
  border-top: 1px solid var(--color-line);
}

.cl-intro__facts li span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.cl-intro__facts li b {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.cl-intro .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  margin-top: clamp(2.4rem, 5vh, 3.6rem);
}

@media screen and (max-width: 768px) {
  .cl-intro .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cl-intro .stat {
  padding: clamp(1.1rem, 1.8vw, 1.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, transform 0.5s var(--ease-out-expo);
}

.cl-intro .stat:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  transform: translateY(-3px);
}

.cl-intro .stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: var(--ls-display);
  line-height: 1;
  color: var(--color-brand-bright);
}

.cl-intro .stat__num small {
  font-family: var(--font-mono);
  font-size: 0.42em;
  color: var(--color-text-muted);
  margin-left: 0.2rem;
  letter-spacing: 0.08em;
}

.cl-intro .stat__label {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cl-cta {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.cl-cta__band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, rgba(19, 22, 28, 0.85), rgba(8, 10, 15, 0.92));
  isolation: isolate;
  transform: translateZ(0);
}

.cl-cta__band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(90% 120% at 12% 0%, rgba(var(--ambient-rgb), 0.1), transparent 55%), radial-gradient(90% 120% at 88% 100%, rgba(var(--ambient-rgb), 0.07), transparent 55%);
}

.cl-cta__band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 85%);
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .cl-cta__band {
    grid-template-columns: 1fr;
  }
}
.cl-cta__side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.8rem, 3.6vw, 3.2rem);
}

.cl-cta__side + .cl-cta__side {
  border-left: 1px solid var(--color-line);
}

@media screen and (max-width: 992px) {
  .cl-cta__side + .cl-cta__side {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
}
.cl-cta__k {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.cl-cta__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  letter-spacing: var(--ls-display);
  line-height: 1.08;
  color: #fff;
}

.cl-cta__copy {
  margin-top: 0.9rem;
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex: 1;
}

.cl-cta__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  margin-top: clamp(1.4rem, 3vh, 2rem);
}

.cl-cta__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.cl-cta__meta span {
  position: relative;
  padding-left: 0.95rem;
}

.cl-cta__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--color-brand-bright);
  transform: translateY(-50%) rotate(45deg);
}

/* ================================================================
   CL-CTA --tri · three-door exit band (approved PYV grammar)
   ================================================================ */
.cl-cta--tri .cl-cta__band {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .cl-cta--tri .cl-cta__band {
    grid-template-columns: 1fr;
  }
}
.cl-cta__contactline {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: clamp(1.4rem, 3vh, 2rem);
}

.cl-cta__contactline a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
}

.cl-cta__contactline a:hover {
  color: var(--color-brand-bright);
}

.cl-cta__contactline svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-brand-bright);
  flex: 0 0 auto;
}

/* ================================================================
   ARDC — EVENT TICKETS page sections (the box office)
   · sp-hero--tk   hero variant (box-office ident + ticket pass)
   · tkt           ticket-pass instrument inside .sp-dash
   · tkf           01 featured — next major on sale
   · tks           02 on sale now — month-grouped ticket shelf
   · tkw           03 the ticket window — future checkout module
   · tka           04 why attend — race-day editorial
   · tkm           members walk in free — membership band
   Inherits: sp-hero, sp-dash, sp-btn, sp-faq, cl-cta, footer shell.
   Static Phase 1 — every module is shaped for the future Humanitix
   checkout / Salesforce events / CMS integration. Sale-state
   language: on-sale #27e08a · selling-fast #f5a524 · sold-out
   muted · free / members = brand. Category accents follow the
   approved blue-theme-safe TYPES map.
   ================================================================ */
/* ===== HERO variant · the box-office ident ===== */
.sp-hero--tk .sp-hero__still {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.sp-hero--tk .sp-hero__scrim {
  background: linear-gradient(90deg, rgba(4, 6, 10, 0.92) 0%, rgba(4, 6, 10, 0.55) 46%, rgba(4, 6, 10, 0.28) 100%), linear-gradient(0deg, var(--color-bg) 0%, rgba(4, 6, 10, 0.18) 26%, rgba(4, 6, 10, 0.5) 100%);
}

/* live ident chip — box office open */
.sp-hero__ident {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  margin-bottom: 1.05rem;
  border: 1px solid rgba(39, 224, 138, 0.32);
  border-radius: 999px;
  background: rgba(10, 14, 12, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.sp-hero__ident b {
  color: #27e08a;
  font-weight: 600;
}

.sp-hero__ident i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27e08a;
  box-shadow: 0 0 10px rgba(39, 224, 138, 0.9);
  animation: tk-pulse 2.2s ease-in-out infinite;
}

@keyframes tk-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}
.sp-hero__crumb {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.3s, border-color 0.3s;
}

.sp-hero__crumb:hover {
  color: var(--color-brand-bright);
  border-color: var(--color-brand-bright);
}

/* the gate lane — a queue of admissions drawn as one line */
.sp-hero__lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  width: 100%;
  height: 64px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}

.sp-hero__lane line {
  stroke: rgba(255, 255, 255, 0.22);
}

.sp-hero__lane [data-tk-rail] {
  stroke: rgba(var(--brand-rgb), 0.55);
}

.sp-hero__lane text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.38);
}

@media screen and (max-width: 768px) {
  .sp-hero__lane {
    display: none;
  }
}
/* ===== TKT · ticket-pass instrument inside .sp-dash ===== */
.sp-dash--tk {
  gap: 1.05rem;
}

.tkt {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.tkt__signal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tkt__k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.tkt__event {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.12;
  color: var(--color-text);
}

.tkt__date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* countdown — gates open in */
.tkt__count {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.tkt__count-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.tkt__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.25rem 0.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.tkt__cell b {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}

.tkt__cell span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* the perforation — where the stub tears off */
.tkt__tear {
  position: relative;
  height: 0;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.18);
  margin: 0.15rem -1.45rem;
}

.tkt__tear::before,
.tkt__tear::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  transform: translateY(-50%);
}

.tkt__tear::before {
  left: -9px;
  clip-path: inset(0 0 0 50%);
}

.tkt__tear::after {
  right: -9px;
  clip-path: inset(0 50% 0 0);
}

/* the stub — facts + barcode + from-price */
.tkt__stub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.tkt__facts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.tkt__fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.875rem;
}

.tkt__fact .k {
  color: var(--color-text-subtle);
  white-space: nowrap;
}

.tkt__fact .v {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: right;
}

.tkt__fact .v em {
  font-style: normal;
  color: #27e08a;
}

.tkt__side {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tkt__code {
  width: 34px;
  height: 88px;
  opacity: 0.85;
}

.tkt__code line {
  stroke: rgba(255, 255, 255, 0.75);
}

.tkt__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* ===== shared section scaffold (head grammar) ===== */
.tkf,
.tks,
.tkw,
.tka,
.tkm {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
  scroll-margin-top: calc(var(--masthead-h, 84px) + 16px);
}

.tkf__head,
.tks__head,
.tkw__head,
.tka__head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}

@media screen and (max-width: 992px) {
  .tkf__head,
  .tks__head,
  .tkw__head,
  .tka__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.tkf__title,
.tks__title,
.tkw__title,
.tka__title,
.tkm__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  margin-top: 1.1rem;
}

.tkf__title .line__accent,
.tks__title .line__accent,
.tkw__title .line__accent,
.tka__title .line__accent,
.tkm__title .line__accent {
  color: var(--color-brand-bright);
}

.tkf__aside,
.tks__aside,
.tkw__aside-head,
.tka__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.tkf__sub,
.tks__sub,
.tkw__sub,
.tka__sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 44ch;
}

/* status chip — box-office state language */
.tk-state {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 224, 138, 0.3);
  background: rgba(39, 224, 138, 0.07);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #57eaa6;
}

.tk-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27e08a;
  box-shadow: 0 0 9px rgba(39, 224, 138, 0.9);
  animation: tk-pulse 2.2s ease-in-out infinite;
}

.tk-state--hot {
  border-color: rgba(245, 165, 36, 0.35);
  background: rgba(245, 165, 36, 0.07);
  color: #f7bd58;
}

.tk-state--hot i {
  background: #f5a524;
  box-shadow: 0 0 9px rgba(245, 165, 36, 0.9);
}

/* ================================================================
   TKF · 01 featured — the next major on sale
   ================================================================ */
.tkf__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(19, 22, 28, 0.85), rgba(9, 11, 16, 0.94));
}

@media screen and (max-width: 992px) {
  .tkf__panel {
    grid-template-columns: 1fr;
  }
  .tkf__buy {
    grid-area: 2/1;
  }
}
.tkf__media {
  grid-area: 1/1;
  position: relative;
  min-height: clamp(360px, 52vh, 560px);
  overflow: hidden;
}

.tkf__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  filter: saturate(0.95);
}

.tkf__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 8, 13, 0.9) 0%, rgba(6, 8, 13, 0.12) 45%, rgba(6, 8, 13, 0.3) 100%), linear-gradient(90deg, rgba(6, 8, 13, 0.15) 60%, rgba(9, 11, 16, 0.82) 100%);
}

@media screen and (max-width: 992px) {
  .tkf__scrim {
    background: linear-gradient(0deg, rgba(9, 11, 16, 0.94) 0%, rgba(6, 8, 13, 0.1) 55%);
  }
}
.tkf__flag {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 165, 36, 0.4);
  background: rgba(10, 9, 5, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f7bd58;
}

.tkf__flag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5a524;
  box-shadow: 0 0 9px rgba(245, 165, 36, 0.9);
  animation: tk-pulse 2.2s ease-in-out infinite;
}

.tkf__content {
  /* lives in the media column (same grid cell), bottom-aligned —
     never overlaps the buy aside, so its buttons stay clickable */
  grid-area: 1/1;
  align-self: end;
  position: relative;
  z-index: 3;
  margin: 0 clamp(1.3rem, 3vw, 2.4rem) clamp(1.3rem, 3.4vh, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tkf__dateline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.tkf__date {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-mono);
}

.tkf__date b {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.tkf__date small {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.tkf__cat {
  --accent: var(--color-brand-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: rgba(9, 11, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}

.tkf__cat i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px var(--accent);
}

.tkf__name {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.04;
  color: #fff;
  max-width: 18ch;
}

.tkf__copy {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 52ch;
}

.tkf__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tkf__chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* aside — the buy panel */
.tkf__buy {
  grid-area: 1/2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border-left: 1px solid var(--color-line);
  background: linear-gradient(200deg, rgba(var(--brand-rgb), 0.08), rgba(9, 11, 16, 0) 55%);
}

@media screen and (max-width: 992px) {
  .tkf__buy {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
}
.tkf__buy-k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.tkf__count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.tkf__facts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-line);
}

.tkf__fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.875rem;
}

.tkf__fact .k {
  color: var(--color-text-subtle);
  white-space: nowrap;
}

.tkf__fact .v {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: right;
}

.tkf__fact .v em {
  font-style: normal;
  color: #27e08a;
}

.tkf__cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tkf__cta-row .sp-btn {
  width: 100%;
  justify-content: space-between;
}

.tkf__note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.8;
}

/* ================================================================
   TKS · 02 on sale now — the month-grouped ticket shelf
   ================================================================ */
/* the deck — month jump pills + live tally (sticky console) */
.tks__deck {
  position: sticky;
  /* docks under the floating masthead; when the masthead auto-hides
     on scroll-down the deck rides up to the viewport edge (rule below)
     — same duration/ease as the masthead's own translateY exit.
     --deck-dock is kept in sync with the masthead's real rendered
     height by initMonthNav (the stuck header is shorter than the
     --masthead-h token, so the deck tucks directly beneath it). */
  top: var(--deck-dock, calc(var(--masthead-h, 84px) + 10px));
  transition: top 0.45s var(--ease-out-expo);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: clamp(1.8rem, 4vh, 2.6rem);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.85);
}

.tks__months {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.tks-month {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.tks-month:hover {
  color: var(--color-text);
  border-color: var(--color-line-strong);
}

.tks-month.is-active {
  color: #fff;
  border-color: rgba(var(--brand-rgb), 0.55);
  background: rgba(var(--brand-rgb), 0.16);
}

.tks__tally {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-right: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}

.tks__tally b {
  color: #27e08a;
  font-weight: 600;
}

/* masthead hidden (scroll-down) → deck takes the top of the viewport */
.masthead.is-hidden ~ .content .tks__deck {
  top: 10px;
}

@media screen and (max-width: 768px) {
  .tks__deck {
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.6rem;
  }
  .tks__tally {
    padding: 0;
  }
}
/* month marker — the shelf's timeline spine */
.tks__month-mark {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.1rem;
  margin: clamp(2.2rem, 5vh, 3.4rem) 0 clamp(1.2rem, 2.6vh, 1.7rem);
  scroll-margin-top: calc(var(--masthead-h, 84px) + 88px);
}

.tks__month-mark:first-of-type {
  margin-top: 0;
}

.tks__month-name {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--color-text);
}

.tks__month-name small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--color-text-subtle);
  margin-left: 0.6rem;
}

.tks__month-rule {
  position: relative;
  height: 1px;
  background: var(--color-line);
  overflow: hidden;
}

.tks__month-rule::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.65), transparent);
  transition: transform 1.2s var(--ease-out-expo) 0.15s;
}

.tks__month-mark.is-inview .tks__month-rule::after {
  transform: scaleX(1);
}

.tks__month-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}

/* the grid */
.tks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media screen and (max-width: 1100px) {
  .tks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  .tks__grid {
    grid-template-columns: 1fr;
  }
}
/* ===== TK-CARD · the admission card ===== */
.tk-card {
  --accent: var(--color-brand-bright);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(19, 22, 28, 0.85), rgba(9, 11, 16, 0.92));
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.45s, box-shadow 0.45s;
}

.tk-card:hover,
.tk-card:focus-visible {
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--brand-rgb), 0.12), 0 18px 44px -30px rgba(var(--brand-rgb), 0.55);
}

.tk-card:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 3px;
}

/* cursor spotlight */
.tk-card__spot {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--brand-rgb), 0.14), transparent 65%);
  transition: opacity 0.5s;
}

.tk-card:hover .tk-card__spot {
  opacity: 1;
}

.tk-card__clip {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.tk-card__clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.95);
  transition: transform 0.9s var(--ease-out-expo), filter 0.9s var(--ease-out-expo);
}

.tk-card:hover .tk-card__clip img {
  transform: scale(1.09);
  filter: saturate(1.05) brightness(1.06);
}

.tk-card__clip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 11, 16, 0.85) 0%, rgba(9, 11, 16, 0) 45%);
}

/* mono date chip */
.tk-card__date {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.55rem 0.7rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 11, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-mono);
}

.tk-card__date b {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.tk-card__date span {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* category pill */
.tk-card__cat {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 11, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
}

.tk-card__cat i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.tk-card__body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.2rem;
  flex: 1;
}

.tk-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.14;
  color: var(--color-text);
  transition: color 0.35s;
}

.tk-card:hover .tk-card__title {
  color: #fff;
}

.tk-card__copy {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.tk-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.tk-card__meta .dot {
  color: var(--color-brand-bright);
}

/* foot — price · status · go */
.tk-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.tk-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-mono);
}

.tk-card__price small {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.tk-card__price b {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.tk-card__price--free b {
  color: #27e08a;
}

.tk-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.tk-card__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27e08a;
  box-shadow: 0 0 8px rgba(39, 224, 138, 0.8);
}

.tk-card__status.is-hot {
  color: #f7bd58;
}

.tk-card__status.is-hot i {
  background: #f5a524;
  box-shadow: 0 0 8px rgba(245, 165, 36, 0.8);
  animation: tk-pulse 2.2s ease-in-out infinite;
}

.tk-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

.tk-card__go svg {
  width: 20px;
  height: 10px;
  stroke: var(--color-brand-bright);
  transition: transform 0.4s var(--ease-out-expo);
}

.tk-card:hover .tk-card__go svg {
  transform: translateX(5px);
}

/* — sold out: the stub that's already been torn — */
.tk-card--out {
  cursor: default;
}

.tk-card--out .tk-card__clip img {
  filter: saturate(0.15) brightness(0.7);
}

.tk-card--out:hover .tk-card__clip img {
  transform: scale(1.03);
  filter: saturate(0.15) brightness(0.7);
}

.tk-card--out:hover {
  border-color: var(--color-line-strong);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}

.tk-card--out .tk-card__status i {
  background: var(--color-text-subtle);
  box-shadow: none;
  animation: none;
}

.tk-card__stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(9, 11, 16, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* — on sale soon: gates not open yet — */
.tk-card--soon .tk-card__clip img {
  filter: saturate(0.5) brightness(0.85);
}

.tk-card--soon .tk-card__status i {
  background: var(--color-brand-bright);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.8);
}

/* shelf footnote */
.tks__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4.5vh, 3rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-line);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.tks__note-k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* ================================================================
   TKW · 03 the ticket window — future checkout module
   ================================================================ */
.tkw__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
  align-items: start;
}

@media screen and (max-width: 992px) {
  .tkw__stage {
    grid-template-columns: 1fr;
  }
}
/* the module — shaped for the embedded Humanitix checkout */
.tkw__module {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, rgba(19, 22, 28, 0.9), rgba(9, 11, 16, 0.95));
  overflow: hidden;
}

.tkw__module::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0.9;
}

.tkw__module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: clamp(1.2rem, 2.4vw, 1.7rem) clamp(1.2rem, 2.4vw, 1.8rem) 1.1rem;
  border-bottom: 1px solid var(--color-line);
}

.tkw__event {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tkw__event-k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.tkw__event-name {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--color-text);
}

.tkw__event-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

/* ticket option rows */
.tkw__rows {
  display: flex;
  flex-direction: column;
}

.tkw-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  padding: 1rem clamp(1.2rem, 2.4vw, 1.8rem);
  border-bottom: 1px solid var(--color-line);
  transition: background 0.3s;
}

.tkw-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.tkw-row__id {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.tkw-row__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tkw-row__badge {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.45);
  background: rgba(var(--brand-rgb), 0.12);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.tkw-row__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.tkw-row__price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tkw-row__price em {
  font-style: normal;
  color: #27e08a;
}

/* qty stepper — demo interaction, shaped for the real module */
.tkw-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  padding: 0.2rem;
}

.tkw-qty__btn {
  appearance: none;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.tkw-qty__btn:hover {
  background: rgba(var(--brand-rgb), 0.16);
  color: #fff;
}

.tkw-qty__btn:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 1px;
}

.tkw-qty__n {
  min-width: 26px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

/* perforation + total */
.tkw__tear {
  position: relative;
  height: 0;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.16);
}

.tkw__tear::before,
.tkw__tear::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  transform: translateY(-50%);
}

.tkw__tear::before {
  left: -10px;
  clip-path: inset(0 0 0 50%);
}

.tkw__tear::after {
  right: -10px;
  clip-path: inset(0 50% 0 0);
}

.tkw__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.2rem, 2.4vw, 1.8rem);
}

.tkw__total-k {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tkw__total-k b {
  font-size: 0.95rem;
  color: var(--color-text);
}

.tkw__total-k span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.tkw__total-v {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.tkw__cta {
  padding: 0 clamp(1.2rem, 2.4vw, 1.8rem) clamp(1.2rem, 2.4vw, 1.7rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tkw__cta .sp-btn {
  width: 100%;
  justify-content: space-between;
}

.tkw__powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.tkw__powered svg {
  width: 12px;
  height: 12px;
  stroke: #27e08a;
}

/* trust rail */
.tkw__aside {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tkw-trust {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(19, 22, 28, 0.7), rgba(9, 11, 16, 0.85));
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.tkw-trust:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  transform: translateY(-3px);
}

.tkw-trust__ic {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--brand-rgb), 0.35);
  background: rgba(var(--brand-rgb), 0.1);
}

.tkw-trust__ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--color-brand-bright);
}

.tkw-trust__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tkw-trust__k {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
}

.tkw-trust__copy {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.tkw__aside-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--color-text-subtle);
  padding: 0 0.3rem;
}

.tkw__aside-note a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tkw__aside-note a:hover {
  color: var(--color-brand-bright);
}

/* ================================================================
   TKA · 04 why attend — race-day editorial
   ================================================================ */
.tka__band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(19, 22, 28, 0.85), rgba(9, 11, 16, 0.94));
  margin-bottom: clamp(1.2rem, 2.6vh, 1.8rem);
}

@media screen and (max-width: 992px) {
  .tka__band {
    grid-template-columns: 1fr;
  }
}
.tka__media {
  position: relative;
  min-height: clamp(300px, 44vh, 520px);
  overflow: hidden;
}

.tka__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
}

.tka__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 8, 13, 0) 55%, rgba(13, 16, 21, 0.92) 100%);
}

@media screen and (max-width: 992px) {
  .tka__media::after {
    background: linear-gradient(0deg, rgba(13, 16, 21, 0.94) 0%, rgba(6, 8, 13, 0.05) 60%);
  }
}
.tka__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.6rem, 3.2vw, 2.6rem);
  justify-content: center;
}

.tka__copy {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 50ch;
}

.tka__stats {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  flex-wrap: wrap;
  padding-top: 0.4rem;
}

.tka__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tka__stat b {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.tka__stat b em {
  font-style: normal;
  color: var(--color-brand-bright);
}

.tka__stat span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* the four doors of race day */
.tka__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

@media screen and (max-width: 1100px) {
  .tka__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 560px) {
  .tka__grid {
    grid-template-columns: 1fr;
  }
}
.tka-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(19, 22, 28, 0.8), rgba(9, 11, 16, 0.9));
  transition: border-color 0.45s, box-shadow 0.45s;
}

.tka-card:hover {
  border-color: rgba(var(--brand-rgb), 0.4);
  box-shadow: 0 22px 54px -28px rgba(0, 0, 0, 0.9);
}

.tka-card__clip {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tka-card__clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.9s var(--ease-out-expo);
}

.tka-card:hover .tka-card__clip img {
  transform: scale(1.1);
}

.tka-card__clip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 11, 16, 0.8) 0%, rgba(9, 11, 16, 0) 50%);
}

.tka-card__k {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.tka-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.05rem 1.1rem 1.2rem;
}

.tka-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: 1.08rem;
  line-height: 1.16;
  color: var(--color-text);
}

.tka-card__copy {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ================================================================
   TKM · members walk in free — membership band
   ================================================================ */
.tkm__band {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(360px, 48vh, 480px);
  display: flex;
  align-items: center;
}

.tkm__media {
  position: absolute;
  inset: 0;
}

.tkm__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 68% 45%;
  filter: brightness(0.6) saturate(1.02);
}

.tkm__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 6, 10, 0.94) 0%, rgba(4, 6, 10, 0.78) 55%, rgba(4, 6, 10, 0.42) 100%), linear-gradient(0deg, rgba(var(--brand-rgb), 0.16), transparent 55%);
}

.tkm__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  width: 100%;
}

.tkm__copy {
  color: rgba(236, 240, 248, 0.92);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 92ch;
  text-shadow: 0 1px 14px rgba(4, 6, 10, 0.8);
}

/* the member's math — receipts, not promises */
.tkm__math {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
  width: 100%;
  padding: 1.05rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(10, 13, 20, 0.35);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tkm__sum {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tkm__sum b {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.tkm__sum b em {
  font-style: normal;
  color: #27e08a;
}

.tkm__sum span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.tkm__cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.tkm__note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* ===== responsive refinements ===== */
@media screen and (max-width: 768px) {
  .tkt__count-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .tkt__side {
    display: none;
  }
  .tkt__stub {
    grid-template-columns: 1fr;
  }
  .tkf__content {
    grid-area: 2/1;
    align-self: start;
    margin: 0;
    padding: 1.2rem 1.2rem 1.4rem;
  }
  .tkf__buy {
    grid-area: 3/1;
  }
  .tkf__media {
    min-height: 300px;
  }
  .tkf__flag {
    top: 1rem;
    left: 1rem;
  }
  .tkw-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .tkw-row__price {
    grid-column: 2;
    grid-row: 1;
  }
  .tkw-row .tkw-qty {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 480px) {
  .tks__month-mark {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .tks__month-count {
    display: none;
  }
  .tka__stats {
    gap: 1.1rem;
  }
}
/* ===== pre-entrance guards (anti-blink, .is-live drops them) ===== */
html.has-js .sp-hero--tk:not(.is-live) .tkt__signal,
html.has-js .sp-hero--tk:not(.is-live) .tkt__count,
html.has-js .sp-hero--tk:not(.is-live) .tkt__stub,
html.has-js .sp-hero--tk:not(.is-live) .tkt__tear {
  opacity: 0;
}

@keyframes kb-zoom {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.07;
  }
}
.tkf__media {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.tkf__media img {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .tkf__media img {
    animation: kb-zoom 18s ease-in-out infinite;
  }
}

.tk-card__clip {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.tk-card__clip img {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .tk-card__clip img {
    animation: kb-zoom 18s ease-in-out infinite;
  }
}

.tk-card:nth-child(2) .tk-card__clip img {
  animation-delay: -3s;
}

.tk-card:nth-child(3) .tk-card__clip img {
  animation-delay: -6s;
}

.tk-card:nth-child(4) .tk-card__clip img {
  animation-delay: -9s;
}

.tk-card:nth-child(5) .tk-card__clip img {
  animation-delay: -12s;
}

.tk-card:nth-child(6) .tk-card__clip img {
  animation-delay: -15s;
}

.tka__media {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.tka__media img {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .tka__media img {
    animation: kb-zoom 18s ease-in-out infinite;
  }
}

.tka-card__clip {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.tka-card__clip img {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .tka-card__clip img {
    animation: kb-zoom 18s ease-in-out infinite;
  }
}

.tka-card:nth-child(2) .tka-card__clip img {
  animation-delay: -3s;
}

.tka-card:nth-child(3) .tka-card__clip img {
  animation-delay: -6s;
}

.tka-card:nth-child(4) .tka-card__clip img {
  animation-delay: -9s;
}

.tka-card:nth-child(5) .tka-card__clip img {
  animation-delay: -12s;
}

.tka-card:nth-child(6) .tka-card__clip img {
  animation-delay: -15s;
}

.tkm__band {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.tkm__media img {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .tkm__media img {
    animation: kb-zoom 18s ease-in-out infinite;
  }
}

/* ===== reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .sp-hero__ident i,
  .tk-state i,
  .tkf__flag i,
  .tk-card__status i {
    animation: none;
  }
  .tk-card__clip img,
  .tka-card__clip img,
  .tkf__media img,
  .tka__media img,
  .tkm__media img {
    transition: none;
    transform: none;
  }
  .tk-card,
  .tkw-trust,
  .tka-card {
    transition: none;
  }
  .tks__month-rule::after {
    transition: none;
    transform: scaleX(1);
  }
}
/* ticket-pass dash: strip clears the pass facts and holds one row */
.sp-dash--tk .sp-dash__strip {
  margin-top: 1rem;
  gap: 0.5rem 0.4rem;
  padding-inline: 0.85rem;
}

@media screen and (max-width: 576px) {
  .tkm__math {
    grid-template-columns: 1fr;
  }
}
