@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;
  }
}
.page {
  --gv-on: #27e08a;
  --gv-on-rgb: 39, 224, 138;
  --gv-hot: #f15d5d;
  --gv-hot-rgb: 241, 93, 93;
  --gv-soon: #f5c542;
  --gv-ink: #171200;
  --gv-ticket: linear-gradient(135deg, #ffd23d 0%, #edaf00 60%, #c99400 100%);
}

.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;
  background: #05070b;
}

.gv-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(0.5) saturate(1.04) contrast(1.06);
}

.sp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  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__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 8vh, 5rem);
}

.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.7rem, 6.2vw, 6.2rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.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: 54ch;
  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__sub b {
  color: var(--color-text);
  font-weight: 600;
}

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

.sp-hero__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: start;
  gap: 1rem 0;
  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;
}

.sp-hero__specs li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: clamp(1.2rem, 2.2vw, 2.2rem);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.sp-hero__specs li + li {
  padding-left: clamp(1.2rem, 2.2vw, 2.2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sp-hero__specs b {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ————— HERO · --gv variant plates ————————————————————————— */
.sp-hero--gv .sp-hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 13, 0.92));
  z-index: 3;
}

.sp-hero--gv .sp-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  background: linear-gradient(270deg, rgba(6, 8, 13, 0.8) 0%, rgba(6, 8, 13, 0.44) 55%, transparent 100%);
  z-index: 3;
}

/* ————— GVT · the voucher, drawn not photographed ——————————— */
.gvt {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: center;
  perspective: 1100px;
}

.gvt__card {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 16/9.6;
  border-radius: var(--radius-lg);
  background: var(--gv-ticket);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 60px rgba(var(--ambient-rgb), 0.14);
  overflow: hidden;
  isolation: isolate;
  transform: rotateX(var(--gvt-rx, 0deg)) rotateY(var(--gvt-ry, 0deg)) translateZ(0);
  transition: transform 0.5s var(--ease-out-quint);
  will-change: transform;
}

.gvt__sheen {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 46%, transparent 60%);
  transform: translateX(-80%);
  pointer-events: none;
}

.gvt.is-live .gvt__sheen {
  animation: gvt-sheen 5.4s var(--ease-out-quint) infinite 1.6s;
}

@keyframes gvt-sheen {
  0% {
    transform: translateX(-80%);
  }
  32%, 100% {
    transform: translateX(80%);
  }
}
/* the circuit, printed as ink on the ticket body */
.gvt__map {
  position: absolute;
  left: -6%;
  bottom: -26%;
  width: 64%;
  opacity: 0.12;
  transform: rotate(-9deg);
  pointer-events: none;
}

.gvt__head {
  position: absolute;
  top: clamp(0.9rem, 2vh, 1.2rem);
  left: clamp(1.1rem, 2vw, 1.5rem);
  right: calc(26% + clamp(1.1rem, 2vw, 1.5rem));
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(23, 18, 0, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.62);
}

.gvt__val {
  position: absolute;
  left: clamp(1.1rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-58%);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: 66%;
}

.gvt__over {
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.58);
}

.gvt__big {
  font-size: clamp(2.6rem, 4.4vw, 3.7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--gv-ink);
  transition: opacity 0.32s var(--ease-standard), transform 0.32s var(--ease-standard);
}

.gvt__line {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.68);
  transition: opacity 0.32s var(--ease-standard), transform 0.32s var(--ease-standard);
}

.gvt__big.is-cycling,
.gvt__line.is-cycling {
  opacity: 0;
  transform: translateY(8px);
}

.gvt__rows {
  position: absolute;
  left: clamp(1.1rem, 2vw, 1.5rem);
  right: calc(26% + clamp(1.1rem, 2vw, 1.5rem));
  bottom: clamp(0.9rem, 2vh, 1.2rem);
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.gvt__rows div {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.gvt__rows dt {
  min-width: 2.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.5);
}

.gvt__rows dd {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.82);
  border-bottom: 1px dotted rgba(23, 18, 0, 0.35);
  padding-bottom: 0.15rem;
  flex: 1;
}

/* tear-off stub */
.gvt__stub {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 26%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: rgba(23, 18, 0, 0.07);
}

.gvt__perf {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(26% - 1px);
  width: 2px;
  background: linear-gradient(180deg, rgba(23, 18, 0, 0.4) 0 6px, transparent 6px 12px);
  background-size: 2px 12px;
}

.gvt:hover .gvt__perf {
  animation: gvt-march 0.9s linear infinite;
}

