:root {
  --color-brand: #0037e6;
  --color-brand-strong: #002bb8;
  --color-brand-bright: #5a73ff;
  --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-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: #9aa2ab;
  --color-text-subtle: #646c75;
  --font-display: "Instrument Sans", system-ui, sans-serif;
  --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-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: #5a73ff;
  --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;
}

[data-theme=smp] {
  --color-brand: #d80d0d;
  --color-brand-strong: #b30a0a;
  --color-brand-bright: #f15d5d;
  --color-brand-weak: rgba(216, 13, 13, 0.16);
  --gradient-brand: linear-gradient(135deg, #e83232 0%, #b30a0a 100%);
  --glow-brand: 0 0 0 1px rgba(216, 13, 13, 0.45), 0 0 60px rgba(216, 13, 13, 0.55);
  --brand-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: #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: 0.95;
  letter-spacing: -0.02em;
}

.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.6875rem;
  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;
}

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

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

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.1rem 1.1rem 2rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px -12px rgba(var(--brand-rgb), 0.7);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}
.btn-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out-expo);
  z-index: -1;
}
.btn-pill__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.btn-pill__icon svg {
  width: 22px;
  transition: transform 0.5s var(--ease-out-expo);
}
.btn-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px -10px rgba(var(--brand-rgb), 0.85);
}
.btn-pill:hover::before {
  transform: translateX(120%);
}
.btn-pill:hover .btn-pill__icon svg {
  transform: translateX(4px);
}

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

.atmos {
  position: fixed;
  inset: 0;
  z-index: var(--z-bg);
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(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);
  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.5rem;
  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);
  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);
  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 {
  padding: 0.55rem 1.05rem;
  box-shadow: 0 6px 18px -8px rgba(var(--brand-rgb), 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.masthead.is-stuck .burger {
  padding: 0.55rem 0.95rem;
}
.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.68rem;
  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;
  gap: 0.7rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #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;
}
.btn-login__glow {
  position: absolute;
  inset: -50%;
  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 {
    padding: 0.6rem;
  }
}

@keyframes btnGlowSpin {
  to {
    transform: rotate(360deg);
  }
}
.burger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 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);
}
.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.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  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(--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__circuit {
  position: absolute;
  right: 4%;
  bottom: -8%;
  width: clamp(380px, 42vw, 640px);
  opacity: 0.5;
}
.megamenu__circuit svg {
  width: 100%;
  height: auto;
}
.megamenu__circuit path {
  stroke: rgba(var(--brand-rgb), 0.5);
  stroke-width: 1.4;
  stroke-dasharray: 6 10;
}
@media screen and (max-width: 768px) {
  .megamenu__circuit {
    display: none;
  }
}
.megamenu.is-open {
  visibility: visible;
  pointer-events: auto;
}
.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);
  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.68rem;
  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.04;
  letter-spacing: -0.02em;
  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.66rem;
  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 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.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  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 svg {
  width: 18px;
}
.qbtn:hover {
  transform: translateY(-2px);
  border-color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.1);
}
.qbtn--primary {
  border-color: transparent;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 12px 32px -12px rgba(var(--brand-rgb), 0.8);
}
.qbtn--primary:hover {
  background: var(--gradient-brand);
  box-shadow: 0 18px 40px -12px rgba(var(--brand-rgb), 0.95);
}

