: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;
}

[data-theme=ardc] {
  --section-pad: 60px;
}
@media screen and (max-width: 992px) {
  [data-theme=ardc] {
    --section-pad: 48px;
  }
}
@media screen and (max-width: 768px) {
  [data-theme=ardc] {
    --section-pad: 40px;
  }
}

[data-theme=ardc] .footer {
  padding-top: var(--section-pad);
}

.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;
}
@media screen and (max-width: 576px) {
  .mpanel__links {
    grid-template-columns: 1fr;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.cta-band {
  position: relative;
  padding: var(--section-pad) var(--gutter) calc(var(--section-pad) * 2);
  overflow: hidden;
  isolation: isolate;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  max-width: 62rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.2rem, 2.6vh, 1.9rem);
}
.cta-band__inner .u-overline {
  color: var(--color-brand-bright);
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2.2rem, 5.6vw, 4.9rem);
  line-height: 1.12;
  letter-spacing: var(--ls-display);
}
.cta-band__title .line__inner {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cta-band__title .line__inner {
    white-space: normal;
  }
}
.cta-band__sub {
  max-width: 44ch;
  color: var(--color-text-muted);
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  line-height: 1.6;
}
.cta-band__deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cta-band__deco::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: min(1100px, 96vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.2), transparent 60%);
  animation: cta-breathe 9s var(--ease-standard) infinite alternate;
}
.cta-band__floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 260%;
  height: 50%;
  transform: translateX(-50%) perspective(560px) rotateX(66deg);
  transform-origin: bottom center;
  background-image: linear-gradient(90deg, rgba(var(--brand-rgb), 0.42) 1px, transparent 1px), linear-gradient(rgba(var(--brand-rgb), 0.36) 1px, transparent 1px);
  background-size: 5.5% 34px;
  mask-image: linear-gradient(transparent 4%, #000 46%, rgba(0, 0, 0, 0.35) 100%);
  -webkit-mask-image: linear-gradient(transparent 4%, #000 46%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0.5;
  animation: cta-floor 5.5s linear infinite;
}
.cta-band__streak, .cta-band__particles {
  display: none;
}

@keyframes ctaStreak {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  18%, 60% {
    opacity: 1;
  }
  100% {
    transform: translateX(280%);
    opacity: 0;
  }
}
@keyframes cta-breathe {
  from {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}
@keyframes cta-floor {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 0, 0 34px;
  }
}
.btn-cta {
  --btn-h: clamp(52px, 5.4vh, 60px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  height: var(--btn-h);
  margin-top: clamp(0.4rem, 1vh, 0.9rem);
  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);
  will-change: transform;
}
.btn-cta__glow {
  display: none;
}
.btn-cta__label {
  position: relative;
  z-index: 1;
}
.btn-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: calc(var(--btn-h) - 16px);
  height: calc(var(--btn-h) - 16px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
  transition: background 0.4s var(--ease-standard);
}
.btn-cta__icon svg {
  width: 17px;
  transition: transform 0.45s var(--ease-out-expo);
}
.btn-cta::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);
  pointer-events: none;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px -12px rgba(var(--brand-rgb), 0.95);
}
.btn-cta:hover::before {
  transform: translateX(120%);
}
.btn-cta:hover .btn-cta__icon {
  background: rgba(255, 255, 255, 0.26);
}
.btn-cta:hover .btn-cta__icon svg {
  transform: translateX(3px);
}
.btn-cta:active {
  transform: translateY(-1px) scale(0.985);
}
.btn-cta--ghost {
  background: transparent;
  border: 1px solid var(--color-line-strong);
  box-shadow: none;
  color: var(--color-text);
}
.btn-cta--ghost .btn-cta__icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line-strong);
}
.btn-cta--ghost::before {
  display: none;
}
.btn-cta--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);
}
.btn-cta--ghost:hover .btn-cta__icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-brand-bright);
  color: var(--color-brand-bright);
}

@media (prefers-reduced-motion: reduce) {
  .cta-band__floor,
  .cta-band__deco::before {
    animation: none;
  }
  .btn-cta::before {
    display: none;
  }
}
.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);
  --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 {
  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);
}

.mhero {
  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;
}

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

.mhero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
  filter: saturate(0.9) contrast(1.05) brightness(0.58);
}

.mhero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 72% 26%, rgba(var(--brand-rgb), 0.24), transparent 60%), linear-gradient(180deg, rgba(6, 8, 13, 0.42) 0%, rgba(6, 8, 13, 0.12) 36%, rgba(6, 8, 13, 0.88) 86%, var(--color-bg) 100%);
}

.mhero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  position: relative;
}

.mhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: clamp(1rem, 2.5vh, 1.8rem);
}

.mhero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 12px 2px rgba(var(--brand-rgb), 0.9);
  animation: mheroPulse 2.4s var(--ease-standard) infinite;
}

