@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;
  }
}
.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;
  }
}
.cl-board {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 0.8vw, 0.65rem);
  margin-bottom: clamp(0.6rem, 1vw, 0.9rem);
}

.cl-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  column-gap: clamp(0.7rem, 1.2vw, 1rem);
  padding: clamp(0.62rem, 1.1vw, 0.85rem) clamp(0.75rem, 1.2vw, 1rem);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  transition: border-color 0.4s, background 0.4s;
}

.cl-row:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  background: rgba(var(--brand-rgb), 0.05);
}

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

.cl-row__idx {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--color-text-subtle);
}

.cl-row__name {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  min-width: 0;
}

.cl-row__name b {
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cl-row__name span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cl-row__len {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-brand-bright);
  white-space: nowrap;
}

.cl-row__len small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 0.18rem;
}

.cl-row__turns {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.cl-intro,
.clx,
.cld,
.clf,
.cls,
.clr,
.cl-cta {
  scroll-margin-top: calc(var(--masthead-h, 84px) + 16px);
}

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

.cl-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: start;
}

@media screen and (max-width: 992px) {
  .cl-intro__grid {
    grid-template-columns: 1fr;
  }
}
.cl-intro__title {
  margin-top: 1.1rem;
  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);
  color: #fff;
}

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

.cl-intro__title .line__inner {
  display: block;
}

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

.cl-intro__copy {
  margin-top: clamp(1.2rem, 2.6vh, 1.8rem);
  max-width: 58ch;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

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

.cl-intro__copy + .cl-intro__copy {
  margin-top: 1rem;
}

.cl-intro__ledger {
  position: relative;
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
}

.cl-intro__ledger::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(var(--color-brand), rgba(var(--brand-rgb), 0.05));
}

.cl-intro__ledger-k {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cl-intro__facts {
  margin-top: 1.1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.cl-intro__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.85rem 0;
}

.cl-intro__facts li + li {
  border-top: 1px solid var(--color-line);
}

.cl-intro__facts li span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.cl-intro__facts li b {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.cl-intro .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  margin-top: clamp(2.4rem, 5vh, 3.6rem);
}

@media screen and (max-width: 768px) {
  .cl-intro .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cl-intro .stat {
  padding: clamp(1.1rem, 1.8vw, 1.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, transform 0.5s var(--ease-out-expo);
}

.cl-intro .stat:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  transform: translateY(-3px);
}

.cl-intro .stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: var(--ls-display);
  line-height: 1;
  color: var(--color-brand-bright);
}

.cl-intro .stat__num small {
  font-family: var(--font-mono);
  font-size: 0.42em;
  color: var(--color-text-muted);
  margin-left: 0.2rem;
  letter-spacing: 0.08em;
}

.cl-intro .stat__label {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.cl-cta__band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, rgba(19, 22, 28, 0.85), rgba(8, 10, 15, 0.92));
  isolation: isolate;
  transform: translateZ(0);
}

.cl-cta__band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(90% 120% at 12% 0%, rgba(var(--ambient-rgb), 0.1), transparent 55%), radial-gradient(90% 120% at 88% 100%, rgba(var(--ambient-rgb), 0.07), transparent 55%);
}

.cl-cta__band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  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: 52px 52px;
  mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 85%);
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .cl-cta__band {
    grid-template-columns: 1fr;
  }
}
.cl-cta__side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.8rem, 3.6vw, 3.2rem);
}

.cl-cta__side + .cl-cta__side {
  border-left: 1px solid var(--color-line);
}

@media screen and (max-width: 992px) {
  .cl-cta__side + .cl-cta__side {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
}
.cl-cta__k {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.cl-cta__title {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  letter-spacing: var(--ls-display);
  line-height: 1.08;
  color: #fff;
}

.cl-cta__copy {
  margin-top: 0.9rem;
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex: 1;
}

.cl-cta__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  margin-top: clamp(1.4rem, 3vh, 2rem);
}

.cl-cta__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.cl-cta__meta span {
  position: relative;
  padding-left: 0.95rem;
}

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

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

/* On a phone the 0.42em tracking made "Media Access at Sydney
   Motorsport Park" wider than the viewport, so the inline-flex broke
   into two ragged stacked columns. Let it wrap as one line of text
   with the rule above it. */
@media screen and (max-width: 700px) {
  .sp-hero__eyebrow {
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }
  .sp-hero__eyebrow-line {
    flex: 0 0 100%;
  }
}
.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;
}

/* Once the specs stack one per row the absolutely-placed rule between
   items hangs off the start of every line but the first — a two-column
   block with no rules is the honest layout at that width. */
@media screen and (max-width: 620px) {
  .sp-hero__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1rem;
    font-size: 0.75rem;
  }
  .sp-hero__specs li {
    display: block;
  }
  .sp-hero__specs li + li::before {
    display: none;
  }
  .sp-hero__specs b {
    display: block;
    margin-bottom: 0.15rem;
  }
}
.sp-hero__specs b {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.macnote,
.macpath,
.macstep,
.mactier,
.macapply,
.macmap,
.maccomp,
.macgal {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
  scroll-margin-top: calc(var(--masthead-h, 84px) + 16px);
}

/* the notice sits tight under the hero — it is an interruption, not a section */
.macnote {
  padding-top: clamp(2.5rem, 6vh, 4rem);
  padding-bottom: 0;
}

.macpath__head,
.macstep__head,
.mactier__head,
.macmap__head,
.maccomp__head,
.macgal__head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4.5vh, 3.2rem);
}

@media screen and (max-width: 992px) {
  .macpath__head,
  .macstep__head,
  .mactier__head,
  .macmap__head,
  .maccomp__head,
  .macgal__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.macpath__title,
.macstep__title,
.mactier__title,
.macapply__title,
.macmap__title,
.maccomp__title,
.macgal__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  margin-top: 1.1rem;
  text-wrap: balance;
}

.macpath__title .line__accent,
.macstep__title .line__accent,
.mactier__title .line__accent,
.macapply__title .line__accent,
.macmap__title .line__accent,
.maccomp__title .line__accent,
.macgal__title .line__accent {
  color: var(--color-brand-bright);
}

.macpath__aside,
.macstep__aside,
.mactier__aside,
.macmap__aside,
.maccomp__aside,
.macgal__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.macpath__sub,
.macstep__sub,
.mactier__sub,
.macmap__sub,
.maccomp__sub,
.macgal__sub {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* ---- the deadline bug — the page's most repeated signal ---- */
.mac-clock {
  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-text-subtle);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(9, 11, 16, 0.6);
  padding: 0.45rem 0.9rem;
}

.mac-clock b {
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mac-clock i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 9px rgba(var(--brand-rgb), 0.85);
  animation: mac-pulse 1.9s ease-in-out infinite;
}

.mac-clock--warn i {
  background: #e8a317;
  box-shadow: 0 0 9px rgba(232, 163, 23, 0.8);
}

.mac-clock--stop i {
  background: #e5484d;
  box-shadow: 0 0 10px rgba(229, 72, 77, 0.9);
  animation: none;
}

@keyframes mac-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.42;
    transform: scale(0.84);
  }
}
/* ---- requirement chip — used by pathways, tiers and compliance ---- */
.mac-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  padding: 0.4rem 0.78rem;
  white-space: nowrap;
  max-width: 100%;
}

/* long chips (e.g. "Motorsport Australia Media Accreditation") must wrap on
   narrow screens or they widen the document instead of the chip row */
@media screen and (max-width: 620px) {
  .mac-chip {
    white-space: normal;
    text-align: left;
  }
}
.mac-chip--go {
  color: #7fe0ab;
  border-color: rgba(31, 157, 91, 0.4);
  background: rgba(31, 157, 91, 0.1);
}

.mac-chip--no {
  color: #ff9ba0;
  border-color: rgba(229, 72, 77, 0.4);
  background: rgba(229, 72, 77, 0.1);
}

.mac-chip--brand {
  color: var(--color-brand-bright);
  border-color: rgba(var(--brand-rgb), 0.42);
  background: rgba(var(--brand-rgb), 0.12);
}

