: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, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

[data-theme=ardc] :is(.btn-cta, .totop, .value__bar,
.afilm__thumb, .afilm__play):focus-visible {
  border-radius: inherit;
}

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

.ahead {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.ahead__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}
.ahead__sub {
  margin-top: 1.2rem;
  max-width: 58ch;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}
.ahead--center {
  text-align: center;
}
.ahead--center .ahead__sub {
  margin-inline: auto;
}
.ahead--split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}
.ahead--split .ahead__sub {
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .ahead--split {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

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

.ahero__bg {
  position: absolute;
  inset: -8% 0;
  z-index: -3;
  pointer-events: none;
}

.ahero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  filter: saturate(0.8) contrast(1.06) brightness(0.86);
  will-change: transform;
}

.ahero__tint {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(200deg, rgba(6, 8, 13, 0.06) 0%, rgba(6, 8, 13, 0.55) 62%, rgba(6, 8, 13, 0.94) 100%), linear-gradient(90deg, rgba(6, 8, 13, 0.84) 0%, rgba(6, 8, 13, 0.28) 46%, rgba(6, 8, 13, 0.05) 100%), radial-gradient(90% 70% at 18% 88%, rgba(var(--brand-rgb), 0.3), transparent 62%);
}

.ahero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  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: 34px 34px;
  mask-image: radial-gradient(110% 95% at 22% 85%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(110% 95% at 22% 85%, #000 20%, transparent 72%);
}

.ahero__streak {
  position: absolute;
  left: -10%;
  right: 30%;
  bottom: 38%;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.65), transparent);
  opacity: 0.55;
}

@media screen and (max-width: 992px) {
  .ahero__streak {
    display: none;
  }
}
.ahero__header-scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: clamp(140px, 20vh, 230px);
  background: linear-gradient(180deg, rgba(4, 5, 9, 0.88) 0%, rgba(4, 5, 9, 0.6) 45%, rgba(4, 5, 9, 0.2) 78%, transparent 100%);
  pointer-events: none;
}

.ahero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
}

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

.ahero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 14px rgba(var(--brand-rgb), 0.9);
}

.ahero__title {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.6rem, 6.6vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}

.ahero__lead {
  margin-top: 1.5rem;
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

.ahero__lead strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.ahero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.ahero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: rgba(10, 12, 18, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

.ahero__meta-item i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-brand-bright);
}

.ahero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.3rem, 2.6vw, 2.2rem);
  margin-top: clamp(1.6rem, 3.4vh, 2.6rem);
}

.ahero__telemetry {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 3rem);
  margin-top: clamp(1.8rem, 4.2vh, 3.4rem);
  padding-top: 1.15rem;
  border-top: 1px solid var(--color-line);
}

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

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

.ahero__tel-val {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

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

.ahero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(1.6rem, 4vh, 3rem);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-text-subtle);
}

@media screen and (max-width: 992px) {
  .ahero__scroll {
    display: none;
  }
}
.ahero__scroll-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.ahero__scroll-line {
  position: relative;
  width: 1px;
  height: 52px;
  background: var(--color-line-strong);
  overflow: hidden;
}

.ahero__scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--color-brand-bright);
  animation: aheroScroll 2.2s var(--ease-in-out-quint) infinite;
}

@media screen and (max-width: 768px) {
  .ahero__meta-item {
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
  }
  .ahero__telemetry {
    gap: 1rem 1.6rem;
  }
}
@keyframes aheroScroll {
  0% {
    top: -40%;
  }
  100% {
    top: 120%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ahero__scroll-line::after {
    animation: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .ahero:not(.is-live) .line__inner {
    transform: translateY(120%);
    animation: ahero-safety 0.9s ease 6s forwards;
  }
  html.has-js .ahero:not(.is-live) [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    animation: ahero-safety 0.9s ease 6s forwards;
  }
  html.has-js .ahero:not(.is-live) .ahero__scroll,
  html.has-js .ahero:not(.is-live) .ahero__telemetry {
    opacity: 0;
    animation: ahero-safety 0.9s ease 6s forwards;
  }
}
@keyframes ahero-safety {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.atick {
  position: relative;
  border-block: 1px solid var(--color-line);
  padding-block: 1.05rem;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  background: radial-gradient(120% 300% at 50% 50%, rgba(var(--brand-rgb), 0.05), transparent 70%), var(--color-bg-2);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.atick__row {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: atick 42s linear infinite;
}
.atick:hover .atick__row {
  animation-play-state: paused;
}
.atick__set {
  display: flex;
  align-items: center;
}
.atick__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-inline: clamp(1.6rem, 3vw, 2.6rem);
  white-space: nowrap;
}
.atick__item b {
  font-weight: var(--fw-medium);
  color: #fff;
}
.atick__item::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(var(--brand-rgb), 0.6);
  border-top: 1px solid rgba(var(--brand-rgb), 0.6);
  transform: translateY(-50%) rotate(45deg);
}

@keyframes atick {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .atick__row {
    animation: none;
  }
}
.abrief {
  padding-block: var(--section-pad);
}
.abrief__stage {
  max-width: var(--maxw);
  margin: clamp(2.4rem, 5.5vh, 3.8rem) auto 0;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}
@media screen and (max-width: 992px) {
  .abrief__stage {
    grid-template-columns: 1fr;
  }
}
.abrief__visual {
  position: sticky;
  top: calc(var(--masthead-h, 76px) + 2rem);
}
@media screen and (max-width: 992px) {
  .abrief__visual {
    display: none;
  }
}
.abrief__frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-bg-2);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.abrief__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 0.85s var(--ease-standard), transform 1.3s var(--ease-out-expo);
  will-change: opacity, transform;
}
.abrief__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03);
}
.abrief__img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.abrief__frame-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.04) 0%, rgba(6, 8, 13, 0.16) 55%, rgba(6, 8, 13, 0.78) 100%);
  pointer-events: none;
}
.abrief__frame-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 33.33% 100%;
  opacity: 0.4;
  pointer-events: none;
}
.abrief__readout {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: rgba(6, 8, 13, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.abrief__readout-idx {
  font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  color: var(--color-brand-bright);
}
.abrief__readout-sep {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
}
.abrief__readout-label {
  margin-left: 0.15rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}
.abrief__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.abrief__row {
  position: relative;
  padding: clamp(1.5rem, 2.6vh, 2.1rem) 0 clamp(1.5rem, 2.6vh, 2.1rem) 1.4rem;
  border-top: 1px solid var(--color-line);
  cursor: pointer;
}
.abrief__row:last-child {
  border-bottom: 1px solid var(--color-line);
}
.abrief__row-rail {
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: transparent;
  transition: background 0.5s var(--ease-standard);
}
.abrief__row-body {
  min-width: 0;
}
.abrief__row-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  transition: color 0.5s var(--ease-standard);
}
.abrief__row-title {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.45s var(--ease-standard);
}
.abrief__row-copy {
  margin-top: 0.7rem;
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--color-text-muted);
}
.abrief__row-img {
  position: relative;
  display: none;
  margin-top: 1.1rem;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.abrief__row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.abrief__row:hover .abrief__row-eyebrow, .abrief__row:focus-visible .abrief__row-eyebrow {
  color: var(--color-brand-bright);
}
.abrief__row:hover .abrief__row-title, .abrief__row:focus-visible .abrief__row-title {
  color: #fff;
}
.abrief__row.is-active .abrief__row-rail {
  background: linear-gradient(180deg, var(--color-brand-bright), rgba(var(--brand-rgb), 0.25));
}
.abrief__row.is-active .abrief__row-eyebrow {
  color: var(--color-brand-bright);
}
.abrief__row.is-active .abrief__row-title {
  color: #fff;
}
@media screen and (max-width: 992px) {
  .abrief__row {
    cursor: default;
  }
  .abrief__row-img {
    display: block;
  }
  .abrief__row-rail {
    background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.5), transparent);
  }
}
.abrief__statement {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(3.5rem, 8vh, 5.5rem) auto 0;
  padding-inline: var(--gutter);
}
.abrief__quote-mark {
  position: absolute;
  z-index: 0;
  top: 45%;
  right: clamp(0.5rem, 4vw, 4rem);
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(11rem, 20vw, 19rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .abrief__quote-mark {
    display: none;
  }
}
.abrief__mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.abrief__mark svg {
  width: 15px;
  height: 15px;
  color: var(--color-brand-bright);
}
.abrief__mark-label {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.abrief__quote {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.3rem, 3vh, 2rem);
  max-width: 900px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.14;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}
.abrief__frag {
  color: var(--color-text-subtle);
}
.abrief__frag--accent {
  color: var(--color-text-subtle);
}
html:not(.has-js) .abrief__statement .abrief__frag, .abrief__statement.astmt-static .abrief__frag {
  color: var(--color-text);
}
html:not(.has-js) .abrief__statement .abrief__frag--accent, .abrief__statement.astmt-static .abrief__frag--accent {
  color: var(--color-brand-bright);
}

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

@keyframes mediaBreathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}
.abrief__row:nth-child(2) .media-breathe {
  animation-delay: -4s;
}