@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(--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.74rem;
  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.66rem;
    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;
  }
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--masthead-h) + clamp(1rem, 4vh, 3rem)) var(--gutter) clamp(3rem, 9vh, 7rem);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
  filter: saturate(0.9) contrast(1.05) brightness(0.62);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 70% 30%, rgba(var(--brand-rgb), 0.22), transparent 60%), linear-gradient(180deg, rgba(6, 8, 13, 0.4) 0%, rgba(6, 8, 13, 0.1) 38%, rgba(6, 8, 13, 0.86) 88%, var(--color-bg) 100%);
}
.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: clamp(1rem, 2.5vh, 1.8rem);
}
.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 12px 2px rgba(var(--brand-rgb), 0.9);
  animation: heroPulse 2.4s var(--ease-standard) infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2.7rem, 8.4vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero__lead {
  margin-top: clamp(1.2rem, 3vh, 2rem);
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text-muted);
}
.hero__meta {
  margin-top: clamp(1.6rem, 4vh, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.4rem);
}
.hero__meta-item {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  padding-left: 1.1rem;
}
.hero__meta-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid var(--color-brand-bright);
  transform: translateY(-50%) rotate(45deg);
}
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 9vh, 7rem);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-rail {
  position: relative;
  width: 1px;
  height: 56px;
  background: var(--color-line-strong);
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 14px;
  background: var(--color-brand-bright);
  border-radius: 2px;
  animation: heroScroll 1.8s var(--ease-in-out-quint) infinite;
}

@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
@keyframes heroScroll {
  0% {
    transform: translate(-50%, -100%);
  }
  60%, 100% {
    transform: translate(-50%, 420%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow-dot,
  .hero__scroll-dot {
    animation: none;
  }
}
.since {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter) clamp(3rem, 7vh, 5rem);
}
.since__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
@media screen and (max-width: 992px) {
  .since__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.since__head .u-overline {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--color-brand-bright);
}
.since__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.since__lead {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}
.since__lead::first-line {
  color: var(--color-text);
}

.stats {
  list-style: none;
  max-width: var(--maxw);
  margin: clamp(3rem, 8vh, 6rem) auto 0;
  padding: clamp(2rem, 4vh, 3rem) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
@media screen and (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.2rem;
  }
}

.stat {
  position: relative;
  padding-left: 1.4rem;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 2px;
  height: 2.4rem;
  background: linear-gradient(var(--color-brand-bright), transparent);
}
.stat__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: var(--fw-medium);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  max-width: 16ch;
}

.timeline {
  position: relative;
  padding-top: var(--section-pad);
}
.timeline__intro {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-bottom: clamp(2rem, 5vh, 4rem);
}
.timeline__intro .u-overline {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-brand-bright);
}
.timeline__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
}
.timeline__stage {
  position: relative;
}
.timeline__sticky {
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(5rem, 11vh, 7rem) var(--gutter) clamp(2rem, 5vh, 3.5rem);
  max-width: var(--maxw);
  margin-inline: auto;
  overflow: hidden;
}
.timeline__head {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.4rem, 4vh, 3rem);
}
.timeline__year {
  position: relative;
  font-family: var(--font-mono);
  font-weight: var(--fw-medium);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  color: var(--color-brand-bright);
  font-variant-numeric: tabular-nums;
  min-width: 4.5ch;
  text-shadow: 0 0 26px rgba(var(--brand-rgb), 0.45);
  will-change: transform, opacity, filter;
}
.timeline__track {
  --tlp: 0;
  position: relative;
  flex: 1;
  min-width: 0;
  height: 46px;
}
.timeline__blueprint {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 26px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 26px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 6.5px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent), linear-gradient(180deg, transparent, #000 42%, #000 58%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent), linear-gradient(180deg, transparent, #000 42%, #000 58%, transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  opacity: 0.6;
  pointer-events: none;
}
.timeline__rail-base {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.09);
}
.timeline__track-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-brand-strong), var(--color-brand) 55%, var(--color-brand-bright));
  box-shadow: 0 0 10px 1px rgba(var(--brand-rgb), 0.55), 0 0 26px 2px rgba(var(--brand-rgb), 0.32);
  clip-path: inset(0 calc((1 - var(--tlp)) * 100%) 0 0 round 3px);
}
.timeline__track-energy {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255, 255, 255, 0.55) 7px 9px, transparent 9px 16px);
  background-size: 32px 100%;
  mix-blend-mode: screen;
  opacity: 0.55;
  clip-path: inset(0 calc((1 - var(--tlp)) * 100%) 0 0 round 3px);
  animation: tlEnergy 0.9s linear infinite;
  pointer-events: none;
}
.timeline__comet {
  position: absolute;
  top: 50%;
  left: calc(var(--tlp) * 100%);
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--color-brand-bright) 42%, rgba(var(--brand-rgb), 0) 72%);
  box-shadow: 0 0 16px 4px rgba(var(--brand-rgb), 0.85);
  pointer-events: none;
  z-index: 2;
}
.timeline__checks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.timeline__car {
  --spd: 0;
  position: absolute;
  bottom: 50%;
  left: calc(var(--tlp) * 100%);
  width: clamp(90px, 8vw, 112px);
  transform: translate(-50%, 3px);
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 8px rgba(var(--brand-rgb), 0.36));
}
.timeline__readout {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  white-space: nowrap;
}
.timeline__count {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-text-subtle);
}
.timeline__speed {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34ch;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.timeline__speed b {
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  color: var(--color-brand-bright);
  font-variant-numeric: tabular-nums;
}
.timeline__panes {
  flex: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 0;
}
@media screen and (max-width: 768px) {
  .timeline__panes {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 1.2rem;
  }
}
.timeline__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
}
.timeline__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(var(--brand-rgb), 0.16), transparent 55%), linear-gradient(180deg, transparent 45%, rgba(4, 6, 10, 0.55) 100%);
}
.timeline__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.timeline__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.14);
  filter: brightness(0.6) saturate(0.92);
  transition: opacity 0.95s var(--ease-standard), transform 1.5s var(--ease-out-expo), filter 1.2s var(--ease-standard);
  will-change: opacity, transform, filter;
}
.timeline__img.is-active {
  opacity: 1;
  filter: brightness(0.74) saturate(1);
  animation: tlKenBurns 11s var(--ease-out-quint) forwards;
}
.timeline__frame-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.4rem 0.7rem;
  background: rgba(6, 8, 13, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-line);
  border-radius: 999px;
}
.timeline__list {
  position: relative;
  list-style: none;
  align-self: center;
}

