@charset "UTF-8";
:root {
  --color-brand: #0037e6;
  --color-brand-strong: #002bb8;
  --color-brand-bright: #6680ff;
  --color-brand-weak: rgba(0, 55, 230, 0.14);
  --gradient-brand: linear-gradient(135deg, #2f4dff 0%, #002bb8 100%);
  --glow-brand: 0 0 0 1px rgba(0, 55, 230, 0.4), 0 0 42px rgba(0, 55, 230, 0.42);
  --brand-rgb: 0, 55, 230;
  --color-brand-contrast: #fff;
  --ambient-rgb: var(--brand-rgb);
  --color-bg: #06080d;
  --color-bg-2: #0a0c12;
  --color-surface: #13161c;
  --color-surface-2: #181c23;
  --color-elevated: #1f242c;
  --color-line: rgba(255, 255, 255, 0.08);
  --color-line-strong: rgba(255, 255, 255, 0.16);
  --color-text: #f2f4f7;
  --color-text-muted: #aab2bb;
  --color-text-subtle: #949ca5;
  --font-display: "Anton", system-ui, sans-serif;
  --ls-display: 0.025em;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra: 800;
  --dur-fast: 0.15s;
  --dur-base: 0.4s;
  --dur-slow: 0.7s;
  --dur-slower: 1.1s;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius: var(--radius-md);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --z-bg: 0;
  --z-content: 10;
  --z-cursor: 9000;
  --z-transition: 9500;
  --z-loader: 9800;
}

[data-theme=ardc] {
  --color-brand: #0037e6;
  --color-brand-strong: #002bb8;
  --color-brand-bright: #6680ff;
  --color-brand-weak: rgba(0, 55, 230, 0.16);
  --gradient-brand: linear-gradient(135deg, #2f4dff 0%, #002bb8 100%);
  --glow-brand: 0 0 0 1px rgba(0, 55, 230, 0.45), 0 0 60px rgba(0, 55, 230, 0.5);
  --brand-rgb: 0, 55, 230;
  --color-brand-contrast: #fff;
}

[data-theme=smp] {
  --color-brand: #ffc800;
  --color-brand-strong: #e0a800;
  --color-brand-bright: #ffd84d;
  --color-brand-weak: rgba(255, 200, 0, 0.16);
  --gradient-brand: linear-gradient(135deg, #ffd23d 0%, #edaf00 100%);
  --glow-brand: 0 0 0 1px rgba(255, 200, 0, 0.45), 0 0 60px rgba(255, 200, 0, 0.55);
  --brand-rgb: 255, 200, 0;
  --color-brand-contrast: #171200;
  --ambient-rgb: 255, 154, 10;
  --color-secondary: #d80d0d;
  --color-secondary-bright: #f15d5d;
  --secondary-rgb: 216, 13, 13;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--color-brand);
  color: var(--color-brand-contrast, #fff);
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none;
  }
}
:focus-visible {
  outline: 2px solid var(--color-brand-bright);
  outline-offset: 4px;
}

.u-display {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
}

.u-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.u-overline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line__inner {
  display: block;
  will-change: transform;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body.page {
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--color-bg);
}

body.page.is-menu-open {
  overflow: hidden;
}

html {
  scrollbar-gutter: stable;
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-brand) var(--color-bg-2);
  }
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-2);
  border-left: 1px solid var(--color-line, rgba(255, 255, 255, 0.06));
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-brand-bright), var(--color-brand) 45%, var(--color-brand-strong));
  border-radius: 999px;
  border: 3px solid var(--color-bg-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-bright);
}

::-webkit-scrollbar-corner {
  background: var(--color-bg-2);
}

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

@media (max-width: 1440px) {
  :root {
    --gutter: 30px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --gutter: 20px;
  }
}
.content {
  position: relative;
  z-index: var(--z-content);
}

section {
  position: relative;
}

.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.06em;
}

.line__inner {
  display: block;
  will-change: transform;
  transform: translateY(120%);
}

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

[data-reveal] {
  will-change: transform, opacity;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
}

.link-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand-bright);
  transition: transform 0.5s var(--ease-out-expo);
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--color-line-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo), background 0.5s;
}

.link-arrow:hover svg {
  transform: translateY(3px);
}

.link-arrow:hover::after {
  transform: scaleX(1);
  background: var(--color-brand-bright);
}

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

.atmos {
  position: fixed;
  inset: 0;
  z-index: var(--z-bg);
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.16), transparent 60%), var(--color-bg);
}

.atmos__gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.atmos__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, transparent 75%);
  opacity: 0.6;
}

.atmos__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.atmos__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(135% 120% at 50% 40%, transparent 52%, rgba(0, 0, 0, 0.72) 100%);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.cursor__dot, .cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  will-change: transform;
  backface-visibility: hidden;
}

.cursor__dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--color-brand-bright);
  box-shadow: 0 0 12px 2px rgba(var(--brand-rgb), 0.8);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.cursor__ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: invert(0.04);
  -webkit-backdrop-filter: invert(0.04);
  display: grid;
  place-items: center;
  transition: width 0.28s var(--ease-out-expo), height 0.28s var(--ease-out-expo), margin 0.28s var(--ease-out-expo), border-color 0.22s ease, background 0.22s ease;
}

.cursor__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s var(--ease-out-expo);
  white-space: nowrap;
}

.cursor.is-hovering .cursor__ring {
  width: 66px;
  height: 66px;
  margin: -33px 0 0 -33px;
  border-color: rgba(var(--brand-rgb), 0.9);
  background: rgba(var(--brand-rgb), 0.12);
}

.cursor.is-hovering .cursor__label {
  opacity: 1;
  transform: scale(1);
}

.cursor.is-hovering .cursor__dot {
  background: #fff;
  box-shadow: 0 0 16px 4px rgba(var(--brand-rgb), 0.95);
}

.cursor.is-down .cursor__ring {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
}

.cursor.is-idle .cursor__dot {
  animation: cursor-pulse 2.2s ease-in-out infinite;
}

@keyframes cursor-pulse {
  0%, 100% {
    box-shadow: 0 0 10px 2px rgba(var(--brand-rgb), 0.6);
  }
  50% {
    box-shadow: 0 0 18px 5px rgba(var(--brand-rgb), 0.95);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cursor.is-idle .cursor__dot {
    animation: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}
:root {
  --masthead-h: calc(clamp(50px, 4.4vw, 64px) * 1.342 + clamp(1rem, 2.4vw, 1.7rem) * 2);
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  --badge-w: clamp(50px, 4.4vw, 64px);
  --ctl-h: clamp(42px, 3.1vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.4vw, 1.7rem) var(--gutter);
  transition: transform 0.6s var(--ease-out-expo), background 0.5s var(--ease-standard), backdrop-filter 0.5s var(--ease-standard), padding 0.5s var(--ease-out-expo), box-shadow 0.55s var(--ease-standard);
}

.masthead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.7) 50%, transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease-standard);
}

.masthead.is-stuck {
  --badge-w: clamp(38px, 3.2vw, 46px);
  --ctl-h: clamp(38px, 2.7vw, 40px);
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.74), rgba(6, 8, 13, 0.56));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 20px 52px -26px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding-top: clamp(0.5rem, 1.1vw, 0.78rem);
  padding-bottom: clamp(0.5rem, 1.1vw, 0.78rem);
}

.masthead.is-stuck::after {
  opacity: 1;
}

.masthead.is-stuck .masthead__brand {
  gap: clamp(0.6rem, 1vw, 0.9rem);
}

.masthead.is-stuck .btn-login {
  box-shadow: 0 6px 18px -8px rgba(var(--brand-rgb), 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.masthead.is-hidden {
  transform: translateY(-100%);
}

.masthead__brand {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.3vw, 1.2rem);
  transition: gap 0.5s var(--ease-out-expo);
}

.masthead__logo {
  display: inline-flex;
}

.masthead__badge {
  width: var(--badge-w);
  height: auto;
  filter: invert(1) drop-shadow(0 3px 14px rgba(0, 0, 0, 0.7));
  transition: width 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.masthead__brand:hover .masthead__badge {
  transform: rotate(-4deg) scale(1.05);
}

.masthead__word {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  max-width: 13ch;
  line-height: 1.34;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .masthead__word {
    display: none;
  }
}
.masthead__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.4rem);
}

.btn-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  height: var(--ctl-h);
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-contrast, #fff);
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.9), rgba(var(--brand-rgb), 0.45));
  box-shadow: 0 10px 30px -10px rgba(var(--brand-rgb), 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s, height 0.5s var(--ease-out-expo), width 0.5s var(--ease-out-expo);
}

.btn-login__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  aspect-ratio: 1;
  margin: -110% 0 0 -110%;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(var(--brand-rgb), 0.9) 80deg, var(--color-brand-bright) 140deg, transparent 220deg, transparent 360deg);
  animation: btnGlowSpin 5s linear infinite;
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-login::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.4) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease-out-expo);
}

.btn-login__icon {
  display: inline-flex;
}

.btn-login__icon svg {
  width: 15px;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(var(--brand-rgb), 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-login:hover .btn-login__glow {
  opacity: 0.55;
}

.btn-login:hover::after {
  transform: translateX(130%);
}

.btn-login:hover .btn-login__icon svg {
  transform: translateX(3px);
}

@media screen and (max-width: 576px) {
  .btn-login__label {
    display: none;
  }
  .btn-login {
    width: var(--ctl-h);
    padding: 0;
  }
  .btn-login__icon svg {
    width: 17px;
  }
}
@keyframes btnGlowSpin {
  to {
    transform: rotate(360deg);
  }
}
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: var(--ctl-h);
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.45s, background 0.45s, transform 0.5s var(--ease-out-expo), height 0.5s var(--ease-out-expo), width 0.5s var(--ease-out-expo);
}

@media screen and (max-width: 576px) {
  .burger {
    width: var(--ctl-h);
    padding: 0;
  }
}
.burger__box {
  position: relative;
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
}

.burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform 0.45s var(--ease-out-expo), background 0.35s, top 0.4s var(--ease-out-expo), opacity 0.3s;
}

.burger__line:nth-child(1) {
  top: 0;
  transform-origin: left center;
}

.burger__line:nth-child(2) {
  top: 6px;
  transform-origin: right center;
}

.burger__line:nth-child(3) {
  top: 12px;
  transform-origin: left center;
}

.burger__text {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.4s;
}

@media screen and (max-width: 576px) {
  .burger__text {
    display: none;
  }
}
.burger:hover {
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.1);
  transform: translateY(-1px);
}

.burger:hover .burger__text {
  color: #fff;
}

.burger:hover .burger__line {
  background: #fff;
}

.burger:hover .burger__line:nth-child(1) {
  transform: scaleX(0.55);
}

.burger:hover .burger__line:nth-child(2) {
  transform: scaleX(0.8);
  transition-delay: 0.06s;
}

.burger:hover .burger__line:nth-child(3) {
  transform: scaleX(0.55);
  transition-delay: 0.12s;
}

.burger[aria-expanded=true] .burger__line {
  background: var(--color-text);
  transition-delay: 0s;
}

.burger[aria-expanded=true] .burger__line:nth-child(1) {
  top: 6px;
  transform-origin: center;
  transform: rotate(45deg);
}

.burger[aria-expanded=true] .burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger[aria-expanded=true] .burger__line:nth-child(3) {
  top: 6px;
  transform-origin: center;
  transform: rotate(-45deg);
}

.megamenu {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  pointer-events: none;
}