.abrief__row:nth-child(3) .media-breathe {
  animation-delay: -8s;
}

.abrief__row:nth-child(4) .media-breathe {
  animation-delay: -12s;
}

@media (prefers-reduced-motion: reduce) {
  .media-breathe {
    animation: none;
  }
}
.apath {
  padding-block: var(--section-pad);
  position: relative;
  background: radial-gradient(80% 90% at 50% 100%, rgba(var(--brand-rgb), 0.1), transparent 60%), linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
}
.apath .ahead {
  margin-bottom: clamp(2.4rem, 5.5vh, 3.8rem);
}
.apath__stage {
  position: relative;
  overflow: hidden;
  padding-block: clamp(0.5rem, 1.4vh, 1rem);
  background: radial-gradient(80% 120% at 50% 120%, rgba(var(--brand-rgb), 0.14), transparent 60%), linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
}
.apath__floor {
  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);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 80% at 50% 60%, #000, transparent 85%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 60%, #000, transparent 85%);
}
.apath {
  --panel-w: clamp(280px, 38vw, 540px);
}
.apath__track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  will-change: transform;
  padding-left: calc(max((100vw - var(--maxw)) / 2, 0px) + var(--gutter));
}
.apath__panel {
  position: relative;
  flex: none;
  width: var(--panel-w);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  transition: opacity 0.5s var(--ease-standard), transform 0.6s var(--ease-out-expo);
}
.apath__shot {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-bg-2);
  box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0);
  transition: border-color 0.5s var(--ease-standard), box-shadow 0.6s var(--ease-standard);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.apath__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.2), rgba(6, 8, 13, 0.68));
}
.apath__shot-media {
  position: absolute;
  inset: 0;
  transform: scale(1);
  filter: saturate(0.55) brightness(0.6);
  transition: transform 0.9s var(--ease-out-expo), filter 0.7s var(--ease-standard);
}
.apath__shot-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apath:not(.is-static) .apath__panel.is-active .apath__shot-media .media-breathe {
  animation-play-state: paused;
}
.apath__panel:nth-child(2) .apath__shot-media .media-breathe {
  animation-delay: -4s;
}
.apath__panel:nth-child(3) .apath__shot-media .media-breathe {
  animation-delay: -8s;
}
.apath__panel:nth-child(4) .apath__shot-media .media-breathe {
  animation-delay: -12s;
}
.apath__body {
  padding-inline: 0.3rem;
}
.apath__idx {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  transition: color 0.5s;
}
.apath__idx b {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transition: background 0.5s, box-shadow 0.5s;
}
.apath__name {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.apath__copy {
  margin-top: 0.85rem;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--color-text-muted);
}
.apath__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: border-color 0.5s, color 0.5s, background 0.5s;
}
.apath__tag i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.apath__panel.is-active .apath__shot {
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: 0 26px 54px -30px rgba(var(--brand-rgb), 0.5);
}
.apath__panel.is-active .apath__shot-media {
  transform: scale(1.03);
  filter: saturate(1) brightness(1);
}
.apath__panel.is-active .apath__idx b {
  background: var(--color-brand-bright);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.25);
}
.apath__panel.is-active .apath__idx {
  color: var(--color-text);
}
.apath__panel.is-active .apath__copy {
  color: var(--color-text);
}
.apath__panel.is-active .apath__tag {
  border-color: rgba(var(--brand-rgb), 0.5);
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--color-brand-bright);
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.12), 0 10px 22px -14px rgba(var(--brand-rgb), 0.65);
}
.apath__panel:not(.is-active) {
  opacity: 0.75;
}
.apath__panel:not(.is-active):hover {
  opacity: 0.85;
}
.apath__panel:hover {
  transform: translateY(-8px);
}
.apath__panel:hover .apath__shot {
  border-color: rgba(var(--brand-rgb), 0.5);
  box-shadow: 0 32px 64px -26px rgba(var(--brand-rgb), 0.6);
}
.apath__panel:hover .apath__shot .apath__shot-media {
  transform: scale(1.045);
  filter: saturate(1) brightness(0.95);
}
.apath__panel.is-active:hover {
  transform: translateY(-10px);
}
.apath__panel.is-active:hover .apath__shot {
  border-color: rgba(var(--brand-rgb), 0.65);
  box-shadow: 0 36px 72px -22px rgba(var(--brand-rgb), 0.7);
}
.apath__panel.is-active:hover .apath__shot .apath__shot-media {
  transform: scale(1.06);
}
.apath.is-static .apath__stage {
  height: auto;
  overflow: visible;
  background: none;
  border: 0;
  padding-block: 0;
}
.apath.is-static .apath__floor {
  display: none;
}
.apath.is-static .apath__track {
  position: static;
  display: block;
  height: auto;
  padding-inline: var(--gutter);
  max-width: var(--maxw);
  margin-inline: auto;
  transform: none !important;
}
.apath.is-static .apath__panel {
  width: auto;
  margin-inline: 0;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 1.1rem 1.4rem;
  padding-bottom: 2rem;
  opacity: 1;
}
.apath.is-static .apath__shot {
  grid-column: 1/-1;
  grid-row: 2;
  aspect-ratio: 16/9;
}
.apath.is-static .apath__shot .apath__shot-media {
  transform: scale(1);
  filter: saturate(0.95) brightness(0.85);
}
.apath.is-static .apath__body {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  padding-bottom: 0.4rem;
}
.apath.is-static .apath__idx {
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.apath.is-static .apath__idx::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 2.1rem);
  background: var(--color-line-strong);
}
.apath.is-static .apath__idx b {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-line-strong);
  background: var(--color-bg-2);
}
.apath.is-static .apath__idx b {
  border-color: var(--color-brand-bright);
}
.apath.is-static .apath__panel:last-child .apath__idx::after {
  display: none;
}
.apath.is-static .apath__name {
  margin-top: 0.2rem;
}