@keyframes gvt-march {
  to {
    background-position: 0 -12px;
  }
}
.gvt__stub-txt {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.75);
}

.gvt__barcode {
  width: 22px;
  height: 84px;
  background: repeating-linear-gradient(180deg, rgba(23, 18, 0, 0.8) 0 2px, transparent 2px 5px, rgba(23, 18, 0, 0.8) 5px 7px, transparent 7px 9px);
}

/* punched holes on the perforation line — the scene shows through */
.gvt__notch {
  position: absolute;
  right: calc(26% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #05070b;
  z-index: 3;
}

.gvt__notch--t {
  top: -8px;
}

.gvt__notch--b {
  bottom: -8px;
}

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

/* hero FOUC guard for the voucher instrument (approved rule) */
@media screen {
  html.has-js .sp-hero:not(.is-live) .gvt {
    opacity: 0;
    transform: translateY(34px);
  }
}
@media screen and (max-width: 992px) {
  .sp-hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vh, 3rem);
    align-items: start;
  }
  .gvt {
    justify-items: start;
  }
}
@media screen and (max-width: 576px) {
  .sp-hero__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 0;
  }
  .sp-hero__specs li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .gvt__barcode {
    height: 64px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero:not(.is-live) .line__inner {
    transform: translateY(120%);
    animation: sp-hero-guard-safety 0.9s ease 6s forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero:not(.is-live) .sp-hero__content [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    animation: sp-hero-guard-safety 0.9s ease 6s forwards;
  }
}
@keyframes sp-hero-guard-safety {
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes sp-hero-guard-safety-vis {
  to {
    visibility: visible;
  }
}
.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-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;
  }
}
.gvw {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.gvw__inner {
  display: grid;
  gap: clamp(2.4rem, 5vh, 4rem);
}

.gvw__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.gvw__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.gvw__sub {
  max-width: 46ch;
  justify-self: end;
  padding-bottom: 0.4rem;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

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

.gvw__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-line-strong);
}

.gvw__row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(1.4rem, 3.2vh, 2.2rem) 0;
  border-bottom: 1px solid var(--color-line);
  transition: padding-left 0.45s var(--ease-out-expo);
}

/* the brand strap — draws down the row's left edge when armed */
.gvw__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 3px;
  border-radius: 999px;
  background: var(--gradient-brand);
  box-shadow: 0 0 14px rgba(var(--brand-rgb), 0.5);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out-expo);
}

.gvw__row.is-armed {
  padding-left: clamp(1.1rem, 2.2vw, 2rem);
}

.gvw__row.is-armed::before {
  transform: scaleY(1);
}

/* ghost numeral — outlined at rest, fills brand when armed */
.gvw__idx {
  min-width: 2ch;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
  transition: color 0.4s var(--ease-standard), text-shadow 0.4s var(--ease-standard);
}

@supports (-webkit-text-stroke: 1px #fff) or (text-stroke: 1px #fff) {
  .gvw__idx {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    transition: color 0.4s var(--ease-standard), -webkit-text-stroke-color 0.4s var(--ease-standard), text-shadow 0.4s var(--ease-standard);
  }
}
.gvw__row.is-armed .gvw__idx {
  color: var(--color-brand-bright);
  -webkit-text-stroke-color: transparent;
  text-shadow: 0 0 26px rgba(var(--brand-rgb), 0.45);
}

.gvw__name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-text-muted);
  transition: color 0.4s var(--ease-standard);
}

.gvw__row.is-armed .gvw__name {
  color: var(--color-text);
}

.gvw__cap {
  margin-top: 0.6rem;
  max-width: 64ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-subtle);
  transition: color 0.4s var(--ease-standard);
}

.gvw__row.is-armed .gvw__cap {
  color: var(--color-text-muted);
}

.gvw__tag {
  align-self: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-muted);
  transition: color 0.35s var(--ease-standard), border-color 0.35s var(--ease-standard), background 0.35s var(--ease-standard);
}

.gvw__row.is-armed .gvw__tag {
  color: var(--color-brand-contrast);
  background: var(--color-brand);
  border-color: var(--color-brand);
}

@media screen and (max-width: 992px) {
  .gvw__lead {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .gvw__sub {
    justify-self: start;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .gvw__row {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .gvw__tag {
    display: none;
  }
}
.gvb {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.gvb__head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4.5vh, 3.2rem);
}

.gvb__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.gvb__sub {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 46ch;
  justify-self: end;
  padding-bottom: 0.4rem;
}

.gvb__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2rem);
}