.megamenu__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #080a10, #05070c);
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.megamenu__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(130% 110% at 18% 12%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(130% 110% at 18% 12%, #000 0%, transparent 70%);
}

.megamenu__glow {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 70vw;
  height: 70vw;
  max-width: 920px;
  max-height: 920px;
  background: radial-gradient(circle, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.2), transparent 60%);
  will-change: transform, opacity;
  animation: mmGlowDrift 14s ease-in-out infinite alternate;
}

.megamenu__aura {
  position: absolute;
  left: -12%;
  bottom: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.12), transparent 62%);
  will-change: transform, opacity;
  animation: mmAuraDrift 18s ease-in-out infinite alternate;
}

.megamenu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.megamenu:not(.is-open) .megamenu__glow, .megamenu:not(.is-open) .megamenu__aura {
  animation-play-state: paused;
}

.megamenu.is-animating .megamenu__close, .megamenu.is-animating .mpanel__links a, .megamenu.is-animating .qbtn {
  transition: none !important;
}

.megamenu__close {
  position: absolute;
  top: clamp(1.5rem, 3.5vh, 2.8rem);
  right: clamp(1.6rem, 4vw, 3.4rem);
  z-index: 5;
  width: clamp(52px, 5vw, 62px);
  height: clamp(52px, 5vw, 62px);
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: transform 0.6s var(--ease-out-expo), border-color 0.45s, background 0.45s, box-shadow 0.45s;
}

.megamenu__close-x {
  position: relative;
  width: 20px;
  height: 20px;
}

.megamenu__close-x span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: var(--color-text);
  transition: background 0.3s;
}

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

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

.megamenu__close:hover {
  transform: rotate(90deg) scale(1.06);
  border-color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.14);
  box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0.08), 0 0 30px rgba(var(--brand-rgb), 0.4);
}

.megamenu__close:hover .megamenu__close-x span {
  background: var(--color-brand-bright);
}

.megamenu.is-open .megamenu__close {
  opacity: 1;
}

.megamenu__stage {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(5.5rem, 13vh, 9rem) var(--gutter) clamp(3rem, 7vh, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  opacity: 0;
}

@media screen and (max-width: 992px) {
  .megamenu__stage {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: clamp(1.6rem, 4vh, 2.6rem);
    overflow-y: auto;
    padding-block: clamp(4.5rem, 9vh, 6rem) clamp(2.5rem, 6vh, 4rem);
  }
}
.megamenu__index {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1.15vh, 0.95rem);
  padding-left: 1.4rem;
}

.megamenu__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: linear-gradient(var(--color-brand), var(--color-brand-bright));
  box-shadow: 0 0 14px rgba(var(--brand-rgb), 0.75);
  opacity: 0;
  pointer-events: none;
  will-change: transform, height;
}

.megamenu__panel {
  position: relative;
  height: clamp(420px, 54vh, 560px);
  padding-left: clamp(1.8rem, 3.2vw, 3.4rem);
  border-left: 1px solid var(--color-line);
}

@media screen and (max-width: 992px) {
  .megamenu__panel {
    border-left: 0;
    padding-left: 0;
    height: auto;
    min-height: 0;
  }
}
.megamenu__quick {
  position: absolute;
  left: clamp(1.8rem, 3.2vw, 3.4rem);
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media screen and (max-width: 992px) {
  .megamenu__quick {
    position: relative;
    left: 0;
    margin-top: 1.8rem;
  }
}
.midx {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: clamp(0.9rem, 1.7vw, 1.4rem);
  padding: clamp(0.45rem, 1.2vh, 0.85rem) 0 clamp(0.45rem, 1.2vh, 0.85rem) clamp(0.6rem, 1.4vw, 1.1rem);
}

.midx__bar {
  display: none;
}

.midx__no {
  flex: 0 0 auto;
  width: 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  transition: color 0.45s var(--ease-out-expo);
}

.midx__label {
  position: relative;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.35rem, 2.7vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: var(--ls-display);
  color: var(--color-text-muted);
  transition: color 0.45s var(--ease-out-expo), transform 0.55s var(--ease-out-expo), text-shadow 0.5s var(--ease-out-expo);
}

.midx:hover, .midx:focus-visible, .midx.is-active {
  outline: none;
}

.midx:hover .midx__no, .midx:focus-visible .midx__no, .midx.is-active .midx__no {
  color: var(--color-brand-bright);
}

.midx:hover .midx__label, .midx:focus-visible .midx__label, .midx.is-active .midx__label {
  color: #fff;
  transform: translateX(0.45rem);
  text-shadow: 0 0 22px rgba(var(--brand-rgb), 0.45);
}

.midx.is-current .midx__label {
  color: var(--color-brand-bright);
}

.midx.is-current.is-active .midx__label {
  color: #fff;
}

.mpanel {
  position: absolute;
  inset: 0 0 auto 0;
  padding-left: inherit;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  filter: blur(7px);
  transition: opacity 0.45s var(--ease-standard), transform 0.6s var(--ease-out-expo), filter 0.5s var(--ease-out-expo), visibility 0.45s;
}

.mpanel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
}

@media screen and (max-width: 992px) {
  .mpanel.is-active {
    position: relative;
    inset: auto;
  }
}
.mpanel__eyebrow {
  display: block;
  padding-left: 1.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  margin-bottom: clamp(1.4rem, 3.2vh, 2.2rem);
}

.mpanel__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(1.9rem, auto);
  gap: clamp(0.55rem, 1.3vh, 0.95rem) clamp(1.6rem, 2.6vw, 2.8rem);
  align-content: start;
}

/* dense panels (Venue carries the full visit + records set) need a third
   column, otherwise the rows run past .megamenu__quick at the panel's foot */
.mpanel__links--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.1rem, 1.8vw, 2rem);
}

@media screen and (max-width: 1200px) {
  .mpanel__links--wide {
    column-gap: clamp(0.9rem, 1.4vw, 1.4rem);
  }
}
@media screen and (max-width: 992px) {
  .mpanel__links--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .mpanel__links--wide {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .mpanel__links {
    grid-template-columns: 1fr;
  }
}
.mpanel__links a {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 1.9rem;
  padding: 0.15rem 0 0.15rem 1.15rem;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.15;
  white-space: nowrap;
  color: var(--color-text-muted);
  transition: color 0.35s var(--ease-standard), transform 0.45s var(--ease-out-expo), text-shadow 0.45s var(--ease-out-expo);
}

.mpanel__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.7rem;
  height: 1px;
  background: var(--color-brand-bright);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.7);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out-expo);
}

.mpanel__links a:hover, .mpanel__links a:focus-visible {
  outline: none;
  color: #fff;
  transform: translateX(0.4rem);
  text-shadow: 0 0 18px rgba(var(--brand-rgb), 0.4);
}

.mpanel__links a:hover::before, .mpanel__links a:focus-visible::before {
  transform: translateY(-50%) scaleX(1);
}

.qbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  height: 46px;
  padding: 0 0.4rem 0 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: border-color 0.4s, background 0.4s, color 0.4s, transform 0.5s var(--ease-out-expo);
}

.qbtn__icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line-strong);
  flex: 0 0 auto;
  transition: background 0.4s var(--ease-standard), border-color 0.4s;
}

.qbtn__icon svg {
  width: 14px;
  transition: transform 0.45s var(--ease-out-expo);
}

.qbtn:hover {
  transform: translateY(-2px);
  border-color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.1);
}

.qbtn:hover .qbtn__icon {
  border-color: var(--color-brand-bright);
  color: var(--color-brand-bright);
}

.qbtn:hover .qbtn__icon svg {
  transform: translateX(2px);
}

.qbtn--primary {
  border-color: transparent;
  background: var(--gradient-brand);
  color: var(--color-brand-contrast, #fff);
  box-shadow: 0 12px 32px -12px rgba(var(--brand-rgb), 0.8);
}

.qbtn--primary .qbtn__icon {
  background: rgba(255, 255, 255, 0.16);
  border-color: transparent;
}

.qbtn--primary:hover {
  background: var(--gradient-brand);
  box-shadow: 0 18px 40px -12px rgba(var(--brand-rgb), 0.95);
}

.qbtn--primary:hover .qbtn__icon {
  background: rgba(255, 255, 255, 0.26);
  border-color: transparent;
  color: inherit;
}

@media screen and (max-width: 992px) {
  .megamenu.is-touch .megamenu__close {
    top: max(0.85rem, env(safe-area-inset-top) + 0.5rem);
    right: max(0.85rem, env(safe-area-inset-right) + 0.5rem);
    width: 48px;
    height: 48px;
  }
  .megamenu.is-touch .megamenu__stage {
    display: block;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
    padding-inline: clamp(1.35rem, 6vw, 2.5rem);
    padding-top: max(clamp(4rem, 7vh, 4.75rem), env(safe-area-inset-top) + 3.6rem);
    padding-bottom: max(clamp(2.5rem, 8vh, 4rem), env(safe-area-inset-bottom) + 2.25rem);
  }
  .megamenu.is-touch .megamenu__stage::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .megamenu.is-touch .megamenu__marker {
    display: none;
  }
  .megamenu.is-touch .megamenu__panel {
    display: none;
  }
  .megamenu.is-touch .megamenu__index {
    padding-left: 0;
    gap: 0;
  }
  .megamenu.is-touch .megamenu__quick {
    margin-top: clamp(2rem, 6vh, 3rem);
    gap: 0.7rem;
  }
  .megamenu.is-touch .qbtn {
    min-height: 48px;
    padding-inline: 1.35rem;
  }
  .megamenu.is-touch .m-acc {
    border-bottom: 1px solid var(--color-line);
  }
  .megamenu.is-touch .m-acc:first-of-type {
    border-top: 1px solid var(--color-line);
  }
  .megamenu.is-touch .m-acc__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 60px;
  }
  .megamenu.is-touch .m-acc__head .midx {
    flex: 1 1 auto;
    align-items: center;
    min-height: 60px;
    padding: clamp(0.85rem, 2.4vh, 1.3rem) 0;
    gap: 0;
  }
  .megamenu.is-touch .m-acc__head .midx__no {
    display: none;
  }
  .megamenu.is-touch .m-acc__head .midx__label {
    font-size: clamp(1.4rem, 5.6vw, 1.85rem);
    transform: none !important;
    text-shadow: none;
  }
  .megamenu.is-touch .m-acc__toggle {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: none;
    color: var(--color-text-subtle);
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
  }
  .megamenu.is-touch .m-acc__toggle svg {
    width: 22px;
    height: 22px;
    transition: transform 0.32s var(--ease-out-expo);
  }
  .megamenu.is-touch .m-acc__toggle:focus-visible {
    outline: none;
    background: rgba(var(--brand-rgb), 0.14);
    color: var(--color-brand-bright);
  }
  .megamenu.is-touch .m-acc.is-expanded .m-acc__toggle {
    color: var(--color-brand-bright);
  }
  .megamenu.is-touch .m-acc.is-expanded .m-acc__toggle svg {
    transform: rotate(180deg);
  }
  .megamenu.is-touch .m-acc.is-expanded .midx__label {
    color: #fff;
  }
  .megamenu.is-touch .m-acc__body {
    height: 0;
    overflow: hidden;
    will-change: height;
  }
  .megamenu.is-touch .m-acc .mpanel {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    transition: none;
    padding: 0 0 clamp(1.25rem, 4vh, 1.9rem);
  }
  .megamenu.is-touch .mpanel__eyebrow {
    display: none;
  }
  .megamenu.is-touch .mpanel__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0.4rem;
  }
  .megamenu.is-touch .mpanel__links a {
    width: auto;
    min-height: 48px;
    padding: 0.6rem 0 0.6rem 1.15rem;
    font-size: 1.05rem;
    white-space: normal;
    transform: none !important;
    text-shadow: none;
  }
  .megamenu.is-touch .mpanel__links a::before {
    display: none;
  }
}
@keyframes mmGlowDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  to {
    transform: translate3d(-4%, 4%, 0) scale(1.12);
    opacity: 1;
  }
}
@keyframes mmAuraDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 0.7;
  }
  to {
    transform: translate3d(5%, -3%, 0) scale(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .megamenu__bg {
    clip-path: none;
  }
  .megamenu__stage {
    opacity: 1;
  }
  .megamenu__glow,
  .megamenu__aura {
    animation: none;
  }
  .mpanel {
    transition: none;
    filter: none;
  }
  /* the active panel's own visibility:visible stops the closed shell's
     visibility:hidden from inheriting — with the stage forced opaque
     above, it bled through the page. Re-hide it while the menu is shut. */
  .megamenu:not(.is-open) .mpanel.is-active {
    visibility: hidden;
  }
}
.footer {
  position: relative;
  padding: clamp(3.5rem, 9vh, 7rem) var(--gutter) 0;
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-line);
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
}