.mhero__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2.9rem, 8.8vw, 7.4rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  color: #fff;
}

.mhero__title em {
  font-style: normal;
}

.mhero__lead {
  margin-top: clamp(1.2rem, 3vh, 2rem);
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.mhero__index {
  margin-top: clamp(1.8rem, 4.5vh, 3rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.2vw, 1rem);
  max-width: 780px;
}

@media screen and (max-width: 768px) {
  .mhero__index {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
.mhero__tier {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: rgba(10, 12, 18, 0.55);
  transition: border-color 0.45s var(--ease-standard), background 0.45s var(--ease-standard), transform 0.55s var(--ease-out-expo);
}

.mhero__tier:hover {
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.1);
  transform: translateY(-4px);
}

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

.mhero__tier-no {
  font-size: 0.75rem;
  color: var(--color-brand-bright);
  padding: 0.22rem 0.45rem;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  border-radius: 6px;
  background: var(--color-brand-weak);
}

.mhero__tier-name {
  font-size: 0.94rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  white-space: nowrap;
}

.mhero__tier-price {
  margin-left: auto;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: color 0.4s;
}

.mhero__tier-price i {
  font-style: normal;
  font-size: max(0.75rem, 0.72em);
  opacity: 0.7;
}

.mhero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: var(--section-pad);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .mhero__scroll {
    display: none;
  }
}
.mhero__scroll-rail {
  position: relative;
  width: 1px;
  height: 56px;
  background: var(--color-line-strong);
  overflow: hidden;
}

.mhero__scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 14px;
  background: var(--color-brand-bright);
  border-radius: 2px;
  animation: mheroScroll 1.8s var(--ease-in-out-quint) infinite;
}