/* — the card ————————————————————————————————————————————————— */
.gvcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, var(--color-surface) 0%, var(--color-bg-2) 100%);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.55s var(--ease-out-quint), border-color 0.45s var(--ease-standard), box-shadow 0.55s var(--ease-standard);
}

.gvcard:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(var(--ambient-rgb), 0.08);
}

.gvcard__media {
  position: relative;
  aspect-ratio: 16/7.5;
  overflow: hidden;
  transform: translateZ(0);
}

.gvcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.05);
  transform: scale(1.01);
  transition: transform 0.9s var(--ease-out-quint), filter 0.5s var(--ease-standard);
}

.gvcard:hover .gvcard__media img {
  transform: scale(1.06);
  filter: brightness(0.72) saturate(1.08);
}

.gvcard__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.42) 0%, transparent 40%, rgba(6, 8, 13, 0.62) 100%);
}

.gvcard__lane {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(6, 8, 13, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
}

.gvcard__chip {
  position: absolute;
  right: 1rem;
  top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--gv-on-rgb), 0.4);
  background: rgba(6, 8, 13, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gv-on);
}

.gvcard__chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.gvcard__chip--club {
  color: var(--color-brand-bright);
  border-color: rgba(var(--brand-rgb), 0.45);
}

.gvcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
  padding: clamp(1.2rem, 2.4vh, 1.7rem) clamp(1.2rem, 2vw, 1.6rem) clamp(1.2rem, 2.4vh, 1.6rem);
}

.gvcard__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  line-height: 1.12;
}

.gvcard__tag {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 52ch;
}

.gvcard__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-line);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.gvcard__meta b {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-brand-bright);
}

.gvcard__meta small {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
}

.gvcard__denoms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.gvcard__denoms span {
  padding: 0.32rem 0.66rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: border-color 0.3s var(--ease-standard), color 0.3s var(--ease-standard);
}

.gvcard__denoms span.is-strong {
  border-color: rgba(var(--brand-rgb), 0.4);
  color: var(--color-brand-bright);
}

.gvcard:hover .gvcard__denoms span {
  border-color: var(--color-line-strong);
  color: var(--color-text);
}

.gvcard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}

.gvcard__buy {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  text-decoration: none;
  padding-bottom: 0.2rem;
  background: linear-gradient(var(--color-brand), var(--color-brand)) left bottom/0% 1px no-repeat;
  transition: background-size 0.45s var(--ease-out-expo), color 0.3s var(--ease-standard);
}

.gvcard__buy:hover,
.gvcard__buy:focus-visible {
  background-size: 100% 1px;
  color: #fff;
}

.gvcard__buy:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 4px;
}

.gvcard__buy svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out-expo);
}

.gvcard__buy:hover svg {
  transform: translate(2px, -2px);
}

.gvcard__peek {
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  background: none;
  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 var(--ease-standard), border-color 0.3s var(--ease-standard);
}

.gvcard__peek:hover,
.gvcard__peek[aria-expanded=true] {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.32);
}

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

/* — in-card glass dossier ———————————————————————————————————— */
.gvcard__dossier {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.4rem, 3vh, 2.2rem) clamp(1.3rem, 2.4vw, 2rem);
  background: rgba(6, 8, 13, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: gv-dossier-in 0.4s var(--ease-out-expo);
}

/* the `hidden` attribute must always beat the authored display */
.gvcard__dossier[hidden] {
  display: none !important;
}

@keyframes gv-dossier-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gvcard__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-standard), transform 0.3s var(--ease-standard);
}

.gvcard__close:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

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

.gvcard__close span {
  position: absolute;
  width: 14px;
  height: 1.6px;
  background: var(--color-text);
}

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

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

.gvcard__d-k {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(var(--brand-rgb), 0.9);
}

.gvcard__d-what {
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  max-width: 58ch;
}

.gvcard__d-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.4rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}

.gvcard__d-grid div {
  display: grid;
  gap: 0.3rem;
}

.gvcard__d-grid dt {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.gvcard__d-grid dd {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

/* — the gift-desk door ——————————————————————————————————————— */
.gvb__help {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  margin-top: clamp(1.2rem, 2.4vw, 2rem);
  padding: clamp(1.6rem, 3.4vh, 2.4rem) clamp(1.4rem, 2.6vw, 2.4rem);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(var(--ambient-rgb), 0.08), rgba(6, 8, 13, 0.4) 55%);
  overflow: hidden;
  isolation: isolate;
}

.gvb__help-map {
  position: absolute;
  right: -4%;
  top: -30%;
  width: 34%;
  opacity: 0.06;
  transform: rotate(9deg);
  pointer-events: none;
}

.gvb__help-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  line-height: 1.15;
}

