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

[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(.gview, .gdl, .gpub, .btn-cta, .totop,
.gvx__close, .gvx__dismiss, .gcred):focus-visible {
  border-radius: inherit;
}

[data-theme=ardc] .gdoc__meta,
[data-theme=ardc] .gpub__meta,
[data-theme=ardc] .gcat__count,
[data-theme=ardc] .gconst__old-note,
[data-theme=ardc] .gvx__foot-note,
[data-theme=ardc] .gvx__meta,
[data-theme=ardc] .gfeat__meta-item dt,
[data-theme=ardc] .gconst__meta-item dt,
[data-theme=ardc] .gvx__facts-item dt,
[data-theme=ardc] .gvx__block-head {
  color: var(--color-text-muted);
}

.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);
}

.gcover {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  aspect-ratio: 210/285;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(120% 90% at 80% 0%, rgba(var(--brand-rgb), 0.3), transparent 55%), linear-gradient(160deg, #101a33 0%, #0a1122 48%, #060a14 100%);
  overflow: hidden;
  display: block;
  transform: perspective(900px) rotateX(var(--ry)) rotateY(var(--rx));
  transition: transform 0.5s var(--ease-out-quint), box-shadow 0.5s var(--ease-standard);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 12px 30px -18px rgba(var(--brand-rgb), 0.35);
  isolation: isolate;
  transform: translateZ(0);
}
.gcover__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: 26px 26px;
  mask-image: linear-gradient(200deg, #000 20%, transparent 85%);
  -webkit-mask-image: linear-gradient(200deg, #000 20%, transparent 85%);
}
.gcover__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 46% at 24% 100%, rgba(var(--brand-rgb), 0.22), transparent 65%);
}
.gcover__rule {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-brand-bright), var(--color-brand) 55%, var(--color-brand-strong));
}
.gcover__rule::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
}
.gcover__club {
  position: absolute;
  left: 11%;
  right: 10%;
  top: 8.5%;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(242, 244, 247, 0.66);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gcover__crest {
  position: absolute;
  right: 9%;
  top: 15%;
  width: clamp(26px, 16%, 42px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
}
.gcover__year {
  position: absolute;
  left: 10%;
  top: 30%;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 30cqw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}
.gcover__name {
  position: absolute;
  left: 10.5%;
  top: 58%;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 11cqw, 1.7rem);
  line-height: 1.14;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.gcover__name--solo {
  top: 32%;
  font-size: clamp(1.5rem, 15cqw, 2.6rem);
  color: #fff;
}
.gcover__foot {
  position: absolute;
  left: 11%;
  right: 10%;
  bottom: 7%;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 244, 247, 0.5);
}
.gcover__flag {
  position: absolute;
  right: 9%;
  bottom: 16%;
}
.gcover__sheen {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.14) 50%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.gcover {
  container-type: inline-size;
}
.gcover--xl {
  width: min(400px, 100%);
}
.gcover--tall {
  width: min(340px, 100%);
  aspect-ratio: 210/297;
}
.gcover--md {
  width: 100%;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.75);
}
.gcover--sm {
  width: 100%;
  box-shadow: 0 16px 34px -20px rgba(0, 0, 0, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .gcover {
    transform: none;
    transition: none;
  }
}
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.42em 0.85em;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--color-line-strong);
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.03);
}
.gbadge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.gbadge--current {
  color: var(--color-brand-bright);
  border-color: rgba(var(--brand-rgb), 0.55);
  background: rgba(var(--brand-rgb), 0.12);
}
.gbadge--current::before {
  box-shadow: 0 0 10px 1px rgba(var(--brand-rgb), 0.9);
}
.gbadge--archive {
  color: var(--color-text-muted);
}
.gbadge--superseded {
  color: #e3a63c;
  border-color: rgba(227, 166, 60, 0.5);
  background: rgba(227, 166, 60, 0.1);
}
.gbadge--soon {
  border-style: dashed;
  color: var(--color-text-subtle);
}
.gbadge--soon::before {
  display: none;
}
.gbadge--quiet {
  color: var(--color-text-subtle);
  border-color: var(--color-line);
}
.gbadge--quiet::before {
  display: none;
}