.footer__glow {
  position: absolute;
  left: 50%;
  bottom: -55%;
  width: 130vw;
  height: 90vw;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.16), transparent 70%);
}

.footer__watermark {
  position: absolute;
  left: 50%;
  bottom: clamp(2.5rem, 5vh, 4.5rem);
  transform: translateX(-50%);
  width: min(1180px, 92vw);
  height: auto;
  opacity: 0.035;
  filter: blur(0.3px);
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  mask-image: radial-gradient(115% 130% at 50% 50%, #000 38%, transparent 82%);
  -webkit-mask-image: radial-gradient(115% 130% at 50% 50%, #000 38%, transparent 82%);
}

.footer__top, .footer__contact, .footer__bar {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin-inline: auto;
}

.footer {
  --footer-rhythm: clamp(2.4rem, 5vh, 3.5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 2.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: var(--footer-rhythm);
}

@media screen and (max-width: 992px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.footer__brand {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
}

.footer__brand img {
  display: block;
  width: 60px;
  height: auto;
  filter: invert(1) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s var(--ease-out-expo);
}

.footer__brand:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.footer__desc {
  margin-top: 1.3rem;
  max-width: 38ch;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* group gap must read wider than the head→links gap inside a column,
     or the two rows of columns blur into one list */
  --footer-group-gap: clamp(2rem, 4vh, 2.75rem);
  gap: 0.65rem clamp(1.2rem, 2.5vw, 2.2rem);
  margin-top: calc(-1 * var(--footer-group-gap));
}

@media screen and (max-width: 576px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__col {
  /* subgrid: every column in a row shares the heading track, so a
     wrapping head (Competitors & Officials) can't stagger its siblings'
     links and no fixed two-line reservation is needed */
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  row-gap: 0.65rem;
  align-content: start;
}

@supports not (grid-template-rows: subgrid) {
  .footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
}
.footer__col a {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--color-text) 80%, var(--color-text-muted));
  width: fit-content;
  position: relative;
  transition: color 0.35s, transform 0.4s var(--ease-out-expo);
}

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

.footer__head {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 0.7rem;
  padding-top: var(--footer-group-gap);
  align-self: end;
  line-height: 1.3;
}

.footer__contact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  padding: var(--footer-rhythm) 0 0;
  border-top: 1px solid var(--color-line);
}

@media screen and (max-width: 992px) {
  .footer__contact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .footer__contact {
    grid-template-columns: 1fr;
  }
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--color-text);
}

.footer__ic {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  color: var(--color-brand-bright);
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out-expo);
}

.footer__ic svg {
  width: 18px;
  height: 18px;
}

.footer__contact-item:hover .footer__ic {
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.12);
  transform: translateY(-2px);
}

.footer__ic-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: var(--footer-rhythm) 0 clamp(1.6rem, 3.5vh, 2.4rem);
  margin-top: var(--footer-rhythm);
  border-top: 1px solid var(--color-line);
}

.footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer__legal a {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  padding: 0 1rem;
  position: relative;
  transition: color 0.35s;
}

.footer__legal a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background: var(--color-line-strong);
}

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

.soc {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  color: var(--color-text-muted);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s, border-color 0.4s, transform 0.5s var(--ease-out-expo);
}

.soc svg {
  width: 17px;
  height: 17px;
  position: relative;
  z-index: 1;
}

.soc::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient-brand);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out-expo);
}

.soc:hover {
  color: var(--color-brand-contrast, #fff);
  border-color: transparent;
  transform: translateY(-3px);
}

.soc:hover::before {
  transform: translateY(0);
}

.newsletter {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 340px;
}

.newsletter .u-overline {
  color: var(--color-brand-bright);
}

.newsletter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-line-strong);
  transition: border-color 0.4s;
}

.newsletter__field:focus-within {
  border-color: var(--color-brand-bright);
}

.newsletter__input {
  flex: 1;
  background: none;
  border: none;
  outline: none !important;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0;
}

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

.newsletter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-brand-bright);
}

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

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

[data-theme=smp] .masthead__badge {
  width: auto;
  height: calc(var(--badge-w) * 1.342);
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.7));
  transition: height 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

[data-theme=smp] .masthead__word {
  display: none;
}

[data-theme=smp] .footer__brand img {
  width: auto;
  height: 80.52px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
}

[data-theme=smp],
[data-theme=ardc] {
  --section-pad: 60px;
}

@media screen and (max-width: 992px) {
  [data-theme=smp],
  [data-theme=ardc] {
    --section-pad: 48px;
  }
}
@media screen and (max-width: 768px) {
  [data-theme=smp],
  [data-theme=ardc] {
    --section-pad: 40px;
  }
}
[data-theme=smp] .footer {
  padding-top: var(--section-pad);
}

.xswitch {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 640;
  width: clamp(54px, 4.2vw, 64px);
  text-decoration: none;
  color: var(--color-text);
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: translateY(-50%) translateX(118%);
  transition: transform 0.85s var(--ease-out-expo), opacity 0.7s ease;
  will-change: transform, opacity;
}

.xswitch.is-ready {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.xswitch.is-tucked {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(118%);
}

.xswitch__tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1.1vh, 0.9rem);
  padding: clamp(0.85rem, 1.5vh, 1.15rem) 0;
  border: 1px solid var(--color-line-strong);
  border-right: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: linear-gradient(150deg, rgba(20, 23, 30, 0.72), rgba(10, 12, 17, 0.62));
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  box-shadow: -10px 0 34px -16px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 0 0 1px rgba(var(--brand-rgb), 0.04);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.5s, box-shadow 0.6s var(--ease-out-expo), background 0.5s, transform 0.28s var(--ease-out-expo);
  animation: xsw-float 7s ease-in-out 1.1s infinite;
}

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

.xswitch__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 13px 13px;
  mask-image: radial-gradient(120% 80% at 50% 30%, #000 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 30%, #000 35%, transparent 85%);
  opacity: 0.5;
}

.xswitch__glow {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 150%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--ambient-rgb, var(--brand-rgb)), 0.4), transparent 62%);
  filter: blur(8px);
  animation: xsw-breathe 5.5s ease-in-out infinite;
}

.xswitch__sweep {
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  transform: translateY(-120%);
  transition: transform 0.9s var(--ease-out-expo);
}

.xswitch__swap {
  width: 17px;
  height: 17px;
  color: var(--color-brand-bright);
  opacity: 0.85;
  transition: transform 0.6s var(--ease-out-expo), opacity 0.4s;
}

.xswitch__screen {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(38px, 3vw, 44px);
  height: clamp(38px, 3vw, 44px);
  border-radius: var(--radius-sm, 8px);
  background: radial-gradient(120% 120% at 50% 0%, rgba(var(--brand-rgb), 0.12), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  will-change: transform;
}

.xswitch__logo {
  max-width: 84%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s var(--ease-out-expo);
}

.xswitch__bracket {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1.5px solid rgba(var(--brand-rgb), 0.55);
  transition: border-color 0.4s, width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo);
}

.xswitch__bracket--tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.xswitch__bracket--tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
}

.xswitch__bracket--bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
}

.xswitch__bracket--br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.xswitch__name {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-block: 0.1rem;
  transition: color 0.4s, letter-spacing 0.5s var(--ease-out-expo);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.xswitch__pulse {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 64%;
  overflow: visible;
  pointer-events: none;
  opacity: 0.7;
}

.xswitch__pulse-rail {
  stroke: rgba(var(--brand-rgb), 0.35);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}

.xswitch__pulse-node {
  fill: var(--color-brand-bright);
  filter: drop-shadow(0 0 4px rgba(var(--brand-rgb), 0.9));
  animation: xsw-node 3.4s ease-in-out infinite;
}

.xswitch:hover .xswitch__tab, .xswitch:focus-visible .xswitch__tab {
  border-color: rgba(var(--brand-rgb), 0.6);
  box-shadow: -16px 0 46px -16px rgba(var(--brand-rgb), 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(var(--brand-rgb), 0.12);
}

.xswitch:hover .xswitch__sweep, .xswitch:focus-visible .xswitch__sweep {
  transform: translateY(120%);
}

.xswitch:hover .xswitch__swap, .xswitch:focus-visible .xswitch__swap {
  transform: rotate(180deg);
  opacity: 1;
}

.xswitch:hover .xswitch__logo, .xswitch:focus-visible .xswitch__logo {
  transform: scale(1.06);
}

.xswitch:hover .xswitch__name, .xswitch:focus-visible .xswitch__name {
  color: #fff;
  letter-spacing: 0.42em;
}

.xswitch:hover .xswitch__bracket, .xswitch:focus-visible .xswitch__bracket {
  border-color: var(--color-brand-bright);
  width: 8px;
  height: 8px;
}

.xswitch:focus-visible {
  outline: none;
}

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

.xswitch.is-leaving .xswitch__tab {
  transform: scale(0.95);
  border-color: var(--color-brand-bright);
  box-shadow: -20px 0 60px -10px rgba(var(--brand-rgb), 0.85), inset 0 0 0 1px rgba(var(--brand-rgb), 0.3);
  animation: none;
}

.xswitch.is-leaving .xswitch__glow {
  opacity: 1;
  animation: xsw-pulse-out 0.5s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .xswitch {
    top: auto;
    right: clamp(0.9rem, 4vw, 1.4rem);
    bottom: clamp(0.9rem, 4vw, 1.4rem);
    width: auto;
    transform: translateY(140%);
  }
  .xswitch.is-ready {
    transform: translateY(0);
  }
  .xswitch.is-tucked {
    transform: translateY(140%);
  }
  .xswitch .xswitch__tab {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.95rem 0.6rem 0.7rem;
    border-right: 1px solid var(--color-line-strong);
    border-radius: 999px;
    animation: none;
  }
  .xswitch .xswitch__pulse {
    display: none;
  }
  .xswitch .xswitch__swap {
    width: 15px;
    height: 15px;
  }
  .xswitch .xswitch__screen {
    width: 30px;
    height: 30px;
  }
  .xswitch .xswitch__name {
    writing-mode: horizontal-tb;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin: 0;
  }
}
[data-theme=smp] .xswitch__logo {
  filter: invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

body.is-menu-open .xswitch {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(118%);
}

@media screen and (max-width: 768px) {
  body.is-menu-open .xswitch {
    transform: translateY(140%);
  }
}
@keyframes xsw-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes xsw-breathe {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}
@keyframes xsw-node {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateY(74px);
    opacity: 0;
  }
}
@keyframes xsw-pulse-out {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}
@media (prefers-reduced-motion: reduce) {
  .xswitch {
    transition: opacity 0.4s ease;
  }
  .xswitch, .xswitch.is-ready, .xswitch.is-tucked {
    transform: translateY(-50%);
  }
}
@media screen and (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .xswitch, .xswitch.is-ready, .xswitch.is-tucked {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .xswitch__tab,
  .xswitch__glow,
  .xswitch__pulse-node {
    animation: none;
  }
  .xswitch__sweep {
    display: none;
  }
  body.is-menu-open .xswitch,
  .xswitch.is-tucked {
    opacity: 0;
  }
}
.totop {
  position: fixed;
  right: clamp(1.1rem, 2.4vw, 2rem);
  bottom: clamp(1.1rem, 3vh, 2rem);
  z-index: 620;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: var(--color-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(26px) scale(0.86);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-standard), transform 0.55s var(--ease-out-expo), color 0.3s;
}

.totop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.totop__disc {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  background: linear-gradient(150deg, rgba(20, 23, 30, 0.78), rgba(10, 12, 17, 0.66));
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.65);
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s;
}

.totop__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.totop__ring-base, .totop__ring-fill {
  fill: none;
  stroke-width: 2;
}

.totop__ring-base {
  stroke: rgba(255, 255, 255, 0.1);
}

.totop__ring-fill {
  stroke: rgba(var(--brand-rgb), 0.9);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 6px rgba(var(--brand-rgb), 0.5));
}

.totop__arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--ease-out-expo);
}