.gvb__help-copy {
  margin-top: 0.7rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.gvb__fine {
  margin-top: clamp(1.4rem, 3vh, 2rem);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 2;
  color: var(--color-text-subtle);
}

@media screen and (max-width: 992px) {
  .gvb__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .gvb__sub {
    justify-self: start;
  }
  .gvb__grid {
    grid-template-columns: 1fr;
  }
  .gvb__help {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
@media screen and (max-width: 576px) {
  .gvcard__row {
    flex-direction: column;
    align-items: stretch;
  }
  .gvcard__peek {
    text-align: center;
  }
  .gvcard__d-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}
.gvj {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.gvj__head {
  margin-bottom: clamp(2.4rem, 5.5vh, 4rem);
}

.gvj__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.gvj__sub {
  margin-top: clamp(1rem, 2.4vh, 1.5rem);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.gvj__track {
  position: relative;
}

.gvj__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  overflow: visible;
}

.gvj__line-rail,
.gvj__line-fill {
  fill: none;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.gvj__line-rail {
  stroke: var(--color-line-strong);
}

.gvj__line-fill {
  stroke: var(--color-brand);
  stroke-dasharray: 100;
  stroke-dashoffset: var(--gvj-off, 100);
  filter: drop-shadow(0 0 6px rgba(var(--brand-rgb), 0.6));
}

.gvj__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.gvj__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gvj__dot {
  order: -1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-line-strong);
  background: var(--color-bg);
  margin-bottom: 1.1rem;
  transition: border-color 0.4s var(--ease-standard), background 0.4s var(--ease-standard), box-shadow 0.4s var(--ease-standard);
}

.gvj__step.is-lit .gvj__dot {
  border-color: var(--color-brand);
  background: var(--color-brand);
  box-shadow: 0 0 14px rgba(var(--brand-rgb), 0.65);
}

.gvj__who {
  display: inline-flex;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  margin-bottom: 0.9rem;
}

.gvj__who--them {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--color-text-muted);
}

.gvj__idx {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
  transition: color 0.4s var(--ease-standard);
}

.gvj__step.is-lit .gvj__idx {
  color: var(--color-brand-bright);
}

.gvj__name {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  line-height: 1.2;
  transition: color 0.4s var(--ease-standard);
  color: var(--color-text-muted);
}

.gvj__step.is-lit .gvj__name {
  color: var(--color-text);
}

.gvj__cap {
  margin-top: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-subtle);
  max-width: 26ch;
  transition: color 0.4s var(--ease-standard);
}

.gvj__step.is-lit .gvj__cap {
  color: var(--color-text-muted);
}

@media screen and (max-width: 992px) {
  .gvj__line {
    display: none;
  }
  .gvj__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gvj__step {
    position: relative;
    flex-direction: column;
    padding: 1.3rem 0 1.3rem 2.2rem;
    border-left: 1px solid var(--color-line-strong);
  }
  .gvj__dot {
    position: absolute;
    left: -7px;
    top: 1.55rem;
    margin: 0;
  }
  .gvj__cap {
    max-width: 52ch;
  }
}
.gvx {
  padding: var(--section-pad) 0;
  background: var(--color-bg-2);
  border-block: 1px solid var(--color-line);
}

.gvx__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.4rem, 3vw, 3rem);
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}

.gvx__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  max-width: 30ch;
}

.gvx__side {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.gvx__all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease-standard);
}

.gvx__all svg {
  width: 20px;
  height: 10px;
  transition: transform 0.35s var(--ease-out-expo);
}

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

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

.gvx__nav {
  display: flex;
  gap: 0.5rem;
}

.gvx__btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard);
}

.gvx__btn svg {
  width: 18px;
  height: 9px;
}

.gvx__btn:hover:not([disabled]) {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.32);
}

.gvx__btn[disabled] {
  opacity: 0.35;
  cursor: default;
}

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

.gvx__rail {
  /* container inset: sass strips calc() inside max(), so precompute it.
     100% (not 100vw) so the reserved scrollbar gutter is excluded and the
     rail lines up with .gvx__lead to the pixel. */
  --rail-pad: calc((100% - var(--maxw)) / 2 + var(--gutter));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 24vw, 330px);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.625rem max(var(--gutter), var(--rail-pad)) 1rem; /* headroom for 5px lift */
  /* keep the snapport inset with the padding, or the first snap steals the
     leading inset on load and the rail starts at the screen edge */
  scroll-padding-inline: max(var(--gutter), var(--rail-pad));
  scrollbar-width: none;
}

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