@keyframes mheroPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
@keyframes mheroScroll {
  0% {
    transform: translate(-50%, -100%);
  }
  60%, 100% {
    transform: translate(-50%, 420%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mhero__eyebrow-dot,
  .mhero__scroll-dot {
    animation: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .mhero:not(.is-live) .line__inner {
    transform: translateY(120%);
    animation: mhero-safety 0.9s ease 6s forwards;
  }
  html.has-js .mhero:not(.is-live) [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    animation: mhero-safety 0.9s ease 6s forwards;
  }
  html.has-js .mhero:not(.is-live) .mhero__scroll {
    opacity: 0;
    animation: mhero-safety 0.9s ease 6s forwards;
  }
}
@keyframes mhero-safety {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mtick {
  position: relative;
  border-block: 1px solid var(--color-line);
  padding-block: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mtick__row {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mtick 38s linear infinite;
}
.mtick:hover .mtick__row {
  animation-play-state: paused;
}
.mtick__set {
  display: flex;
  align-items: center;
}
.mtick__item {
  position: relative;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-inline: clamp(1.6rem, 3vw, 2.6rem);
  white-space: nowrap;
}
.mtick__item::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(var(--brand-rgb), 0.55);
  transform: translateY(-50%) rotate(45deg);
}

@keyframes mtick {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mtick__row {
    animation: none;
  }
}
.mvalue {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.mvalue__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
@media screen and (max-width: 992px) {
  .mvalue__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.mvalue__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}
.mvalue__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--color-text);
}
.mvalue__copy {
  margin-top: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.mvalue__copy b {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}
.mvalue__links {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.4rem;
}

.mstats {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: clamp(2.6rem, 6vh, 4.4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
}
@media screen and (max-width: 992px) {
  .mstats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mstat {
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-line-strong);
  position: relative;
}
.mstat::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 1px;
  background: var(--color-brand-bright);
}
.mstat__num {
  display: block;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  color: #fff;
}
.mstat__num b {
  font-weight: var(--fw-medium);
}
.mstat__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.finder {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.finder__panel {
  position: relative;
  padding: clamp(1.8rem, 3.4vw, 3.2rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  background: radial-gradient(110% 90% at 8% 0%, rgba(var(--brand-rgb), 0.12), transparent 55%), linear-gradient(168deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008) 60%), var(--color-surface);
  overflow: hidden;
  isolation: isolate;
  isolation: isolate;
  transform: translateZ(0);
}
.finder__glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--brand-rgb), 0.14), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.finder__blueprint {
  position: absolute;
  right: -5%;
  top: 48%;
  transform: translateY(-50%) rotate(-6deg);
  width: min(620px, 52%);
  height: auto;
  opacity: 0.028;
  filter: invert(1);
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .finder__blueprint {
    display: none;
  }
}
.finder__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.finder__headline {
  max-width: 640px;
}
.finder__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}
.finder__sub {
  margin-top: 1.1rem;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.finder__hud {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 768px) {
  .finder__hud {
    display: none;
  }
}
.finder__hud-step {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.finder__hud-step b {
  font-weight: var(--fw-medium);
  color: var(--color-brand-bright);
}
.finder__hud-rail {
  position: relative;
  width: 132px;
  height: 2px;
  background: var(--color-line-strong);
  border-radius: 2px;
  overflow: hidden;
}
.finder__hud-rail i {
  position: absolute;
  inset: 0;
  width: 50%;
  background: var(--gradient-brand);
  border-radius: inherit;
  transition: width 0.7s var(--ease-out-quint);
}
.finder__stage {
  position: relative;
  margin-top: clamp(1.8rem, 3.5vh, 2.6rem);
  display: grid;
}
.finder__stage > * {
  grid-area: 1/1;
}
.finder__q, .finder__result {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-standard), transform 0.6s var(--ease-out-expo), visibility 0s linear 0.5s;
  pointer-events: none;
}
.finder__q.is-current, .finder__result.is-current {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.12s, 0.12s, 0s;
  pointer-events: auto;
}
.finder__question {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: var(--ls-display);
  color: var(--color-text);
}
.finder__opts {
  margin-top: 1.4rem;
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 1rem);
}
.finder__opts--three {
  grid-template-columns: repeat(3, 1fr);
}
.finder__opts--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  .finder__opts--three, .finder__opts--two {
    grid-template-columns: 1fr;
  }
}
.finder__opt {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0 clamp(1.1rem, 1.6vw, 1.4rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s var(--ease-standard), background 0.4s var(--ease-standard), box-shadow 0.5s var(--ease-standard), transform 0.55s var(--ease-out-expo);
  isolation: isolate;
  transform: translateZ(0);
}
.finder__opt:hover {
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.07);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -26px rgba(var(--brand-rgb), 0.5);
}
.finder__opt:hover .finder__opt-media img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.88);
}
.finder__opt.is-picked {
  border-color: rgba(var(--brand-rgb), 0.75);
  background: rgba(var(--brand-rgb), 0.1);
}
.finder__opt.is-picked .finder__opt-idx {
  background: var(--gradient-brand);
  color: var(--color-brand-contrast, #fff);
  border-color: transparent;
}
.finder__opt-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/8.5;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  margin-bottom: clamp(0.9rem, 1.4vw, 1.1rem);
}
.finder__opt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.78);
  transition: transform 0.9s var(--ease-out-quint), filter 0.6s var(--ease-standard);
}
.finder__opt-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 15, 21, 0.75));
}
.finder__opt-idx {
  position: absolute;
  top: 0.75rem;
  left: 0.8rem;
  z-index: 1;
  font-size: 0.75rem;
  color: var(--color-brand-bright);
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(var(--brand-rgb), 0.5);
  border-radius: 6px;
  background: rgba(10, 12, 18, 0.75);
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.finder__opt-name {
  padding-inline: clamp(1rem, 1.6vw, 1.3rem);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: var(--ls-display);
  color: #fff;
}
.finder__opt-note {
  margin-top: 0.35rem;
  padding-inline: clamp(1rem, 1.6vw, 1.3rem);
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}
.finder__result {
  display: grid;
  grid-template-columns: minmax(260px, 5fr) 7fr;
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .finder__result {
    grid-template-columns: 1fr;
  }
}
.finder__pass {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(320px, 40vh, 380px);
  padding: clamp(1.3rem, 2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--brand-rgb), 0.45);
  background: var(--color-surface);
  box-shadow: 0 26px 60px -28px rgba(var(--brand-rgb), 0.5);
  overflow: hidden;
  isolation: isolate;
  isolation: isolate;
  transform: translateZ(0);
}
.finder__pass > * {
  position: relative;
  z-index: 1;
}
.finder__pass-media {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
  border-radius: inherit;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.finder__pass-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.62);
}
.finder__pass-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% -20%, rgba(var(--brand-rgb), 0.2), transparent 55%), linear-gradient(180deg, rgba(9, 11, 16, 0.5) 0%, rgba(9, 11, 16, 0.2) 40%, rgba(9, 11, 16, 0.9) 100%);
}
.finder__pass-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--color-brand-contrast, #fff);
}
.finder__pass-no {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  font-size: 0.75rem;
  color: var(--color-brand-bright);
}
.finder__pass-name {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: var(--ls-display);
  line-height: 1.05;
  color: #fff;
}
.finder__pass-price {
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
}
.finder__pass-amount {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 0.9;
  color: #fff;
}
.finder__pass-amount i {
  font-style: normal;
  font-size: max(0.75rem, 0.52em);
  color: var(--color-brand-bright);
  vertical-align: 0.55em;
  margin-right: 0.06em;
}
.finder__pass-amount b {
  font-weight: inherit;
}
.finder__pass-term {
  font-size: 0.75rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  padding-bottom: 0.1rem;
}
.finder__pass-term em {
  font-style: normal;
  color: var(--color-text-muted);
}
.finder__pass-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-top: 1px dashed var(--color-line-strong);
}
.finder__pass-crest {
  width: 24px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}