.totop:hover, .totop:focus-visible {
  color: var(--color-brand-contrast);
}

.totop:hover .totop__disc, .totop:focus-visible .totop__disc {
  border-color: rgba(var(--brand-rgb), 0.65);
  background: var(--gradient-brand);
  box-shadow: 0 14px 38px -12px rgba(var(--brand-rgb), 0.6);
}

.totop:hover .totop__arrow, .totop:focus-visible .totop__arrow {
  transform: translateY(-2px);
}

.totop:focus-visible {
  outline: none;
}

.totop:active .totop__arrow {
  transform: translateY(-4px) scale(0.94);
}

@media screen and (max-width: 768px) {
  .totop {
    width: 48px;
    height: 48px;
    right: clamp(0.9rem, 4vw, 1.4rem);
    bottom: calc(clamp(0.9rem, 4vw, 1.4rem) + 64px);
  }
  .totop__arrow {
    width: 18px;
    height: 18px;
  }
}
body.is-menu-open .totop {
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px) scale(0.86);
}

@media (prefers-reduced-motion: reduce) {
  .totop {
    transition: opacity 0.3s ease;
  }
  .totop, .totop.is-visible {
    transform: none;
  }
  .totop__arrow {
    transition: none;
  }
}
.page {
  --po-on: #27e08a;
  --po-soon: #f5c542;
  --po-poa: #9aa2ab;
  --po-ink: #171200;
  --po-hot: #f15d5d;
  --po-hot-rgb: 241, 93, 93;
}

.sp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: max(clamp(7rem, 15vh, 10rem), var(--masthead-h) + clamp(1rem, 4vh, 3rem)) var(--gutter) var(--section-pad);
  overflow: hidden;
}

.sp-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.sp-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.98) contrast(1.05);
  transform: scale(1.06);
  will-change: transform;
}

.sp-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.5) 0%, transparent 34%, rgba(3, 4, 7, 0.3) 74%, rgba(3, 4, 7, 0.94) 100%), linear-gradient(82deg, rgba(3, 4, 7, 0.82) 12%, rgba(3, 4, 7, 0.42) 38%, transparent 62%), radial-gradient(46% 58% at 76% 58%, rgba(3, 4, 7, 0.5), transparent 72%);
}

.sp-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(140% 100% at 50% 100%, #000 30%, transparent 76%);
  -webkit-mask-image: radial-gradient(140% 100% at 50% 100%, #000 30%, transparent 76%);
}

.sp-hero__circuit {
  position: absolute;
  z-index: -1;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(440px, 52vw, 880px);
  height: auto;
  opacity: 0.24;
  pointer-events: none;
}

.sp-hero__circuit path {
  fill: none;
  stroke: rgba(var(--brand-rgb), 0.55);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 8px rgba(var(--brand-rgb), 0.5));
}

@media screen and (max-width: 992px) {
  .sp-hero__circuit {
    opacity: 0.12;
  }
}
.sp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.86fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

@media screen and (max-width: 992px) {
  .sp-hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vh, 3rem);
    align-items: start;
  }
}
.sp-hero__content {
  max-width: none;
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: clamp(1rem, 2.4vh, 1.6rem);
}

.sp-hero__eyebrow-line {
  position: relative;
  display: inline-block;
  width: clamp(34px, 4vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-brand-bright), rgba(var(--brand-rgb), 0.15));
  transform-origin: left center;
  animation: sp-eyebrow-draw 1s var(--ease-out-expo) both 0.3s;
}

.sp-hero__eyebrow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.9);
  animation: sp-eyebrow-run 3.4s var(--ease-in-out, ease-in-out) infinite 1.2s;
}

.sp-hero__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
}

.sp-hero .line {
  display: block;
  overflow: hidden;
}

.sp-hero .line__inner {
  display: block;
}

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

.sp-hero__sub {
  max-width: 46ch;
  margin-top: clamp(1.3rem, 3vh, 2rem);
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.6;
}

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

.sp-hero__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem clamp(1.6rem, 2.4vw, 2.4rem);
  margin-top: clamp(1.9rem, 4vh, 2.8rem);
  padding-top: clamp(1.3rem, 2.8vh, 2rem);
  border-top: 1px solid var(--color-line);
  list-style: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.sp-hero__specs li {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sp-hero__specs li + li::before {
  content: "";
  position: absolute;
  left: clamp(-0.8rem, -1.2vw, -1.2rem);
  top: 50%;
  width: 1px;
  height: 0.9em;
  transform: translateY(-50%);
  background: linear-gradient(var(--color-brand-bright), rgba(var(--brand-rgb), 0.2));
  opacity: 0.6;
}

.sp-hero__specs b {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* — --po · full-width single-column hero (no instrument column:
   the strip, title and copy own the whole content width) ————— */
.sp-hero--po .sp-hero__inner {
  grid-template-columns: minmax(0, 1fr);
}

/* two-line lockup: sized so "where champions compete." holds one line */
.sp-hero--po .sp-hero__title {
  font-size: clamp(2.6rem, 5.6vw, 5.6rem);
}

/* three-line promise */
.sp-hero--po .sp-hero__sub {
  max-width: 70ch;
}

/* — --po · video with layered still fallback ————————————— */
.sp-hero__media {
  background: #05070b;
}

.sp-hero--po .sp-hero__video {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sp-hero--po .sp-hero__still {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.98) contrast(1.05);
  transform: scale(1.06);
}

.sp-hero--po .sp-hero__scrim {
  z-index: 3;
}

/* reduced motion / video failure → the still carries the hero */
.sp-hero--po.is-still .sp-hero__video {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .sp-hero--po .sp-hero__video {
    display: none;
  }
}
/* — --po · specs read as a clean ledger — no orphan pipes.
   2×2 grid by default, 4-up on wide screens; the separator
   pseudo only shows where a column boundary actually is. */
.sp-hero--po .sp-hero__specs {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 0.85rem clamp(2.2rem, 3.4vw, 3.4rem);
  justify-content: start;
}

.sp-hero--po .sp-hero__specs li {
  white-space: nowrap;
}

.sp-hero--po .sp-hero__specs li + li::before {
  display: none;
}

.sp-hero--po .sp-hero__specs li:nth-child(n+2)::before {
  display: block;
  left: clamp(-1.7rem, -1.7vw, -1.1rem);
}

@media screen and (max-width: 992px) {
  .sp-hero--po .sp-hero__specs {
    grid-template-columns: repeat(2, max-content);
  }
  .sp-hero--po .sp-hero__specs li::before {
    display: none !important;
  }
  .sp-hero--po .sp-hero__specs li:nth-child(even)::before {
    display: block !important;
  }
}
@media screen and (max-width: 576px) {
  .sp-hero--po .sp-hero__specs {
    grid-template-columns: minmax(0, 1fr);
  }
  .sp-hero--po .sp-hero__specs li::before {
    display: none !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero:not(.is-live) .line__inner {
    transform: translateY(120%);
    animation: sp-hero-guard-safety 0.9s ease 6s forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero:not(.is-live) .sp-hero__content [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    animation: sp-hero-guard-safety 0.9s ease 6s forwards;
  }
}
@keyframes sp-hero-guard-safety {
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes sp-hero-guard-safety-vis {
  to {
    visibility: visible;
  }
}
.sp-btn {
  --btn-h: clamp(52px, 5.4vh, 60px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  height: var(--btn-h);
  padding: 0 0.55rem 0 1.5rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-contrast, #fff);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--gradient-brand);
  box-shadow: 0 16px 44px -14px rgba(var(--brand-rgb), 0.8);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-standard), border-color 0.4s, background 0.4s;
}

.sp-btn__icon {
  display: inline-grid;
  place-items: center;
  width: calc(var(--btn-h) - 16px);
  height: calc(var(--btn-h) - 16px);
  border-radius: 50%;
  background: rgba(23, 18, 0, 0.16);
  flex: 0 0 auto;
  transition: background 0.4s;
}

.sp-btn__icon svg {
  width: 17px;
  transition: transform 0.45s var(--ease-out-expo);
}

.sp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.34) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease-out-expo);
}

.sp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px -12px rgba(var(--brand-rgb), 0.95);
}

.sp-btn:hover::before {
  transform: translateX(120%);
}

.sp-btn:hover .sp-btn__icon svg {
  transform: translateX(3px);
}

.sp-btn--ghost {
  background: transparent;
  border: 1px solid var(--color-line-strong);
  box-shadow: none;
  color: var(--color-text);
}

.sp-btn--ghost .sp-btn__icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line-strong);
}

.sp-btn--ghost::before {
  display: none;
}

.sp-btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.08);
  box-shadow: 0 18px 44px -20px rgba(var(--brand-rgb), 0.6);
}

.sp-btn--ghost:hover .sp-btn__icon {
  border-color: var(--color-brand-bright);
  color: var(--color-brand-bright);
}

.sp-faq {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.sp-faq__head {
  margin-bottom: clamp(2.2rem, 5vh, 3.5rem);
}

.sp-faq__head .u-overline {
  display: block;
  color: var(--color-brand-bright);
  margin-bottom: 1rem;
}

.sp-faq__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
}

.sp-faq__grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media screen and (max-width: 768px) {
  .sp-faq__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.sp-faq__cats {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media screen and (max-width: 768px) {
  .sp-faq__cats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}
.sp-faq__cat {
  appearance: none;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.4s, background 0.4s;
}

.sp-faq__cat span.n {
  font-size: 0.75rem;
  opacity: 0.85;
}

.sp-faq__cat::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--color-brand-bright);
  transition: width 0.4s var(--ease-out-expo);
}

.sp-faq__cat:hover {
  color: var(--color-text);
}

.sp-faq__cat.is-active {
  color: #fff;
  background: rgba(var(--brand-rgb), 0.1);
}

.sp-faq__cat.is-active::before {
  width: 16px;
}

@media screen and (max-width: 768px) {
  .sp-faq__cat {
    border: 1px solid var(--color-line-strong);
  }
  .sp-faq__cat.is-active {
    border-color: transparent;
  }
  .sp-faq__cat::before {
    display: none;
  }
}
.sp-faq__list {
  border-top: 1px solid var(--color-line);
}