.tl-event {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-standard);
}
.tl-event__year, .tl-event__title, .tl-event__copy {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-standard), transform 0.75s var(--ease-out-expo);
}
.tl-event.is-active {
  opacity: 1;
  pointer-events: auto;
}
.tl-event.is-active .tl-event__year {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}
.tl-event.is-active .tl-event__title {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}
.tl-event.is-active .tl-event__copy {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}
.tl-event__year {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-text-subtle);
  margin-bottom: 0.9rem;
}
.tl-event__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.tl-event__copy {
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 42ch;
}

.timeline__rail {
  margin-top: clamp(1rem, 3vh, 2rem);
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.timeline__rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--color-line);
}

.timeline__rail-inner {
  display: flex;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  padding: 0.8rem 0;
  will-change: transform;
  transition: transform 0.7s var(--ease-out-expo);
}

.rail-tick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}
.rail-tick__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--color-text-subtle);
  background: var(--color-bg);
  transition: transform 0.4s var(--ease-out-expo), background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.rail-tick__year {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
  transition: color 0.4s;
}
.rail-tick.is-active .rail-tick__dot {
  background: var(--color-brand-bright);
  border-color: var(--color-brand-bright);
  transform: scale(1.5);
  box-shadow: 0 0 14px 2px rgba(var(--brand-rgb), 0.8);
}
.rail-tick.is-active .rail-tick__year {
  color: #fff;
}
.rail-tick.is-past .rail-tick__dot {
  border-color: var(--color-brand);
}

.tl-check {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: none;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}
.tl-check__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-bg-2);
  border: 1px solid var(--color-text-subtle);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, transform 0.45s var(--ease-out-expo);
}
.tl-check__ripple {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-brand-bright);
  opacity: 0;
  pointer-events: none;
}
.tl-check__year {
  position: absolute;
  bottom: calc(100% + 30px);
  left: 50%;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 0.4s, transform 0.45s var(--ease-out-expo), color 0.4s;
  pointer-events: none;
}
.tl-check.is-past .tl-check__dot {
  background: rgba(var(--brand-rgb), 0.28);
  border-color: rgba(var(--brand-rgb), 0.7);
}
.tl-check.is-active .tl-check__dot {
  background: var(--color-brand-bright);
  border-color: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 11px 2px rgba(var(--brand-rgb), 0.85);
}
.tl-check.is-active .tl-check__year {
  opacity: 1;
  transform: translate(-50%, 0);
  color: #fff;
}