.finder__why {
  display: flex;
  flex-direction: column;
}
.finder__why-tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.finder__why-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.finder__why-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--color-text);
}
.finder__why-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border: 1px solid var(--color-brand-bright);
  transform: rotate(45deg);
}
.finder__why-note {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.finder__why-actions {
  margin-top: 1.8rem;
  padding-top: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
}
.finder__join {
  --btn-h: clamp(50px, 5vh, 56px);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  height: var(--btn-h);
  padding: 0 0.5rem 0 1.45rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--color-brand-contrast, #fff);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 36px -14px rgba(var(--brand-rgb), 0.65);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-standard);
  will-change: transform;
}
.finder__join span {
  position: relative;
  z-index: 1;
}
.finder__join svg {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  box-sizing: content-box;
  width: 17px;
  height: 17px;
  padding: calc((var(--btn-h) - 16px - 17px) / 2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.45s var(--ease-out-expo), background 0.4s var(--ease-standard);
}
.finder__join::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  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);
  pointer-events: none;
}
.finder__join:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -12px rgba(var(--brand-rgb), 0.85);
}
.finder__join:hover::before {
  transform: translateX(120%);
}
.finder__join:hover svg {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.24);
}
.finder__compare {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--color-line-strong);
  transition: color 0.35s, text-decoration-color 0.35s;
  padding: 0.4rem 0;
}
.finder__compare:hover {
  color: var(--color-text);
  text-decoration-color: var(--color-brand-bright);
}
.finder__controls {
  position: relative;
  margin-top: clamp(1.6rem, 3vh, 2.2rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.finder__ctrl {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.2rem;
  background: none;
  border: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.35s, opacity 0.4s, transform 0.4s;
}
.finder__ctrl svg {
  width: 20px;
}
.finder__ctrl:hover {
  color: var(--color-text);
}
.finder__ctrl.is-hidden {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}
.finder__skip {
  margin-left: auto;
  padding: 0.55rem 0.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.35s;
}
.finder__skip:hover {
  color: var(--color-brand-bright);
}
@media screen and (max-width: 768px) {
  .finder__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .finder__controls {
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
  }
  .finder__skip {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .finder__q,
  .finder__result {
    transition: none;
    transform: none;
  }
}
.tiers {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}
.tiers__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tiers__floor {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(var(--ambient-rgb), 0.05)), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px);
  mask-image: linear-gradient(180deg, transparent, #000 70%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 70%);
}
.tiers__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 500px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--brand-rgb), 0.12), transparent 70%);
  filter: blur(10px);
}
.tiers__head {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 992px) {
  .tiers__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.tiers__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}
.tiers__sub {
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  padding-bottom: 0.4rem;
}
.tiers__grid {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(2.2rem, 5vh, 3.4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.6rem);
  align-items: stretch;
}
@media screen and (min-width: 1201px) {
  .tiers__grid .tcard:not(.tcard--feature) {
    margin-top: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .tiers__grid {
    grid-template-columns: min(560px, 100%);
    justify-content: center;
    gap: 2.6rem;
  }
}
.tiers__fine {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(2rem, 5vh, 3rem) auto 0;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--color-line);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: min(var(--maxw), 100%);
}
.tiers__fine b {
  color: var(--color-text);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.tcard {
  position: relative;
  perspective: 1200px;
  transition: transform 0.65s var(--ease-out-expo);
}
@media (hover: hover) and (pointer: fine) {
  .tcard:hover {
    transform: translateY(-8px);
  }
}
.tcard__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--color-brand-contrast, #fff);
  box-shadow: 0 10px 30px -8px rgba(var(--brand-rgb), 0.8);
  white-space: nowrap;
}
.tcard__flag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.tcard__lift {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.2vw, 2.1rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 9px), repeating-linear-gradient(-112deg, rgba(255, 255, 255, 0.013) 0 1px, transparent 1px 9px), linear-gradient(168deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 55%), var(--color-surface);
  overflow: hidden;
  isolation: isolate;
  transform: rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg));
  transition: border-color 0.5s var(--ease-standard), box-shadow 0.5s var(--ease-standard);
  will-change: transform;
  isolation: isolate;
  transform: translateZ(0);
}
.tcard__sheen {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 25%, rgba(var(--brand-rgb), 0.1) 42%, rgba(255, 255, 255, 0.13) 50%, rgba(var(--brand-rgb), 0.1) 58%, transparent 75%);
  background-size: 260% 100%;
  background-position: 105% 0;
  opacity: 0;
  transition: background-position 1.2s var(--ease-out-quint), opacity 0.5s;
  pointer-events: none;
}
.tcard__glare {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--gx, 50%) var(--gy, 30%), rgba(255, 255, 255, 0.09), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.tcard__edge {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  pointer-events: none;
}
.tcard:hover .tcard__lift {
  border-color: var(--color-line-strong);
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.7);
}
.tcard:hover .tcard__sheen {
  opacity: 1;
  background-position: -5% 0;
}
.tcard:hover .tcard__glare {
  opacity: 1;
}
.tcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tcard__no {
  font-size: 0.75rem;
  color: var(--color-brand-bright);
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  border-radius: 7px;
  background: var(--color-brand-weak);
}
.tcard__crest {
  display: block;
  width: 30px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}