.gvx__rail.is-grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gvx__rail:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 4px;
}

.gvx-card {
  position: relative;
  aspect-ratio: 3/3.8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
  text-decoration: none;
  transform: translateZ(0);
  border: 1px solid var(--color-line);
  transition: border-color 0.4s var(--ease-standard), transform 0.55s var(--ease-out-quint);
}

.gvx-card:hover {
  border-color: rgba(var(--brand-rgb), 0.45);
  transform: translateY(-5px);
}

.gvx-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.02);
  transition: transform 0.9s var(--ease-out-quint), filter 0.5s var(--ease-standard);
}

.gvx-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.72) saturate(1.08);
}

.gvx-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.14) 0%, transparent 42%, rgba(6, 8, 13, 0.88) 100%);
}

.gvx-card__meta {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 3.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.gvx-card__name {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-text);
}

@media screen and (max-width: 992px) {
  .gvx__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .gvx__rail {
    grid-auto-columns: clamp(230px, 44vw, 300px);
  }
}
@media screen and (max-width: 576px) {
  .gvx__rail {
    grid-auto-columns: 74vw;
  }
}
.gvo {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.gvo__inner {
  display: grid;
  gap: clamp(2rem, 4.5vh, 3.2rem);
}

.gvo__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.gvo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.gvo__card a {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
  padding: clamp(1.3rem, 2.6vh, 1.8rem) clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--color-surface) 0%, var(--color-bg-2) 100%);
  text-decoration: none;
  transition: transform 0.5s var(--ease-out-quint), border-color 0.4s var(--ease-standard), background 0.4s var(--ease-standard);
}

.gvo__card a:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-rgb), 0.45);
}

.gvo__card a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.gvo__k {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text);
}

.gvo__now {
  display: inline-flex;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: var(--color-brand);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gv-ink);
}

.gvo__cap {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 34ch;
}

.gvo__go {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  transition: color 0.35s var(--ease-standard), transform 0.35s var(--ease-out-expo);
}

.gvo__go svg {
  width: 20px;
  height: 10px;
  flex-shrink: 0;
}

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

.gvo__card.is-now a {
  border-color: rgba(var(--brand-rgb), 0.4);
  background: linear-gradient(150deg, rgba(var(--ambient-rgb), 0.1), var(--color-bg-2) 62%);
}

@media screen and (max-width: 992px) {
  .gvo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .gvo__grid {
    grid-template-columns: 1fr;
  }
}
.gvm {
  background: var(--color-bg-2);
  border-block: 1px solid var(--color-line);
}

.gvm__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2.4rem, 5.5vw, 6rem);
  align-items: center;
}

.gvm__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.gvm__sub {
  margin-top: clamp(1rem, 2.4vh, 1.5rem);
  max-width: 56ch;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.62;
  color: var(--color-text-muted);
}

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

.gvm__math {
  display: grid;
  margin-top: clamp(1.4rem, 3vh, 2rem);
  padding: clamp(1.1rem, 2.2vh, 1.5rem) clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: rgba(6, 8, 13, 0.5);
  max-width: 460px;
}

.gvm__math-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.gvm__math-row b {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.gvm__math-row--cut b {
  color: var(--gv-on);
}

.gvm__math-row--sum {
  border-bottom: 0;
  border-top: 1px solid var(--color-line-strong);
  margin-top: -1px;
}

.gvm__math-row--sum b {
  font-size: 1.05rem;
  color: var(--color-brand-bright);
}

.gvm__math-row--vs {
  border-bottom: 0;
  padding-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--color-text-subtle);
}

.gvm__math-row--vs b {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

.gvm__fine {
  margin-top: clamp(1rem, 2.2vh, 1.4rem);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  max-width: 66ch;
  line-height: 1.9;
}

/* — the gifted pass ————————————————————————————————————————— */
.gvm__side {
  display: grid;
  gap: clamp(1.6rem, 3.4vh, 2.4rem);
  justify-items: center;
}

.gvm__passwrap {
  perspective: 900px;
}

.gvpass {
  position: relative;
  width: min(76vw, 300px);
  aspect-ratio: 30/42;
  padding: 1.4rem 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--gv-ticket);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(var(--ambient-rgb), 0.12);
  overflow: hidden;
  isolation: isolate;
  transform: rotate(-4deg);
  transition: transform 0.6s var(--ease-out-quint);
}

.gvm__passwrap:hover .gvpass {
  transform: rotate(-1deg) translateY(-6px);
}