html:not(.has-js) .apath__stage {
  height: auto;
  overflow: visible;
}

.aprog {
  padding-block: var(--section-pad);
}
.aprog__grid {
  max-width: var(--maxw);
  margin: clamp(2.4rem, 5.5vh, 3.8rem) auto 0;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2.4vw, 2rem);
}
@media screen and (max-width: 992px) {
  .aprog__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.aprog__day {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  background: radial-gradient(130% 90% at 100% 0%, rgba(var(--brand-rgb), 0.07), transparent 55%), var(--color-surface);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.6s var(--ease-out-expo), border-color 0.5s var(--ease-standard), box-shadow 0.6s var(--ease-standard);
}
.aprog__day:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--brand-rgb), 0.4);
  box-shadow: 0 30px 60px -32px rgba(var(--brand-rgb), 0.5);
}
.aprog__cover {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.aprog__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease-out-expo);
  filter: saturate(0.9) contrast(1.03);
}
.aprog__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.15) 0%, rgba(6, 8, 13, 0.55) 60%, var(--color-surface) 100%);
}
.aprog__day:hover .aprog__cover img {
  transform: scale(1.09);
}
.aprog__cover-caption {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.15rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aprog__cover-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.aprog__cover-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.aprog__body {
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
}
.aprog__lede {
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--color-text-muted);
}
.aprog__modules {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.aprog__mod {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: baseline;
  gap: 0.9rem;
  padding: 1rem 0 1rem 0.9rem;
  border-top: 1px solid var(--color-line);
  transition: background-color 0.4s var(--ease-standard);
}
.aprog__mod:last-child {
  border-bottom: 1px solid var(--color-line);
}
.aprog__mod::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  border-radius: 2px;
  background: var(--color-brand-bright);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.aprog__mod:hover {
  background-color: rgba(var(--brand-rgb), 0.05);
}
.aprog__mod:hover::before {
  transform: scaleY(1);
}
.aprog__mod:hover .aprog__mod-no {
  color: var(--color-brand-bright);
}
.aprog__mod:hover .aprog__mod-name {
  color: #fff;
}
.aprog__mod-no {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
  transition: color 0.4s;
}
.aprog__mod-name {
  font-size: 0.98rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  transition: color 0.4s;
}
.aprog__mod-desc {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
}
.aprog__assure {
  max-width: var(--maxw);
  margin: clamp(1.4rem, 3vh, 2rem) auto 0;
  padding-inline: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}
.aprog__assure-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
.aprog__assure-item svg {
  width: 17px;
  height: 17px;
  color: var(--color-brand-bright);
}

.amach {
  position: relative;
  min-height: clamp(560px, 84vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.amach__bg {
  position: absolute;
  inset: -16% 0;
  z-index: -2;
}
.amach__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.85) contrast(1.06) brightness(0.82);
  will-change: transform;
}
.amach__tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.7) 0%, rgba(6, 8, 13, 0.25) 34%, rgba(6, 8, 13, 0.86) 100%), radial-gradient(80% 60% at 20% 100%, rgba(var(--brand-rgb), 0.32), transparent 60%);
}
.amach__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.amach__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.amach__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}
.amach__title {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}
.amach__lead {
  margin-top: 1.3rem;
  max-width: 52ch;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.65;
  color: rgba(242, 244, 247, 0.82);
}
.amach__specs {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  margin: clamp(1.9rem, 4vh, 3rem) 0 0;
  padding: 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}
@media screen and (max-width: 768px) {
  .amach__specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 2rem;
  }
}
.amach__spec {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.amach__spec:not(:first-child)::before {
  content: "";
  position: absolute;
  left: calc(clamp(1.4rem, 4vw, 3.4rem) / -2);
  top: 0.15em;
  bottom: 0.15em;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
@media screen and (max-width: 768px) {
  .amach__spec:not(:first-child)::before {
    display: none;
  }
}
.amach__spec-val {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
}
.amach__spec-num {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.amach__spec-unit {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  color: var(--color-brand-bright);
}
.amach__spec-key {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 244, 247, 0.6);
}
.amach__foot {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(242, 244, 247, 0.5);
}

.afac {
  position: relative;
  padding-block: var(--section-pad);
  background: radial-gradient(90% 60% at 12% 8%, rgba(var(--brand-rgb), 0.08), transparent 60%), radial-gradient(70% 50% at 88% 92%, rgba(var(--brand-rgb), 0.07), transparent 65%), linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
}
.afac::before {
  content: "";
  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: 44px 44px;
  mask-image: radial-gradient(85% 85% at 50% 50%, #000, transparent 92%);
  -webkit-mask-image: radial-gradient(85% 85% at 50% 50%, #000, transparent 92%);
  pointer-events: none;
}
.afac__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media screen and (max-width: 992px) {
  .afac__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.afac__headline {
  min-width: 0;
}
.afac__head-sub {
  flex: none;
  max-width: 34ch;
  padding-bottom: 0.5rem;
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  text-align: right;
}
@media screen and (max-width: 992px) {
  .afac__head-sub {
    max-width: none;
    padding-bottom: 0;
    text-align: left;
  }
}
.afac__stage {
  position: relative;
  z-index: 1;
  max-width: calc(var(--maxw) - 2 * var(--gutter));
  margin: clamp(2.6rem, 5.5vh, 4rem) auto 0;
  padding-inline: var(--gutter);
}
@media screen and (min-width: 1201px) {
  .afac__stage {
    padding-inline: 0;
  }
}
.afac__strap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.afac__strap-lights {
  display: inline-flex;
  gap: 5px;
}
.afac__strap-lights i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  opacity: 0.25;
  animation: facLights 2.8s var(--ease-standard) infinite;
}
.afac__strap-lights i:nth-child(2) {
  animation-delay: 0.25s;
}
.afac__strap-lights i:nth-child(3) {
  animation-delay: 0.5s;
}
@keyframes facLights {
  0%, 60%, 100% {
    opacity: 0.25;
    box-shadow: none;
  }
  12%, 34% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(var(--brand-rgb), 0.8);
  }
}
.afac__lap {
  --afac-rail-pad: clamp(3.4rem, 5.5vw, 5rem);
  --afac-rail-x: clamp(1.25rem, 1.5vw, 1.6rem);
  position: relative;
  padding-left: var(--afac-rail-pad);
}
@media screen and (max-width: 768px) {
  .afac__lap {
    --afac-rail-pad: 2.6rem;
    --afac-rail-x: 1.1rem;
  }
}
.afac__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--afac-rail-x);
  width: 2px;
}
.afac__rail-track {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 9px, transparent 9px 18px);
}
.afac__rail-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-brand-bright), var(--color-brand));
  box-shadow: 0 0 14px rgba(var(--brand-rgb), 0.5);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}