/* ---- shared card surface ---- */
.mac-card {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  overflow: hidden;
}

.mac-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(var(--brand-rgb), 0.14), transparent 62%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out-expo);
  pointer-events: none;
}

.mac-card:hover::before,
.mac-card:focus-within::before {
  opacity: 1;
}

/* screen-reader-only text (same contract as the ipd/vr pages) */
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.sp-hero--mac .sp-hero__still {
  filter: brightness(0.5) saturate(0.92) contrast(1.08);
}

.sp-hero--mac .sp-hero__inner {
  grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.92fr);
}

@media screen and (max-width: 992px) {
  .sp-hero--mac .sp-hero__inner {
    grid-template-columns: 1fr;
  }
}
/* credential-desk ident chip — sits above the eyebrow */
.sp-hero__ident {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid rgba(var(--brand-rgb), 0.38);
  border-radius: 999px;
  background: rgba(9, 11, 16, 0.6);
  padding: 0.5rem 0.95rem;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sp-hero__ident i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-bright);
  box-shadow: 0 0 9px rgba(var(--brand-rgb), 0.85);
  animation: mac-pulse 1.9s ease-in-out infinite;
}

.sp-hero__ident b {
  color: var(--color-brand-bright);
  font-weight: 600;
  letter-spacing: 0.14em;
}

/* shutter frame corners over the hero media — the viewfinder motif */
/* ============================================================
   THE CREDENTIAL
   ============================================================ */
.maccred {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  /* Real glass. The card carried backdrop-filter already, but at 96–98%
     background alpha nothing could come through it and it read as a black
     slab. The tint is now light enough for the hero sky to blur behind the
     pass — which is what a laminated credential actually looks like — while
     staying dark enough to hold mono type at AA. */
  background: linear-gradient(168deg, rgba(126, 152, 214, 0.1) 0%, transparent 46%), linear-gradient(168deg, rgba(16, 20, 30, 0.5) 0%, rgba(9, 12, 19, 0.62) 58%, rgba(6, 8, 13, 0.7) 100%);
  box-shadow: 0 34px 90px -32px rgba(0, 0, 0, 0.92), 0 1px 0 0 rgba(255, 255, 255, 0.14) inset, 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  padding: 1.25rem 1.25rem 1.1rem;
  transform-style: preserve-3d;
  will-change: transform;
}

.maccred__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 32%, rgba(255, 255, 255, 0.13) 47%, transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.maccred__edge {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(var(--brand-rgb), 0.55), transparent 42%, transparent 62%, rgba(var(--brand-rgb), 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* lanyard + punch hole */
.maccred__lanyard {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 2px);
  width: 68px;
  height: clamp(28px, 6vh, 54px);
  transform: translateX(-50%);
  pointer-events: none;
}

.maccred__lanyard::before,
.maccred__lanyard::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(var(--brand-rgb), 0.55));
}

.maccred__lanyard::before {
  left: 12px;
  transform: rotate(7deg);
  transform-origin: bottom;
}

.maccred__lanyard::after {
  right: 12px;
  transform: rotate(-7deg);
  transform-origin: bottom;
}

.maccred__clip {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  border: 1px solid var(--color-line-strong);
  border-radius: 3px;
  background: linear-gradient(180deg, #2a3039, #12151b);
}

@media screen and (max-width: 992px) {
  .maccred__lanyard {
    display: none;
  }
}
.maccred__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-line);
}

.maccred__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.maccred__mark img {
  width: 18px;
  height: auto;
  opacity: 0.9;
}

.maccred__lamp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7fe0ab;
}

.maccred__lamp i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f9d5b;
  box-shadow: 0 0 8px rgba(31, 157, 91, 0.9);
  animation: mac-pulse 2.2s ease-in-out infinite;
}

.maccred__body {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.05rem 0;
}

.maccred__plate {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d1016;
}

.maccred__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.85);
}

.maccred__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}

.maccred__fields {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  min-width: 0;
}

.maccred__field {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

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

.maccred__v {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.maccred__v--tier {
  color: var(--color-brand-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.maccred__zones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--color-line);
}

.maccred__zone {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(var(--brand-rgb), 0.38);
  background: rgba(var(--brand-rgb), 0.13);
  color: var(--color-brand-bright);
}

.maccred__zone--no {
  border-color: rgba(229, 72, 77, 0.38);
  background: rgba(229, 72, 77, 0.1);
  color: #ff9ba0;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.maccred__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-line);
}

.maccred__bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 30px;
}

.maccred__bars i {
  display: block;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.72);
}

.maccred__bars i:nth-child(3n) {
  width: 3px;
  opacity: 0.5;
}

.maccred__bars i:nth-child(4n) {
  width: 1px;
  opacity: 0.85;
}

.maccred__bars i:nth-child(5n) {
  height: 74%;
}

.maccred__serial {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  text-align: right;
  line-height: 1.7;
}

.maccred__serial b {
  display: block;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* hero spec strip reads as a vest ribbon */
.sp-hero--mac .sp-hero__specs b {
  color: var(--color-brand-bright);
}

.macnote__band {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(232, 163, 23, 0.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, rgba(232, 163, 23, 0.12) 0%, rgba(232, 163, 23, 0.045) 38%, rgba(255, 255, 255, 0.02) 100%);
  padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
}

.macnote__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(232, 163, 23, 0.075) 0 10px, transparent 10px 22px);
  opacity: 0.5;
  pointer-events: none;
}

@media screen and (max-width: 860px) {
  .macnote__band {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 1.1rem;
  }
}
.macnote__bang {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(232, 163, 23, 0.5);
  background: rgba(232, 163, 23, 0.14);
  color: #f0c256;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  flex: none;
}

.macnote__bang::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(232, 163, 23, 0.22);
  animation: macnote-ring 2.6s ease-out infinite;
}

@keyframes macnote-ring {
  0% {
    transform: scale(0.86);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}
.macnote__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.macnote__k {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e8a317;
  margin-bottom: 0.5rem;
}

/* headline runs uppercase display, like the approved notice bands */
.macnote__h {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #f5d489;
  margin-bottom: 0.6rem;
}

.macnote__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 74ch;
}

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

.macnote__act {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

@media screen and (max-width: 860px) {
  .macnote__act {
    align-items: flex-start;
  }
}
.macnote__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  text-align: right;
}

@media screen and (max-width: 860px) {
  .macnote__meta {
    text-align: left;
  }
}
@media screen and (max-width: 860px) {
  .macnote__act {
    grid-column: 1/-1;
  }
}
.macpath__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* ---------- the rail ---------- */
/* One row, always, with every label readable.
   `flex: 1 0 auto` = grow to share the rail when there is room, but never
   shrink below the label's own width. Paired with nowrap + overflow-x the
   rail scrolls itself once seven labels stop fitting, instead of wrapping
   an orphan pill to a second row (the old `flex: 1 1 auto` bug) or
   ellipsis-clipping them (the equal-track grid that replaced it). */
.macpath__rail {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.34rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.022);
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}

.macpath__rail::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 720px) {
  .macpath__rail {
    border-radius: var(--radius-lg);
  }
}
.macpath__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 auto;
  justify-content: center;
  padding: 0.78rem 0.88rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-out-expo);
}

.macpath__pill:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.macpath__pill i {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: none;
  opacity: 0.72;
}

.macpath__pill i svg {
  width: 100%;
  height: 100%;
}

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

/* The selected pill is a single brand block that SLIDES between tabs —
   the same organ as the "What's on" filters on ardc-community.

   Note the old rule here was `.macpath__radio:checked + .macpath__pill`,
   which could never match: the seven radios are one block before the
   rail (they have to be, the docket switching uses `~ .macpath__stage`),
   so a radio's next sibling is another radio, never a pill. That is why
   nothing ever looked selected, including the pre-checked first tab.
   `:has()` reads the state from the section instead, so the active tab
   is styled with or without JS. */