.gvpass__lanyard {
  position: absolute;
  top: 0;
  left: 50%;
  width: 44px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  background: rgba(23, 18, 0, 0.22);
}

.gvpass__sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.32) 47%, transparent 60%);
  transform: translateX(-80%);
  transition: transform 1.1s var(--ease-out-quint);
  pointer-events: none;
}

.gvm__passwrap:hover .gvpass__sheen {
  transform: translateX(80%);
}

.gvpass__bow {
  position: absolute;
  top: 1.15rem;
  right: 1.1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 18, 0, 0.35);
  border-radius: 50%;
  color: rgba(23, 18, 0, 0.75);
}

.gvpass__bow svg {
  width: 17px;
  height: 17px;
}

.gvpass__head {
  padding-top: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.58);
}

.gvpass__name {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gv-ink);
}

.gvpass__rows {
  display: grid;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
}

.gvpass__rows div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dotted rgba(23, 18, 0, 0.32);
}

.gvpass__rows dt {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.55);
}

.gvpass__rows dd {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(23, 18, 0, 0.85);
}

.gvpass__code {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 26px;
  margin-top: auto;
  padding-top: 1rem;
}

.gvpass__code i {
  flex: 1;
  background: rgba(23, 18, 0, 0.78);
  height: 100%;
}

.gvpass__code i:nth-child(3n) {
  height: 70%;
  background: rgba(23, 18, 0, 0.5);
}

.gvpass__code i:nth-child(4n) {
  height: 85%;
}

.gvpass__code i:nth-child(5n) {
  height: 58%;
  background: rgba(23, 18, 0, 0.62);
}

.gvpass__foot {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(23, 18, 0, 0.5);
}

.gvm__ticks {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  max-width: 46ch;
}

.gvm__ticks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.gvm__ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 0.95rem;
  height: 0.55rem;
  border-left: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(-45deg) scale(0.9);
}

@media screen and (max-width: 992px) {
  .gvm__inner {
    grid-template-columns: 1fr;
  }
  .gvm__side {
    justify-items: start;
  }
}
.gvst {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.gvst__head {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gvst__head .u-overline {
  color: var(--color-brand-bright);
}
.gvst__title {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}
.gvst__sub {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  max-width: none;
}
.gvst__stage {
  position: relative;
  margin-top: clamp(1.4rem, 3vh, 2.2rem);
  height: clamp(390px, 52vh, 470px);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.gvst__stage.is-grabbing {
  cursor: grabbing;
}
@media screen and (max-width: 768px) {
  .gvst__stage {
    height: clamp(380px, 58vh, 460px);
  }
}
.gvst__halo {
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  width: min(760px, 86vw);
  height: 220px;
  background: radial-gradient(50% 55% at 50% 50%, rgba(var(--brand-rgb), 0.16), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.gvst__ring {
  position: absolute;
  inset: 0;
  perspective: 1500px;
}
.gvst__nav {
  margin-top: clamp(0.8rem, 1.8vh, 1.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.gvst__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.45s, border-color 0.45s, color 0.45s, transform 0.45s var(--ease-out-expo);
}
.gvst__btn svg {
  width: 22px;
}
.gvst__btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--color-brand-contrast, #fff);
  transform: translateY(-3px);
}
.gvst__btn:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}
.gvst__count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  min-width: 5.5ch;
  text-align: center;
}
.gvst__count b {
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.gvst-card {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  width: clamp(280px, 76vw, 460px);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
@media screen and (min-width: 769px) {
  .gvst-card {
    width: clamp(340px, 34vw, 460px);
  }
}
.gvst-card__in {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.3rem, 2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: linear-gradient(165deg, rgba(var(--brand-rgb), 0.1), rgba(10, 12, 16, 0.35) 55%), #0c0f15;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 30px 60px -30px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  isolation: isolate;
  isolation: isolate;
  transform: translateZ(0);
  transition: border-color 0.5s var(--ease-standard), box-shadow 0.5s var(--ease-standard), transform 0.6s var(--ease-out-expo);
}
.gvst-card__sheen {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.07) 48%, rgba(var(--brand-rgb), 0.08) 55%, transparent 72%);
  background-size: 240% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition: background-position 1.3s var(--ease-out-quint), opacity 0.5s;
  pointer-events: none;
}
.gvst-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.6rem;
}
.gvst-card__mark {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: clamp(4.2rem, 5.2vw, 5rem);
  line-height: 0.6;
  transform: translateY(0.18em);
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(var(--brand-rgb), 0.6);
  user-select: none;
}
.gvst-card__lane {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  white-space: nowrap;
}
.gvst-card__quote {
  margin: 0.9rem 0 0;
  font-weight: var(--fw-medium);
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  color: var(--color-text);
  flex: 1;
}
.gvst-card__who {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}
.gvst-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-line-strong);
}
.gvst-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}
.gvst-card__id {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}
.gvst-card__name {
  font-weight: var(--fw-semibold);
  color: #fff;
}
.gvst-card__role {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.gvst-card__stars {
  margin-left: auto;
  color: var(--color-brand-bright);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  white-space: nowrap;
}
.gvst-card.is-active .gvst-card__in {
  border-color: rgba(var(--brand-rgb), 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 0 0 1px rgba(var(--brand-rgb), 0.12), 0 34px 80px -28px rgba(var(--brand-rgb), 0.45);
}
@media (hover: hover) and (pointer: fine) {
  .gvst-card.is-active:hover .gvst-card__in {
    transform: translateY(-6px) rotateX(1.2deg);
    border-color: rgba(var(--brand-rgb), 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(var(--brand-rgb), 0.18), 0 44px 90px -26px rgba(var(--brand-rgb), 0.55);
  }
  .gvst-card.is-active:hover .gvst-card__sheen {
    opacity: 1;
    background-position: -10% 0;
  }
}

.gvst__stage:not(.is-ready) {
  height: auto;
  perspective: none;
  cursor: default;
}
.gvst__stage:not(.is-ready) .gvst__halo {
  display: none;
}
.gvst__stage:not(.is-ready) .gvst__ring {
  position: relative;
  inset: auto;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.6rem);
}
@media screen and (max-width: 992px) {
  .gvst__stage:not(.is-ready) .gvst__ring {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}
.gvst__stage:not(.is-ready) .gvst-card {
  position: static;
  width: auto;
  transform: none !important;
}

.gvst__stage:not(.is-ready) ~ .gvst__nav {
  display: none;
}

.gvcta {
  position: relative;
  margin-top: clamp(2rem, 5vh, 4rem);
  padding: clamp(6rem, 16vh, 10rem) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}

.gvcta__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.gvcta__img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.05) contrast(1.08);
  will-change: transform;
}

.gvcta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.96) 0%, rgba(6, 8, 13, 0.35) 40%, rgba(6, 8, 13, 0.4) 70%, rgba(6, 8, 13, 0.96) 100%);
}