.afac__rail-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.35), 0 0 20px 7px rgba(var(--brand-rgb), 0.55);
  transform: translate(-50%, -50%);
  will-change: top;
}
.afac__house {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
.afac__house-node {
  position: absolute;
  z-index: 3;
  top: clamp(1.4rem, 3vh, 2.2rem);
  left: calc(-1 * var(--afac-rail-pad) + var(--afac-rail-x) + 1px);
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
  background: rgba(6, 8, 13, 0.85);
  border: 1px solid var(--color-line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color 0.35s var(--ease-standard), border-color 0.35s var(--ease-standard), background 0.35s var(--ease-standard), box-shadow 0.35s var(--ease-standard);
}
@media screen and (max-width: 768px) {
  .afac__house-node {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}
.afac__house.is-active .afac__house-node {
  color: var(--color-brand-contrast);
  background: var(--gradient-brand);
  border-color: rgba(var(--brand-rgb), 0.8);
  box-shadow: 0 0 22px rgba(var(--brand-rgb), 0.45);
}
.afac__house-gate {
  position: absolute;
  z-index: 2;
  top: calc(clamp(1.4rem, 3vh, 2.2rem) + 19px);
  left: calc(-1 * var(--afac-rail-pad) + var(--afac-rail-x) + 20px);
  width: calc(var(--afac-rail-pad) - var(--afac-rail-x) - 20px - 0.6rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.75), rgba(255, 255, 255, 0.12));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out-expo) 0.15s;
}
@media screen and (max-width: 768px) {
  .afac__house-gate {
    top: calc(clamp(1.4rem, 3vh, 2.2rem) + 15px);
  }
}
.afac__house.is-active .afac__house-gate {
  transform: scaleX(1);
}
.afac__house-ghost {
  position: absolute;
  z-index: 0;
  top: clamp(-2.6rem, -3.5vw, -1.8rem);
  right: 1%;
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 10vw, 8.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease-out-expo) 0.3s, transform 1s var(--ease-out-expo) 0.3s;
  pointer-events: none;
}
@supports (-webkit-text-stroke: 1px #fff) {
  .afac__house-ghost {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.1);
  }
}
.afac__house--flip .afac__house-ghost {
  right: auto;
  left: 1%;
}
.afac__house.is-active .afac__house-ghost {
  opacity: 1;
  transform: translateY(0);
}
.afac__house-media {
  position: relative;
  z-index: 1;
  grid-column: 1/8;
  grid-row: 1;
  aspect-ratio: 16/10;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: var(--color-bg-2);
  box-shadow: 0 30px 70px -42px rgba(0, 0, 0, 0.85);
  clip-path: inset(0 100% 0 0 round var(--radius-lg));
  transition: clip-path 1.1s var(--ease-out-expo);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.afac__house--flip .afac__house-media {
  grid-column: 6/13;
  clip-path: inset(0 0 0 100% round var(--radius-lg));
}
.afac__house.is-active .afac__house-media {
  clip-path: inset(0 0 0 0 round var(--radius-lg));
}
.afac__house-zoom {
  position: absolute;
  inset: 0;
  transform: scale(1);
  filter: saturate(0.72) brightness(0.74) contrast(1.02);
  transition: transform 0.9s var(--ease-out-expo), filter 0.5s var(--ease-standard);
}
.afac__house-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.afac__house[data-fac-house=human] .afac__house-zoom img {
  object-position: center 28%;
}
.afac__house-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(6, 8, 13, 0.55), transparent 45%), linear-gradient(180deg, rgba(6, 8, 13, 0.1), rgba(6, 8, 13, 0.5));
  pointer-events: none;
}
.afac__house--flip .afac__house-tint {
  background: linear-gradient(90deg, rgba(6, 8, 13, 0.55), transparent 45%), linear-gradient(180deg, rgba(6, 8, 13, 0.1), rgba(6, 8, 13, 0.5));
}
.afac__house-meta {
  position: absolute;
  left: clamp(0.9rem, 1.6vw, 1.3rem);
  bottom: clamp(0.9rem, 1.6vw, 1.3rem);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(6, 8, 13, 0.55);
  border: 1px solid var(--color-line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.afac__house--flip .afac__house-meta {
  left: auto;
  right: clamp(0.9rem, 1.6vw, 1.3rem);
}
.afac__house-card {
  position: relative;
  z-index: 2;
  grid-column: 7/13;
  grid-row: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 2.4vw, 2.3rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0) 58%), linear-gradient(180deg, rgba(13, 17, 28, 0.66), rgba(7, 10, 18, 0.76));
  -webkit-backdrop-filter: blur(26px) saturate(1.18);
  backdrop-filter: blur(26px) saturate(1.18);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease-standard), border-color 0.35s var(--ease-standard), box-shadow 0.35s var(--ease-standard);
}
.afac__house-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.12) 75%, transparent);
  pointer-events: none;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .afac__house-card {
    background: linear-gradient(180deg, rgba(9, 12, 20, 0.94), rgba(6, 8, 14, 0.97));
  }
}
.afac__house--flip .afac__house-card {
  grid-column: 1/7;
}
@media (hover: hover) {
  .afac__house:hover .afac__house-card {
    transform: translateY(-4px);
    border-color: rgba(var(--brand-rgb), 0.4);
    box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.22), 0 26px 60px -26px rgba(var(--brand-rgb), 0.4);
  }
  .afac__house:hover .afac__house-zoom {
    transform: scale(1.045);
    filter: saturate(0.95) brightness(0.85) contrast(1.02);
  }
}
.afac__house-top, .afac__house-name, .afac__house-lead, .afac__house-copy, .afac__house-link {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.afac__house.is-active .afac__house-top {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.afac__house.is-active .afac__house-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.afac__house.is-active .afac__house-lead {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.afac__house.is-active .afac__house-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}
.afac__house.is-active .afac__house-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}
.afac__house-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.afac__house-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.afac__house-logo {
  display: inline-flex;
  align-items: center;
  height: clamp(38px, 3.6vw, 60px);
  max-width: 140px;
}
.afac__house-logo img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.afac__house-logo--boxed img {
  border-radius: 3px;
}
.afac__house-name {
  margin-top: clamp(1rem, 2.2vh, 1.5rem);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}
.afac__house-lead {
  margin-top: 0.7rem;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.55;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
.afac__house-copy {
  margin-top: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.62;
  color: var(--color-text-muted);
}
.afac__house-link {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.4s;
}
.afac__house-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.5s var(--ease-out-expo);
}
.afac__house-link:hover {
  color: #fff;
}
.afac__house-link:hover svg {
  transform: translate(3px, -3px);
}
.afac__handover {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-block: clamp(2rem, 4.5vh, 3.2rem);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.afac__handover svg {
  flex: none;
  width: 13px;
  height: 13px;
  color: rgba(var(--brand-rgb), 0.9);
}
.afac__handover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(-1 * var(--afac-rail-pad) + var(--afac-rail-x) + 6px);
  width: calc(var(--afac-rail-pad) - var(--afac-rail-x) - 6px - 0.6rem);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.afac__finish {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(2.6rem, 6vh, 4rem);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line-strong);
  background: rgba(10, 12, 18, 0.75);
  isolation: isolate;
  transform: translateZ(0);
}
.afac__finish-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--color-brand-bright), rgba(var(--brand-rgb), 0.85));
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease-out-expo);
}
.afac__finish-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 48%, transparent 62%);
  transform: translateX(-130%);
  opacity: 0;
}
.afac__finish.is-lit .afac__finish-fill {
  clip-path: inset(0 0 0 0);
}
.afac__finish.is-lit .afac__finish-fill::after {
  animation: facShine 1.1s var(--ease-out-expo) 0.55s 1;
}
@keyframes facShine {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}
.afac__finish-check {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  z-index: 1;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 7px, transparent 7px 14px) top/100% 7px no-repeat, repeating-linear-gradient(90deg, transparent 0 7px, rgba(255, 255, 255, 0.5) 7px 14px) 0 7px/100% 7px no-repeat;
  opacity: 0.35;
  transition: opacity 0.6s var(--ease-standard);
}
.afac__finish.is-lit .afac__finish-check {
  opacity: 0.9;
}
.afac__finish-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.afac__finish-flag {
  flex: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--color-text-subtle);
  filter: drop-shadow(0 0 0 transparent);
  transition: filter 0.5s var(--ease-standard);
}
.afac__finish.is-lit .afac__finish-flag {
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.35));
}
.afac__finish-text {
  flex: 1;
  min-width: 240px;
}
.afac__finish-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.afac__finish-name {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}
.afac__finish-line {
  margin-top: 0.4rem;
  max-width: 52ch;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.afac__finish-houses {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.afac__finish-houses i {
  font-style: normal;
  opacity: 0.5;
}
@media screen and (max-width: 992px) {
  .afac__finish-houses {
    margin-left: 0;
  }
}
.afac__finish-eyebrow, .afac__finish-flag, .afac__finish-name, .afac__finish-line, .afac__finish-houses {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo), color 0.5s var(--ease-standard);
}
.afac__finish.is-lit .afac__finish-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.afac__finish.is-lit .afac__finish-flag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.afac__finish.is-lit .afac__finish-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}
.afac__finish.is-lit .afac__finish-line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}
.afac__finish.is-lit .afac__finish-houses {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.afac__finish.is-lit .afac__finish-flag,
.afac__finish.is-lit .afac__finish-name {
  color: var(--color-brand-contrast);
}
.afac__finish.is-lit .afac__finish-eyebrow,
.afac__finish.is-lit .afac__finish-line,
.afac__finish.is-lit .afac__finish-houses {
  color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 992px) {
  .afac__house {
    grid-template-columns: 1fr;
  }
  .afac__house-media, .afac__house--flip .afac__house-media {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .afac__house-card, .afac__house--flip .afac__house-card {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: -2.6rem;
    margin-inline: clamp(0.7rem, 3vw, 1.4rem);
  }
  .afac__house-ghost, .afac__house--flip .afac__house-ghost {
    top: -1.6rem;
    right: 2%;
    left: auto;
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }
  .afac__house--flip .afac__house-meta {
    left: clamp(0.9rem, 1.6vw, 1.3rem);
    right: auto;
  }
  .afac__house-meta {
    bottom: auto;
    top: clamp(0.9rem, 1.6vw, 1.3rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .afac__strap-lights i {
    animation: none;
    opacity: 0.7;
  }
  .afac__rail-dot {
    display: none;
  }
  .afac__house-media, .afac__house--flip .afac__house-media {
    clip-path: none;
    transition: none;
  }
  .afac__house-ghost, .afac__house-top, .afac__house-name, .afac__house-lead, .afac__house-copy, .afac__house-link, .afac__finish-eyebrow, .afac__finish-flag, .afac__finish-name, .afac__finish-line, .afac__finish-houses {
    transition: none;
  }
  .afac__finish-fill {
    transition: none;
  }
  .afac__finish-fill::after {
    animation: none !important;
  }
}

html:not(.has-js) .afac__rail-fill {
  transform: scaleY(1);
}
html:not(.has-js) .afac__rail-dot {
  display: none;
}
html:not(.has-js) .afac__house .afac__house-gate {
  transform: scaleX(1);
}
html:not(.has-js) .afac__house .afac__house-node {
  color: var(--color-brand-contrast);
  background: var(--gradient-brand);
  border-color: rgba(var(--brand-rgb), 0.8);
}
html:not(.has-js) .afac__house .afac__house-media {
  clip-path: none;
}
html:not(.has-js) .afac__house-ghost,
html:not(.has-js) .afac__house-top,
html:not(.has-js) .afac__house-name,
html:not(.has-js) .afac__house-lead,
html:not(.has-js) .afac__house-copy,
html:not(.has-js) .afac__house-link {
  opacity: 1;
  transform: none;
}
html:not(.has-js) .afac__finish .afac__finish-fill {
  clip-path: inset(0 0 0 0);
}
html:not(.has-js) .afac__finish .afac__finish-check {
  opacity: 0.9;
}
html:not(.has-js) .afac__finish .afac__finish-eyebrow,
html:not(.has-js) .afac__finish .afac__finish-flag,
html:not(.has-js) .afac__finish .afac__finish-name,
html:not(.has-js) .afac__finish .afac__finish-line,
html:not(.has-js) .afac__finish .afac__finish-houses {
  opacity: 1;
  transform: none;
}
html:not(.has-js) .afac__finish .afac__finish-flag,
html:not(.has-js) .afac__finish .afac__finish-name {
  color: var(--color-brand-contrast);
}
html:not(.has-js) .afac__finish .afac__finish-eyebrow,
html:not(.has-js) .afac__finish .afac__finish-line,
html:not(.has-js) .afac__finish .afac__finish-houses {
  color: rgba(255, 255, 255, 0.85);
}

.afilm {
  position: relative;
  padding-block: var(--section-pad);
  overflow: clip;
}
.afilm__glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 60%;
  width: 60vw;
  height: 40vw;
  max-width: 900px;
  max-height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.14), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.afilm__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media screen and (max-width: 992px) {
  .afilm__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.afilm__headline {
  min-width: 0;
}
.afilm__head-sub {
  flex: none;
  max-width: 30ch;
  padding-bottom: 0.5rem;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: right;
}
@media screen and (max-width: 992px) {
  .afilm__head-sub {
    max-width: none;
    padding-bottom: 0;
    text-align: left;
  }
}
.afilm__stage {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(2.4rem, 5.5vh, 3.8rem) auto 0;
  padding-inline: var(--gutter);
}
.afilm__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 21/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-bg-2);
  cursor: pointer;
  isolation: isolate;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.afilm__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo), filter 0.6s;
  animation: afilmAmbient 16s ease-in-out infinite;
}
.afilm__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 5, 9, 0.92) 0%, rgba(4, 5, 9, 0.4) 38%, rgba(4, 5, 9, 0.05) 62%);
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .afilm__media {
    aspect-ratio: 4/5;
  }
}
.afilm__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  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.09'/%3E%3C/svg%3E");
  pointer-events: none;
}
.afilm__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.afilm__stage.is-playing .afilm__media video {
  animation-play-state: paused;
}
.afilm__stage:hover .afilm__media video {
  transform: scale(1.045);
}
.afilm__stage.is-playing .afilm__media {
  cursor: default;
}
.afilm__stage.is-playing .afilm__media::after {
  opacity: 0;
}
.afilm__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(64px, 5.4vw, 76px);
  height: clamp(64px, 5.4vw, 76px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(6, 8, 13, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out-expo), background 0.5s, border-color 0.5s, opacity 0.45s;
}
.afilm__play::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-rgb), 0.6);
  animation: afilmPulse 2.6s var(--ease-out-expo) infinite;
}
.afilm__play svg {
  width: 36%;
  height: 36%;
}
.afilm__play .afilm__ic-play {
  margin-left: 6%;
}
.afilm__play .afilm__ic-pause {
  display: none;
}
.afilm__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gradient-brand);
  border-color: transparent;
}
.afilm__stage.is-playing .afilm__play {
  opacity: 0;
  pointer-events: none;
}
.afilm__stage.is-playing .afilm__play::before {
  animation: none;
  opacity: 0;
}
.afilm__stage.is-playing .afilm__play .afilm__ic-play {
  display: none;
}
.afilm__stage.is-playing .afilm__play .afilm__ic-pause {
  display: block;
}
.afilm__stage.is-playing:hover .afilm__play, .afilm__stage.is-playing .afilm__play:focus-visible {
  opacity: 1;
  pointer-events: auto;
}
.afilm__info {
  position: absolute;
  left: clamp(1.2rem, 2.4vw, 2rem);
  bottom: clamp(1.2rem, 2.4vw, 2rem);
  z-index: 3;
  max-width: min(66%, 480px);
  padding: clamp(1.1rem, 1.8vw, 1.5rem) clamp(1.3rem, 2vw, 1.7rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 15, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .afilm__info {
    max-width: none;
    right: clamp(1.2rem, 2.4vw, 2rem);
  }
}
.afilm__info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-weight: var(--fw-semibold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.afilm__info-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px 1px rgba(var(--brand-rgb), 0.9);
}
.afilm__info-title {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: #fff;
}
.afilm__info-copy {
  margin-top: 0.55rem;
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 576px) {
  .afilm__info-copy {
    display: none;
  }
}
.afilm__stage.is-playing .afilm__info {
  opacity: 0;
  pointer-events: none;
}
.afilm__reel {
  max-width: var(--maxw);
  margin: clamp(2rem, 4.5vh, 3rem) auto 0;
  padding-inline: var(--gutter);
}
.afilm__reel-label {
  display: block;
  font-weight: var(--fw-semibold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: clamp(1.4rem, 3vh, 2rem);
}
.afilm__reel-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .afilm__reel-track {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}
.afilm__reel-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(var(--brand-rgb), 0.5) 60%, transparent 0%);
  background-size: 14px 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  .afilm__reel-line {
    display: none;
  }
}
.afilm__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(1.4rem, 3vh, 2rem);
}
@media screen and (max-width: 768px) {
  .afilm__node {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
  }
}
.afilm__node-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-line-strong);
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
@media screen and (max-width: 768px) {
  .afilm__node-dot {
    display: none;
  }
}
.afilm__node-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  isolation: isolate;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
@media screen and (max-width: 768px) {
  .afilm__node-thumb {
    width: 84px;
    aspect-ratio: 1;
    flex: 0 0 auto;
  }
}
.afilm__node-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.95);
  transform: scale(1.05);
  transition: transform 0.9s var(--ease-out-expo), filter 0.5s;
}
.afilm__node-tag {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-weight: var(--fw-semibold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  transition: color 0.4s;
}
@media screen and (max-width: 768px) {
  .afilm__node-tag {
    margin-top: 0;
  }
}
.afilm__node-title {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: #fff;
  transition: color 0.4s;
}
@media screen and (max-width: 768px) {
  .afilm__node-title {
    margin-top: 0.25rem;
    font-size: 1.15rem;
  }
}
.afilm__node:hover .afilm__node-dot, .afilm__node:focus-within .afilm__node-dot {
  border-color: var(--color-brand-bright);
  background: var(--color-brand-bright);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.2);
}
.afilm__node:hover .afilm__node-thumb img, .afilm__node:focus-within .afilm__node-thumb img {
  transform: scale(1.14);
  filter: brightness(0.95) saturate(1.05);
}
.afilm__node:hover .afilm__node-tag,
.afilm__node:hover .afilm__node-title, .afilm__node:focus-within .afilm__node-tag,
.afilm__node:focus-within .afilm__node-title {
  color: var(--color-brand-bright);
}