.macpath__ind {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 999px;
  background: var(--gradient-brand, linear-gradient(180deg, rgba(var(--brand-rgb), 0.95), rgba(var(--brand-rgb), 0.72)));
  box-shadow: 0 10px 28px -12px rgba(var(--brand-rgb), 0.9);
  opacity: 0;
  transition: transform 0.55s var(--ease-out-expo), width 0.55s var(--ease-out-expo), height 0.3s var(--ease-out-expo), opacity 0.4s var(--ease-standard);
  will-change: transform, width;
  pointer-events: none;
}

.macpath__pill.is-active,
.macpath:has(#mp-photo:checked) .macpath__pill[for=mp-photo],
.macpath:has(#mp-video:checked) .macpath__pill[for=mp-video],
.macpath:has(#mp-commercial:checked) .macpath__pill[for=mp-commercial],
.macpath:has(#mp-drone:checked) .macpath__pill[for=mp-drone],
.macpath:has(#mp-agency:checked) .macpath__pill[for=mp-agency],
.macpath:has(#mp-broadcast:checked) .macpath__pill[for=mp-broadcast],
.macpath:has(#mp-freelance:checked) .macpath__pill[for=mp-freelance] {
  color: #fff;
  border-color: transparent;
}

.macpath__pill.is-active i,
.macpath:has(#mp-photo:checked) .macpath__pill[for=mp-photo] i,
.macpath:has(#mp-video:checked) .macpath__pill[for=mp-video] i,
.macpath:has(#mp-commercial:checked) .macpath__pill[for=mp-commercial] i,
.macpath:has(#mp-drone:checked) .macpath__pill[for=mp-drone] i,
.macpath:has(#mp-agency:checked) .macpath__pill[for=mp-agency] i,
.macpath:has(#mp-broadcast:checked) .macpath__pill[for=mp-broadcast] i,
.macpath:has(#mp-freelance:checked) .macpath__pill[for=mp-freelance] i {
  opacity: 1;
}

/* No JS, no sliding block — so the checked pill paints its own fill.
   JS marks the rail `is-sliding` once the block is live and that fill
   is dropped, leaving the block as the only selected surface. */
.macpath:has(#mp-photo:checked) .macpath__pill[for=mp-photo],
.macpath:has(#mp-video:checked) .macpath__pill[for=mp-video],
.macpath:has(#mp-commercial:checked) .macpath__pill[for=mp-commercial],
.macpath:has(#mp-drone:checked) .macpath__pill[for=mp-drone],
.macpath:has(#mp-agency:checked) .macpath__pill[for=mp-agency],
.macpath:has(#mp-broadcast:checked) .macpath__pill[for=mp-broadcast],
.macpath:has(#mp-freelance:checked) .macpath__pill[for=mp-freelance] {
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.36), rgba(var(--brand-rgb), 0.16));
}

.macpath__rail.is-sliding .macpath__pill {
  background: transparent;
}

.macpath__rail.is-sliding .macpath__pill:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.05);
}

/* the block sits behind the label, never over it */
.macpath__pill {
  z-index: 1;
}

/* hover must not repaint over the selected block */
.macpath__pill.is-active:hover {
  background: transparent;
  transform: none;
}

/* ---------- the stage ---------- */
.macpath__stage {
  position: relative;
}

.macfeat {
  display: none;
}

.macpath__radio:nth-of-type(1):checked ~ .macpath__stage .macfeat:nth-of-type(1),
.macpath__radio:nth-of-type(2):checked ~ .macpath__stage .macfeat:nth-of-type(2),
.macpath__radio:nth-of-type(3):checked ~ .macpath__stage .macfeat:nth-of-type(3),
.macpath__radio:nth-of-type(4):checked ~ .macpath__stage .macfeat:nth-of-type(4),
.macpath__radio:nth-of-type(5):checked ~ .macpath__stage .macfeat:nth-of-type(5),
.macpath__radio:nth-of-type(6):checked ~ .macpath__stage .macfeat:nth-of-type(6),
.macpath__radio:nth-of-type(7):checked ~ .macpath__stage .macfeat:nth-of-type(7) {
  display: grid;
  animation: macfeat-in 0.62s var(--ease-out-expo) both;
}

@keyframes macfeat-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ---------- the featured docket ---------- */
.macfeat {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3.6vw, 3.2rem);
  align-items: stretch;
}

@media screen and (max-width: 992px) {
  .macfeat {
    grid-template-columns: 1fr;
  }
}
.macfeat__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  min-height: clamp(280px, 42vh, 460px);
  background: #0b0e14;
}

.macfeat__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.62) contrast(1.08);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out-expo), filter var(--dur-slow) var(--ease-standard);
}

.macfeat:hover .macfeat__visual img {
  transform: scale(1.09);
  filter: grayscale(0.1) brightness(0.72) contrast(1.06);
}

.macfeat__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.1) 0%, rgba(4, 6, 10, 0.72) 100%);
}

.macfeat__stamp {
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 8, 13, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.macfeat__caption {
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.05rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* viewfinder ticks on the visual */
.macfeat__ticks {
  position: absolute;
  z-index: 2;
  inset: 0.75rem;
  pointer-events: none;
}

.macfeat__ticks span {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.macfeat__ticks span:nth-child(1) {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}

.macfeat__ticks span:nth-child(2) {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}

.macfeat__ticks span:nth-child(3) {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}

.macfeat__ticks span:nth-child(4) {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.macfeat__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012));
}

.macfeat__k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.macfeat__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
  line-height: 1.06;
  /* panel names run uppercase across the approved pages */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.macfeat__copy {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.macfeat__copy strong {
  color: var(--color-text);
  font-weight: 600;
}

/* the docket — the four facts every applicant needs */
.macfeat__docket {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
  overflow: hidden;
}

@media screen and (max-width: 520px) {
  .macfeat__docket {
    grid-template-columns: 1fr;
  }
}
.macfeat__cell {
  background: #0a0d13;
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

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

.macfeat__cell dd {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  word-break: break-word;
}

.macfeat__cell dd a {
  color: var(--color-brand-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.4);
}

.macfeat__cell dd a:hover {
  border-bottom-color: var(--color-brand-bright);
}

.macfeat__docs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.macfeat__docs li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.macfeat__docs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(var(--brand-rgb), 0.6);
  border-radius: 2px;
  background: rgba(var(--brand-rgb), 0.18);
}

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

.macfeat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.macfeat__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

.macstep__rail {
  position: relative;
  --macstep-progress: 0;
  padding-top: 4.4rem;
}

/* ------------------------------------------------------------
   THE GANTRY
   A beam with a channel that fills as the section scrolls, four
   lamp housings hanging off it and a stem from each housing down
   to its card. The old rail was a 1px wire with four loose dots
   floating clear of the grid — it read as a stray divider rather
   than as part of the assembly, and nothing connected a dot to
   the card it was supposed to mark.
------------------------------------------------------------ */
.macstep__gantry {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4.4rem;
  pointer-events: none;
}

/* the beam — structure first, then the channel that lights */
.macstep__beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 3px;
  border: 1px solid var(--color-line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.macstep__beam::before {
  /* hatched web, so the beam reads as fabricated steel not a rule */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 9px);
}

.macstep__beam-fill {
  position: absolute;
  inset: 1px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.55), var(--color-brand-bright));
  box-shadow: 0 0 22px rgba(var(--brand-rgb), 0.75);
  transform: scaleX(var(--macstep-progress, 0));
  transform-origin: left center;
}

/* the leading edge of the fill, so the beam has a travelling head */
.macstep__beam-fill::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -1px;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.8);
  opacity: clamp(0, var(--macstep-progress, 0) * 24, 1);
}

/* one housing per card, on the card's centre line */
.macstep__lamps {
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.macstep__lamp {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.macstep__housing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong);
  background: linear-gradient(180deg, #12161e, #080a0f);
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.9);
}

.macstep__housing i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: background var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}

.macstep__lamp.is-lit .macstep__housing {
  border-color: rgba(var(--brand-rgb), 0.5);
}

.macstep__lamp.is-lit .macstep__housing i {
  background: var(--color-brand-bright);
  box-shadow: 0 0 10px 1px rgba(var(--brand-rgb), 0.95), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.macstep__lamp.is-lit .macstep__housing i:nth-child(2) {
  transition-delay: 90ms;
}

/* step 03 is the one that stops people — it burns amber, not blue */
.macstep__lamp--hold.is-lit .macstep__housing {
  border-color: rgba(232, 163, 23, 0.55);
}

.macstep__lamp--hold.is-lit .macstep__housing i {
  background: #e8a317;
  box-shadow: 0 0 10px 1px rgba(232, 163, 23, 0.95), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* the stem is what ties a lamp to its card */
.macstep__stem {
  width: 1px;
  flex: 1;
  min-height: 1.5rem;
  background: linear-gradient(180deg, var(--color-line-strong), transparent);
}

.macstep__lamp.is-lit .macstep__stem {
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.85), transparent);
}

.macstep__lamp--hold.is-lit .macstep__stem {
  background: linear-gradient(180deg, rgba(232, 163, 23, 0.85), transparent);
}

@media screen and (max-width: 992px) {
  /* stacked cards have no shared centre line for a gantry to hang on */
  .macstep__gantry {
    display: none;
  }
  .macstep__rail {
    padding-top: 0;
  }
}
.macstep__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

@media screen and (max-width: 992px) {
  .macstep__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 560px) {
  .macstep__grid {
    grid-template-columns: 1fr;
  }
}
.macstep__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out-expo), border-color var(--dur-base) var(--ease-standard);
}

.macstep__card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-rgb), 0.45);
}