.tcard__ghost {
  position: absolute;
  top: 3.4rem;
  right: 0.6rem;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(5.2rem, 6.5vw, 7rem);
  line-height: 1;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}
.tcard__name {
  margin-top: 1.35rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.7rem, 2.3vw, 2.05rem);
  letter-spacing: var(--ls-display);
  line-height: 1.05;
  color: #fff;
}
.tcard__for {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.tcard__price {
  margin-top: 1.35rem;
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}
.tcard__amount {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.7rem, 3.4vw, 3.3rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #fff;
}
.tcard__amount i {
  font-style: normal;
  font-size: max(0.75rem, 0.52em);
  color: var(--color-brand-bright);
  vertical-align: 0.55em;
  margin-right: 0.06em;
}
.tcard__term {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.15rem;
}
.tcard__term b {
  font-weight: var(--fw-medium);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.tcard__term span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.tcard__divide {
  display: block;
  height: 1px;
  margin-block: 1.35rem;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.55), var(--color-line) 40%, transparent);
}
.tcard__plus {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.tcard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}
.tcard__list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}
.tcard__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border: 1px solid var(--color-brand-bright);
  transform: rotate(45deg);
}
.tcard__actions {
  margin-top: auto;
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}
.tcard__join {
  --btn-h: clamp(50px, 5vh, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  height: var(--btn-h);
  padding: 0 0.5rem 0 1.45rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--color-brand-contrast, #fff);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 36px -14px rgba(var(--brand-rgb), 0.65);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-standard);
  will-change: transform;
}
.tcard__join span {
  position: relative;
  z-index: 1;
}
.tcard__join svg {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  box-sizing: content-box;
  width: 17px;
  height: 17px;
  padding: calc((var(--btn-h) - 16px - 17px) / 2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.45s var(--ease-out-expo), background 0.4s var(--ease-standard);
}
.tcard__join::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  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);
  pointer-events: none;
}
.tcard__join:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -12px rgba(var(--brand-rgb), 0.85);
}
.tcard__join:hover::before {
  transform: translateX(120%);
}
.tcard__join:hover svg {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.24);
}
.tcard__more {
  align-self: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--color-line-strong);
  transition: color 0.35s, text-decoration-color 0.35s;
}
.tcard__more:hover {
  color: var(--color-text);
  text-decoration-color: var(--color-brand-bright);
}
.tcard__foot {
  margin-top: 1.35rem;
  padding-top: 1.05rem;
  border-top: 1px dashed var(--color-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tcard__code {
  display: flex;
  align-items: center;
  gap: 3px;
}
.tcard__code i {
  width: 2px;
  height: 13px;
  background: var(--color-text-subtle);
  opacity: 0.55;
}
.tcard__code i:nth-child(3n) {
  width: 1px;
  height: 10px;
}
.tcard__code i:nth-child(4n) {
  width: 3px;
}
.tcard__code i:nth-child(5n) {
  height: 8px;
}
.tcard__foot-txt {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.tcard--feature .tcard__lift {
  border-color: rgba(var(--brand-rgb), 0.45);
  background: radial-gradient(120% 90% at 50% -20%, rgba(var(--brand-rgb), 0.16), transparent 55%), repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 9px), repeating-linear-gradient(-112deg, rgba(255, 255, 255, 0.013) 0 1px, transparent 1px 9px), linear-gradient(168deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015) 55%), var(--color-surface);
  box-shadow: 0 30px 80px -32px rgba(var(--brand-rgb), 0.5);
}
.tcard--feature .tcard__ghost {
  -webkit-text-stroke-color: rgba(var(--brand-rgb), 0.28);
}
.tcard--feature:hover .tcard__lift {
  border-color: rgba(var(--brand-rgb), 0.7);
  box-shadow: 0 40px 90px -30px rgba(var(--brand-rgb), 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .tcard {
    transition: none;
  }
  .tcard:hover {
    transform: none;
  }
  .tcard__lift {
    transform: none !important;
  }
  .tcard__sheen,
  .tcard__glare {
    display: none;
  }
}
.mperks {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.mperks__head {
  max-width: 860px;
}

.mperks__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}

.mperks__stage {
  margin-top: clamp(2.2rem, 5vh, 3.4rem);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: start;
}

@media screen and (max-width: 992px) {
  .mperks__stage {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}
.mperks__media {
  position: sticky;
  top: calc(var(--masthead-h, 76px) + 1.6rem);
}

@media screen and (max-width: 992px) {
  .mperks__media {
    position: relative;
    top: auto;
  }
}
.mperks__frame {
  position: relative;
  aspect-ratio: 4/4.6;
  max-height: min(70vh, 640px);
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-line);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

@media screen and (max-width: 992px) {
  .mperks__frame {
    aspect-ratio: 16/10;
    max-height: 420px;
  }
}
.mperks__breathe {
  position: absolute;
  inset: 0;
  display: block;
  will-change: transform;
  animation: perkBreathe 16s ease-in-out infinite alternate;
}

.mperks__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07);
  filter: saturate(0.92) brightness(0.86);
  transition: opacity 0.75s var(--ease-standard), transform 1.4s var(--ease-out-quint);
}

.mperks__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.mperks__frame-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: rgba(10, 12, 18, 0.72);
}