@keyframes afilmPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes afilmAmbient {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}
@media (prefers-reduced-motion: reduce) {
  .afilm__play::before,
  .afilm__media video {
    animation: none;
  }
}
.abro {
  position: relative;
  padding-block: var(--section-pad);
  overflow: hidden;
}
.abro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(var(--brand-rgb), 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--brand-rgb), 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(85% 100% at 50% 45%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(85% 100% at 50% 45%, #000 25%, transparent 80%);
}
.abro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(45% 55% at 12% 8%, rgba(var(--ambient-rgb), 0.07), transparent 70%), radial-gradient(42% 55% at 90% 92%, rgba(var(--ambient-rgb), 0.05), transparent 70%);
}
.abro__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2.4rem, 6vh, 4rem);
}
.abro__wrap {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.abro__stage {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: stretch;
}
@media screen and (max-width: 992px) {
  .abro__stage {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 4vh, 2.4rem);
  }
}
.abro__canvas {
  position: relative;
  margin: 0;
  min-height: clamp(440px, 58vh, 640px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  overflow: hidden;
  box-shadow: 0 36px 72px -44px rgba(0, 0, 0, 0.75);
  isolation: isolate;
  transform: translateZ(0);
}
@media screen and (max-width: 992px) {
  .abro__canvas {
    min-height: 0;
    aspect-ratio: 16/10;
  }
}
@media screen and (max-width: 576px) {
  .abro__canvas {
    aspect-ratio: 4/3.4;
  }
}
.abro__media {
  position: absolute;
  inset: 0;
}
.abro__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 0.85s var(--ease-standard), transform 1.4s var(--ease-out-quint);
  will-change: opacity, transform;
}
.abro__img.is-active {
  opacity: 1;
  transform: scale(1);
  animation: abroDrift 14s var(--ease-standard) 1.2s forwards;
}
.abro__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 6, 14, 0.42) 0%, transparent 30%), linear-gradient(6deg, rgba(4, 6, 14, 0.82) 6%, rgba(4, 6, 14, 0.28) 34%, transparent 58%), radial-gradient(120% 90% at 85% 10%, rgba(var(--brand-rgb), 0.14), transparent 55%);
}
.abro__caption {
  position: absolute;
  left: clamp(1.2rem, 2.4vw, 2rem);
  right: clamp(1.2rem, 2.4vw, 2rem);
  bottom: clamp(1.1rem, 2.4vw, 1.8rem);
  display: flex;
  align-items: center;
}
.abro__caption-line {
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  transition: opacity 0.3s var(--ease-standard), transform 0.3s var(--ease-standard);
}
.abro__caption.is-swapping .abro__caption-line {
  opacity: 0;
  transform: translateY(8px);
}
.abro__index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.abro__kicker {
  margin: 0 0 clamp(0.9rem, 2vh, 1.4rem);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.abro__chapters {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-line);
}
.abro__chapter {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  width: 100%;
  margin: 0;
  padding: clamp(1.05rem, 2.2vh, 1.5rem) 0.4rem clamp(1.05rem, 2.2vh, 1.5rem) clamp(0.9rem, 1.6vw, 1.3rem);
  border: 0;
  border-bottom: 1px solid var(--color-line);
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.35s var(--ease-standard);
}
.abro__chapter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-brand-bright), rgba(var(--brand-rgb), 0.25));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease-out-expo);
}
.abro__chapter:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 3px;
  border-radius: 6px;
}
.abro__chapter-idx {
  flex: none;
  width: 2.2ch;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--color-text-subtle);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s var(--ease-standard);
}
.abro__chapter-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.abro__chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.3s var(--ease-standard);
}
.abro__chapter-desc {
  max-width: 44ch;
  font-size: clamp(0.86rem, 0.95vw, 0.94rem);
  line-height: 1.55;
  color: var(--color-text-muted);
}
.abro__chapter:hover, .abro__chapter.is-active {
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.07), transparent 75%);
}
.abro__chapter:hover::before, .abro__chapter.is-active::before {
  transform: scaleY(1);
}
.abro__chapter:hover .abro__chapter-idx, .abro__chapter.is-active .abro__chapter-idx {
  color: var(--color-brand-bright);
}
.abro__chapter:hover .abro__chapter-title, .abro__chapter.is-active .abro__chapter-title {
  color: #fff;
}
.abro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: clamp(1.7rem, 3.6vh, 2.6rem);
}
@media screen and (max-width: 768px) {
  .abro__actions {
    width: 100%;
  }
  .abro__actions .btn-cta {
    flex: 1 1 auto;
    justify-content: center;
  }
}
.abro__note {
  margin: clamp(1.1rem, 2.4vh, 1.6rem) 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

@keyframes abroDrift {
  to {
    transform: scale(1.055);
  }
}
@media (prefers-reduced-motion: reduce) {
  .abro__img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .abro__caption-line,
  .abro__chapter,
  .abro__chapter::before {
    transition: none !important;
    animation: none !important;
  }
}
html:not(.has-js) .abro__chapter {
  cursor: default;
}

.areg {
  padding-block: var(--section-pad);
  scroll-margin-top: calc(var(--masthead-h, 76px) + 1.5rem);
}
.areg__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}
@media screen and (max-width: 992px) {
  .areg__inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}