.macstep__card.is-lit {
  border-color: rgba(var(--brand-rgb), 0.3);
}

/* the card's own light bar, drawn from the stem down into the card */
.macstep__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-brand-bright), transparent);
  transform: scaleX(0);
  transition: transform 0.7s var(--ease-out-expo);
  z-index: 2;
}

.macstep__card.is-lit::before {
  transform: scaleX(1);
}

.macstep__card--stop::before {
  background: linear-gradient(90deg, transparent, #e8a317, transparent);
}

.macstep__top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.3rem) clamp(1.05rem, 2.2vw, 1.5rem) 0;
}

.macstep__n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.macstep__card.is-lit .macstep__n {
  color: var(--color-brand-bright);
}

.macstep__ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  margin-left: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-subtle);
  transition: color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}

.macstep__ico svg {
  width: 17px;
  height: 17px;
}

.macstep__card.is-lit .macstep__ico {
  color: var(--color-brand-bright);
  border-color: rgba(var(--brand-rgb), 0.5);
  background: rgba(var(--brand-rgb), 0.14);
}

.macstep__body {
  flex: 1;
  padding: 0.9rem clamp(1.05rem, 2.2vw, 1.5rem) clamp(1rem, 2vw, 1.3rem);
}

.macstep__h {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}

/* headings run to one or two lines across the row; reserving two keeps
   every card's copy starting on the same baseline */
@media screen and (min-width: 993px) {
  .macstep__h {
    min-height: 2.2em;
  }
}
.macstep__p {
  color: var(--color-text-muted);
  font-size: 0.91rem;
  line-height: 1.58;
}

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

/* mono readout at the foot — the spec-sheet tell */
.macstep__out {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.8rem clamp(1.05rem, 2.2vw, 1.5rem);
  border-top: 1px dashed var(--color-line);
  background: rgba(0, 0, 0, 0.24);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.macstep__out b {
  color: var(--color-brand-bright);
  font-weight: 600;
  text-align: right;
}

.macstep__card--stop .macstep__out b {
  color: #ff9ba0;
}

.macstep__card--stop.is-lit {
  border-color: rgba(232, 163, 23, 0.34);
}

.macstep__card--stop.is-lit .macstep__n {
  color: #f0c256;
}

.macstep__card--stop.is-lit .macstep__ico {
  color: #f0c256;
  border-color: rgba(232, 163, 23, 0.5);
  background: rgba(232, 163, 23, 0.14);
}

/* ---------- the deadline strip ---------- */
.macstep__deadline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: clamp(1.2rem, 2.6vw, 2rem);
  padding: clamp(1.3rem, 2.6vw, 1.9rem) clamp(1.3rem, 3vw, 2.2rem);
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  border-radius: var(--radius-xl);
  background: linear-gradient(100deg, rgba(var(--brand-rgb), 0.15), rgba(255, 255, 255, 0.02));
}

@media screen and (max-width: 720px) {
  .macstep__deadline {
    grid-template-columns: 1fr;
  }
}
.macstep__deadline p {
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  max-width: 68ch;
}

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

.macstep__big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.86;
  letter-spacing: var(--ls-display);
  color: var(--color-brand-bright);
  text-align: right;
}

.macstep__big small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-top: 0.6rem;
}

.mactier__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: stretch;
}

@media screen and (max-width: 900px) {
  .mactier__grid {
    grid-template-columns: 1fr;
  }
}
.mactier__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-standard);
}

.mactier__card--full {
  border-color: rgba(var(--brand-rgb), 0.34);
  background: radial-gradient(120% 70% at 50% 0%, rgba(var(--brand-rgb), 0.16), transparent 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.mactier__card:hover {
  border-color: rgba(var(--brand-rgb), 0.55);
}

/* ---------- header band ---------- */
.mactier__head-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.1rem, 2.2vw, 1.75rem);
  border-bottom: 1px solid var(--color-line);
}

.mactier__vest {
  width: 3rem;
  flex: none;
}

.mactier__vest svg {
  width: 100%;
  height: auto;
}

.mactier__card--full .mactier__vest svg {
  color: var(--color-brand-bright);
}

.mactier__card--ltd .mactier__vest svg {
  color: var(--color-text-subtle);
}

.mactier__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mactier__card--full .mactier__name {
  color: var(--color-brand-bright);
}

.mactier__for {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.mactier__badge {
  flex: none;
  padding: 0.4rem 0.72rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}

.mactier__card--full .mactier__badge {
  border-color: rgba(var(--brand-rgb), 0.5);
  color: var(--color-brand-bright);
}

/* ---------- the gate line ---------- */
.mactier__gate {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2.2vw, 1.75rem);
  border-bottom: 1px solid var(--color-line);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

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

.mactier__card--full .mactier__gate {
  background: rgba(var(--brand-rgb), 0.07);
}

/* ---------- ledger rows ---------- */
.mactier__ledger {
  flex: 1;
  margin: 0;
  padding: clamp(0.3rem, 1vw, 0.6rem) clamp(1.1rem, 2.2vw, 1.75rem);
}

.mactier__row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 0.5fr) 1fr;
  gap: 1rem;
  padding: clamp(0.8rem, 1.5vh, 1.05rem) 0;
}

.mactier__row + .mactier__row {
  border-top: 1px dashed var(--color-line);
}

/* the label column holds a 6.5rem minimum, which leaves the value
   about 150px on a phone and shreds it into two-word lines */
@media screen and (max-width: 560px) {
  .mactier__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .mactier__row dt {
    padding-top: 0;
  }
}
.mactier__row dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
  padding-top: 0.2rem;
}

.mactier__card--ltd .mactier__row dt {
  color: var(--color-text-subtle);
}

.mactier__row dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

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

.mactier__row dd em {
  font-style: normal;
  color: #ff9ba0;
  font-weight: 600;
}

/* inline yes/no ladder inside a ledger value */
.mactier__lad {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.55rem;
}

.mactier__lad i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-muted);
}

.mactier__lad i[data-yes] {
  border-color: rgba(31, 157, 91, 0.4);
  background: rgba(31, 157, 91, 0.1);
  color: #7fe0ab;
}

.mactier__lad i[data-no] {
  border-color: rgba(229, 72, 77, 0.4);
  background: rgba(229, 72, 77, 0.1);
  color: #ff9ba0;
}

/* ---------- footer band ---------- */
.mactier__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2.2vw, 1.75rem);
  border-top: 1px solid var(--color-line);
  background: rgba(0, 0, 0, 0.24);
}

.mactier__src {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* ---------- the insurance gate bar ---------- */
.mactier__gatebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.7rem);
  align-items: start;
  margin-top: clamp(1rem, 2vw, 1.75rem);
  padding: clamp(1.2rem, 2.4vw, 1.7rem) clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(var(--brand-rgb), 0.26);
  border-radius: var(--radius-xl);
  background: linear-gradient(100deg, rgba(var(--brand-rgb), 0.12), rgba(255, 255, 255, 0.02));
}