.mperks__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes perkBreathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mperks__breathe {
    animation: none;
  }
  .mperks__img {
    transition: opacity 0.4s;
    transform: none;
  }
}
.perk {
  display: block;
  padding-block: clamp(1.5rem, 2.8vh, 2.1rem);
  border-top: 1px solid var(--color-line);
  opacity: 0.75;
  transition: opacity 0.5s var(--ease-standard);
}

.perk:last-child {
  border-bottom: 1px solid var(--color-line);
}

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

.perk__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: var(--ls-display);
  line-height: 1.12;
  color: #fff;
}

.perk__copy {
  margin-top: 0.55rem;
  max-width: 54ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.perk__tags {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.perk__tags i {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.34rem 0.7rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
}

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

.mpaths__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (max-width: 992px) {
  .mpaths__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.mpaths__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}

.mpaths__sub {
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  padding-bottom: 0.4rem;
}

.mpaths__duo {
  margin-top: clamp(2.2rem, 5vh, 3.4rem);
  display: flex;
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
  height: clamp(440px, 62vh, 580px);
}

@media screen and (max-width: 768px) {
  .mpaths__duo {
    flex-direction: column;
    height: auto;
  }
}
.path {
  position: relative;
  flex: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-line);
  transition: flex 0.8s var(--ease-out-quint), border-color 0.5s;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

@media screen and (max-width: 768px) {
  .path {
    flex: none;
    aspect-ratio: 16/11;
  }
}
@media (hover: hover) and (pointer: fine) {
  .path:hover {
    flex: 1.6;
    border-color: rgba(var(--brand-rgb), 0.4);
  }
}
.path__clip {
  position: absolute;
  inset: 0;
}

.path__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.95) brightness(0.72);
  transition: transform 1.4s var(--ease-out-quint), filter 0.7s;
}

.path:hover .path__img {
  transform: scale(1.14);
  filter: saturate(1.02) brightness(0.82);
}

.path__shade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.1) 30%, rgba(6, 8, 13, 0.88) 92%);
}

.path__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-out-quint);
}

.path:hover .path__line {
  transform: scaleX(1);
}

.path__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.4rem, 2.6vw, 2.4rem);
}

.path__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: var(--ls-display);
  color: #fff;
}

.path__copy {
  margin-top: 0.8rem;
  max-width: 44ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (hover: hover) and (pointer: fine) {
  .path__copy {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s var(--ease-out-quint), opacity 0.5s 0.1s;
  }
}
.path:hover .path__copy {
  max-height: 7em;
  opacity: 1;
}

.path__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
}

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

.path:hover .path__cta svg {
  transform: translateX(5px);
}

.mvoices {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.mvoices__head {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mvoices__head .u-overline {
  color: var(--color-brand-bright);
}
.mvoices__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}
.mvoices__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;
}
.mvoices__stage.is-grabbing {
  cursor: grabbing;
}
@media screen and (max-width: 768px) {
  .mvoices__stage {
    height: clamp(380px, 58vh, 460px);
  }
}
.mvoices__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;
}
.mvoices__ring {
  position: absolute;
  inset: 0;
  perspective: 1500px;
}
.mvoices__nav {
  margin-top: clamp(0.8rem, 1.8vh, 1.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.mvoices__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);
}
.mvoices__btn svg {
  width: 22px;
}
.mvoices__btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--color-brand-contrast, #fff);
  transform: translateY(-3px);
}
.mvoices__count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  min-width: 5.5ch;
  text-align: center;
}
.mvoices__count b {
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.vcard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(280px, 76vw, 460px);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
@media screen and (min-width: 769px) {
  .vcard {
    width: clamp(340px, 34vw, 460px);
  }
}
.vcard__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);
}
.vcard__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;
}
.vcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.6rem;
}
.vcard__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;
}
.vcard__since {
  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;
}
.vcard__text {
  margin-top: 0.9rem;
  font-weight: var(--fw-medium);
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  color: var(--color-text);
  flex: 1;
}
.vcard__who {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}
.vcard__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-line-strong);
}
.vcard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}
.vcard__id {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}
.vcard__name {
  font-weight: var(--fw-semibold);
  color: #fff;
}
.vcard__role {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.vcard__stars {
  margin-left: auto;
  color: var(--color-brand-bright);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  white-space: nowrap;
}
.vcard.is-active .vcard__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) {
  .vcard.is-active:hover .vcard__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);
  }
  .vcard.is-active:hover .vcard__sheen {
    opacity: 1;
    background-position: -10% 0;
  }
}