@media screen and (max-width: 992px) {
  .areg__aside {
    max-width: 60ch;
  }
}
.areg__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}
.areg__sub {
  margin-top: 1.15rem;
  max-width: 46ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.areg__steps {
  list-style: none;
  margin: clamp(1.8rem, 4vh, 2.6rem) 0 0;
  padding: 0;
  counter-reset: areg;
}
.areg__step {
  position: relative;
  counter-increment: areg;
  padding: 0 0 1.4rem 3.4rem;
}
.areg__step::before {
  content: counter(areg);
  position: absolute;
  left: 0;
  top: -0.1rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-rgb), 0.5);
  background: rgba(var(--brand-rgb), 0.08);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-brand-bright);
}
.areg__step::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 34px;
  bottom: 2px;
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.5), transparent);
}
.areg__step:last-child {
  padding-bottom: 0;
}
.areg__step:last-child::after {
  display: none;
}
.areg__step h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
}
.areg__step p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--color-text-muted);
}
.areg__contact {
  margin-top: clamp(1.6rem, 3.5vh, 2.4rem);
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: border-color 0.45s var(--ease-standard), background 0.45s var(--ease-standard), transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-standard);
}
.areg__contact:hover, .areg__contact:focus-visible {
  border-color: rgba(var(--brand-rgb), 0.45);
  background: radial-gradient(120% 160% at 0% 0%, rgba(var(--brand-rgb), 0.12), transparent 60%), var(--color-surface);
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -28px rgba(var(--brand-rgb), 0.6);
}
.areg__contact:hover .areg__contact-icon, .areg__contact:focus-visible .areg__contact-icon {
  border-color: rgba(var(--brand-rgb), 0.55);
  background: rgba(var(--brand-rgb), 0.16);
}
.areg__contact:hover .areg__contact-num, .areg__contact:focus-visible .areg__contact-num {
  color: #fff;
}
.areg__contact:hover .areg__contact-arrow, .areg__contact:focus-visible .areg__contact-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
  color: var(--color-brand-bright);
}
.areg__contact-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-brand-bright);
  transition: border-color 0.45s, background 0.45s;
}
.areg__contact-icon svg {
  width: 20px;
  height: 20px;
}
.areg__contact-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}
.areg__contact-key {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.areg__contact-num {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--color-text);
  transition: color 0.35s;
}
.areg__contact-arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--color-text-subtle);
  opacity: 0.6;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.4s, color 0.35s;
}
.areg__contact-arrow svg {
  width: 16px;
  height: 16px;
}
.areg__form {
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  background: radial-gradient(120% 90% at 100% 0%, rgba(var(--brand-rgb), 0.08), transparent 55%), var(--color-surface);
}
.areg__legend {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.5rem;
}
.areg__legend-label {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.areg__legend-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-line-strong), transparent);
}
.areg__field + .areg, .areg__row + .areg {
  margin-top: 2.3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}