.gview {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.4s var(--ease-standard), background 0.4s var(--ease-standard), transform 0.45s var(--ease-out-expo), color 0.4s var(--ease-standard);
}
.gview svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--color-brand-bright);
  transition: transform 0.45s var(--ease-out-expo);
}
.gview:hover {
  border-color: rgba(var(--brand-rgb), 0.65);
  background: rgba(var(--brand-rgb), 0.12);
  transform: translateY(-2px);
}
.gview:hover svg {
  transform: translateY(1px) scale(1.08);
}
.gview:active {
  transform: translateY(0) scale(0.98);
}
.gview--lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.75rem;
}

.gdl {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(0.4rem, 1vh, 0.9rem);
}
.gdl__ic {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  color: var(--color-brand-bright);
  transition: background 0.4s var(--ease-standard), border-color 0.4s var(--ease-standard), color 0.4s var(--ease-standard);
}
.gdl__ic svg {
  width: 18px;
  height: 18px;
  transition: transform 0.45s var(--ease-out-expo);
}
.gdl__text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.gdl__label {
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: color 0.4s var(--ease-standard);
}
.gdl__hint {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.gdl:hover .gdl__ic {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--color-brand-contrast, #fff);
}
.gdl:hover .gdl__ic svg {
  transform: translateY(2px);
}
.gdl:hover .gdl__label {
  color: #fff;
}

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

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

.ghero__blueprint {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(rgba(var(--brand-rgb), 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--brand-rgb), 0.09) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
  mask-image: radial-gradient(120% 100% at 30% 80%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 30% 80%, #000 25%, transparent 78%);
}

.ghero__halo {
  position: absolute;
  left: -12%;
  bottom: -18%;
  width: min(880px, 82vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.22), transparent 62%);
}

.ghero__beam {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  width: 34%;
  transform: rotate(14deg) translateX(-80%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.028) 45%, rgba(var(--brand-rgb), 0.05) 55%, transparent);
  animation: gheroBeam 13s var(--ease-standard) infinite;
}

.ghero__seal {
  position: absolute;
  right: clamp(2rem, 9vw, 9rem);
  top: clamp(6.5rem, 16vh, 10rem);
  width: clamp(190px, 20vw, 270px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: 0.9;
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .ghero__seal {
    display: none;
  }
}
.ghero__seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: gheroSeal 46s linear infinite;
}

.ghero__seal-edge {
  fill: none;
  stroke: var(--color-line-strong);
  stroke-width: 1;
  stroke-dasharray: 0.6 1.6;
}

.ghero__seal-edge--in {
  stroke: rgba(var(--brand-rgb), 0.4);
  stroke-dasharray: none;
}

.ghero__seal-text {
  fill: var(--color-text-subtle);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.ghero__seal-crest {
  width: 24%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 6px 18px rgba(var(--brand-rgb), 0.45));
}

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

.ghero__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);
}

.ghero__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: gheroPulse 2.4s var(--ease-standard) infinite;
}

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

.ghero__title em {
  font-style: normal;
}

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

.ghero__creds {
  list-style: none;
  margin: clamp(1.3rem, 3.2vh, 2rem) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ghero__actions {
  margin-top: clamp(1.6rem, 4.5vh, 2.8rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 2.6vw, 2.2rem);
}

.ghero__actions .link-arrow {
  margin-top: clamp(0.4rem, 1vh, 0.9rem);
}

.gcred {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 1em;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.gcred::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  flex: none;
}

.ghero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: calc(var(--section-pad) + 0.4rem);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  writing-mode: vertical-rl;
}

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

.ghero__scroll-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 14px;
  background: var(--color-brand-bright);
  transform: translate(-50%, -100%);
  animation: gheroScroll 2.2s var(--ease-in-out-quint) infinite;
}