@media screen and (max-width: 620px) {
  .mactier__gatebar {
    grid-template-columns: 1fr;
  }
}
.mactier__lock {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--brand-rgb), 0.45);
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--color-brand-bright);
  flex: none;
}

.mactier__lock svg {
  width: 21px;
  height: 21px;
}

.mactier__gatebar h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}

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

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

.mactier__ways {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.macband {
  position: relative;
  margin-inline: auto;
  max-width: var(--maxw);
  padding-inline: var(--gutter);
  scroll-margin-top: calc(var(--masthead-h, 84px) + 16px);
}

.macband__inner {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2rem, 5vw, 4.2rem) clamp(1.4rem, 4vw, 3.4rem);
}

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

.macband__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.4) contrast(1.1);
  transform: scale(1.06);
}

.macband__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(4, 6, 11, 0.94) 8%, rgba(4, 6, 11, 0.74) 46%, rgba(4, 6, 11, 0.4) 100%), radial-gradient(90% 120% at 8% 50%, rgba(var(--brand-rgb), 0.3), transparent 62%);
}

/* Title left, copy right — the same split head every other section on
   this page uses. Stacked, the copy left the whole right half of the
   band's photograph empty above the desks. */
.macband__head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}

@media screen and (max-width: 992px) {
  .macband__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.macband__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.macband__k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.macband__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  margin-bottom: 0;
}

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

.macband__copy {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

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

.macband__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.3rem);
}

@media screen and (max-width: 900px) {
  .macband__grid {
    grid-template-columns: 1fr;
  }
}
.macband__door {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out-expo), border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}

.macband__door:hover,
.macband__door:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-rgb), 0.6);
  background: rgba(var(--brand-rgb), 0.12);
}

.macband__no {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.macband__who {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.macband__for {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.macband__mail {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-brand-bright);
  word-break: break-all;
}

.macband__mail svg {
  width: 20px;
  height: 20px;
  flex: none;
  transition: transform var(--dur-base) var(--ease-out-expo);
}

.macband__door:hover .macband__mail svg {
  transform: translateX(3px);
}

.macband__phone {
  margin-top: clamp(1.4rem, 3vh, 2.1rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.macband__phone a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.5);
}

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

.macapply {
  padding-block: clamp(3.5rem, 8vh, 6rem);
}

.macapply__band {
  position: relative;
  border: 1px solid rgba(var(--brand-rgb), 0.3);
  border-radius: var(--radius-xl);
  background: radial-gradient(120% 130% at 12% 0%, rgba(var(--brand-rgb), 0.22), transparent 58%), linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014));
  padding: clamp(1.8rem, 4.5vw, 3.4rem);
  overflow: hidden;
}

.macapply__band::after {
  content: "";
  position: absolute;
  inset: 0;
  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: 48px 48px;
  mask-image: radial-gradient(120% 100% at 80% 0%, #000 20%, transparent 74%);
  -webkit-mask-image: radial-gradient(120% 100% at 80% 0%, #000 20%, transparent 74%);
  pointer-events: none;
}

.macapply__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}

@media screen and (max-width: 992px) {
  .macapply__inner {
    grid-template-columns: 1fr;
  }
}
.macapply__k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand-bright);
}

.macapply__title {
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
}

.macapply__copy {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.68;
  max-width: 56ch;
}

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

.macapply__copy em {
  font-style: normal;
  color: #7fe0ab;
  font-weight: 600;
}

.macapply__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* the two form doors */
.macapply__doors {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.macapply__door {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(6, 8, 13, 0.62);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out-expo), border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}

.macapply__door:hover {
  transform: translateX(4px);
  border-color: rgba(var(--brand-rgb), 0.55);
  background: rgba(var(--brand-rgb), 0.1);
}

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

.macapply__tier {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-brand-bright);
}

.macapply__door--ltd .macapply__tier {
  color: var(--color-text-muted);
}