.sp-q {
  border-bottom: 1px solid var(--color-line);
}

.sp-q.is-filtered {
  display: none;
}

.sp-q__btn {
  width: 100%;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.3rem, 2.6vh, 1.9rem) 0;
  color: var(--color-text);
  transition: color 0.4s, padding-left 0.5s var(--ease-out-expo);
}

.sp-q__q {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: var(--ls-display);
}

.sp-q__icon {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  transition: border-color 0.4s, background 0.4s, transform 0.6s var(--ease-out-expo);
}

.sp-q__icon::before, .sp-q__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.4s;
}

.sp-q__icon::before {
  width: 13px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.sp-q__icon::after {
  width: 1.5px;
  height: 13px;
  transform: translate(-50%, -50%);
}

.sp-q__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-out-expo);
}

.sp-q__panel-in {
  overflow: hidden;
  min-height: 0;
}

.sp-q__a {
  padding-bottom: clamp(1.3rem, 2.6vh, 1.9rem);
  max-width: none;
  padding-right: calc(38px + 1.5rem);
  color: var(--color-text-muted);
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}

.sp-q:hover .sp-q__btn {
  padding-left: 0.6rem;
  color: #fff;
}

.sp-q:hover .sp-q__icon {
  border-color: var(--color-brand-bright);
}

.sp-q.is-open .sp-q__btn {
  color: #fff;
}

.sp-q.is-open .sp-q__icon {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--color-brand-contrast, #fff);
  transform: rotate(180deg);
}

.sp-q.is-open .sp-q__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.sp-q.is-open .sp-q__panel {
  grid-template-rows: 1fr;
}

.sp-q.is-open .sp-q__a {
  opacity: 1;
  transform: none;
}

.sp-hero--cl .sp-hero__still {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.48) saturate(0.96) contrast(1.06);
  transform: scale(1.06);
  will-change: transform;
}

.sp-hero--cl .sp-hero__circuit {
  opacity: 0.34;
  right: -12%;
  width: clamp(480px, 56vw, 960px);
}

@media screen and (max-width: 992px) {
  .sp-hero--cl .sp-hero__circuit {
    opacity: 0.14;
  }
}
.postat {
  position: relative;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
}

.postat__row {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.postat__cell {
  position: relative;
  padding: clamp(1.7rem, 3.6vh, 2.5rem) clamp(0.9rem, 1.4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.postat__cell + .postat__cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: min(64%, 74px);
  background: linear-gradient(180deg, transparent, var(--color-line-strong), transparent);
}

.postat__tick {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--color-brand) 0 3px, transparent 3px 7px);
  opacity: 0.85;
  transition: width var(--dur-base) var(--ease-emphasized), opacity var(--dur-fast) var(--ease-standard);
}

.postat__cell:hover .postat__tick {
  width: 52px;
  opacity: 1;
}

.postat__cell .postat__num {
  transition: color var(--dur-base) var(--ease-standard);
}

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

.postat__num {
  font-size: clamp(1.45rem, 1.9vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

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

.postat__label {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  max-width: 26ch;
  text-wrap: balance;
}

.postat__cell--flag .postat__label {
  color: var(--color-text);
}

@media screen and (max-width: 1200px) {
  .postat__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .postat__cell:nth-child(4)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .postat__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .postat__cell {
    padding: 1.3rem 1rem;
  }
  .postat__cell:nth-child(odd)::before {
    display: none;
  }
}
.popart {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.popart__head {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  margin-bottom: clamp(1.6rem, 3vh, 2.4rem);
}

.popart__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin: 0.55rem 0 0.5rem;
}

.popart__sub {
  color: var(--color-text-muted);
  max-width: 52ch;
}

.popart__legend {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-bottom: 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.popart__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.popart__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.popart__dot--ms {
  background: var(--color-brand);
}
.popart__dot--et {
  background: #3b82f6;
}
.popart__dot--ed {
  background: #27e08a;
}
.popart__dot--vs {
  background: #b66dff;
}
.popart__dot--mh {
  background: #e5484d;
}
.popart__dot--gv {
  background: #f2f4f7;
}

.popart__marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  width: min(100% - var(--gutter) * 2, var(--maxw) - var(--gutter) * 2);
  margin-inline: auto;
  padding: clamp(1.2rem, 2.4vh, 1.9rem) 0;
  --marquee-dur: 60s;
}
.popart__marquee:hover .popart__set {
  animation-play-state: paused;
}
.popart__marquee--rev {
  --marquee-dur: 70s;
}
.popart__marquee--rev .popart__set {
  animation-direction: reverse;
}

.popart__set {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: popart-scroll var(--marquee-dur) linear infinite;
}

@keyframes popart-scroll {
  to {
    transform: translateX(-100%);
  }
}
.popart__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 10vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.popart__fade--l {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg), transparent);
}
.popart__fade--r {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg), transparent);
}

.popart__mark {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.6rem, 3vw, 3rem);
  opacity: 0.62;
  filter: grayscale(1) brightness(1.6);
  transition: opacity var(--dur-base) var(--ease-standard), filter var(--dur-base) var(--ease-standard);
}
.popart__mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-line-strong);
}
.popart__mark[data-cat=ms]::before {
  background: var(--color-brand);
}
.popart__mark[data-cat=et]::before {
  background: #3b82f6;
}
.popart__mark[data-cat=ed]::before {
  background: #27e08a;
}
.popart__mark[data-cat=vs]::before {
  background: #b66dff;
}
.popart__mark[data-cat=mh]::before {
  background: #e5484d;
}
.popart__mark:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.popart__logo {
  height: 22px;
  width: auto;
  display: block;
}
.popart__logo--focus {
  height: 40px;
}
.popart__logo--ph {
  height: 20px;
  filter: brightness(0) invert(1);
}
.popart__logo--ph-lg {
  height: 28px;
}

.popart__foot {
  max-width: var(--maxw);
  margin: 1.4rem auto 0;
  padding: 0 var(--gutter);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.popart__foot a {
  color: var(--color-brand-bright);
  text-decoration: none;
}
.popart__foot a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .popart__set {
    animation: none;
  }
  .popart__marquee {
    flex-wrap: wrap;
  }
  .popart__set + .popart__set {
    display: none;
  }
  .popart__set {
    flex-wrap: wrap;
    row-gap: 1rem;
  }
  .popart__mark {
    padding-block: 0.4rem;
  }
}
.popart__foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.popart__foot a svg {
  width: 12px;
  height: 12px;
}

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

.postory__head {
  margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
}

.postory__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin: 0.55rem 0 0;
}

.postory__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  max-width: 30em;
  margin: 0 0 clamp(2.2rem, 5vh, 3.6rem);
  color: var(--color-text-subtle);
}

.postory__frag--accent {
  font-weight: 600;
}

html:not(.has-js) .postory__lead .postory__frag,
.postory__lead.postmt-static .postory__frag {
  color: var(--color-text);
}

html:not(.has-js) .postory__lead .postory__frag--accent,
.postory__lead.postmt-static .postory__frag--accent {
  color: var(--color-brand-bright);
}

.postory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
  margin-bottom: clamp(2.2rem, 5vh, 3.4rem);
}

.postory__block {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.postory__block:hover {
  border-color: var(--color-line-strong);
  transform: translateY(-4px);
}

.postory__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16/8.4;
  overflow: hidden;
}
.postory__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out-quint);
}
.postory__block:hover .postory__media img {
  transform: scale(1.05);
}

.postory__tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(10, 12, 16, 0.72);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}

.postory__body {
  padding: clamp(1.2rem, 2.2vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.postory__h {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  line-height: 1.15;
  margin: 0;
}

.postory__body p {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}
.postory__body p b {
  color: var(--color-text);
  font-weight: 600;
}

.postory__cta {
  align-self: flex-start;
  margin-top: auto;
}

.popath {
  position: relative;
  margin: 0 0 clamp(2.6rem, 6vh, 4rem);
}

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

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

.popath__line-fill {
  fill: none;
  stroke-width: 1.6667;
}

.popath__line-rail,
.popath__line-tip {
  stroke: var(--color-line-strong);
}

.popath__line-tip {
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s var(--ease-standard);
}

.popath.is-complete .popath__line-tip {
  stroke: var(--color-brand);
}

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

.popath__rungs {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
}

.popath__rung {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

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

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

.popath__rung:hover .popath__node {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 5px rgba(255, 200, 0, 0.15), 0 0 18px rgba(255, 200, 0, 0.4);
}

.popath__no {
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 600;
  color: var(--color-text-subtle);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s var(--ease-standard);
}

.popath__rung.is-lit .popath__no {
  color: var(--color-brand-bright);
}

.popath__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  transition: color 0.4s var(--ease-standard);
}

.popath__rung.is-lit .popath__name {
  color: var(--color-text);
}

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

html:not(.has-js) .popath__line-fill {
  stroke-dashoffset: 0;
}

html:not(.has-js) .popath__line-tip {
  stroke: var(--color-brand);
}

html:not(.has-js) .popath__node {
  border-color: var(--color-brand);
  background: var(--color-brand);
}

html:not(.has-js) .popath__no {
  color: var(--color-brand-bright);
}

html:not(.has-js) .popath__name {
  color: var(--color-text);
}

.postory__quote {
  position: relative;
  margin: 0;
  padding: clamp(0.6rem, 1.6vh, 1.2rem) 0 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
}

.postory__quote-mark {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-display);
  font-size: clamp(3.8rem, 5.2vw, 5rem);
  line-height: 0.6;
  transform: translateY(0.18em);
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(var(--brand-rgb), 0.6);
  user-select: none;
}

.postory__quote-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.postory__quote-body p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.32;
  margin: 0;
  max-width: 30em;
  color: var(--color-text);
}
.postory__quote-body cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.postory__quote-body cite b {
  color: var(--color-brand-bright);
  font-weight: 600;
}
.postory__quote-body cite::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-brand);
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  .postory__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .popath__line {
    display: none;
  }
  .popath__rungs {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
  }
  .popath__rung {
    padding: 1.1rem 0 1.1rem 2.2rem;
    border-left: 1px solid var(--color-line-strong);
  }
  .popath__node {
    position: absolute;
    left: -7px;
    top: 1.35rem;
    margin: 0;
  }
}
@media screen and (max-width: 576px) {
  .postory__quote {
    grid-template-columns: minmax(0, 1fr);
  }
  .postory__quote-mark {
    display: none;
  }
}
.poway {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.poway__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  grid-template-areas: "over sub" "title sub" "hint sub";
  align-items: end;
  column-gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
}

.poway__head > .u-overline {
  grid-area: over;
}

@media screen and (max-width: 992px) {
  .poway__head {
    grid-template-columns: 1fr;
    grid-template-areas: "over" "title" "sub" "hint";
    align-items: start;
  }
}
.poway__sub a {
  color: var(--color-brand-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.4);
  transition: border-color 0.3s;
}

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

.poway__sub {
  grid-area: sub;
  align-self: end;
}

@media screen and (max-width: 992px) {
  .poway__sub {
    margin-top: clamp(1rem, 2.4vh, 1.5rem);
  }
}
.poway__hint {
  grid-area: hint;
}

.poway__title {
  grid-area: title;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: var(--ls-display);
  line-height: 1.04;
  text-transform: uppercase;
  color: #fff;
}

.poway__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 46ch;
}

.poway__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

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

.poway__list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.4vh, 1rem);
}

/* — panel shell ————————————————————————————————————————— */
.pow {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  transition: border-color 0.45s, box-shadow 0.45s, transform 0.5s var(--ease-out-expo);
}