.tlcar__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.tlcar__era {
  opacity: 0;
  transform: scale(0.9);
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition: opacity 0.5s var(--ease-standard), transform 0.6s var(--ease-out-expo);
}
.tlcar__era.is-on {
  opacity: 1;
  transform: scale(1);
}

.tlcar__tyre {
  fill: url(#tlcarTyre);
  stroke: rgba(235, 242, 255, 0.52);
  stroke-width: 1.1;
}

.tlcar__rim {
  fill: #2b3a52;
  stroke: var(--color-brand-bright);
  stroke-width: 1;
}

.tlcar__spoke {
  stroke: rgba(220, 230, 255, 0.7);
  stroke-width: 1;
  stroke-linecap: round;
}

.tlcar__hub {
  fill: #fff;
}

.tlcar__shell {
  fill: url(#tlcarBody);
  stroke: rgba(220, 231, 255, 0.66);
  stroke-width: 1.2;
  stroke-linejoin: round;
  paint-order: fill stroke;
}

.tlcar__glass {
  fill: rgba(150, 178, 255, 0.42);
  stroke: rgba(225, 235, 255, 0.5);
  stroke-width: 0.7;
}

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

.tlcar__roundel {
  fill: #fff;
}

.tlcar__fin,
.tlcar__airbox,
.tlcar__canopy,
.tlcar__vent,
.tlcar__spoiler {
  fill: #2c374b;
  stroke: rgba(220, 231, 255, 0.5);
  stroke-width: 0.7;
}

.tlcar__wing,
.tlcar__post,
.tlcar__splitter,
.tlcar__canard {
  fill: #1b2436;
  stroke: rgba(220, 231, 255, 0.58);
  stroke-width: 0.7;
}

.tlcar__shadow {
  fill: url(#tlcarShadow);
}

.tlcar__underglow {
  fill: url(#tlcarUnder);
  mix-blend-mode: screen;
  opacity: 0.2;
}

.tlcar__trail {
  fill: url(#tlcarTrail);
  opacity: 0;
  mix-blend-mode: screen;
}

.tlcar__speed {
  opacity: 0;
}
.tlcar__speed line {
  stroke: var(--color-brand-bright);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.8;
}

.tlcar__exhaust {
  fill: #bcd2ff;
  opacity: 0.16;
  filter: drop-shadow(0 0 3px rgba(125, 146, 255, 0.95));
}

.tlcar__brake {
  fill: #ff5252;
  opacity: 0.04;
  filter: drop-shadow(0 0 3.5px rgba(255, 60, 60, 0.95));
}

.tlcar__head {
  fill: #eaf1ff;
  opacity: 0.3;
  filter: drop-shadow(0 0 3.5px rgba(var(--brand-rgb), 1));
}

.tlcar__smoke {
  opacity: 0;
  filter: blur(1.4px);
}
.tlcar__smoke circle {
  fill: rgba(208, 218, 238, 0.45);
}

.timeline__car.is-turning .tlcar__flip {
  filter: blur(0.55px);
}

@keyframes tlEnergy {
  to {
    background-position: 32px 0;
  }
}
@keyframes tlKenBurns {
  from {
    transform: scale(1.13) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.02) translate3d(-1.6%, -1.4%, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .timeline__sticky {
    height: auto;
  }
  .timeline__panes {
    display: block;
  }
  .timeline__visual {
    aspect-ratio: 16/10;
    margin-bottom: 2rem;
  }
  .timeline__rail {
    display: none;
  }
  .timeline__car,
  .timeline__comet,
  .timeline__track-energy,
  .timeline__checks {
    display: none;
  }
  .timeline__img.is-active {
    animation: none;
  }
  .tl-event {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    margin-bottom: 2.4rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--color-line);
  }
  .tl-event__year, .tl-event__title, .tl-event__copy {
    opacity: 1;
    transform: none;
  }
}
.mission {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
@media screen and (max-width: 992px) {
  .mission {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.mission__head {
  position: sticky;
  top: 18vh;
}
@media screen and (max-width: 992px) {
  .mission__head {
    position: static;
  }
}
.mission__head .u-overline {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--color-brand-bright);
}
.mission__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.8rem;
  text-wrap: balance;
}

.values {
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.value {
  border-bottom: 1px solid var(--color-line);
}
.value__bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: clamp(1.2rem, 2.6vh, 1.9rem) 0;
  text-align: left;
}
.value__idx {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-brand-bright);
  width: 2.5ch;
}
.value__name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: -0.015em;
  color: var(--color-text-muted);
  transition: color 0.4s, transform 0.5s var(--ease-out-expo);
}
.value__plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.value__plus::before, .value__plus::after {
  content: "";
  position: absolute;
  background: var(--color-text-muted);
  transition: transform 0.45s var(--ease-out-expo), background 0.4s;
}
.value__plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.value__plus::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%) scaleY(1);
}
.value__panel {
  overflow: hidden;
  height: 0;
}
.value__panel p {
  padding-bottom: clamp(1.2rem, 2.6vh, 1.9rem);
  max-width: 54ch;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}
.value:hover .value__name {
  color: var(--color-text);
  transform: translateX(0.4rem);
}
.value.is-open .value__name {
  color: #fff;
}
.value.is-open .value__plus::before,
.value.is-open .value__plus::after {
  background: var(--color-brand-bright);
}
.value.is-open .value__plus::after {
  transform: translateX(-50%) scaleY(0);
}

.stories {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter) clamp(2rem, 6vh, 4rem);
  overflow: visible;
}
.stories__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.stories__blueprint {
  position: absolute;
  inset: 0;
  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), linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 240px 240px, 240px 240px, 48px 48px, 48px 48px;
  mask-image: radial-gradient(120% 90% at 70% 8%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 8%, #000 0%, transparent 72%);
}
.stories__glow {
  position: absolute;
  top: -18%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.16), transparent 62%);
  filter: blur(10px);
}
.stories__circuit {
  position: absolute;
  right: -4%;
  top: 4%;
  width: clamp(360px, 40vw, 620px);
  height: auto;
  opacity: 0.55;
}
.stories__circuit path {
  stroke: rgba(var(--brand-rgb), 0.45);
  stroke-width: 1.2;
  stroke-dasharray: 5 9;
  filter: drop-shadow(0 0 6px rgba(var(--brand-rgb), 0.4));
}
@media screen and (max-width: 768px) {
  .stories__circuit {
    display: none;
  }
}
.stories__spark {
  display: none;
}
.stories__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
}
@media screen and (max-width: 576px) {
  .stories__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }
}
.stories__headline .u-overline {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-brand-bright);
}
.stories__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.stories__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  padding-bottom: 0.4rem;
}
.stories__meta-no {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--brand-rgb), 0.55);
}
.stories__meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.4;
}
.stories__rule {
  position: relative;
  z-index: 2;
  display: block;
  height: 1px;
  margin-bottom: clamp(1.5rem, 3.4vh, 2.6rem);
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.6), rgba(255, 255, 255, 0.08) 45%, transparent);
  transform: scaleX(0);
  transform-origin: left;
}
.stories__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(clamp(232px, 27vh, 300px), auto);
  gap: clamp(1rem, 1.6vw, 1.6rem);
  perspective: 1600px;
}
@media screen and (max-width: 992px) {
  .stories__grid {
    grid-auto-rows: minmax(clamp(232px, 31vh, 300px), auto);
  }
}
@media screen and (max-width: 768px) {
  .stories__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.gcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: span 2;
  grid-row: span 1;
  padding: clamp(1.5rem, 2.3vw, 2.4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--color-line);
  background: var(--color-bg-2);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.6s var(--ease-out-expo), border-color 0.5s, box-shadow 0.6s var(--ease-out-expo);
}
.gcard--feature {
  grid-column: span 4;
  grid-row: span 2;
}
.gcard--wide {
  grid-column: span 3;
  min-height: clamp(300px, 34vh, 360px);
}
@media screen and (max-width: 992px) {
  .gcard {
    grid-column: span 3;
  }
  .gcard--feature {
    grid-column: span 6;
    grid-row: span 2;
  }
  .gcard--wide {
    grid-column: span 3;
  }
}
@media screen and (max-width: 768px) {
  .gcard {
    grid-column: 1/-1 !important;
    grid-row: auto !important;
    min-height: clamp(280px, 46vh, 340px);
  }
  .gcard--feature {
    min-height: clamp(360px, 62vh, 460px);
  }
}
.gcard__media {
  position: absolute;
  inset: -8%;
  z-index: -2;
  will-change: transform;
}
.gcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.52) saturate(0.92) contrast(1.04);
  transition: transform 1.1s var(--ease-out-expo), filter 0.7s var(--ease-standard);
}
.gcard__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 4, 8, 0.62) 66%, rgba(2, 3, 6, 0.96) 100%), linear-gradient(150deg, rgba(var(--brand-rgb), 0.4), transparent 52%);
  transition: opacity 0.6s;
}
.gcard__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.12) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 1.05s var(--ease-out-expo);
  pointer-events: none;
}
.gcard__spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--brand-rgb), 0.32), transparent 44%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.5s var(--ease-standard);
}
.gcard__draw {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.gcard__draw rect {
  x: 1px;
  y: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  fill: none;
  stroke: var(--color-brand-bright);
  stroke-width: 1.6px;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(var(--brand-rgb), 0.7));
  transition: stroke-dashoffset 1s var(--ease-out-expo), opacity 0.35s;
}
.gcard__corner {
  display: none;
}
.gcard__no {
  position: absolute;
  top: clamp(1rem, 1.7vw, 1.5rem);
  left: clamp(1.3rem, 2.1vw, 2rem);
  z-index: 2;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32);
  letter-spacing: -0.01em;
  transition: opacity 0.45s var(--ease-standard), transform 0.6s var(--ease-out-expo);
}
.gcard--feature .gcard__no {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}
.gcard__badge {
  position: absolute;
  top: clamp(1rem, 1.7vw, 1.5rem);
  right: clamp(1.2rem, 2vw, 1.9rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: rgba(8, 10, 16, 0.55);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
}
.gcard__badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-bright);
}
.gcard__badge--feature i {
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.9);
}
.gcard__badge--live i {
  background: #36d399;
  animation: stories-pulse 2s ease-out infinite;
}
.gcard__body {
  position: relative;
  z-index: 2;
  transition: transform 0.6s var(--ease-out-expo);
}
.gcard__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  margin-bottom: 0.7rem;
}
.gcard__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.9);
}
.gcard__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.gcard--feature .gcard__title {
  font-size: clamp(1.9rem, 3.1vw, 3rem);
}
.gcard__reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows 0.6s var(--ease-out-expo), opacity 0.45s var(--ease-standard), margin-top 0.6s var(--ease-out-expo);
}
.gcard__reveal-in {
  overflow: hidden;
  min-height: 0;
}
.gcard__copy {
  max-width: 52ch;
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.gcard:not(.gcard--feature) .gcard__copy {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.4rem;
}
.gcard--feature .gcard__copy {
  max-width: 44ch;
  margin-top: 0.7rem;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
}
.gcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(1rem, 1.6vh, 1.4rem);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(8px);
  transition: transform 0.6s var(--ease-out-expo) 0.1s;
}
.gcard__cta-text {
  position: relative;
}
.gcard__cta-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--color-brand-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.gcard__cta-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  overflow: hidden;
  position: relative;
}
.gcard__cta-icon svg {
  width: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out-expo);
}
.gcard__cta-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.5s var(--ease-out-expo);
}
.gcard--feature .gcard__reveal {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: clamp(1rem, 2vh, 1.4rem);
}
.gcard--feature .gcard__copy, .gcard--feature .gcard__cta {
  transform: none;
}
.gcard:focus-visible {
  transform: translateY(-7px);
}
.gcard:hover, .gcard:focus-visible {
  outline: none;
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--brand-rgb), 0.1);
}
.gcard:hover .gcard__img, .gcard:focus-visible .gcard__img {
  transform: scale(1.13);
  filter: brightness(0.66) saturate(1.14) contrast(1.06);
}
.gcard:hover .gcard__spotlight, .gcard:focus-visible .gcard__spotlight {
  opacity: 1;
}
.gcard:hover .gcard__draw rect, .gcard:focus-visible .gcard__draw rect {
  opacity: 1;
  stroke-dashoffset: 0;
}
.gcard:hover .gcard__shade::after, .gcard:focus-visible .gcard__shade::after {
  transform: translateX(130%);
}
.gcard:hover .gcard__no, .gcard:focus-visible .gcard__no {
  opacity: 0;
  transform: translateY(-8px);
}
.gcard:hover .gcard__body, .gcard:focus-visible .gcard__body {
  transform: translateY(-2px);
}
.gcard:hover .gcard__reveal, .gcard:focus-visible .gcard__reveal {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0.9rem;
}
.gcard:hover .gcard__copy,
.gcard:hover .gcard__cta, .gcard:focus-visible .gcard__copy,
.gcard:focus-visible .gcard__cta {
  transform: none;
}
.gcard:hover .gcard__cta-text::after, .gcard:focus-visible .gcard__cta-text::after {
  transform: scaleX(1);
}
.gcard:hover .gcard__cta-icon, .gcard:focus-visible .gcard__cta-icon {
  border-color: transparent;
}
.gcard:hover .gcard__cta-icon svg, .gcard:focus-visible .gcard__cta-icon svg {
  transform: translateX(3px);
}
.gcard:hover .gcard__cta-icon::before, .gcard:focus-visible .gcard__cta-icon::before {
  transform: scale(1);
}
@media (hover: none) {
  .gcard .gcard__reveal {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 0.9rem;
  }
  .gcard .gcard__copy,
  .gcard .gcard__cta {
    transform: none;
  }
}