.areg__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.1rem;
}
@media screen and (max-width: 576px) {
  .areg__row {
    grid-template-columns: 1fr;
  }
}
.areg__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}
.areg__field--full {
  grid-column: 1/-1;
}
.areg__field label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.areg__field label em {
  font-style: normal;
  color: var(--color-brand-bright);
}
.areg__field input,
.areg__field select,
.areg__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line-strong);
  background: var(--color-bg-2);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.4s var(--ease-standard), background 0.4s, box-shadow 0.4s;
}
.areg__field input::placeholder,
.areg__field select::placeholder,
.areg__field textarea::placeholder {
  color: var(--color-text-subtle);
}
.areg__field input:hover,
.areg__field select:hover,
.areg__field textarea:hover {
  border-color: rgba(255, 255, 255, 0.24);
}
.areg__field input:focus,
.areg__field select:focus,
.areg__field textarea:focus {
  outline: none;
  border-color: rgba(var(--brand-rgb), 0.7);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.16);
}
.areg__form .areg__field input:focus-visible, .areg__form .areg__field select:focus-visible, .areg__form .areg__field textarea:focus-visible {
  outline: none;
  border-radius: var(--radius-sm);
}
.areg__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.6rem;
}
.areg__field select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--color-text);
}
.areg__field select option {
  background-color: var(--color-surface);
  color: var(--color-text);
}
.areg__field select option:disabled {
  color: var(--color-text-subtle);
}
.areg__field textarea {
  resize: vertical;
  min-height: 96px;
}
.areg__field .areg__select {
  position: relative;
}
.areg__field .areg__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235a73ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.areg__field.has-error input,
.areg__field.has-error select,
.areg__field.has-error textarea {
  border-color: rgba(241, 93, 93, 0.6);
  background: rgba(241, 93, 93, 0.05);
}
.areg__field.has-error input:focus,
.areg__field.has-error select:focus,
.areg__field.has-error textarea:focus {
  border-color: rgba(241, 93, 93, 0.75);
  box-shadow: 0 0 0 3px rgba(241, 93, 93, 0.16);
}
.areg__error {
  display: block;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #f15d5d;
}
.areg__error:empty {
  display: none;
}
.areg__field--consent {
  margin-bottom: 1.5rem;
}
.areg__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  cursor: pointer;
}
.areg__consent input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex: none;
  padding: 0;
  width: 17px;
  height: 17px;
  margin: 0.15rem 0 0;
  border-radius: 4px;
  border: 1.5px solid var(--color-line-strong);
  background: var(--color-bg-2);
  position: relative;
  cursor: pointer;
  transition: border-color 0.35s var(--ease-standard), background 0.35s var(--ease-standard);
}
.areg__consent input[type=checkbox]::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.3l3 3 6-6.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s var(--ease-standard), transform 0.3s var(--ease-out-expo);
}
.areg__consent input[type=checkbox]:hover {
  border-color: rgba(var(--brand-rgb), 0.55);
}
.areg__consent input[type=checkbox]:checked {
  background: var(--gradient-brand);
  border-color: transparent;
}
.areg__consent input[type=checkbox]:checked::after {
  opacity: 1;
  transform: scale(1);
}
.areg__consent input[type=checkbox]:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 2px;
  border-radius: 5px;
}
.areg__consent a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.areg__consent a:hover {
  color: var(--color-brand-bright);
}
.areg__submit {
  width: 100%;
  justify-content: center;
}
.areg__submit:hover, .areg__submit:active {
  transform: none;
}
.areg__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.76rem;
  color: var(--color-text-subtle);
}
.areg__privacy svg {
  flex: none;
  width: 14px;
  height: 14px;
  color: var(--color-text-subtle);
}
.areg__done {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--brand-rgb), 0.45);
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.areg__done svg {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--color-brand-bright);
}
.areg.is-sent .areg__done {
  display: flex;
}