.pow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-in-out-quint);
}

.pow:hover {
  border-color: var(--color-line-strong);
}

.pow.is-active {
  border-color: rgba(var(--brand-rgb), 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(var(--brand-rgb), 0.06);
}

.pow.is-active::before {
  transform: scaleY(1);
}

/* — collapsed head row ————————————————————————————————— */
.pow__head {
  position: relative;
  display: grid;
  grid-template-columns: clamp(120px, 13vw, 190px) minmax(0, 1fr) auto auto auto;
  align-items: center;
  column-gap: clamp(0.9rem, 2vw, 1.8rem);
  width: 100%;
  padding: clamp(0.95rem, 1.9vh, 1.3rem) clamp(1.1rem, 2.4vw, 2rem);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.pow__head:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: -2px;
  border-radius: var(--radius-xl);
}

.pow__id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pow__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  letter-spacing: var(--ls-display);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.35s;
}

.pow.is-active .pow__name {
  color: #fff;
}

.pow__role {
  margin-top: 0.28rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pow__read {
  display: flex;
  gap: 0.45rem;
}

.pow__read span {
  padding: 0.32rem 0.6rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: border-color 0.35s, color 0.35s;
}

.pow.is-active .pow__read span {
  border-color: rgba(var(--brand-rgb), 0.3);
  color: var(--color-brand-bright);
}

.pow__cat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}

.pow__cat::before {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--color-brand);
  opacity: 0.85;
}

.pow__media {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
}

.pow__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease-out-expo);
  pointer-events: none;
}

.pow__head:hover .pow__media::after {
  transform: translateX(120%);
}

.pow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.72);
  transform: scale(1.02);
  transition: filter 0.5s, transform 0.7s var(--ease-out-expo);
}

.pow__head:hover .pow__media img,
.pow.is-active .pow__media img {
  filter: grayscale(0) brightness(0.94);
  transform: scale(1.08);
}

.pow__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: border-color 0.35s, background 0.35s, color 0.35s;
}

.pow__toggle svg {
  width: 0.8rem;
  height: auto;
  transition: transform 0.5s var(--ease-out-expo);
}

.pow__head:hover .pow__toggle {
  border-color: rgba(var(--brand-rgb), 0.45);
  color: var(--color-brand-bright);
}

/* the arrow flips to point back up while the dossier is open */
.pow.is-active .pow__toggle {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-brand-contrast, #171200);
}

.pow.is-active .pow__toggle svg {
  transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
  .pow__cat {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .pow__head {
    grid-template-columns: clamp(96px, 12vw, 130px) minmax(0, 1fr) auto;
  }
  .pow__read {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pow__head {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0.7rem;
  }
  .pow__media {
    display: none;
  }
  .pow__name,
  .pow__role {
    white-space: normal;
  }
}
.pow__body-in {
  position: relative;
}

/* — expanding body ————————————————————————————————————— */
.pow__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.75s var(--ease-in-out-quint);
}

.pow.is-active .pow__body {
  grid-template-rows: 1fr;
}

.pow__body-in {
  overflow: hidden;
  min-height: 0;
}

.pow__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding: clamp(0.4rem, 1vh, 0.8rem) clamp(1.1rem, 2.4vw, 2rem) clamp(1.5rem, 3vh, 2.2rem);
  border-top: 1px solid transparent;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0s, transform 0.6s var(--ease-out-expo) 0s;
}

.pow.is-active .pow__grid {
  border-top-color: var(--color-line);
  opacity: 1;
  transform: none;
  transition-delay: 0.22s, 0.22s;
  padding-top: clamp(1.4rem, 3vh, 2rem);
}

@media screen and (max-width: 992px) {
  .pow__grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pow__body,
  .pow__grid,
  .pow__toggle,
  .pow::before {
    transition: none;
  }
}
/* — media stage: photos ⇄ floor plan ———————————————————— */
.pow-stage {
  position: relative;
  aspect-ratio: 16/10.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #0b0e14;
}

.pow-stage__views {
  position: absolute;
  z-index: 8;
  top: 12px;
  left: 12px;
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill, 999px);
  background: rgba(9, 11, 16, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pow-stage__view {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill, 999px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: background 0.3s, color 0.3s;
}

.pow-stage__view:hover {
  color: var(--color-text);
}

.pow-stage__view.is-active {
  background: var(--color-brand);
  color: var(--color-brand-contrast, #171200);
}

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

.pow-stage__full {
  position: absolute;
  z-index: 8;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(9, 11, 16, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.pow-stage__full:hover {
  color: var(--color-brand-bright);
  border-color: rgba(var(--brand-rgb), 0.45);
}

.pow-stage__full svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

/* icon swaps while the stage itself is fullscreen */
.pow-stage__full .pow-stage__ic-exit {
  display: none;
}

.pow-stage:fullscreen .pow-stage__full .pow-stage__ic-open {
  display: none;
}

.pow-stage:fullscreen .pow-stage__full .pow-stage__ic-exit {
  display: block;
}

/* photo layer (powg gallery) */
.powg {
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease;
}

.pow-stage.is-plan .powg {
  opacity: 0;
  pointer-events: none;
}

.powg__slides,
.powg__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.powg__slides img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.65s ease, transform 1.4s var(--ease-out-quint);
}

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

.powg__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.32), transparent 30%, transparent 62%, rgba(6, 8, 13, 0.66));
}

.powg__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(9, 11, 16, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: opacity 0.2s;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.powg__tag.is-swapping {
  opacity: 0;
}

.powg__ui {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.powg__btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: rgba(9, 11, 16, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.powg__btn:hover {
  border-color: rgba(var(--brand-rgb), 0.5);
  background: rgba(23, 18, 0, 0.85);
  color: var(--color-brand-bright);
}

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

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

/* plan layer */
.pow-plan {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(2.6rem, 6vh, 3.4rem) clamp(1.2rem, 3vw, 2.4rem) clamp(2rem, 5vh, 2.8rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  background-image: 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: 34px 34px;
}

.pow-stage.is-plan .pow-plan {
  opacity: 1;
  pointer-events: auto;
}

.pow-plan svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: visible;
}

.pow-plan__note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* plan drawing vocabulary */
.pow-plan .p-line {
  fill: none;
  stroke: rgba(242, 244, 247, 0.75);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pow-plan .p-line--soft {
  stroke: rgba(242, 244, 247, 0.42);
  stroke-width: 1;
}

.pow-plan .p-line--brand {
  stroke: var(--color-brand);
  stroke-width: 1.6;
}

.pow-plan .p-dash {
  fill: none;
  stroke: rgba(242, 244, 247, 0.3);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 4 5;
}

.pow-plan .p-fill {
  fill: rgba(255, 255, 255, 0.045);
  stroke: none;
}

.pow-plan .p-fill--brand {
  fill: rgba(var(--brand-rgb), 0.14);
  stroke: none;
}

.pow-plan text {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--color-text-muted);
}

.pow-plan text.t-brand {
  fill: var(--color-brand-bright);
}

.pow-plan text.t-dim {
  fill: var(--color-text-subtle);
  font-size: 6.5px;
}

/* — info column ————————————————————————————————————————— */
.pow-info__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.pow-info__tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--color-brand);
}

.pow-info__copy {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.pow-info__copy b {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.pow-specs {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

@media screen and (max-width: 1200px) {
  .pow-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.pow-specs li {
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.pow-specs b {
  display: block;
  font-family: var(--font-mono);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--color-text);
  white-space: nowrap;
}

.pow-specs b small {
  font-size: max(0.75rem, 0.62em);
  color: var(--color-text-muted);
  margin-left: 0.1rem;
}

.pow-specs span {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.pow-feats {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pow-feats li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.pow-feats li b {
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

.pow-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 1px solid var(--color-brand-bright);
}

.pow-tags {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pow-tags li {
  padding: 0.34rem 0.7rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill, 999px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.pow-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: clamp(1.3rem, 2.6vh, 1.8rem);
}

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

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

.pow-ctas__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.poway__foot {
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  padding: 0 var(--gutter);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.poway__foot a {
  color: var(--color-brand-bright);
  text-decoration: none;
}
.poway__foot a:hover {
  text-decoration: underline;
}

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

.pojour__head {
  margin-bottom: clamp(1.6rem, 3vh, 2.4rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
}

.pojour__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin: 0.55rem 0 0;
}

.pojour__nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.pojour__pos {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--color-text-subtle);
  margin-right: 0.4rem;
  font-variant-numeric: tabular-nums;
}

.pojour__btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.pojour__btn svg {
  width: 20px;
  height: 10px;
}
.pojour__btn:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-brand-contrast);
}
.pojour__btn:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.pojour__stage {
  position: relative;
  min-height: clamp(420px, 56vh, 560px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  cursor: grab;
  touch-action: pan-y;
}
.pojour__stage:active {
  cursor: grabbing;
}
.pojour__stage:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.postep {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-standard), visibility 0s linear 0.7s;
}
.postep.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s var(--ease-standard);
}

.postep__bg {
  position: absolute;
  inset: 0;
  margin: 0;
}
.postep__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transform: scale(1.06);
  transition: transform 6s var(--ease-out-quint);
}
.postep.is-active .postep__bg img {
  transform: scale(1);
}

.postep__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 16, 0.88) 0%, rgba(10, 12, 16, 0.45) 52%, rgba(10, 12, 16, 0.25) 100%), linear-gradient(0deg, rgba(10, 12, 16, 0.92) 0%, transparent 46%);
}

.postep__ghost {
  position: absolute;
  top: clamp(0.6rem, 2vh, 1.6rem);
  right: clamp(1rem, 2.4vw, 2.2rem);
  font-size: clamp(4.6rem, 11vw, 9.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 200, 0, 0.34);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s var(--ease-standard) 0.15s, transform 0.9s var(--ease-out-quint) 0.15s;
}
.postep.is-active .postep__ghost {
  opacity: 1;
  transform: translateX(0);
}

.postep__content {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2.8rem);
  right: clamp(1.2rem, 3vw, 2.8rem);
  bottom: clamp(1.2rem, 3.4vh, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 60ch;
}

.postep__year {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--color-brand-bright);
  font-variant-numeric: tabular-nums;
}

.postep__h {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.06;
  margin: 0;
}

.postep__p {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.62;
  margin: 0;
  max-width: 56ch;
}

.postep__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  text-decoration: none;
}
.postep__cta:hover {
  text-decoration: underline;
}

.postep__year, .postep__h, .postep__p, .postep__cta {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-standard), transform 0.6s var(--ease-out-quint);
}

.postep.is-active .postep__year {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.postep.is-active .postep__h {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}
.postep.is-active .postep__p {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s;
}
.postep.is-active .postep__cta {
  opacity: 1;
  transform: none;
  transition-delay: 0.44s;
}

.postep.is-next .postep__ghost {
  -webkit-text-stroke-color: rgba(255, 200, 0, 0.55);
}

.pojour__road {
  margin-top: clamp(1.4rem, 3vh, 2.2rem);
  padding: 0 clamp(0.2rem, 1vw, 0.8rem);
}

.pojour__road-rail {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-line-strong) 0 14px, transparent 14px 24px);
}

.pojour__road-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 200, 0, 0.4), var(--color-brand));
  transition: width 0.8s var(--ease-emphasized);
}

.pojour__car {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 23px;
  margin-left: -29px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 200, 0, 0.35));
  transition: left 0.8s var(--ease-emphasized);
  pointer-events: none;
}
.pojour__car svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 50% 62%;
  transition: transform 0.35s var(--ease-emphasized);
}
.pojour__car.is-flipped svg {
  transform: scaleX(-1);
}