.macapply__dname {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.macapply__dsub {
  display: block;
  margin-top: 0.24rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.macapply__arrow {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--color-text-subtle);
  transition: transform var(--dur-base) var(--ease-out-expo), color var(--dur-base) var(--ease-standard);
}

.macapply__door:hover .macapply__arrow {
  transform: translateX(3px);
  color: var(--color-brand-bright);
}

.macapply__note {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.7;
}

.macmap__body {
  position: relative;
  display: block;
}

/* ---------- the stage — full width, the circuit is the centrepiece ---------- */
.macmap__stage {
  position: relative;
  border: 1px solid var(--color-line);
  margin-bottom: clamp(1.2rem, 2.6vw, 2rem);
  border-radius: var(--radius-lg);
  background: radial-gradient(90% 80% at 50% 40%, rgba(var(--brand-rgb), 0.08), transparent 70%), linear-gradient(180deg, #0a0d13, #070a0f);
  overflow: hidden;
  padding: clamp(0.9rem, 2vw, 1.6rem);
}

.macmap__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(100% 90% at 50% 50%, #000 34%, transparent 82%);
  -webkit-mask-image: radial-gradient(100% 90% at 50% 50%, #000 34%, transparent 82%);
  pointer-events: none;
}

.macmap__svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Circuit artwork palette.
   These MUST be unscoped: <use> builds a shadow tree, and a descendant
   selector (.macmap__art .clx-art__track) cannot reach into it — only
   rules matching the referenced element itself apply. Scoping them is
   what made the ribbon render pure black. */
.clx-art__track {
  fill: currentColor;
}

.clx-art__trackline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
}

.clx-art__flag-w {
  fill: rgba(255, 255, 255, 0.72);
}

.clx-art__flag-b {
  fill: #0b0e14;
}

.clx-art__flag-edge {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
}

.clx-art__arrow {
  fill: rgba(255, 255, 255, 0.42);
}

/* The circuit reveals the way the approved circuits pages do it: a dim
   ghost of the artwork, with a fat stroke sweeping along the racing line
   as a mask so the real ribbon paints itself in, anti-clockwise from the
   start/finish grid. Stroking the racing line on top of the artwork
   looked wrong — the two geometries are not the same width. */
/* `color` is inherited, so it is the one lever that reaches inside a
   <use> shadow tree — the ghost and the revealed lap differ by it alone. */
.macmap__ghost {
  color: rgba(255, 255, 255, 0.14);
}

.macmap__reveal {
  color: var(--color-brand);
  filter: drop-shadow(0 0 10px rgba(var(--brand-rgb), 0.55));
}

.macmap__sweep {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 2.6s var(--ease-out-expo);
}

.macmap.is-drawn .macmap__sweep {
  stroke-dashoffset: 0;
}

/* once the lap closes, flood the mask so the full circuit stays lit */
.macmap__flood {
  fill: #fff;
  opacity: 0;
  transition: opacity 0.5s var(--ease-standard) 2.5s;
}

.macmap.is-drawn .macmap__flood {
  opacity: 1;
}

/* the start/finish marker sits on the grid where the lap begins */
.macmap__startdot {
  fill: none;
  stroke: rgba(var(--brand-rgb), 0.9);
  stroke-width: 4;
  opacity: 0;
  transition: opacity 0.6s var(--ease-standard) 0.4s;
}

.macmap.is-drawn .macmap__startdot {
  opacity: 1;
}

/* ---------- closed sectors ----------
   A zone that IS a stretch of tarmac is drawn on the tarmac. Each
   sector is a copy of the circuit artwork masked by a dashed
   sub-range of the racing line, so the red follows the real ribbon
   — the same masking grammar as the lap reveal above, and the
   reason we never stroke #clp-* straight over #cla-* (the two
   geometries are not the same shape). */
.macmap__sectors {
  pointer-events: none;
}

.macmap__sector {
  color: #e5484d;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(229, 72, 77, 0.55));
  transition: opacity var(--dur-slow) var(--ease-standard);
}

.macmap.is-drawn .macmap__sector {
  opacity: 0.78;
}

.macmap.is-drawn .macmap__sector.is-active {
  opacity: 1;
  filter: drop-shadow(0 0 26px rgba(229, 72, 77, 0.95));
}

.macmap.is-drawn .macmap__sector.is-dim {
  opacity: 0.12;
}

/* ---------- markers ---------- */
.macmap__nodes {
  pointer-events: none;
}

/* A pin placed in clear space still has to belong somewhere: the
   leader ties it back to a real point on the racing line. */
.macmap__leader {
  stroke: currentColor;
  stroke-width: 3;
  stroke-dasharray: 12 10;
  opacity: 0.42;
}

.macmap__anchor {
  fill: currentColor;
  opacity: 0.85;
}

.macmap__node--go {
  color: rgba(120, 158, 255, 0.9);
}

.macmap__node--no {
  color: rgba(229, 72, 77, 0.9);
}

.macmap__node--ops {
  color: rgba(232, 163, 23, 0.9);
}

.macmap__node.is-active .macmap__leader {
  opacity: 1;
  stroke-dasharray: none;
}

/* name plate — the register row's title, on the map, on demand */
.macmap__plate {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--dur-base) var(--ease-out-expo), transform var(--dur-base) var(--ease-out-expo);
}

.macmap__node.is-active .macmap__plate {
  opacity: 1;
  transform: translateY(0);
}

.macmap__plate rect {
  fill: rgba(6, 9, 14, 0.94);
  stroke: currentColor;
  stroke-width: 2.5;
}

.macmap__plate text {
  font-family: var(--font-mono);
  font-size: 34px;
  letter-spacing: 0.14em;
  text-anchor: middle;
  fill: #fff;
}

.macmap__node {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity var(--dur-slow) var(--ease-out-expo), transform var(--dur-slow) var(--ease-out-expo);
}

.macmap.is-drawn .macmap__node {
  opacity: 1;
}

.macmap__dot {
  stroke-width: 3;
  fill: rgba(6, 9, 14, 0.86);
}

.macmap__node text {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 600;
  text-anchor: middle;
  letter-spacing: 0.04em;
}

/* zone kinds */
.macmap__node--go .macmap__dot {
  stroke: rgba(var(--brand-rgb), 0.95);
}

.macmap__node--go text {
  fill: #cdd8ff;
}

.macmap__node--no .macmap__dot {
  stroke: rgba(229, 72, 77, 0.95);
  fill: rgba(40, 8, 10, 0.9);
}

.macmap__node--no text {
  fill: #ff9ba0;
}

.macmap__node--ops .macmap__dot {
  stroke: rgba(232, 163, 23, 0.95);
}

.macmap__node--ops text {
  fill: #f0c256;
}

.macmap__node.is-active .macmap__dot {
  stroke-width: 5;
}

.macmap__halo {
  fill: none;
  stroke: currentColor;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.macmap__node.is-active .macmap__halo {
  opacity: 0.5;
  animation: macmap-ping 1.6s ease-out infinite;
}

@keyframes macmap-ping {
  0% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
/* dimming when a filter is applied */
.macmap__node.is-dim {
  opacity: 0.16;
}

/* On a phone the circuit at container width is ~200px tall and the
   markers become unreadable, so the stage scrolls sideways at a
   usable size instead of shrinking to fit. */
@media screen and (max-width: 760px) {
  .macmap__stage {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .macmap__svg {
    min-width: 640px;
  }
  .macmap__legend {
    position: static;
    margin-top: 0.7rem;
  }
  .macmap__pan {
    display: block;
  }
}
/* only shown where the stage actually pans */
.macmap__pan {
  display: none;
  margin: 0.55rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.macmap__legend {
  position: absolute;
  z-index: 2;
  left: clamp(0.9rem, 2vw, 1.6rem);
  bottom: clamp(0.9rem, 2vw, 1.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.macmap__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.macmap__legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.macmap__legend .i-go {
  color: var(--color-brand-bright);
}

.macmap__legend .i-no {
  color: #ff9ba0;
}

.macmap__legend .i-ops {
  color: #f0c256;
}

/* ---------- the register (accessible equivalent) ---------- */
.macmap__reg {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

@media screen and (max-width: 992px) {
  .macmap__reg {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 620px) {
  .macmap__reg {
    grid-template-columns: 1fr;
  }
}
.macmap__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: clamp(0.9rem, 2vh, 1.3rem);
}

.macmap__filter {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: transparent;
  padding: 0.42rem 0.8rem;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}

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

.macmap__filter[aria-pressed=true] {
  color: #fff;
  border-color: rgba(var(--brand-rgb), 0.55);
  background: rgba(var(--brand-rgb), 0.18);
}

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

.macmap__row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 1rem 1.05rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-out-expo);
}

.macmap__row:hover,
.macmap__row.is-active {
  transform: translateY(-3px);
  border-color: rgba(var(--brand-rgb), 0.48);
  background: rgba(var(--brand-rgb), 0.09);
}

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

.macmap__row[hidden] {
  display: none;
}

.macmap__row--no:hover,
.macmap__row--no.is-active {
  border-color: rgba(229, 72, 77, 0.5);
  background: rgba(229, 72, 77, 0.09);
}

.macmap__row--ops:hover,
.macmap__row--ops.is-active {
  border-color: rgba(232, 163, 23, 0.5);
  background: rgba(232, 163, 23, 0.09);
}

.macmap__pin {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(var(--brand-rgb), 0.7);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-brand-bright);
  flex: none;
}

.macmap__row--no .macmap__pin {
  border-color: rgba(229, 72, 77, 0.7);
  color: #ff9ba0;
}

.macmap__row--ops .macmap__pin {
  border-color: rgba(232, 163, 23, 0.7);
  color: #f0c256;
}

.macmap__zn {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.macmap__zd {
  display: block;
  margin-top: 0.24rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

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

.macmap__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.2rem, 2.6vh, 1.8rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-line);
}

.macmap__disclaimer {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-subtle);
  max-width: 66ch;
}

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

.maccomp__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

@media screen and (max-width: 992px) {
  .maccomp__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 620px) {
  .maccomp__grid {
    grid-template-columns: 1fr;
  }
}
.maccomp__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out-expo), border-color var(--dur-base) var(--ease-standard);
}

.maccomp__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 80% at 20% 0%, rgba(var(--brand-rgb), 0.15), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out-expo);
  pointer-events: none;
}

.maccomp__card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-rgb), 0.4);
}

.maccomp__card:hover::before {
  opacity: 1;
}

/* hard rules get a red edge instead of blue */
.maccomp__card--hard {
  border-color: rgba(229, 72, 77, 0.26);
}

.maccomp__card--hard:hover {
  border-color: rgba(229, 72, 77, 0.55);
}

.maccomp__card--hard::before {
  background: radial-gradient(110% 80% at 20% 0%, rgba(229, 72, 77, 0.16), transparent 60%);
}

.maccomp__ico {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-brand-bright);
}

.maccomp__card--hard .maccomp__ico {
  color: #ff9ba0;
  border-color: rgba(229, 72, 77, 0.32);
  background: rgba(229, 72, 77, 0.1);
}

.maccomp__ico svg {
  width: 21px;
  height: 21px;
}

.maccomp__h {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.maccomp__p {
  position: relative;
  z-index: 1;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--color-text-muted);
}

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

.maccomp__tag {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--color-line);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.maccomp__card--hard .maccomp__tag {
  color: #ff9ba0;
}

/* ------------------------------------------------------------
   Photo-backed rule cards. The three hard rules carry an image
   so the grid has rhythm instead of nine identical text tiles.
------------------------------------------------------------ */
.maccomp__card--shot {
  min-height: clamp(330px, 36vw, 420px);
  /* content sits at the foot of the frame; the photo owns the top half */
  justify-content: flex-end;
  border-color: rgba(229, 72, 77, 0.32);
}

.maccomp__card--shot .maccomp__ico,
.maccomp__card--shot .maccomp__h,
.maccomp__card--shot .maccomp__p,
.maccomp__card--shot .maccomp__tag {
  position: relative;
  z-index: 2;
}