.mvoices__stage:not(.is-ready) {
  height: auto;
  perspective: none;
  cursor: default;
}
.mvoices__stage:not(.is-ready) .mvoices__halo {
  display: none;
}
.mvoices__stage:not(.is-ready) .mvoices__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) {
  .mvoices__stage:not(.is-ready) .mvoices__ring {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}
.mvoices__stage:not(.is-ready) .vcard {
  position: static;
  width: auto;
  transform: none !important;
}

.mvoices__stage:not(.is-ready) ~ .mvoices__nav {
  display: none;
}

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

.bx__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.bx__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}

.bx__strip {
  margin-top: clamp(2.2rem, 5vh, 3.4rem);
}

@media screen and (min-width: 993px) {
  .bx__strip {
    display: flex;
    gap: 10px;
    height: clamp(440px, 56vh, 560px);
  }
}
@media screen and (max-width: 992px) {
  .bx__strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 0.5rem;
  }
  .bx__strip::-webkit-scrollbar {
    display: none;
  }
}
.bx-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  overflow: hidden;
  isolation: isolate;
  isolation: isolate;
  transform: translateZ(0);
}

.bx-panel__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.bx-panel__img, .bx-panel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.62);
  transform: scale(1.05);
  transition: filter 0.7s var(--ease-standard), transform 1.4s var(--ease-out-quint);
}

.bx-panel__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.05) 42%, rgba(6, 8, 13, 0.9) 96%);
}

.bx-panel__spine {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.35s var(--ease-standard);
}

.bx-panel__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  min-width: min(360px, 78vw);
}

.bx-panel__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: rgba(6, 8, 13, 0.72);
}

.bx-panel__name {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  letter-spacing: var(--ls-display);
  line-height: 1.08;
  color: #fff;
}

.bx-panel__note {
  margin-top: 0.55rem;
  max-width: 40ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.bx-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.45rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
}

.bx-panel__cta svg {
  width: 22px;
  color: var(--color-brand-bright);
  transition: transform 0.5s var(--ease-out-expo);
}

.bx-panel:hover .bx-panel__cta svg {
  transform: translateX(5px);
}

@media screen and (min-width: 993px) {
  .bx-panel {
    flex: 1;
    min-width: 0;
    transition: flex 0.85s var(--ease-out-quint), border-color 0.5s, box-shadow 0.6s;
  }
  .bx-panel .bx-panel__body > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.3s var(--ease-standard), transform 0.4s var(--ease-out-expo);
  }
  .bx-panel.is-active {
    flex: 4.4;
    border-color: rgba(var(--brand-rgb), 0.45);
    box-shadow: 0 30px 70px -32px rgba(var(--brand-rgb), 0.4);
  }
  .bx-panel.is-active .bx-panel__img,
  .bx-panel.is-active .bx-panel__video {
    filter: saturate(1.02) brightness(0.92);
    transform: scale(1);
  }
  .bx-panel.is-active .bx-panel__spine {
    opacity: 0;
  }
  .bx-panel.is-active .bx-panel__body > * {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s var(--ease-standard), transform 0.7s var(--ease-out-expo);
  }
  .bx-panel.is-active .bx-panel__body > *:nth-child(1) {
    transition-delay: 0.22s;
  }
  .bx-panel.is-active .bx-panel__body > *:nth-child(2) {
    transition-delay: 0.28s;
  }
  .bx-panel.is-active .bx-panel__body > *:nth-child(3) {
    transition-delay: 0.34s;
  }
  .bx-panel.is-active .bx-panel__body > *:nth-child(4) {
    transition-delay: 0.4s;
  }
}
@media screen and (max-width: 992px) {
  .bx-panel {
    flex: 0 0 min(78vw, 330px);
    height: clamp(380px, 52vh, 440px);
    scroll-snap-align: center;
  }
  .bx-panel .bx-panel__spine {
    display: none;
  }
  .bx-panel .bx-panel__img,
  .bx-panel .bx-panel__video {
    filter: saturate(0.98) brightness(0.84);
  }
  .bx-panel.is-active {
    border-color: rgba(var(--brand-rgb), 0.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bx-panel {
    transition: none;
  }
  .bx-panel .bx-panel__body > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .bx-panel .bx-panel__img,
  .bx-panel .bx-panel__video {
    transform: none;
    transition: none;
  }
}
.classic {
  position: relative;
  margin-top: clamp(2.4rem, 5.5vh, 3.6rem);
  min-height: clamp(420px, 58vh, 560px);
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  overflow: hidden;
  isolation: isolate;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.classic__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.classic__img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  filter: saturate(0.98) brightness(0.74);
  transition: filter 0.8s var(--ease-standard);
  will-change: transform;
}

.classic:hover .classic__img {
  filter: saturate(1.05) brightness(0.82);
}

.classic__tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 8, 13, 0.72) 0%, rgba(6, 8, 13, 0.28) 42%, transparent 68%), radial-gradient(80% 90% at 82% 20%, rgba(var(--brand-rgb), 0.14), transparent 55%), linear-gradient(180deg, rgba(6, 8, 13, 0.28) 0%, rgba(6, 8, 13, 0.05) 40%, rgba(6, 8, 13, 0.92) 100%);
}