.pojour__stops {
  display: flex;
  justify-content: space-between;
  margin-top: -7px;
}

.pojour__stop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.3rem 0.4rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.pojour__stop:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.pojour__stop-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-line-strong);
  background: var(--color-bg);
  transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}

.pojour__stop-year {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--color-text-subtle);
  font-variant-numeric: tabular-nums;
  transition: color var(--dur-base) var(--ease-standard);
}

.pojour__stop:hover .pojour__stop-node {
  border-color: var(--color-brand);
}
.pojour__stop:hover .pojour__stop-year {
  color: var(--color-text);
}

.pojour__stop.is-active .pojour__stop-node {
  border-color: var(--color-brand);
  background: var(--color-brand);
  box-shadow: 0 0 0 5px rgba(255, 200, 0, 0.14), 0 0 16px rgba(255, 200, 0, 0.4);
}
.pojour__stop.is-active .pojour__stop-year {
  color: var(--color-brand-bright);
}

.pojour__stop.is-passed .pojour__stop-node {
  border-color: var(--color-brand);
  background: rgba(255, 200, 0, 0.35);
}

@media screen and (max-width: 768px) {
  .pojour__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .pojour__stage {
    min-height: clamp(440px, 62vh, 540px);
  }
  .postep__ghost {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }
  .pojour__road {
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.4rem;
  }
  .pojour__road::-webkit-scrollbar {
    display: none;
  }
  .pojour__road-rail {
    min-width: 560px;
  }
  .pojour__stops {
    min-width: 560px;
    gap: 0.3rem;
  }
}
.postep__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.postep__cta svg {
  width: 18px;
  height: 9px;
  transition: transform 0.35s var(--ease-emphasized);
}
.postep__cta:hover svg {
  transform: translateX(5px);
}

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

.powhy__head {
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
}

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

.powhy__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.powhy__card {
  position: relative;
  padding: clamp(1.4rem, 3vh, 2rem) clamp(1.3rem, 2.4vw, 1.8rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.45s, transform 0.55s var(--ease-out-expo), box-shadow 0.45s;
}

.powhy__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 20% 0%, rgba(var(--ambient-rgb), 0.09), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.powhy__card:hover {
  border-color: rgba(var(--brand-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.8);
}

.powhy__card:hover::after {
  opacity: 1;
}

.powhy__ic {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: clamp(0.9rem, 2vh, 1.3rem);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  color: var(--color-brand-bright);
  background: rgba(var(--brand-rgb), 0.05);
  transition: background 0.4s, transform 0.55s var(--ease-out-expo);
}

.powhy__card:hover .powhy__ic {
  background: rgba(var(--brand-rgb), 0.12);
  transform: translateY(-2px) rotate(-3deg);
}

.powhy__ic svg {
  width: 26px;
  height: 26px;
}

.powhy__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  letter-spacing: var(--ls-display);
  line-height: 1.15;
  text-transform: uppercase;
}

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

@media screen and (max-width: 992px) {
  .powhy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .powhy__grid {
    grid-template-columns: 1fr;
  }
}
.pocase {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.pocase__head {
  margin-bottom: clamp(1.6rem, 3vh, 2.4rem);
}

.pocase__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin: 0.55rem 0 0;
}

.pocase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  margin-bottom: clamp(1.6rem, 3vh, 2.4rem);
}

.pocase__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.pocase__feature {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.pocase__feature:hover {
  border-color: var(--color-line-strong);
  transform: translateY(-4px);
}

.pocase__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16/8;
  overflow: hidden;
}
.pocase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out-quint);
}
.pocase__feature:hover .pocase__media img {
  transform: scale(1.05);
}

.pocase__badge {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-contrast);
  background: var(--color-brand);
  border-radius: var(--radius-sm);
}

.pocase__body {
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

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

.pocase__h {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.15;
  margin: 0;
  transition: color var(--dur-fast) var(--ease-standard);
}
.pocase__link:hover .pocase__h {
  color: var(--color-brand-bright);
}

.pocase__p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.pocase__more {
  margin-top: auto;
  padding-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}
.pocase__more svg {
  width: 18px;
  height: 9px;
  transition: transform 0.35s var(--ease-emphasized);
}

.pocase__link:hover .pocase__more svg {
  transform: translateX(5px);
}

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

.pocase__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: border-color var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.pocase__card:hover {
  border-color: var(--color-line-strong);
  transform: translateY(-4px);
}
.pocase__card .pocase__link {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  gap: 0.6rem;
}
.pocase__card .pocase__h {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
}

.pocase__wire {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-line);
}
.pocase__wire li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.pocase__wire li > span {
  color: var(--color-text-subtle);
  flex-shrink: 0;
  width: 74px;
}
.pocase__wire li a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
.pocase__wire li a:hover {
  color: var(--color-brand-bright);
}

@media screen and (max-width: 992px) {
  .pocase__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .pocase__side {
    grid-template-rows: none;
  }
}
.podir {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.podir__head {
  margin-bottom: clamp(1.4rem, 2.6vh, 2rem);
}

.podir__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin: 0.55rem 0 0;
}

.podir__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
  margin-bottom: clamp(1.2rem, 2.4vh, 1.8rem);
}

.podir__search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1 1 260px;
  max-width: 380px;
  border: 1px solid var(--color-line-strong);
  border-radius: 99px;
  padding: 0.15rem 1rem;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.podir__search:focus-within {
  border-color: var(--color-brand);
}
.podir__search svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-subtle);
  flex-shrink: 0;
}
.podir__search input {
  width: 100%;
  border: 0;
  background: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.6rem 0;
  outline: none;
}
.podir__search input::placeholder {
  color: var(--color-text-subtle);
}
.podir__search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.podir__cats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.podir__cat-ind {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 99px;
  background: linear-gradient(135deg, #ffd23d, #edaf00);
  box-shadow: 0 10px 28px -12px rgba(255, 200, 0, 0.9);
  transition: transform 0.55s var(--ease-out-expo), width 0.55s var(--ease-out-expo), height 0.55s var(--ease-out-expo), opacity 0.4s;
  will-change: transform, width;
  z-index: 0;
  opacity: 0;
}

.podir__cat {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 99px;
  background: none;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: color 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard);
}
.podir__cat .n {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  transition: color 0.3s var(--ease-standard);
}
.podir__cat:hover {
  color: var(--color-text);
  border-color: var(--color-text-subtle);
}
.podir__cat.is-active {
  border-color: transparent;
  color: var(--color-brand-contrast);
}
.podir__cat.is-active .n {
  color: var(--color-brand-contrast);
  opacity: 0.7;
}
.podir__cat:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

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

.podir__row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  padding: clamp(0.8rem, 1.6vh, 1.1rem) 0.6rem;
  border-bottom: 1px solid var(--color-line);
  transition: background var(--dur-fast) var(--ease-standard);
}
.podir__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: var(--color-brand);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-emphasized);
}
.podir__row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.podir__row:hover::before {
  transform: scaleY(1);
}
.podir__row.is-hidden {
  display: none;
}

@keyframes podir-row-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}
.podir__logo {
  width: 64px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}
.podir__logo img {
  max-width: 82%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  transition: filter var(--dur-base) var(--ease-standard);
}
.podir__row:hover .podir__logo img {
  filter: grayscale(0) brightness(1);
}
.podir__logo i {
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}
.podir__row:hover .podir__logo i {
  color: var(--color-brand-bright);
}

.podir__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.podir__name {
  font-size: 0.95rem;
  font-weight: 600;
}

.podir__blurb {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 62ch;
}

.podir__tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 99px;
  border: 1px solid var(--color-line-strong);
  color: var(--color-text-subtle);
  white-space: nowrap;
}
.podir__tag[data-tag=ms] {
  color: var(--color-brand-bright);
  border-color: rgba(255, 200, 0, 0.3);
}
.podir__tag[data-tag=et] {
  color: #7fb1ff;
  border-color: rgba(59, 130, 246, 0.35);
}
.podir__tag[data-tag=ed] {
  color: #52e8a4;
  border-color: rgba(39, 224, 138, 0.3);
}
.podir__tag[data-tag=vs] {
  color: #cf9bff;
  border-color: rgba(182, 109, 255, 0.35);
}
.podir__tag[data-tag=mh] {
  color: #ff8a8e;
  border-color: rgba(229, 72, 77, 0.35);
}

.podir__go {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-standard);
}
.podir__go:hover {
  color: var(--color-brand-bright);
}

.podir__empty {
  padding: 1.6rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}

@media screen and (max-width: 768px) {
  .podir__row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }
  .podir__logo {
    width: 48px;
    height: 36px;
  }
  .podir__tag {
    display: none;
  }
}
.podir__go {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.podir__go svg {
  width: 12px;
  height: 6px;
  stroke-width: 2.6;
  transform: rotate(-45deg);
  transition: transform 0.35s var(--ease-emphasized);
}
.podir__go:hover svg {
  transform: rotate(-45deg) translateX(3px);
}

.podir__foot {
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  padding: 0 var(--gutter);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.podir__foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-brand-bright);
  text-decoration: none;
}
.podir__foot a svg {
  width: 12px;
  height: 12px;
}
.podir__foot a:hover {
  text-decoration: underline;
}

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

.poguide__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  grid-template-areas: "over sub" "title sub";
  align-items: end;
  column-gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
}

.poguide__head > .u-overline {
  grid-area: over;
}

@media screen and (max-width: 992px) {
  .poguide__head {
    grid-template-columns: 1fr;
    grid-template-areas: "over" "title" "sub";
    align-items: start;
  }
}
.poguide__title {
  grid-area: title;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

.poguide__sub {
  grid-area: sub;
  align-self: end;
  margin-top: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

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

@media screen and (max-width: 992px) {
  .poguide__sub {
    margin-top: clamp(1rem, 2.4vh, 1.5rem);
  }
}
.podoc {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.5fr);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  padding: clamp(1.4rem, 3vh, 2.2rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(24, 13, 15, 0.4), rgba(9, 10, 14, 0.5));
  box-shadow: 0 44px 100px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--brand-rgb), 0.06);
}

/* — meta column ————————————————————————————————————————— */
.podoc__meta {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3vh, 2.2rem);
  min-width: 0;
}

/* breathing room through the meta stack — eyebrow, name, copy,
   facts and actions each get their own air */
.podoc__meta-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.9vh, 1.25rem);
  min-width: 0;
}

.podoc__cover {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(140% 100% at 80% 0%, rgba(var(--ambient-rgb), 0.28), transparent 55%), linear-gradient(160deg, #171a21 0%, #0a0c11 70%);
  padding: clamp(1rem, 2vw, 1.4rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.85);
  transform: rotate(-1.6deg);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
}

.podoc:hover .podoc__cover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 34px 66px -26px rgba(0, 0, 0, 0.9);
}

.podoc__cover-sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, 0.1) 48%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 1.1s var(--ease-out-expo);
  pointer-events: none;
}

.podoc:hover .podoc__cover-sheen {
  transform: translateX(130%);
}

.podoc__cover-mark {
  width: clamp(64px, 7vw, 88px);
  height: auto;
}

.podoc__cover-rule {
  width: 42px;
  height: 2px;
  margin-top: auto;
  background: var(--gradient-brand);
}

.podoc__cover-title {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: #fff;
}

.podoc__cover-sub {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.podoc__cover-track {
  position: absolute;
  right: -18%;
  bottom: -10%;
  width: 78%;
  opacity: 0.13;
  z-index: -1;
  pointer-events: none;
}

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

.podoc__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: var(--ls-display);
  line-height: 1.1;
  text-transform: uppercase;
}