.afaq {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}
.afaq__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: start;
}
@media screen and (max-width: 992px) {
  .afaq__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.afaq__intro {
  position: sticky;
  top: calc(var(--masthead-h, 76px) + 1.6rem);
}
@media screen and (max-width: 992px) {
  .afaq__intro {
    position: relative;
    top: auto;
  }
}
.afaq__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);
  text-transform: uppercase;
  color: #fff;
}
.afaq__sub {
  margin-top: 1.1rem;
  max-width: 44ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.afaq__cta {
  margin-top: 2.2rem;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: radial-gradient(120% 100% at 0% 0%, rgba(var(--brand-rgb), 0.12), transparent 55%), var(--color-surface);
}
.afaq__cta-tag {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.afaq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.afaq__list .value {
  border-top: 1px solid var(--color-line);
}
.afaq__list .value:last-child {
  border-bottom: 1px solid var(--color-line);
}
.afaq__list .value__bar {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-block: clamp(1.2rem, 2.4vh, 1.6rem);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.afaq__list .value__name {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: color 0.35s;
}
.afaq__list .value__bar:hover .value__name {
  color: #fff;
}
.afaq__list .value__plus {
  position: relative;
  width: 22px;
  height: 22px;
}
.afaq__list .value__plus::before, .afaq__list .value__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.6px;
  background: var(--color-text-muted);
  transform: translate(-50%, -50%);
  transition: transform 0.5s var(--ease-out-expo), background 0.35s;
}
.afaq__list .value__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.afaq__list .value.is-open .value__plus::before {
  background: var(--color-brand-bright);
}
.afaq__list .value.is-open .value__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
  background: var(--color-brand-bright);
}
.afaq__list .value__panel {
  overflow: hidden;
}
.afaq__list .value__panel p {
  padding: 0 2.5rem 1.5rem 0;
  max-width: 62ch;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}
@media screen and (max-width: 576px) {
  .afaq__list .value__panel p {
    padding-left: 0;
    padding-right: 0;
  }
}

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

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

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