/* .maccomp__tag owns `margin-top:auto`, which eats the free space and
   pins the text to the top. Moving the auto onto the icon pushes the
   whole block — icon, heading, copy, tag — down to the foot instead. */
.maccomp__card--shot .maccomp__ico {
  margin-top: auto;
  background: rgba(229, 72, 77, 0.2);
  border-color: rgba(229, 72, 77, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.maccomp__card--shot .maccomp__tag {
  margin-top: 0;
}

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

.maccomp__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.34) brightness(0.92) contrast(1.14) saturate(0.9);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out-expo), filter var(--dur-slow) var(--ease-standard);
}

.maccomp__card--shot:hover .maccomp__shot img {
  transform: scale(1.1);
  filter: grayscale(0.06) brightness(1.02) contrast(1.1) saturate(1);
}

.maccomp__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  /* the photo was reading as a smudge: hold it clear at the top and
     only close the scrim where type actually sits */
  background: linear-gradient(180deg, transparent 0%, rgba(6, 8, 13, 0.16) 24%, rgba(6, 8, 13, 0.82) 45%, rgba(6, 8, 13, 0.97) 62%, rgba(6, 8, 13, 0.99) 100%);
}

/* On a phone the copy fills the card, so a full-bleed photo behind
   it leaves the first lines sitting on bright sky. Below 620px the
   image gets a fixed band at the head of the card and the text runs
   on the solid card surface underneath it. */
@media screen and (max-width: 620px) {
  .maccomp__card--shot {
    min-height: 0;
    padding-top: 10.5rem;
  }
  .maccomp__shot {
    inset: 0 0 auto 0;
    height: 9.5rem;
    border-bottom: 1px solid rgba(229, 72, 77, 0.28);
  }
  .maccomp__shot::after {
    background: linear-gradient(180deg, transparent 0%, rgba(6, 8, 13, 0.12) 45%, rgba(6, 8, 13, 0.72) 100%);
  }
  .maccomp__card--shot .maccomp__ico {
    margin-top: 0;
    position: absolute;
    top: 7.2rem;
    left: clamp(1.25rem, 2.4vw, 1.7rem);
  }
}
/* ------------------------------------------------------------
   Mono spec readout inside a rule card — the same label/value
   ledger the approved compliance panels use, so short cards
   carry data instead of dead space.
------------------------------------------------------------ */
.maccomp__spec {
  position: relative;
  z-index: 2;
  margin: 0.25rem 0 0;
  padding: 0;
}

.maccomp__spec > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.maccomp__spec > div + div {
  border-top: 1px dashed var(--color-line);
}

.maccomp__spec dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}

.maccomp__spec dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: right;
}

.maccomp__spec dd[data-warn] {
  color: #ff9ba0;
}

.maccomp__spec dd[data-ok] {
  color: #7fe0ab;
}

.macnum {
  position: relative;
  padding-block: var(--section-pad);
  overflow: hidden; /* the field runs to the edges, nothing past them */
  scroll-margin-top: calc(var(--masthead-h, 84px) + 16px);
}

/* Title left, copy right — the split head the rest of the page uses.
   Stacked, the sub-paragraph sat under a short title and left the whole
   right of the section empty. */
.macnum__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4.5vh, 3.2rem);
}

@media screen and (max-width: 992px) {
  .macnum__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.macnum__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.macnum__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  margin: 1.1rem 0 0;
}

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

.macnum__sub {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* Glass needs something behind it or it is just a flat tint. This is
   that something: a brand glow under the first three cards, a red one
   under the closed-sectors card, and a fine grid — all of it read
   through the panes rather than seen directly. */
.macnum__field {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: calc(var(--section-pad) - 3rem);
  height: clamp(330px, 42vh, 560px);
  background: radial-gradient(38% 96% at 24% 92%, rgba(var(--brand-rgb), 0.6), transparent 68%), radial-gradient(40% 92% at 50% 100%, rgba(var(--brand-rgb), 0.4), transparent 70%), radial-gradient(34% 96% at 78% 92%, rgba(229, 72, 77, 0.42), transparent 70%), linear-gradient(180deg, transparent, rgba(var(--brand-rgb), 0.1));
  /* the field must have no edge of its own — unmasked, its rounded box
     showed as a bright blue block sitting under the cards */
  mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
  pointer-events: none;
}

.macnum__field::after {
  content: "";
  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: 44px 44px;
  mask-image: radial-gradient(90% 100% at 50% 100%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(90% 100% at 50% 100%, #000 20%, transparent 78%);
}

.macnum__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
}

@media screen and (max-width: 900px) {
  .macnum__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 520px) {
  .macnum__grid {
    grid-template-columns: 1fr;
  }
}
/* Four panes of glass, not four compartments of one slab. Same recipe
   as the hero credential: a light tint so the field behind actually
   comes through the blur, a hairline edge and a 1px top highlight —
   the lip is what reads as glass. */
.macnum__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(168deg, rgba(126, 152, 214, 0.09) 0%, transparent 52%), linear-gradient(180deg, rgba(14, 18, 27, 0.3), rgba(8, 10, 16, 0.5));
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 22px 50px -26px rgba(0, 0, 0, 0.9), 0 1px 0 0 rgba(255, 255, 255, 0.13) inset;
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out-expo), border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}

/* a sheen across the pane, the tell that it is a surface not a hole */
.macnum__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.07) 48%, transparent 64%);
  pointer-events: none;
}

.macnum__cell:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-rgb), 0.5);
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(var(--brand-rgb), 0.2), 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
}

.macnum__cell--stop {
  background: linear-gradient(168deg, rgba(229, 72, 77, 0.12) 0%, transparent 52%), linear-gradient(180deg, rgba(20, 12, 15, 0.32), rgba(10, 8, 11, 0.52));
}

.macnum__cell--stop:hover {
  border-color: rgba(229, 72, 77, 0.55);
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(229, 72, 77, 0.22), 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
}

/* each number carries a small instrument that says what it measures */
.macnum__deco {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
  opacity: 0.75;
}

.macnum__deco i {
  display: block;
  width: 7px;
  border-radius: 1px;
  background: rgba(var(--brand-rgb), 0.55);
}

.macnum__deco--days i:nth-child(n) {
  height: 100%;
}

.macnum__deco--days i:nth-child(7) {
  background: var(--color-brand-bright);
}

.macnum__deco--age i {
  width: 4px;
  height: 100%;
}

.macnum__deco--age i:nth-child(-n+2) {
  background: rgba(255, 255, 255, 0.14);
}

.macnum__deco--barrier i {
  width: 26px;
  height: 12px;
  border-radius: 2px;
}

.macnum__deco--barrier i:nth-child(2) {
  height: 22px;
  background: var(--color-brand-bright);
}

.macnum__deco--closed i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(229, 72, 77, 0.7);
}

.macnum__v {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-weight: var(--fw-extra);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.86;
  letter-spacing: var(--ls-display);
  color: var(--color-brand-bright);
  font-variant-numeric: tabular-nums;
}

.macnum__v small {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.macnum__cell--stop .macnum__v {
  color: #ff9ba0;
}

.macnum__k {
  position: relative;
  z-index: 1;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

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

.macgal__sheet {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* the sheet was a strip of letterbox slivers; a taller row lets each
     frame actually read as a photograph */
  grid-auto-rows: clamp(200px, 22vw, 300px);
  gap: clamp(0.6rem, 1.4vw, 1rem);
}

@media screen and (max-width: 900px) {
  .macgal__sheet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.macgal__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a0d13;
  text-decoration: none;
  color: inherit;
  /* hover lift needs headroom or the grid clips it */
  transition: transform var(--dur-slow) var(--ease-out-expo), border-color var(--dur-base) var(--ease-standard), z-index 0s;
}

.macgal__frame--wide {
  grid-column: span 2;
}

@media screen and (max-width: 900px) {
  .macgal__frame--wide {
    grid-column: span 2;
  }
}
.macgal__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.42) brightness(0.62) contrast(1.14) saturate(0.9);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease-out-expo), filter var(--dur-slow) var(--ease-standard);
}