.classic__mark {
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(4rem, 10.5vw, 9.5rem);
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.classic__frame {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
  transition: border-color 0.6s;
}

.classic:hover .classic__frame {
  border-color: rgba(var(--brand-rgb), 0.45);
}

.classic__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(1.8rem, 3.6vw, 3.4rem);
}

.classic__no {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.classic__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  letter-spacing: var(--ls-display);
  line-height: 1.02;
  color: #fff;
}

.classic__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-brand-bright);
}

.classic__copy {
  margin-top: 1rem;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
}

.classic__row {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
}

.classic__meta {
  display: flex;
  gap: 1.6rem;
}

.classic__meta span {
  position: relative;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-left: 1.05rem;
}

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

@media screen and (max-width: 768px) {
  .classic {
    min-height: clamp(380px, 56vh, 480px);
  }
  .classic__mark {
    font-size: clamp(4rem, 22vw, 7rem);
  }
}
.mfaq {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.mfaq__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: start;
}

@media screen and (max-width: 992px) {
  .mfaq__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.mfaq__intro {
  position: sticky;
  top: calc(var(--masthead-h, 76px) + 1.6rem);
}

@media screen and (max-width: 992px) {
  .mfaq__intro {
    position: relative;
    top: auto;
  }
}
.mfaq__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #fff;
}

.mfaq__sub {
  margin-top: 1.1rem;
  max-width: 44ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.mfaq__cta {
  margin-top: 2.2rem;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: radial-gradient(120% 100% at 0% 0%, rgba(var(--brand-rgb), 0.12), transparent 55%), var(--color-surface);
}

.mfaq__cta-tag {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.mfaq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mfaq__list .value {
  border-top: 1px solid var(--color-line);
}

.mfaq__list .value:last-child {
  border-bottom: 1px solid var(--color-line);
}

.mfaq__list .value__bar {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-block: clamp(1.2rem, 2.4vh, 1.6rem);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.mfaq__list .value__name {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: color 0.35s;
}

.mfaq__list .value__bar:hover .value__name {
  color: #fff;
}

.mfaq__list .value__plus {
  position: relative;
  width: 22px;
  height: 22px;
}

.mfaq__list .value__plus::before, .mfaq__list .value__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.6px;
  background: var(--color-text-muted);
  transform: translate(-50%, -50%);
  transition: transform 0.5s var(--ease-out-expo), background 0.35s;
}

.mfaq__list .value__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mfaq__list .value.is-open .value__plus::before {
  background: var(--color-brand-bright);
}

.mfaq__list .value.is-open .value__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
  background: var(--color-brand-bright);
}

.mfaq__list .value__panel {
  overflow: hidden;
}

.mfaq__list .value__panel p {
  padding: 0 2.5rem 1.5rem 0;
  max-width: 62ch;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

@media screen and (max-width: 576px) {
  .mfaq__list .value__panel p {
    padding-left: 0;
    padding-right: 0;
  }
}
[data-theme=ardc] :is(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

[data-theme=ardc] :is(.tcard__join, .finder__join, .mvoices__btn,
.finder__opt, .mhero__tier, .bx-panel, .btn-cta, .totop):focus-visible {
  border-radius: inherit;
}

.media-breathe {
  position: absolute;
  inset: 0;
  display: block;
  will-change: transform;
  pointer-events: none;
  animation: mediaBreathe 16s ease-in-out infinite alternate;
}

@keyframes mediaBreathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}
.path:nth-child(2) .media-breathe,
.finder__opt:nth-child(2) .media-breathe,
.bx-panel:nth-child(2) .media-breathe,
.bx-panel:nth-child(5) .media-breathe {
  animation-delay: -5.5s;
}

.finder__opt:nth-child(3) .media-breathe,
.bx-panel:nth-child(3) .media-breathe,
.bx-panel:nth-child(6) .media-breathe {
  animation-delay: -11s;
}

.bx-panel:nth-child(4) .media-breathe {
  animation-delay: -8s;
}

@media (prefers-reduced-motion: reduce) {
  .media-breathe {
    animation: none;
  }
}
.tcard__more,
.finder__compare,
.finder__skip,
.finder__ctrl {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.cta-band {
  padding-block: var(--section-pad);
}

.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.cta-band__actions .link-arrow {
  margin-top: clamp(0.4rem, 1vh, 0.9rem);
}