.podoc__desc {
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  max-width: 44ch;
}

.podoc__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
}

.podoc__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.podoc__facts span {
  color: var(--color-text-subtle);
}

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

.podoc__actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 1.4vh, 0.9rem);
}

.podoc__alt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-line-strong);
  transition: color 0.3s, border-color 0.3s;
}

.podoc__alt:hover {
  color: var(--color-brand-bright);
  border-color: rgba(var(--brand-rgb), 0.5);
}

/* — reader column ——————————————————————————————————————— */
.podoc__reader {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: #0b0e14;
  overflow: hidden;
}

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

.podoc__stage {
  position: relative;
  flex: 1;
  min-height: clamp(340px, 46vw, 520px);
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 2.6vh, 2rem);
  overflow: hidden;
  touch-action: pan-y;
}

/* fullscreen: the reader fills the screen, stage grows */
.podoc__reader:fullscreen {
  border-radius: 0;
}

.podoc__reader:fullscreen .podoc__stage {
  min-height: 0;
}

/* a rendered sheet */
.podoc__sheet {
  position: absolute;
  inset: clamp(1.2rem, 2.6vh, 2rem);
  margin: auto;
  aspect-ratio: 210/148; /* landscape A-series sheet */
  max-width: min(94%, 760px);
  max-height: 100%;
  background: #f4f2ec;
  color: #14151a;
  border-radius: 6px;
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(28px) rotateY(-4deg);
  transform-origin: left center;
  transition: opacity 0.5s ease, transform 0.65s var(--ease-out-expo);
  pointer-events: none;
  overflow: hidden;
}

.podoc__sheet.is-current {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.podoc__sheet.is-leaving {
  opacity: 0;
  transform: translateX(-28px) rotateY(4deg);
}

/* zoomed page */
.podoc__stage.is-zoomed .podoc__sheet.is-current {
  transform: scale(1.35);
  cursor: zoom-out;
}

.podoc__stage.is-zoomed {
  overflow: auto;
}

/* drawn sheet internals (SMSP document design language) */
.podoc__sheet-in {
  position: absolute;
  inset: 0;
  padding: clamp(1rem, 2.4vw, 1.8rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}

.podoc__sheet-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid #14151a;
  margin-bottom: clamp(0.7rem, 1.6vh, 1rem);
}

.podoc__sheet-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.7vw, 1.35rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.podoc__sheet-no {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #585b64;
  white-space: nowrap;
}

.podoc__sheet-body {
  flex: 1;
  min-height: 0;
  display: grid;
  gap: clamp(0.5rem, 1.4vh, 0.9rem);
  align-content: start;
  font-size: clamp(0.75rem, 1.1vw, 0.78rem);
  line-height: 1.5;
}

.podoc__sheet-body h4 {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7f5800;
}

.podoc__sheet-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28em;
}

.podoc__sheet-body li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dotted rgba(20, 21, 26, 0.25);
  padding-bottom: 0.28em;
}

.podoc__sheet-body li b {
  font-weight: 600;
  white-space: nowrap;
}

.podoc__sheet-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  min-height: 0;
}

.podoc__sheet-note {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(20, 21, 26, 0.2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #585b64;
}

/* loading + error ————————————————————————————————————— */
.podoc__loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 0.8rem;
  justify-items: center;
  background: #0b0e14;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  opacity: 1;
  transition: opacity 0.4s;
}

.podoc__loading[aria-hidden=true] {
  opacity: 0;
  pointer-events: none;
}

.podoc__loading-bar {
  position: relative;
  width: 140px;
  height: 2px;
  background: var(--color-line-strong);
  overflow: hidden;
  border-radius: 999px;
}

.podoc__loading-bar i {
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--gradient-brand);
  animation: podoc-load 1.1s var(--ease-in-out-quint) infinite;
}

@keyframes podoc-load {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(280%);
  }
}
.podoc__error[hidden] {
  display: none;
}

.podoc__error {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.podoc__error b {
  color: var(--color-text);
}

/* control rail ————————————————————————————————————————— */
.podoc__ui {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem clamp(0.9rem, 2vw, 1.2rem);
  border-top: 1px solid var(--color-line);
  background: rgba(9, 11, 16, 0.86);
}

.podoc__nav,
.podoc__tool {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: none;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s, opacity 0.3s;
}

.podoc__nav svg {
  width: 16px;
  height: 8px;
}

.podoc__tool svg {
  width: 15px;
  height: 15px;
}

.podoc__nav:hover,
.podoc__tool:hover {
  border-color: rgba(var(--brand-rgb), 0.5);
  color: var(--color-brand-bright);
}

.podoc__nav:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.podoc__tool[aria-pressed=true] {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-brand-contrast, #171200);
}

.podoc__count {
  min-width: 64px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.podoc__ui-rule {
  flex: 1;
  height: 1px;
  background: var(--color-line);
}

/* responsive ——————————————————————————————————————————— */
@media screen and (max-width: 992px) {
  .podoc {
    grid-template-columns: 1fr;
  }
  .podoc__cover {
    max-width: 200px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .podoc__cover,
  .podoc__cover-sheen,
  .podoc__sheet {
    transition: none;
    transform: none;
  }
  .podoc__loading-bar i {
    animation: none;
    width: 100%;
  }
}
/* readability audit 2026-08-24 — a landscape A-sheet at phone width cannot hold its
   copy: text overflowed and clipped inside the sheet. Below 640px the CURRENT sheet
   flows in-document (stage grows with it); the others keep stacking behind for the flip. */
@media screen and (max-width: 640px) {
  .podoc__stage {
    min-height: 0;
    place-items: stretch;
    padding: 0.9rem;
  }
  .podoc__sheet.is-current {
    position: relative;
    inset: auto;
    margin: 0;
    aspect-ratio: auto;
    max-width: 100%;
    max-height: none;
    width: 100%;
  }
  .podoc__sheet.is-current .podoc__sheet-in {
    position: relative;
    inset: auto;
    padding: 1.1rem 1rem 1.2rem;
  }
  .podoc__sheet-body {
    font-size: 0.8rem;
    line-height: 1.55;
  }
  .podoc__sheet-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}
.pocta {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 12vh, 7.5rem) var(--gutter);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.pocta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pocta__img {
  position: absolute;
  left: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72);
  will-change: transform;
}

.pocta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.55) 55%, rgba(10, 12, 16, 0.75) 100%), linear-gradient(180deg, rgba(10, 12, 16, 0.85), transparent 30%, transparent 70%, rgba(10, 12, 16, 0.85));
}

.pocta__glow {
  position: absolute;
  left: 4%;
  top: 50%;
  width: min(56vw, 760px);
  aspect-ratio: 1.6;
  transform: translateY(-50%) scale(0.94);
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 200, 0, 0.11), transparent 68%);
  mix-blend-mode: screen;
  animation: pocta-breathe 5.5s var(--ease-standard) infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes pocta-breathe {
  from {
    opacity: 0.55;
    transform: translateY(-50%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1.06);
  }
}
.pocta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin-inline: auto;
}

.pocta__k {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.1rem;
}
.pocta__k i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.5);
  animation: pocta-pulse 2.4s var(--ease-standard) infinite;
}

@keyframes pocta-pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(255, 200, 0, 0);
  }
}
.pocta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 1.6rem;
}

.pocta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-bottom: 1.4rem;
}

.pocta__tel {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}
.pocta__tel a {
  color: var(--color-brand-bright);
  text-decoration: none;
}
.pocta__tel a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .pocta__glow, .pocta__k i {
    animation: none;
  }
}
.poq {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.poq__check:checked ~ .poq__checkbox {
  color: var(--po-ink);
  background: var(--color-brand);
  border-color: var(--color-brand);
}

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

.poq__consent.is-error .poq__checkbox {
  border-color: var(--po-hot);
}

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

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

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

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

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

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

.poq__note.is-error {
  color: var(--po-hot);
}

@media screen and (max-width: 992px) {
  .poq__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .poq__row {
    grid-template-columns: 1fr;
  }
}
.poq__attached {
  border: 1px dashed rgba(255, 200, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(255, 200, 0, 0.03);
}

.poq__attached .poq__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.poq__clear {
  border: 0;
  background: none;
  color: var(--color-text-subtle);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.1rem 0;
  transition: color var(--dur-fast) var(--ease-standard);
}

.poq__clear:hover {
  color: #e5484d;
}

.poq__attached-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.poq__attached-list li {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  padding: 0.4rem 0;
  border-top: 1px dashed var(--color-line);
}

.poq__attached-list li:first-child {
  border-top: 0;
}

.poq__attached-note {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--color-text-subtle);
}

.podock {
  position: fixed;
  z-index: 900;
  right: calc(clamp(0.9rem, 2vw, 1.8rem) + 74px);
  bottom: clamp(0.9rem, 2.4vh, 1.6rem);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease-emphasized), opacity 0.45s var(--ease-standard);
}
.podock.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.podock__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 200, 0, 0.5);
  background: rgba(16, 14, 6, 0.9);
  color: var(--color-text);
  border-radius: 99px;
  padding: 0.65rem 1.1rem 0.65rem 0.65rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.3);
  transition: border-color var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.podock__pill:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}
.podock__pill:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.podock__flag {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-brand-contrast);
}
.podock__flag svg {
  width: 14px;
  height: 14px;
}

.podock__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.podock__hint {
  font-size: 0.75rem;
  color: var(--color-brand-bright);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media screen and (max-width: 576px) {
  .podock {
    right: calc(0.75rem + 64px);
    bottom: 4.9rem;
  }
  .podock__hint {
    display: none;
  }
}
@keyframes kb-zoom {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.07;
  }
}
.postory__media {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

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

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

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

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

.pow-stage .powg__slides img:nth-child(2) {
  animation-delay: -3s;
}

.pow-stage .powg__slides img:nth-child(3) {
  animation-delay: -6s;
}

.pow-stage .powg__slides img:nth-child(4) {
  animation-delay: -9s;
}

.pow-stage .powg__slides img:nth-child(5) {
  animation-delay: -12s;
}

.pow-stage .powg__slides img:nth-child(6) {
  animation-delay: -15s;
}

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  .sp-hero__eyebrow-line,
  .sp-hero__eyebrow-line::after {
    animation: none !important;
  }
  .sp-hero__still,
  .sp-hero__video {
    transform: none;
  }
  .postat__tick {
    transition: none;
  }
  .popart__set {
    animation: none !important;
  }
  .popath__node,
  .popath__no,
  .popath__name,
  .popath__line-tip {
    transition: none;
  }
  .postory__lead b {
    transition: none;
    background-size: 100% 0.32em;
  }
  .postory__block,
  .postory__media img,
  .pow,
  .pow__media img,
  .pow__media::after,
  .pow__toggle,
  .powg__slides img,
  .powhy__card,
  .powhy__ic,
  .pocase__feature,
  .pocase__card,
  .pocase__media img,
  .podir__row,
  .poq__contact-row {
    transition-property: border-color, background, color, opacity;
    transform: none !important;
  }
  .postep,
  .postep__bg img,
  .postep__ghost,
  .postep__year,
  .postep__h,
  .postep__p,
  .postep__cta {
    transition: none !important;
    transform: none !important;
  }
  .pojour__road-fill,
  .pojour__car {
    transition: none;
  }
  .pocta__img {
    height: 100%;
    transform: none !important;
  }
  .podoc__cover,
  .podoc__cover-sheen {
    transition: none !important;
    transform: none !important;
  }
  .podock {
    transition: none !important;
    transform: none !important;
  }
}