.macgal__frame:hover,
.macgal__frame:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), 0.55);
  z-index: 2;
}

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

.macgal__frame:hover img,
.macgal__frame:focus-visible img {
  transform: scale(1.09);
  filter: grayscale(0) brightness(0.92) contrast(1.04) saturate(1);
}

/* sprocket edge — the contact-sheet tell */
.macgal__frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 5px, transparent 5px 13px);
  background-position: 2px 0;
  background-size: 5px 100%;
  background-repeat: repeat-y;
  opacity: 0.55;
  pointer-events: none;
}

/* zoom affordance — the frame opens a lightbox, so say so */
.macgal__zoom {
  position: absolute;
  z-index: 3;
  top: 0.6rem;
  right: 0.6rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(5, 7, 11, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-out-expo);
  pointer-events: none;
}

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

.macgal__frame:hover .macgal__zoom,
.macgal__frame:focus-visible .macgal__zoom {
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .macgal__zoom {
    opacity: 1;
    transform: none;
  }
}
/* The grease-pencil select ring read as a rendering artifact over the
   photography rather than a flourish — removed. Featured frames are
   distinguished by their span alone. */
.macgal__meta {
  position: absolute;
  z-index: 3;
  left: 0.85rem;
  right: 0.75rem;
  bottom: 0.7rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* the frame is a <button>, whose UA default centres text */
  text-align: left;
  color: rgba(255, 255, 255, 0.62);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-slow) var(--ease-out-expo), transform var(--dur-slow) var(--ease-out-expo);
  pointer-events: none;
}

.macgal__frame:hover .macgal__meta,
.macgal__frame:focus-visible .macgal__meta {
  opacity: 1;
  transform: none;
}

.macgal__meta b {
  display: block;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.macgal__act {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: clamp(1.4rem, 3vh, 2.2rem);
}

.macgal__credit {
  margin-top: 1.1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.8;
}

.maclux {
  position: fixed;
  inset: 0;
  z-index: 900; /* above the masthead (800) and edge switch (640) */
  display: flex;
  flex-direction: column;
  background: rgba(5, 7, 11, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.maclux[hidden] {
  display: none;
}

.maclux.is-open {
  opacity: 1;
}

/* — controls · top-right of the screen ————————————————————— */
.maclux__top {
  position: absolute;
  top: clamp(14px, 3vh, 24px);
  right: clamp(14px, 2vw, 26px);
  z-index: 6;
  display: flex;
  gap: 10px;
}

.maclux__btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(9, 11, 16, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

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

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

.maclux__btn svg {
  width: 16px;
  height: 16px;
}

/* resize icon swaps once the gallery itself is fullscreen */
.maclux__ic-min {
  display: none;
}

.maclux:fullscreen .maclux__ic-max {
  display: none;
}

.maclux:fullscreen .maclux__ic-min {
  display: block;
}

/* — prev / next · large edge buttons, vertically centred ———— */
.maclux__edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(9, 11, 16, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.maclux__edge--prev {
  left: clamp(14px, 2.4vw, 30px);
}

.maclux__edge--next {
  right: clamp(14px, 2.4vw, 30px);
}

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

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

.maclux__edge svg {
  width: 20px;
  height: 10px;
}

/* — stage + centred caption bar ————————————————————————————— */
.maclux__stage {
  flex: 1;
  min-height: 0;
  /* flex, not grid: percentage max-height resolves against the
     definite stage height here, so the image can never overflow
     into the caption bar */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4.4rem, 9vh, 5.5rem) clamp(4.6rem, 8vw, 7rem) 0.5rem;
}

.maclux__img {
  max-width: min(1200px, 100%);
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: opacity 0.3s ease;
}

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

.maclux__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem var(--gutter) clamp(1.2rem, 4vh, 2rem);
  text-align: center;
}

.maclux__cap {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 576px) {
  /* Reserving a lane for each edge button either side left the photo a
     269px strip on a 390px screen. On a phone the image takes the full
     width and the buttons overlay its edges, which is what every native
     photo viewer does. */
  .maclux__edge {
    width: 44px;
    height: 44px;
    background: rgba(9, 11, 16, 0.72);
  }
  .maclux__edge--prev {
    left: 0.6rem;
  }
  .maclux__edge--next {
    right: 0.6rem;
  }
  .maclux__stage {
    padding: clamp(4.4rem, 9vh, 5.5rem) 0.75rem 0.5rem;
  }
}
/* ================================================================
   CL-CTA --tri · three-door exit band (approved PYV grammar)
   ================================================================ */
.cl-cta--tri .cl-cta__band {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .cl-cta--tri .cl-cta__band {
    grid-template-columns: 1fr;
  }
}
.cl-cta__contactline {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: clamp(1.4rem, 3vh, 2rem);
}

.cl-cta__contactline a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
}

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

.cl-cta__contactline svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-brand-bright);
  flex: 0 0 auto;
}

/* The shared tri-CTA ships its meta list tight against the button (the
   approved pages patch it with an inline style). Same spacing, in CSS. */
.cl-cta--tri .cl-cta__meta {
  margin-top: 1.15rem;
  row-gap: 0.45rem;
}

.macnote,
.macpath,
.macstep,
.mactier,
.macapply,
.macmap,
.maccomp,
.macgal,
.macband,
.sp-faq,
.cl-cta {
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.macband {
  max-width: calc(var(--maxw) + var(--gutter) * 2);
}

.macnum {
  max-width: none;
  padding-inline: 0;
}

.macnum__inner {
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero--mac: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--mac:not(.is-live) .sp-hero__content [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    animation: sp-hero-guard-safety 0.9s ease 6s forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero--mac:not(.is-live) .maccred {
    opacity: 0;
    transform: translateY(44px);
    filter: blur(8px);
    animation: sp-hero-guard-safety 0.9s ease 6s forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero--mac:not(.is-live) .maccred__lanyard {
    opacity: 0;
    animation: sp-hero-guard-safety 0.9s ease 6s forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.has-js .sp-hero--mac:not(.is-live) .maccred__bars i {
    opacity: 0;
    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;
  }
}
@keyframes kb-zoom {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.07;
  }
}
.macfeat__visual {
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  .maccred__lamp i,
  .mac-clock i,
  .macnote__bang::before,
  .macmap__node.is-active .macmap__halo {
    animation: none !important;
  }
  .macmap__line {
    transition: none !important;
    stroke-dashoffset: 0 !important;
  }
  .macmap__node {
    opacity: 1 !important;
    transition: none !important;
  }
  .macmap__node.is-active {
    transform: none !important;
  }
  /* the gantry beam is fully lit and static */
  .macstep__beam-fill {
    transition: none !important;
    transform: scaleX(1) !important;
  }
  .macstep__card::before {
    transition: none !important;
    transform: scaleX(1) !important;
  }
  .macstep__housing i,
  .macstep__stem {
    transition: none !important;
  }
  .maclux,
  .maclux__img {
    transition: none !important;
  }
  .macfeat {
    animation: none !important;
  }
  .macfeat__visual img,
  .macgal__frame img {
    transition: none !important;
    transform: none !important;
  }
  .macgal__frame:hover,
  .macgal__frame:focus-visible,
  .macstep__card:hover,
  .maccomp__card:hover,
  .mactier__card:hover,
  .macapply__door:hover,
  .macmap__row:hover,
  .macmap__row.is-active {
    transform: none !important;
  }
  .macgal__meta {
    opacity: 1 !important;
    transform: none !important;
  }
  .macgal__frame--select::after {
    transition: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .macmap__sweep,
  .macmap__flood,
  .macmap__startdot {
    transition: none !important;
  }
  .macmap__sweep {
    stroke-dashoffset: 0 !important;
  }
  .macmap__flood {
    opacity: 1 !important;
  }
  .macmap__startdot {
    opacity: 1 !important;
  }
  .macband__door:hover,
  .macband__door:focus-visible,
  .macnum__cell:hover,
  .maccomp__card--shot:hover {
    transform: none !important;
  }
  .maccomp__shot img,
  .macband__bg img {
    transition: none !important;
    transform: none !important;
  }
}