@keyframes stories-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-16px);
    opacity: 0.8;
  }
}
@keyframes stories-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(54, 211, 153, 0.6);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(54, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(54, 211, 153, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .stories__spark,
  .gcard__badge--live i {
    animation: none;
  }
  .stories__rule {
    transform: scaleX(1);
  }
  .gcard__shade::after {
    display: none;
  }
  .gcard__reveal {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 0.9rem;
  }
  .gcard__copy,
  .gcard__cta {
    transform: none;
  }
}
.cta-band {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) var(--gutter) clamp(6rem, 13vh, 9.5rem);
  overflow: hidden;
  isolation: isolate;
}

.cta-band + .footer {
  margin-top: 0;
}

.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.02;
  letter-spacing: -0.03em;
}
.cta-band__title .line__inner {
  white-space: nowrap;
}
.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.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #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);
}

@media (prefers-reduced-motion: reduce) {
  .cta-band__floor,
  .cta-band__deco::before {
    animation: none;
  }
  .btn-cta::before {
    display: none;
  }
}
.footer {
  position: relative;
  margin-top: clamp(3rem, 8vh, 6rem);
  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(--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 img {
  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);
  gap: clamp(1.4rem, 3vh, 2.4rem) clamp(1.2rem, 2.5vw, 2.2rem);
}
@media screen and (max-width: 576px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__col a {
  font-size: 0.9rem;
  color: 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.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 0.5rem;
}
.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.58rem;
  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.7rem;
  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: #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;
  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);
}