@keyframes gheroPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.78);
  }
}
@keyframes gheroScroll {
  0% {
    transform: translate(-50%, -100%);
  }
  60%, 100% {
    transform: translate(-50%, 500%);
  }
}
@keyframes gheroSeal {
  to {
    transform: rotate(360deg);
  }
}
@keyframes gheroBeam {
  0%, 12% {
    transform: rotate(14deg) translateX(-80%);
  }
  55%, 100% {
    transform: rotate(14deg) translateX(340%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ghero__eyebrow-dot,
  .ghero__scroll-dot,
  .ghero__seal-ring,
  .ghero__beam {
    animation: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .ghero:not(.is-live) .line__inner {
    transform: translateY(120%);
    animation: ghero-safety 0.9s ease 6s forwards;
  }
  html.has-js .ghero:not(.is-live) [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    animation: ghero-safety 0.9s ease 6s forwards;
  }
  html.has-js .ghero:not(.is-live) .ghero__scroll,
  html.has-js .ghero:not(.is-live) .ghero__seal {
    opacity: 0;
    animation: ghero-safety 0.9s ease 6s forwards;
  }
}
@keyframes ghero-safety {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gprin {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.gprin__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
@media screen and (max-width: 992px) {
  .gprin__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.gprin__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;
}
.gprin__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--color-text);
}
.gprin__copy {
  margin-top: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.gprin__copy b {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}
.gprin__links {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.4rem;
}
.gprin__stats {
  list-style: none;
  margin: clamp(2.4rem, 6vh, 4rem) 0 0;
  padding: clamp(1.4rem, 3vw, 2.2rem) 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
}
@media screen and (max-width: 992px) {
  .gprin__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 1.2rem;
  }
}
.gprin__pillars {
  margin-top: clamp(2.8rem, 7vh, 4.6rem);
}
.gprin__pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
@media screen and (max-width: 992px) {
  .gprin__pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.gpstat {
  position: relative;
  padding-left: 1.1rem;
}
.gpstat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 2px;
  background: linear-gradient(180deg, var(--color-brand-bright), rgba(var(--brand-rgb), 0.15));
}
.gpstat__num {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: var(--ls-display);
  color: #fff;
}
.gpstat__label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  max-width: 24ch;
}

.gpillar {
  position: relative;
  container-type: inline-size;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008) 60%);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.55s var(--ease-out-expo), border-color 0.45s var(--ease-standard), box-shadow 0.55s var(--ease-standard);
  isolation: isolate;
  transform: translateZ(0);
}
.gpillar::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 56%;
  height: 62%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(120% 120% at 100% 0%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 120% at 100% 0%, #000 30%, transparent 72%);
  pointer-events: none;
}
.gpillar__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand-bright), var(--color-brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: 2;
}
.gpillar__no {
  position: absolute;
  right: -0.05em;
  bottom: -0.1em;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: 34cqw;
  line-height: 0.8;
  letter-spacing: var(--ls-display);
  color: rgba(var(--brand-rgb), 0.13);
  pointer-events: none;
  user-select: none;
  transition: color 0.5s var(--ease-standard), transform 0.6s var(--ease-out-expo);
}
.gpillar__spot {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(280px 280px at var(--px, 50%) var(--py, 50%), rgba(var(--brand-rgb), 0.18), transparent 72%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-standard);
  pointer-events: none;
}
.gpillar__body {
  position: relative;
  z-index: 1;
}
.gpillar__ic {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--color-brand-bright);
  transition: background 0.45s var(--ease-standard), transform 0.55s var(--ease-out-expo);
}
.gpillar__ic svg {
  width: 21px;
  height: 21px;
  position: relative;
  z-index: 1;
}
.gpillar__ic::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--brand-rgb), 0.38);
  animation: gpillarRing 22s linear infinite;
}
.gpillar__name {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.gpillar__copy {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.gpillar__fact {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.gpillar__fact-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.gpillar__fact-val {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
.gpillar:hover, .gpillar:focus-within {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 26px 50px -30px rgba(var(--brand-rgb), 0.45);
}
.gpillar:hover .gpillar__bar, .gpillar:focus-within .gpillar__bar {
  transform: scaleX(1);
}
.gpillar:hover .gpillar__no, .gpillar:focus-within .gpillar__no {
  color: rgba(var(--brand-rgb), 0.22);
  transform: translateY(-0.02em);
}
.gpillar:hover .gpillar__spot, .gpillar:focus-within .gpillar__spot {
  opacity: 1;
}
.gpillar:hover .gpillar__ic, .gpillar:focus-within .gpillar__ic {
  background: rgba(var(--brand-rgb), 0.2);
  transform: translateY(-2px);
}

@keyframes gpillarRing {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gpillar,
  .gpillar__ic,
  .gpillar__ic::before,
  .gpillar__bar,
  .gpillar__no,
  .gpillar__spot {
    transition: none;
    animation: none;
  }
}
.gfeat {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.gfeat__head {
  max-width: 100%;
}
.gfeat__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;
}
.gfeat__stage {
  margin-top: clamp(2rem, 5vh, 3.4rem);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.4rem, 6vw, 6.5rem);
  align-items: center;
}
@media screen and (max-width: 992px) {
  .gfeat__stage {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.gfeat__coverwrap {
  position: relative;
  justify-self: start;
  width: min(400px, 100%);
}
.gfeat__coverwrap::before, .gfeat__coverwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  z-index: -1;
}
.gfeat__coverwrap::before {
  transform: translate(14px, 12px) rotate(1.4deg);
  opacity: 0.75;
}
.gfeat__coverwrap::after {
  transform: translate(27px, 24px) rotate(2.8deg);
  opacity: 0.4;
}
@media screen and (max-width: 576px) {
  .gfeat__coverwrap::before {
    transform: translate(9px, 9px) rotate(1deg);
  }
  .gfeat__coverwrap::after {
    display: none;
  }
}
.gfeat .gcover--xl:hover .gcover__sheen {
  transform: translateX(120%);
  transition: transform 1s var(--ease-out-expo);
}
.gfeat__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.gfeat__lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--color-text);
}
.gfeat__copy {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 58ch;
}
.gfeat__meta {
  margin: 1.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .gfeat__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .gfeat__meta {
    gap: 0.9rem 0.8rem;
  }
}
.gfeat__meta-item {
  border-top: 1px solid var(--color-line-strong);
  padding-top: 0.65rem;
}
.gfeat__meta-item dt {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.gfeat__meta-item dd {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
.gfeat__actions {
  margin-top: clamp(1.6rem, 3.6vh, 2.4rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 2.6vw, 2rem);
}

@media (prefers-reduced-motion: reduce) {
  .gfeat .gcover--xl:hover .gcover__sheen {
    transform: none;
    transition: none;
  }
}
.garch {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.garch__head {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(1.6rem, 4vw, 5rem);
  align-items: end;
}
@media screen and (max-width: 992px) {
  .garch__head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.garch__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;
}
.garch__intro {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 46ch;
  justify-self: end;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 992px) {
  .garch__intro {
    justify-self: start;
  }
}
.garch__shelf {
  list-style: none;
  margin: clamp(2rem, 5vh, 3.2rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .garch__shelf {
    grid-template-columns: 1fr;
  }
}
.garch__older {
  margin-top: clamp(1.4rem, 3vh, 2rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.2rem, 2.6vw, 2rem);
  border: 1px dashed var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.015);
}
.garch__older-ic {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--color-line-strong);
  color: var(--color-brand-bright);
  flex: none;
}
.garch__older-ic svg {
  width: 20px;
  height: 20px;
}
.garch__older-copy {
  flex: 1 1 26ch;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.garch__older-copy b {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.gpub {
  position: relative;
  display: grid;
  grid-template-columns: clamp(96px, 10vw, 136px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
  align-items: center;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006) 60%);
  overflow: hidden;
  transition: transform 0.55s var(--ease-out-expo), border-color 0.45s var(--ease-standard), box-shadow 0.55s var(--ease-standard);
  isolation: isolate;
  transform: translateZ(0);
}
.gpub::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(130% 120% at 100% 0%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(130% 120% at 100% 0%, #000 20%, transparent 70%);
  pointer-events: none;
}
.gpub__cover {
  position: relative;
}
.gpub__cover .gcover {
  width: 100%;
  transition: transform 0.55s var(--ease-out-expo);
}
.gpub__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
}
.gpub__name {
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: color 0.4s var(--ease-standard);
}
.gpub__sum {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 44ch;
}
.gpub__meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.gpub__actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gpub:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-rgb), 0.4);
  box-shadow: 0 30px 60px -34px rgba(var(--brand-rgb), 0.5);
}
.gpub:hover .gpub__name {
  color: #fff;
}
.gpub:hover .gpub__cover .gcover {
  transform: perspective(900px) translateY(-3px) rotateX(2deg);
}
.gpub:hover .gcover__sheen {
  transform: translateX(120%);
  transition: transform 1s var(--ease-out-expo);
}
@media screen and (max-width: 576px) {
  .gpub {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gpub,
  .gpub__cover .gcover {
    transition: none;
  }
  .gpub:hover {
    transform: none;
  }
  .gpub:hover .gpub__cover .gcover {
    transform: none;
  }
  .gpub:hover .gcover__sheen {
    transform: none;
    transition: none;
  }
}
.glib {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.glib__head {
  max-width: 44rem;
}
.glib__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;
}
.glib__intro {
  margin-top: 1.1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 58ch;
}
.glib__cats {
  margin-top: clamp(2.2rem, 5vh, 3.4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 5vh, 3.4rem);
}

.gconst {
  margin-top: clamp(2rem, 5vh, 3.2rem);
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: radial-gradient(90% 100% at 100% 0%, rgba(var(--brand-rgb), 0.1), transparent 55%), linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005) 60%);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.gconst::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(100% 100% at 80% 50%, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(100% 100% at 80% 50%, #000 25%, transparent 75%);
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .gconst {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .gconst::before {
    display: none;
  }
}
.gconst__name {
  margin-top: 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;
}
.gconst__copy {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 56ch;
}
.gconst__meta {
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 30rem;
}
@media screen and (max-width: 576px) {
  .gconst__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gconst__meta-item {
  border-top: 1px solid var(--color-line-strong);
  padding-top: 0.65rem;
}
.gconst__meta-item dt {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.gconst__meta-item dd {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
.gconst__actions {
  margin-top: clamp(1.4rem, 3vh, 2rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem 1.8rem;
}
.gconst__actions .gdl {
  margin-top: 0;
}
.gconst__old {
  margin-top: clamp(1.6rem, 3.4vh, 2.2rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
}
.gconst__old-name {
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
}
.gconst__old-note {
  font-size: 0.76rem;
  color: var(--color-text-subtle);
  flex: 1 1 22ch;
}
.gconst__old-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-line-strong);
  padding-bottom: 2px;
  transition: color 0.4s var(--ease-standard), border-color 0.4s var(--ease-standard);
}
.gconst__old-link:hover {
  color: var(--color-brand-bright);
  border-color: var(--color-brand-bright);
}
.gconst__coverwrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.gconst .gcover--tall:hover .gcover__sheen {
  transform: translateX(120%);
  transition: transform 1s var(--ease-out-expo);
}

.gcat__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--color-line-strong);
}
.gcat__no {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(var(--brand-rgb), 0.5);
  border-radius: var(--radius-sm);
  background: rgba(var(--brand-rgb), 0.1);
  font-size: 0.875rem;
  color: var(--color-brand-bright);
  flex: none;
}
.gcat__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.gcat__count {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}
.gcat__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gcat__list > li + li {
  border-top: 1px solid var(--color-line);
}

.gdoc {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto auto;
  grid-template-areas: "ic body badge actions";
  align-items: center;
  gap: 0.9rem 1.2rem;
  padding: clamp(1.1rem, 2.2vw, 1.5rem) clamp(0.6rem, 1.4vw, 1.1rem);
  border-radius: var(--radius-md);
  transition: background 0.4s var(--ease-standard);
}
.gdoc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 2px;
  background: var(--color-brand-bright);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease-out-expo);
}
.gdoc:hover {
  background: rgba(255, 255, 255, 0.025);
}
.gdoc:hover::before {
  transform: scaleY(1);
}
.gdoc:hover .gdoc__ic {
  border-color: rgba(var(--brand-rgb), 0.55);
  color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.1);
}
.gdoc:hover .gdoc__name {
  color: #fff;
}
.gdoc__ic {
  grid-area: ic;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line-strong);
  border-radius: 12px;
  color: var(--color-text-muted);
  transition: border-color 0.4s var(--ease-standard), color 0.4s var(--ease-standard), background 0.4s var(--ease-standard);
}
.gdoc__ic svg {
  width: 20px;
  height: 20px;
}
.gdoc__body {
  grid-area: body;
  min-width: 0;
}
.gdoc__name {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: color 0.4s var(--ease-standard);
}
.gdoc__desc {
  margin-top: 0.3rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 64ch;
}
.gdoc__meta {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.gdoc > .gbadge {
  grid-area: badge;
  justify-self: end;
}
.gdoc__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gdoc--soon .gdoc__ic,
.gdoc--soon .gdoc__name {
  opacity: 0.75;
}
@media screen and (max-width: 992px) {
  .gdoc {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    grid-template-areas: "ic body badge" "ic actions actions";
    row-gap: 0.9rem;
    align-items: start;
  }
  .gdoc > .gbadge {
    margin-top: 0.2rem;
  }
  .gdoc__actions {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  .gdoc {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas: "ic body" "ic badge" "ic actions";
  }
  .gdoc__ic {
    width: 40px;
    height: 40px;
  }
  .gdoc__ic svg {
    width: 18px;
    height: 18px;
  }
  .gdoc > .gbadge {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gdoc,
  .gdoc::before,
  .gdoc__ic,
  .gdoc__name,
  .gconst .gcover--tall:hover .gcover__sheen {
    transition: none;
  }
}
.gvx {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 3vw, 2.5rem);
}
.gvx[hidden] {
  display: none;
}
.gvx__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.gvx__panel {
  position: relative;
  width: min(900px, 100%);
  max-height: min(88svh, 100%);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-xl);
  background: radial-gradient(80% 40% at 100% 0%, rgba(var(--brand-rgb), 0.08), transparent 60%), linear-gradient(175deg, #161a22, #0d1016 65%);
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.gvx__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-bright), var(--color-brand) 45%, transparent 85%);
  z-index: 1;
}
.gvx__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.1rem, 2.6vw, 1.5rem) clamp(1.2rem, 3vw, 1.7rem) 1.1rem;
  border-bottom: 1px solid var(--color-line);
  flex: none;
}
.gvx__head-doc {
  min-width: 0;
}
.gvx__close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.4s var(--ease-standard), background 0.4s var(--ease-standard), transform 0.45s var(--ease-out-expo);
}
.gvx__close:hover {
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.12);
  transform: rotate(90deg);
}
.gvx__close-x {
  position: absolute;
  inset: 0;
}
.gvx__close-x span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 1.6px;
  background: var(--color-text);
  border-radius: 2px;
}
.gvx__close-x span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gvx__close-x span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gvx__stage {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  padding: clamp(1.3rem, 3vw, 1.9rem) clamp(1.2rem, 3vw, 1.7rem);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gvx__stage {
    grid-template-columns: 1fr;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
.gvx__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
@media screen and (max-width: 768px) {
  .gvx__side {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .gvx__side .gcover--md {
    width: 96px;
  }
  .gvx__side .gcover--md .gcover__year {
    font-size: 30cqw;
  }
  .gvx__side .gcover--md .gcover__name {
    font-size: 11cqw;
  }
}
.gvx__meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.7;
}
.gvx__reader {
  min-width: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.4rem;
}
@media screen and (max-width: 768px) {
  .gvx__reader {
    overflow: visible;
    padding-right: 0;
  }
}
.gvx__reader:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}
.gvx__kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  margin-bottom: 0.5rem;
}
.gvx__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: var(--ls-display);
  color: #fff;
}
.gvx__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 58ch;
}
.gvx__block {
  margin-top: 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.018);
  padding: 1rem 1.2rem 1.1rem;
}
.gvx__block-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--color-line);
}
.gvx__block-head::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--color-brand-bright);
  flex: none;
}
.gvx__toc {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gvx__toc li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.6rem 0;
}
.gvx__toc li + li {
  border-top: 1px solid var(--color-line);
}
.gvx__toc-no {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--color-brand-bright);
  flex: none;
}
.gvx__toc-name {
  font-size: 0.88rem;
  color: var(--color-text);
  transition: color 0.3s var(--ease-standard);
}
.gvx__toc li:hover .gvx__toc-name {
  color: #fff;
}
.gvx__facts {
  margin: 0;
  padding-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.4rem;
}
@media screen and (max-width: 576px) {
  .gvx__facts {
    grid-template-columns: 1fr;
  }
}
.gvx__facts-item dt {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.gvx__facts-item dd {
  margin: 0.28rem 0 0;
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
.gvx__foot {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 3vw, 1.7rem) 1.2rem;
  border-top: 1px solid var(--color-line);
}
.gvx__foot .btn-cta {
  margin-top: 0;
}
@media screen and (max-width: 576px) {
  .gvx__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .gvx__foot .btn-cta {
    justify-content: space-between;
  }
}
.gvx__foot-note {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  text-align: right;
  max-width: 38ch;
  line-height: 1.7;
}
@media screen and (max-width: 576px) {
  .gvx__foot-note {
    text-align: center;
    max-width: none;
  }
}

.btn-cta--slim {
  --btn-h: 46px;
  font-size: 0.75rem;
}

html.gvx-open,
html.gvx-open body {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .gvx__close {
    transition: none;
  }
}