.gvcta__sweep {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 60%, rgba(var(--ambient-rgb), 0.14), transparent 70%);
}

.gvcta__inner {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(1.2rem, 2.6vh, 1.8rem);
}

.gvcta__k {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.gvcta__k i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-brand-bright));
}

.gvcta__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

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

.gvcta__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.gvcta__tel {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.gvcta__tel a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.5);
  transition: color 0.3s var(--ease-standard);
}

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

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

.gveoi__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: start;
}

.gveoi__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.gveoi__sub {
  margin-top: clamp(1rem, 2.4vh, 1.5rem);
  max-width: 52ch;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.gveoi__ticks {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(1.3rem, 2.8vh, 1.9rem);
}

.gveoi__ticks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.gveoi__ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 0.95rem;
  height: 0.55rem;
  border-left: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(-45deg) scale(0.9);
}

.gveoi__contact {
  display: grid;
  margin-top: clamp(1.3rem, 2.8vh, 1.9rem);
  border-top: 1px solid var(--color-line);
}

.gveoi__contact-row {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-line);
  text-decoration: none;
  transition: padding-left 0.35s var(--ease-out-expo);
}

.gveoi__contact-row:hover {
  padding-left: 0.7rem;
}

.gveoi__contact-row span {
  min-width: 3.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.gveoi__contact-row b {
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s var(--ease-standard);
}

.gveoi__contact-row:hover b {
  color: var(--color-brand-bright);
}

.gveoi__media {
  margin-top: clamp(1.4rem, 3vh, 2rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: translateZ(0);
}

.gveoi__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.05);
}

/* — the form ————————————————————————————————————————————————— */
.gveoi__form {
  position: relative;
  display: grid;
  gap: clamp(1rem, 2.2vh, 1.4rem);
  padding: clamp(1.6rem, 3.4vh, 2.4rem) clamp(1.4rem, 2.6vw, 2.2rem);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(13, 16, 23, 0.78), rgba(6, 8, 13, 0.6));
}

.gveoi__form-k {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(var(--brand-rgb), 0.9);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-line);
}

.gveoi__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gveoi__field {
  display: grid;
  gap: 0.5rem;
}

.gveoi__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.gveoi__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  background: rgba(5, 6, 8, 0.5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}

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

.gveoi__input:focus-visible {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.18);
}

.gveoi__input.is-error {
  border-color: var(--gv-hot);
  box-shadow: 0 0 0 3px rgba(var(--gv-hot-rgb), 0.15);
}

.gveoi__input--area {
  resize: vertical;
  min-height: 96px;
}

/* chip radio groups */
.gveoi__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  padding: 0;
  margin: 0;
}

.gveoi__chips legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0.6rem;
}

.gveoi__chip {
  position: relative;
  cursor: pointer;
}

.gveoi__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gveoi__chip span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard), background 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}

.gveoi__chip:hover span {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.28);
}

.gveoi__chip input:checked + span {
  color: var(--gv-ink);
  background: var(--color-brand);
  border-color: var(--color-brand);
  font-weight: 600;
}

.gveoi__chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.3);
}

/* consent + submit */
.gveoi__consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  cursor: pointer;
  padding-top: 0.4rem;
}

.gveoi__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gveoi__checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 5px;
  color: transparent;
  background: rgba(5, 6, 8, 0.5);
  transition: background 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard), color 0.3s var(--ease-standard);
}

.gveoi__checkbox svg {
  width: 11px;
  height: 9px;
}

.gveoi__check:checked ~ .gveoi__checkbox {
  color: var(--gv-ink);
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.gveoi__check:focus-visible ~ .gveoi__checkbox {
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.3);
}

.gveoi__consent.is-error .gveoi__checkbox {
  border-color: var(--gv-hot);
}

.gveoi__consent-copy {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.gveoi__consent-link {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.5);
  transition: color 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard);
}

.gveoi__consent-link:hover,
.gveoi__consent-link:focus-visible {
  color: var(--color-brand-bright);
  border-color: var(--color-brand);
}

.gveoi__submit {
  justify-self: start;
  margin-top: 0.3rem;
}

/* while empty the note leaves the flow (stays in the a11y tree for
   its aria-live announcement) — no phantom space under the button */
.gveoi__note {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gv-on);
}

.gveoi__note:empty {
  position: absolute;
  bottom: 0.6rem;
  left: clamp(1.4rem, 2.6vw, 2.2rem);
}

.gveoi__note.is-error {
  color: var(--gv-hot);
}

@media screen and (max-width: 992px) {
  .gveoi__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .gveoi__row {
    grid-template-columns: 1fr;
  }
}
@keyframes kb-zoom {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.07;
  }
}
.gvcard__media {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

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

.gvcard:nth-child(2) .gvcard__media img {
  animation-delay: -3s;
}

.gvcard:nth-child(3) .gvcard__media img {
  animation-delay: -6s;
}

.gvcard:nth-child(4) .gvcard__media img {
  animation-delay: -9s;
}

.gvcard:nth-child(5) .gvcard__media img {
  animation-delay: -12s;
}

.gvcard:nth-child(6) .gvcard__media img {
  animation-delay: -15s;
}

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  .sp-hero__eyebrow-line,
  .sp-hero__eyebrow-line::after {
    animation: none !important;
  }
  .gv-shot {
    transform: none;
  }
  .gvt__card,
  .gvt__sheen,
  .gvst-card__in,
  .gvst-card__sheen,
  .gvst__btn,
  .gvo__card a,
  .gvo__go,
  .gvx-card,
  .gvx-card img,
  .gvcard,
  .gvcard__media img,
  .gvw__row,
  .gvw__idx,
  .gvw__name,
  .gvw__cap,
  .gvw__tag,
  .gveoi__contact-row,
  .gvpass,
  .gvpass__sheen {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
  .gvt.is-live .gvt__sheen {
    animation: none !important;
  }
  .gvt:hover .gvt__perf {
    animation: none;
  }
  .gvt__big.is-cycling,
  .gvt__line.is-cycling {
    opacity: 1;
    transform: none;
  }
  .gvcard__dossier {
    animation: none !important;
  }
  /* the armed strap still tracks state — it just stops gliding */
  .gvw__row::before {
    transition: none !important;
  }
  .gvcta__img {
    height: 100%;
    transform: none !important;
  }
  /* the journey rests fully drawn and fully lit */
  .gvj__line-fill {
    stroke-dashoffset: 0 !important;
  }
  .gvj__dot,
  .gvj__idx,
  .gvj__name,
  .gvj__cap {
    transition: none !important;
  }
}
