:root {
  --obsidian: #050606;
  --carbon: #090b0c;
  --graphite: #101314;
  --steel: #171b1c;
  --ash: #8f9895;
  --fog: #cbd0cd;
  --bone: #f0f1ec;
  --volt: #c9ff3b;
  --volt-bright: #d8ff73;
  --cyan-reflection: #55e6ef;
  --line: rgba(240, 241, 236, 0.12);
  --line-soft: rgba(240, 241, 236, 0.065);
  --line-strong: rgba(201, 255, 59, 0.42);
  --font-body: "Noto Sans Armenian", "Segoe UI", Arial, sans-serif;
  --font-condensed: "Roboto Condensed", "Arial Narrow", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-move: cubic-bezier(0.77, 0, 0.175, 1);
  --header-height: 88px;
  --page-pad: clamp(24px, 5vw, 80px);
  --section-space: clamp(104px, 12vw, 184px);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  background: var(--obsidian);
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background: var(--obsidian);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--volt);
  color: var(--obsidian);
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--obsidian);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--obsidian);
  border-radius: 20px;
  background: #3f4945;
}

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

img,
video {
  object-fit: cover;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--volt);
  color: var(--obsidian);
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 120;
  inset: 0;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-aura {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 440px;
  height: 440px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(calc(var(--cursor-x) - 220px), calc(var(--cursor-y) - 220px), 0);
  background: radial-gradient(circle, rgba(201, 255, 59, 0.055), transparent 68%);
  transition: opacity 400ms ease;
  will-change: transform;
}

body.has-pointer .cursor-aura {
  opacity: 1;
}

.section-energy-trace {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.tracked-section[data-trace] > .content-grid {
  position: relative;
  z-index: 5;
}

.section-energy-trace__ghost,
.section-energy-trace__line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.section-energy-trace__ghost {
  stroke: rgba(201, 255, 59, 0.05);
  stroke-width: 5;
}

.section-energy-trace__line {
  stroke: var(--volt);
  stroke-width: 1.35;
  stroke-linecap: round;
  opacity: 0.58;
}

.section-energy-trace__head {
  fill: var(--volt-bright);
  opacity: 0;
  stroke: rgba(201, 255, 59, 0.24);
  stroke-width: 8;
}

.progress-rail {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 22px;
  display: flex;
  width: 22px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.progress-rail__number {
  color: var(--volt);
  font: 600 11px/1 var(--font-condensed);
  letter-spacing: 0.16em;
}

.progress-rail__track {
  position: relative;
  width: 1px;
  height: 112px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.progress-rail__track i {
  position: absolute;
  inset: 0;
  display: block;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--volt);
  will-change: transform;
}

.progress-rail__label {
  color: rgba(240, 241, 236, 0.48);
  font: 500 9px/1 var(--font-body);
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.content-grid {
  display: grid;
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(12px, 1.5vw, 24px);
}

.section {
  position: relative;
  z-index: 3;
  padding-block: var(--section-space);
  background: var(--obsidian);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ash);
  font: 600 clamp(10px, 0.8vw, 12px)/1.4 var(--font-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow__pulse {
  position: relative;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 14px var(--volt);
}

.eyebrow__pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201, 255, 59, 0.45);
  border-radius: inherit;
  content: "";
  animation: signal 2.3s ease-out infinite;
}

@keyframes signal {
  0% { opacity: 0.75; transform: scale(0.5); }
  70%, 100% { opacity: 0; transform: scale(1.5); }
}

.display-title {
  max-width: 1100px;
  color: var(--bone);
  font-size: clamp(2.7rem, 5.3vw, 6.5rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-index {
  display: flex;
  min-width: 100px;
  align-items: center;
  align-self: start;
  gap: 12px;
  color: var(--ash);
}

.section-index span {
  color: var(--volt);
  font: 600 12px/1 var(--font-condensed);
  letter-spacing: 0.12em;
}

.section-index p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.section-index::before {
  width: 24px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  padding: 0 24px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition:
    color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 150ms var(--ease-out);
}

.button::before {
  position: absolute;
  inset: 0;
  transform: translateX(-105%) skewX(-16deg);
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transition: transform 650ms var(--ease-out);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%) skewX(-16deg);
}

.button:active,
.header-cta:active,
.cta-orbit:active {
  transform: scale(0.97);
}

.button svg,
.header-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 240ms var(--ease-out);
}

.button:hover svg,
.button:focus-visible svg,
.header-cta:hover svg,
.header-cta:focus-visible svg {
  transform: translateX(4px);
}

.button--primary {
  background: var(--volt);
  color: var(--obsidian);
  box-shadow: 0 0 0 1px rgba(201, 255, 59, 0.15), 0 0 28px rgba(201, 255, 59, 0.1);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(9, 11, 12, 0.48);
  color: var(--bone);
  backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--outline:hover,
.button--outline:focus-visible {
  border-color: rgba(201, 255, 59, 0.52);
  color: var(--volt);
}

.button--outline {
  border: 1px solid rgba(201, 255, 59, 0.32);
  background: transparent;
  color: var(--bone);
}

.button:focus-visible,
.header-cta:focus-visible,
.menu-toggle:focus-visible,
.text-link:focus-visible,
.back-to-top:focus-visible,
.film__control:focus-visible,
.dialog-close:focus-visible,
.accordion button:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  padding-inline: max(24px, 3vw);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition:
    height 300ms var(--ease-out),
    background-color 300ms var(--ease-out),
    border-color 300ms var(--ease-out),
    transform 360ms var(--ease-out);
}

.site-header.is-scrolled {
  height: 70px;
  border-bottom-color: var(--line-soft);
  background: rgba(5, 6, 6, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(201, 255, 59, 0.62);
  color: var(--volt);
  transition:
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  background: var(--volt);
  color: var(--obsidian);
  box-shadow: 0 0 24px rgba(201, 255, 59, 0.18);
}

.brand__mark b {
  font: 700 12px/1 var(--font-condensed);
  letter-spacing: -0.02em;
}

.brand__mark i {
  position: absolute;
  width: 7px;
  height: 1px;
  background: currentColor;
}

.brand__mark i:first-child {
  top: 6px;
  right: 5px;
}

.brand__mark i:last-child {
  bottom: 6px;
  left: 5px;
}

.brand__name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand__name strong {
  font: 700 13px/1 var(--font-condensed);
  letter-spacing: 0.14em;
}

.brand__name small {
  color: var(--ash);
  font: 500 9px/1 var(--font-condensed);
  letter-spacing: 0.32em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(240, 241, 236, 0.66);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--volt);
  content: "";
  transition: transform 280ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--bone);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-width: 132px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 18px;
  cursor: pointer;
  background: var(--volt);
  color: var(--obsidian);
  font-size: 12px;
  font-weight: 800;
  transition: transform 150ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.header-cta:hover {
  box-shadow: 0 0 30px rgba(201, 255, 59, 0.2);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  z-index: 2;
  height: 150svh;
  background: var(--obsidian);
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  clip-path: inset(8% 6% 8% 38%);
  background: #080909;
  transition: clip-path 1.25s var(--ease-move);
}

body.is-ready .hero__media {
  clip-path: inset(0);
}

.hero__media img {
  width: 100%;
  height: 100%;
  filter: contrast(1.07) saturate(0.78);
  object-position: 58% center;
  transform: scale(calc(1.04 + var(--hero-progress, 0) * 0.035));
  will-change: transform;
}

.hero__media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.86) 31%, rgba(5, 6, 6, 0.28) 64%, rgba(5, 6, 6, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.64) 0%, transparent 22%, transparent 66%, rgba(5, 6, 6, 0.95) 100%);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background:
    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: 82px 82px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero__scan {
  position: absolute;
  top: -18%;
  right: 0;
  bottom: auto;
  left: 38%;
  height: 20%;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(201, 255, 59, 0.045), transparent);
  mix-blend-mode: screen;
  transform: translateY(-100%);
}

body.is-ready .hero__scan {
  opacity: 1;
  animation: scan 5.5s 1.6s linear infinite;
}

@keyframes scan {
  from { transform: translateY(-100%); }
  to { transform: translateY(680%); }
}

.hero__outline {
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: -0.16em;
  color: transparent;
  font: 700 clamp(6rem, 18vw, 20rem)/0.8 var(--font-condensed);
  letter-spacing: -0.07em;
  -webkit-text-stroke: 1px rgba(240, 241, 236, 0.065);
  transform: translateX(calc(var(--hero-progress, 0) * 7vw));
  white-space: nowrap;
  will-change: transform;
}

.hero__grid {
  height: 100%;
  align-items: center;
  padding-top: var(--header-height);
}

.hero__content {
  grid-column: 1 / span 8;
  padding-top: clamp(26px, 5vh, 80px);
  transform: translateY(calc(var(--hero-progress, 0) * -7vh));
  will-change: transform;
}

.hero__eyebrow {
  margin-bottom: clamp(20px, 3vh, 36px);
}

.hero__title {
  width: min(100%, 1020px);
  color: var(--bone);
  font-size: clamp(3.8rem, 7.6vw, 9.1rem);
  font-weight: 900;
  line-height: 0.89;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.title-mask {
  display: block;
  overflow: hidden;
  padding: 0 0.08em 0.08em 0;
}

.title-mask i {
  display: block;
  font-style: normal;
  transform: translateY(115%) rotate(1deg);
  transition: transform 1s var(--ease-out);
  will-change: transform;
}

.title-mask:nth-child(2) i { transition-delay: 90ms; }
.title-mask:nth-child(3) i { transition-delay: 180ms; }
.title-mask:nth-child(4) i { transition-delay: 270ms; }

body.is-ready .title-mask i {
  transform: translateY(0) rotate(0);
}

.title-mask--accent {
  width: max-content;
  color: var(--volt);
  text-shadow: 0 0 34px rgba(201, 255, 59, 0.16);
}

.title-mask--small {
  margin-top: 0.28em;
  color: rgba(240, 241, 236, 0.58);
  font-size: 0.31em;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero__copy {
  width: min(100%, 630px);
  margin-top: clamp(24px, 3vh, 38px);
  color: rgba(240, 241, 236, 0.68);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  margin-top: clamp(28px, 4vh, 48px);
  align-items: center;
  gap: 12px;
}

.intro-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.hero__copy.intro-reveal { transition-delay: 560ms; }
.hero__actions.intro-reveal { transition-delay: 680ms; }
.hero__credential.intro-reveal { transition-delay: 820ms; }
.hero__eyebrow.intro-reveal { transition-delay: 430ms; }

body.is-ready .intro-reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero__credential {
  position: absolute;
  right: var(--page-pad);
  bottom: clamp(38px, 6vh, 72px);
  display: grid;
  width: min(46vw, 620px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero__credential > div {
  display: flex;
  min-height: 78px;
  align-items: flex-end;
  gap: 12px;
  padding: 16px 18px 0;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 11, 12, 0.3), rgba(9, 11, 12, 0.04));
}

.hero__credential strong {
  color: var(--bone);
  font: 600 clamp(1.5rem, 2.1vw, 2.3rem)/1 var(--font-condensed);
  letter-spacing: -0.04em;
}

.hero__credential span {
  color: var(--ash);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240, 241, 236, 0.44);
  font: 500 9px/1 var(--font-condensed);
  letter-spacing: 0.22em;
}

.scroll-cue > i {
  position: relative;
  width: 38px;
  height: 1px;
  overflow: hidden;
  background: rgba(240, 241, 236, 0.22);
}

.scroll-cue b {
  position: absolute;
  inset: 0;
  background: var(--volt);
  animation: scroll-line 1.8s var(--ease-out) infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-105%); }
  60%, 100% { transform: translateX(105%); }
}

.kinetic-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid rgba(201, 255, 59, 0.2);
  background: var(--volt);
  color: var(--obsidian);
  transform: rotate(-1.3deg) scale(1.02);
}

.kinetic-strip__track {
  display: flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  gap: 26px;
  animation: ticker 24s linear infinite;
}

.kinetic-strip span {
  font: 800 13px/1 var(--font-body);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.kinetic-strip i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--obsidian);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.manifesto {
  padding-top: calc(var(--section-space) * 1.15);
}

.manifesto::before,
.method::before,
.programs::before,
.journey::before,
.faq::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.5px), var(--line-soft) 50%, transparent calc(50% + 0.5px));
  content: "";
  opacity: 0.45;
}

.manifesto__grid {
  align-items: start;
}

.manifesto .section-index {
  grid-column: 1 / span 2;
}

.manifesto__statement {
  position: relative;
  z-index: 1;
  grid-column: 3 / span 6;
}

.manifesto__statement .eyebrow {
  margin-bottom: 24px;
}

.manifesto__statement .display-title {
  font-size: clamp(2.6rem, 4.6vw, 5.8rem);
}

.manifesto__body {
  display: grid;
  margin-top: clamp(40px, 6vw, 80px);
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(240, 241, 236, 0.56);
  font-size: 14px;
  line-height: 1.8;
}

.signal-list {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 8px;
}

.signal-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: rgba(240, 241, 236, 0.68);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.signal-list span:first-child {
  border-color: rgba(201, 255, 59, 0.38);
  color: var(--volt);
}

.portrait-card {
  position: relative;
  grid-column: 9 / span 4;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}

.portrait-card__image {
  aspect-ratio: 0.73;
  overflow: hidden;
  background: var(--graphite);
}

.portrait-card__image::after {
  position: absolute;
  inset: 0 0 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.portrait-card__image img {
  width: 100%;
  height: 114%;
  object-position: 52% 42%;
  filter: contrast(1.04) saturate(0.78);
  transform: translateY(var(--parallax-y, -5%));
  will-change: transform;
}

.portrait-card figcaption {
  display: flex;
  padding-top: 14px;
  justify-content: space-between;
  color: var(--ash);
  font: 500 9px/1.4 var(--font-condensed);
  letter-spacing: 0.12em;
}

.portrait-card__ring {
  position: absolute;
  right: -58px;
  bottom: 8%;
  width: 116px;
  height: 116px;
  overflow: visible;
  animation: rotate 18s linear infinite;
}

.portrait-card__ring text {
  fill: var(--volt);
  font: 600 9px var(--font-condensed);
  letter-spacing: 0.13em;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.section-heading {
  align-items: start;
}

.section-heading .section-index {
  grid-column: 1 / span 2;
}

.section-heading > div:last-child {
  grid-column: 3 / span 9;
}

.section-heading .eyebrow {
  margin-bottom: 24px;
}

.principles {
  margin-top: clamp(64px, 8vw, 120px);
}

.principle {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid var(--line);
  background: var(--carbon);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: border-color 280ms var(--ease-out), transform 160ms ease-out;
  will-change: transform;
}

.principle:nth-child(1) { grid-column: 3 / span 3; }
.principle:nth-child(2) { grid-column: 6 / span 3; margin-top: 54px; }
.principle:nth-child(3) { grid-column: 9 / span 3; margin-top: 108px; }

.spotlight-card::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(340px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(201, 255, 59, 0.1), transparent 60%);
  content: "";
  transition: opacity 240ms ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.principle:hover {
  border-color: rgba(201, 255, 59, 0.32);
}

.principle__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.principle__top > span {
  color: var(--volt);
  font: 600 11px/1 var(--font-condensed);
  letter-spacing: 0.12em;
}

.principle__top svg {
  width: 46px;
  fill: none;
  stroke: rgba(240, 241, 236, 0.3);
  stroke-width: 1;
}

.principle h3 {
  position: relative;
  margin-top: 100px;
  font-size: clamp(1.15rem, 1.55vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.principle p {
  position: relative;
  margin-top: 18px;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.8;
}

.principle__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--volt);
  transition: transform 500ms var(--ease-out);
}

.principle:hover .principle__line {
  transform: scaleX(1);
}

.legacy {
  position: relative;
  z-index: 3;
  min-height: 105svh;
  overflow: hidden;
  background: #070808;
}

.legacy__media {
  position: absolute;
  inset: 0;
}

.legacy__media img {
  width: 100%;
  height: 115%;
  filter: grayscale(1) contrast(1.2);
  object-position: center 45%;
  transform: translateY(var(--parallax-y, -4%)) scale(1.02);
  will-change: transform;
}

.legacy__media span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.84) 42%, rgba(5, 6, 6, 0.24) 75%, rgba(5, 6, 6, 0.45) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.76), transparent 30%, rgba(5, 6, 6, 0.82));
}

.legacy__content {
  position: relative;
  z-index: 1;
  min-height: 105svh;
  padding-block: var(--section-space) 10vh;
  align-content: space-between;
}

.legacy__headline {
  grid-column: 2 / span 8;
}

.legacy__headline .eyebrow {
  margin-bottom: 24px;
}

.legacy__headline .display-title {
  max-width: 880px;
}

.legacy__headline > p:last-child {
  width: min(100%, 560px);
  margin-top: 30px;
  color: var(--ash);
  font-size: 14px;
}

.legacy__timeline {
  display: grid;
  grid-column: 2 / span 10;
  grid-template-columns: repeat(4, 1fr);
}

.timeline-item {
  position: relative;
  display: grid;
  min-height: 140px;
  padding: 22px 22px 0 0;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  border-top: 1px solid rgba(240, 241, 236, 0.24);
}

.timeline-item::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bone);
  box-shadow: 0 0 0 5px rgba(240, 241, 236, 0.06);
  content: "";
}

.timeline-item strong {
  color: var(--bone);
  font: 600 clamp(2rem, 3vw, 3.6rem)/1 var(--font-condensed);
  letter-spacing: -0.05em;
}

.timeline-item > span {
  height: 1px;
  align-self: center;
  background: var(--line);
}

.timeline-item p {
  grid-column: 1 / span 2;
  align-self: end;
  color: var(--bone);
  font-size: 12px;
  line-height: 1.5;
}

.timeline-item small {
  color: var(--ash);
  font: 500 8px/1 var(--font-condensed);
  letter-spacing: 0.12em;
}

.timeline-item--accent {
  border-top-color: var(--volt);
}

.timeline-item--accent::before {
  background: var(--volt);
  box-shadow: 0 0 0 5px rgba(201, 255, 59, 0.1), 0 0 18px var(--volt);
}

.timeline-item--accent strong,
.timeline-item--accent p {
  color: var(--volt);
}

.programs {
  padding-bottom: calc(var(--section-space) * 0.5);
}

.program-stack {
  margin-top: clamp(72px, 10vw, 144px);
  padding-bottom: 14vh;
}

.program-card {
  position: sticky;
  top: 88px;
  display: grid;
  height: min(74svh, 760px);
  min-height: 600px;
  overflow: hidden;
  grid-column: 2 / span 10;
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid rgba(240, 241, 236, 0.1);
  background: var(--graphite);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.program-card + .program-card {
  margin-top: 20vh;
}

.program-card:nth-child(2) { top: 96px; }
.program-card:nth-child(3) { top: 104px; }

.program-card__media {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 52%;
  overflow: hidden;
}

.program-card__media img {
  width: 100%;
  height: 100%;
  filter: contrast(1.08) saturate(0.72);
  object-position: center 34%;
  transition: transform 1.2s var(--ease-out), filter 600ms ease;
}

.program-card:hover .program-card__media img {
  filter: contrast(1.08) saturate(0.95);
  transform: scale(1.035);
}

.program-card:nth-child(2) .program-card__media img {
  object-position: center 42%;
}

.program-card__wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--graphite) 0%, var(--graphite) 45%, rgba(16, 19, 20, 0.83) 58%, rgba(16, 19, 20, 0.14) 100%),
    linear-gradient(180deg, transparent 65%, rgba(5, 6, 6, 0.42));
}

.program-card::after {
  position: absolute;
  z-index: 0;
  inset: 18px;
  border: 1px solid rgba(240, 241, 236, 0.075);
  content: "";
  pointer-events: none;
}

.program-card__index {
  position: absolute;
  z-index: 2;
  top: 38px;
  right: 40px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.program-card__index span {
  color: var(--volt);
  font: 600 2.5rem/1 var(--font-condensed);
  letter-spacing: -0.05em;
}

.program-card__index small {
  color: rgba(240, 241, 236, 0.62);
  font: 500 9px/1 var(--font-condensed);
  letter-spacing: 0.18em;
}

.program-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding: clamp(56px, 6vw, 92px);
  grid-column: 1;
  flex-direction: column;
  justify-content: center;
}

.program-card__content > p:first-child {
  color: var(--volt);
  font: 600 10px/1 var(--font-body);
  letter-spacing: 0.15em;
}

.program-card h3 {
  margin-top: 22px;
  font-size: clamp(2.6rem, 4.7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.program-card__pricing {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  border: 1px solid rgba(201, 255, 59, 0.22);
  background: rgba(201, 255, 59, 0.035);
}

.program-card__pricing span {
  display: grid;
  min-width: 150px;
  padding: 13px 18px 14px;
  gap: 6px;
}

.program-card__pricing span + span {
  border-left: 1px solid rgba(201, 255, 59, 0.18);
}

.program-card__pricing small {
  color: rgba(240, 241, 236, 0.58);
  font: 600 9px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card__pricing strong {
  color: var(--white);
  font: 600 clamp(1.15rem, 1.7vw, 1.55rem)/1 var(--font-condensed);
  letter-spacing: -0.025em;
}

.program-card__pricing--single span {
  min-width: 230px;
}

.program-card__pricing + .program-card__description {
  margin-top: 18px;
}

.program-card__description {
  width: min(100%, 520px);
  margin-top: 28px;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.75;
}

.program-card ul {
  display: grid;
  margin-top: 32px;
  list-style: none;
  gap: 8px;
}

.program-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 241, 236, 0.68);
  font-size: 11px;
}

.program-card li::before {
  width: 16px;
  height: 1px;
  background: var(--volt);
  content: "";
}

.text-link {
  display: inline-flex;
  width: max-content;
  min-height: 46px;
  margin-top: 34px;
  align-items: center;
  gap: 18px;
  padding: 0;
  border-bottom: 1px solid rgba(201, 255, 59, 0.32);
  cursor: pointer;
  background: transparent;
  color: var(--bone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 200ms ease, border-color 200ms ease;
}

.text-link i {
  color: var(--volt);
  font: normal 18px/1 var(--font-condensed);
  transition: transform 240ms var(--ease-out);
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--volt);
  color: var(--volt);
}

.text-link:hover i,
.text-link:focus-visible i {
  transform: translate(3px, -3px);
}

.film {
  overflow: hidden;
  background: var(--carbon);
}

.film::before {
  position: absolute;
  top: 0;
  left: 46%;
  width: 1px;
  height: 100%;
  background: var(--line-soft);
  content: "";
}

.film__grid {
  align-items: center;
}

.film__video {
  position: relative;
  grid-column: 2 / span 4;
  aspect-ratio: 0.61;
  overflow: hidden;
  background: var(--graphite);
  box-shadow: 0 0 0 1px rgba(240, 241, 236, 0.09), 0 30px 90px rgba(0, 0, 0, 0.32);
}

.film__video video {
  width: 100%;
  height: 100%;
  filter: contrast(1.06) saturate(0.82);
}

.film__video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 6, 6, 0.82));
  pointer-events: none;
}

.film__video::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(240, 241, 236, 0.12);
  content: "";
  pointer-events: none;
}

.film__control {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(240, 241, 236, 0.35);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(5, 6, 6, 0.52);
  backdrop-filter: blur(12px);
  transition: border-color 200ms ease, background-color 200ms ease;
}

.film__control:hover {
  border-color: var(--volt);
  background: rgba(5, 6, 6, 0.72);
}

.pause-icon {
  display: flex;
  gap: 4px;
}

.pause-icon i {
  width: 2px;
  height: 12px;
  background: var(--bone);
}

.play-icon {
  display: none;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--bone);
}

.film__control.is-paused .pause-icon { display: none; }
.film__control.is-paused .play-icon { display: block; }

.film__video > p {
  position: absolute;
  z-index: 2;
  bottom: 44px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 241, 236, 0.68);
  font: 500 8px/1 var(--font-condensed);
  letter-spacing: 0.13em;
}

.film__video > p i {
  width: 28px;
  height: 1px;
  background: var(--volt);
}

.film__statement {
  grid-column: 7 / span 5;
}

.film__statement .eyebrow {
  margin-bottom: 24px;
}

.film__statement .display-title {
  font-size: clamp(2.6rem, 4.6vw, 5.8rem);
}

.film__copy {
  width: min(100%, 590px);
  margin-top: 34px;
  color: var(--ash);
  font-size: 14px;
  line-height: 1.85;
}

.film__statement .button {
  margin-top: 36px;
}

.journey__intro .section-index {
  grid-column: 1 / span 2;
}

.journey__intro > div:last-child {
  grid-column: 3 / span 8;
}

.journey__intro .eyebrow {
  margin-bottom: 24px;
}

.journey__body {
  margin-top: clamp(72px, 10vw, 140px);
  align-items: start;
}

.journey__visual {
  position: sticky;
  top: 96px;
  grid-column: 1 / span 6;
  height: min(72svh, 730px);
  overflow: hidden;
  background: var(--graphite);
}

.journey__visual img {
  width: 100%;
  height: 100%;
  filter: contrast(1.08) saturate(0.72);
}

.journey__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 6, 6, 0.76));
  content: "";
}

.journey__crosshair {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 58%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(201, 255, 59, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(201, 255, 59, 0.08);
}

.journey__crosshair::before,
.journey__crosshair::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(201, 255, 59, 0.54);
  content: "";
  transform: translate(-50%, -50%);
}

.journey__crosshair::before { width: 116px; height: 1px; }
.journey__crosshair::after { width: 1px; height: 116px; }

.journey__visual > p {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 241, 236, 0.6);
  font: 500 8px/1 var(--font-condensed);
  letter-spacing: 0.12em;
}

.journey__visual > p i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.steps {
  display: grid;
  grid-column: 8 / span 5;
  list-style: none;
}

.step {
  display: grid;
  min-height: 180px;
  padding: 28px 0;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--volt);
  font: 600 11px/1 var(--font-condensed);
  letter-spacing: 0.12em;
}

.step h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.step p {
  margin-top: 12px;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.8;
}

.results {
  overflow: hidden;
  background: var(--carbon);
}

.results__headline .section-index {
  grid-column: 1 / span 2;
}

.results__headline > div:last-child {
  grid-column: 3 / span 9;
}

.results__headline .eyebrow {
  margin-bottom: 24px;
}

.results__lead {
  width: min(100%, 650px);
  margin-top: 30px;
  color: var(--ash);
  font-size: 14px;
  line-height: 1.8;
}

.gallery {
  margin-top: clamp(72px, 10vw, 140px);
  align-items: start;
  row-gap: clamp(42px, 6vw, 90px);
}

.gallery__item {
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: calc(100% + 10%);
  filter: contrast(1.04) saturate(0.72);
  transform: translateY(var(--parallax-y, -5%));
  transition: filter 400ms ease;
  will-change: transform;
}

.gallery__item:hover img {
  filter: contrast(1.04) saturate(0.95);
}

.gallery__item::after {
  position: absolute;
  inset: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.gallery__item figcaption {
  display: flex;
  padding-top: 13px;
  align-items: center;
  justify-content: space-between;
  color: var(--ash);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.gallery__item figcaption span {
  color: var(--volt);
  font-family: var(--font-condensed);
}

.gallery__item--a {
  grid-column: 1 / span 3;
  height: 510px;
  overflow: hidden;
}

.gallery__item--b {
  grid-column: 8 / span 4;
  height: 620px;
  margin-top: 80px;
  overflow: hidden;
}

.gallery__manifesto {
  display: flex;
  grid-column: 3 / span 7;
  flex-direction: column;
  padding: clamp(44px, 6vw, 84px) 0;
  text-align: center;
}

.gallery__manifesto span {
  color: var(--ash);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.gallery__manifesto strong {
  color: var(--bone);
  font-size: clamp(3rem, 7.5vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.gallery__manifesto strong:last-child {
  color: var(--volt);
}

.gallery__manifesto i {
  width: 1px;
  height: 74px;
  margin: 28px auto;
  background: linear-gradient(var(--volt), transparent);
}

.gallery__item--c {
  grid-column: 2 / span 4;
  height: 610px;
  overflow: hidden;
}

.gallery__item--d {
  grid-column: 9 / span 3;
  height: 500px;
  margin-top: 120px;
  overflow: hidden;
}

.faq__grid {
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 110px;
  grid-column: 1 / span 5;
}

.faq__intro .section-index {
  margin-bottom: 64px;
}

.faq__intro .eyebrow {
  margin-bottom: 24px;
}

.faq__intro .display-title {
  font-size: clamp(2.6rem, 4.3vw, 5.1rem);
}

.faq__copy {
  width: min(100%, 430px);
  margin-top: 28px;
  color: var(--ash);
  font-size: 13px;
}

.accordion {
  grid-column: 7 / span 6;
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion h3 {
  font-weight: inherit;
}

.accordion button {
  display: grid;
  width: 100%;
  min-height: 96px;
  padding: 20px 0;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  background: transparent;
  text-align: left;
}

.accordion button span {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.025em;
  transition: color 180ms ease;
}

.accordion button i {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 220ms ease, transform 320ms var(--ease-out);
}

.accordion button i::before,
.accordion button i::after {
  position: absolute;
  width: 10px;
  height: 1px;
  background: var(--bone);
  content: "";
  transition: transform 260ms var(--ease-out), background-color 180ms ease;
}

.accordion button i::after {
  transform: rotate(90deg);
}

.accordion button:hover span,
.accordion button:focus-visible span,
.accordion__item.is-open button span {
  color: var(--volt);
}

.accordion button:hover i,
.accordion__item.is-open button i {
  border-color: rgba(201, 255, 59, 0.45);
}

.accordion__item.is-open button i {
  transform: rotate(180deg);
}

.accordion__item.is-open button i::after {
  transform: rotate(0);
  background: var(--volt);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease-out);
}

.accordion__panel p {
  width: min(100%, 650px);
  overflow: hidden;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.85;
  opacity: 0;
  transition: opacity 260ms ease, padding-bottom 420ms var(--ease-out);
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__item.is-open .accordion__panel p {
  padding-bottom: 30px;
  opacity: 1;
}

.final-cta {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  background: var(--obsidian);
  isolation: isolate;
}

.final-cta__media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  filter: grayscale(0.25) contrast(1.15) saturate(0.75);
  object-position: 78% 45%;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.final-cta.is-active .final-cta__media img {
  transform: scale(1);
}

.final-cta__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.97), rgba(5, 6, 6, 0.75) 45%, rgba(5, 6, 6, 0.32) 76%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.68), transparent 40%, rgba(5, 6, 6, 0.88));
}

.final-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  align-items: center;
}

.final-cta__content .eyebrow,
.final-cta__content > h2,
.final-cta__content > p {
  grid-column: 1 / span 8;
}

.final-cta__content .eyebrow {
  margin-bottom: 30px;
}

.final-cta__content > h2 {
  max-width: 1000px;
  font-size: clamp(3.2rem, 7.1vw, 9rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.final-cta__content > p {
  width: min(100%, 610px);
  margin-top: 32px;
  color: rgba(240, 241, 236, 0.62);
  font-size: 14px;
}

.cta-orbit {
  position: relative;
  display: grid;
  width: clamp(150px, 15vw, 210px);
  height: clamp(150px, 15vw, 210px);
  margin-left: auto;
  grid-column: 10 / span 3;
  grid-row: 1 / span 3;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  background: var(--volt);
  color: var(--obsidian);
  box-shadow: 0 0 0 0 rgba(201, 255, 59, 0.22);
  transition: transform 160ms var(--ease-out), box-shadow 320ms ease;
}

.final-cta.is-active .cta-orbit {
  animation: cta-pulse 900ms 900ms ease-out 1;
}

@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 255, 59, 0.32); }
  100% { box-shadow: 0 0 0 34px rgba(201, 255, 59, 0); }
}

.cta-orbit > span {
  text-align: center;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.cta-orbit > i {
  position: absolute;
  top: 21%;
  right: 21%;
  font: normal 22px/1 var(--font-condensed);
  transition: transform 240ms var(--ease-out);
}

.cta-orbit:hover > i,
.cta-orbit:focus-visible > i {
  transform: translate(4px, -4px);
}

.cta-orbit svg {
  position: absolute;
  inset: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  overflow: visible;
  fill: none;
  stroke: rgba(5, 6, 6, 0.32);
  stroke-width: 0.6;
  transition: transform 900ms var(--ease-out);
}

.cta-orbit svg circle:last-child {
  stroke-dasharray: 4 8;
}

.cta-orbit:hover svg {
  transform: rotate(30deg);
}

.final-cta__word {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: -0.15em;
  color: transparent;
  font: 700 clamp(10rem, 25vw, 30rem)/0.8 var(--font-condensed);
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(240, 241, 236, 0.1);
}

.site-footer {
  position: relative;
  z-index: 5;
  padding: 54px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--obsidian);
}

.site-footer__top {
  align-items: center;
}

.site-footer__top .brand {
  grid-column: 1 / span 3;
}

.site-footer__top > p {
  grid-column: 4 / span 5;
  color: var(--ash);
  font-size: 12px;
}

.back-to-top {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-self: end;
  gap: 18px;
  grid-column: 10 / span 3;
  color: var(--ash);
  font: 600 9px/1 var(--font-body);
  letter-spacing: 0.1em;
  transition: color 180ms ease;
}

.back-to-top i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--volt);
  font: normal 15px/1 var(--font-condensed);
  transition: transform 240ms var(--ease-out), border-color 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--bone);
}

.back-to-top:hover i {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.site-footer__bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: rgba(240, 241, 236, 0.32);
  font: 500 8px/1.4 var(--font-condensed);
  letter-spacing: 0.13em;
}

.site-footer__bottom span:nth-child(1) { grid-column: 1 / span 4; }
.site-footer__bottom span:nth-child(2) { grid-column: 6 / span 3; text-align: center; }
.site-footer__bottom span:nth-child(3) { grid-column: 9 / span 4; text-align: right; }

.contact-dialog {
  width: min(100% - 32px, 1080px);
  max-height: min(90svh, 780px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 241, 236, 0.13);
  border-radius: 0;
  background: var(--carbon);
  color: var(--bone);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 280ms var(--ease-out), transform 360ms var(--ease-out), display 360ms allow-discrete;
}

.contact-dialog[open] {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .contact-dialog[open] {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
}

.contact-dialog::backdrop {
  background: rgba(2, 3, 3, 0.8);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 280ms ease, display 280ms allow-discrete;
}

.contact-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .contact-dialog[open]::backdrop { opacity: 0; }
}

.contact-dialog__visual {
  position: relative;
  min-height: 0;
  height: min(90svh, 780px);
  overflow: hidden;
  background: var(--graphite);
}

.contact-dialog__visual img {
  width: 100%;
  height: 100%;
  filter: grayscale(0.3) contrast(1.12) saturate(0.7);
}

.contact-dialog__visual > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 6, 6, 0.92));
}

.contact-dialog__visual p {
  position: absolute;
  bottom: 40px;
  left: 36px;
  font: 700 clamp(2.8rem, 5vw, 4.8rem)/0.82 var(--font-condensed);
  letter-spacing: -0.06em;
}

.contact-dialog__visual p i {
  color: var(--volt);
  font-style: normal;
}

.contact-dialog__body {
  position: relative;
  overflow-y: auto;
  padding: clamp(38px, 5vw, 74px);
}

.dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: transparent;
}

.dialog-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--fog);
  transition: background-color 180ms ease;
}

.dialog-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.dialog-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.dialog-close:hover span { background: var(--volt); }

.contact-dialog__body .eyebrow {
  margin-bottom: 20px;
}

.contact-dialog__body h2 {
  max-width: 600px;
  font-size: clamp(2.1rem, 3.7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.contact-dialog__body > p {
  margin-top: 16px;
  color: var(--ash);
  font-size: 12px;
}

.contact-dialog form {
  display: grid;
  margin-top: 34px;
  gap: 18px;
}

.contact-dialog label {
  display: grid;
  gap: 7px;
}

.contact-dialog label > span {
  color: rgba(240, 241, 236, 0.56);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-dialog input,
.contact-dialog select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #070909;
  color: var(--bone);
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-dialog input::placeholder {
  color: rgba(240, 241, 236, 0.27);
}

.contact-dialog input:focus,
.contact-dialog select:focus {
  border-color: rgba(201, 255, 59, 0.58);
  box-shadow: 0 0 0 3px rgba(201, 255, 59, 0.06);
}

.contact-dialog select {
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit__loading {
  display: none;
}

.form-submit.is-loading .form-submit__default {
  display: none;
}

.form-submit.is-loading .form-submit__loading {
  display: inline;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  color: rgba(240, 241, 236, 0.32);
  font-size: 8px;
  line-height: 1.6;
}

.form-status {
  min-height: 22px;
  color: var(--volt);
  font-size: 11px;
}

.form-status.is-error {
  color: #ff796c;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px;
  background: var(--volt);
  color: var(--obsidian);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.reveal,
.reveal-words .word-mask,
.reveal-media {
  --reveal-delay: 0ms;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 780ms var(--ease-out) var(--reveal-delay), transform 780ms var(--ease-out) var(--reveal-delay);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  margin: -0.12em 0.08em -0.1em 0;
  padding: 0.12em 0 0.1em;
  vertical-align: top;
}

.word-mask > i {
  display: inline-block;
  font-style: normal;
}

.js .reveal-words .word-mask > i {
  transform: translateY(110%);
  transition: transform 760ms var(--ease-out) var(--word-delay, 0ms);
}

.js .reveal-words.is-visible .word-mask > i {
  transform: translateY(0);
}

.js .reveal-media {
  clip-path: inset(12% 8% 12% 18%);
  opacity: 0.2;
  transition: clip-path 1s var(--ease-move), opacity 800ms ease;
}

.js .reveal-media.is-visible {
  clip-path: inset(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  :root {
    --page-pad: clamp(24px, 4vw, 52px);
  }

  .progress-rail { display: none; }
  .hero__title { font-size: clamp(3.5rem, 8vw, 7rem); }
  .hero__content { grid-column: 1 / span 9; }
  .hero__credential { width: min(54vw, 610px); }
  .manifesto__statement { grid-column: 3 / span 6; }
  .portrait-card { grid-column: 9 / span 4; }
  .principle:nth-child(1) { grid-column: 2 / span 4; }
  .principle:nth-child(2) { grid-column: 5 / span 4; }
  .principle:nth-child(3) { grid-column: 8 / span 4; }
  .program-card { grid-column: 1 / span 12; }
  .film__video { grid-column: 1 / span 5; }
  .film__statement { grid-column: 7 / span 6; }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --section-space: 96px;
  }

  .content-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 16px;
  }

  .section-energy-trace { opacity: 0.58; }
  .desktop-nav,
  .header-cta { display: none; }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    justify-self: end;
    cursor: pointer;
    background: transparent;
  }

  .menu-toggle span {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 1px;
    background: var(--bone);
    transition: transform 300ms var(--ease-out), top 300ms var(--ease-out);
  }

  .menu-toggle span:first-child { top: 19px; }
  .menu-toggle span:last-child { top: 28px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    padding: 110px var(--page-pad) 36px;
    flex-direction: column;
    background: rgba(5, 6, 6, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 320ms var(--ease-out), transform 420ms var(--ease-out), visibility 320ms;
  }

  .mobile-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .mobile-menu nav a span {
    color: var(--volt);
    font: 500 10px/1 var(--font-condensed);
    letter-spacing: 0.1em;
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: auto;
  }

  .mobile-menu > p {
    margin-top: 20px;
    color: var(--ash);
    font: 500 8px/1 var(--font-condensed);
    letter-spacing: 0.12em;
    text-align: center;
  }

  .hero {
    height: 118svh;
  }

  .hero__content {
    grid-column: 1 / span 6;
    align-self: center;
    padding-bottom: 100px;
  }

  .hero__title {
    font-size: clamp(3.2rem, 10vw, 6.2rem);
  }

  .hero__media img { object-position: 62% center; }
  .hero__media-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.94), rgba(5, 6, 6, 0.56) 66%, rgba(5, 6, 6, 0.48)),
      linear-gradient(180deg, rgba(5, 6, 6, 0.64), transparent 30%, rgba(5, 6, 6, 0.95));
  }

  .hero__credential {
    right: var(--page-pad);
    bottom: 32px;
    left: var(--page-pad);
    width: auto;
  }

  .hero__credential > div { padding-inline: 12px; }
  .scroll-cue { display: none; }
  .hero__outline { font-size: 24vw; }

  .manifesto .section-index,
  .section-heading .section-index,
  .journey__intro .section-index,
  .results__headline .section-index {
    grid-column: 1 / span 6;
    margin-bottom: 48px;
  }

  .manifesto__statement,
  .section-heading > div:last-child,
  .journey__intro > div:last-child,
  .results__headline > div:last-child {
    grid-column: 1 / span 6;
  }

  .portrait-card {
    grid-column: 2 / span 4;
    margin-top: 72px;
    justify-self: center;
  }

  .principles {
    row-gap: 16px;
  }

  .principle:nth-child(1),
  .principle:nth-child(2),
  .principle:nth-child(3) {
    min-height: 350px;
    margin-top: 0;
    grid-column: span 2;
  }

  .principle h3 { margin-top: 70px; }
  .legacy__headline { grid-column: 1 / span 6; }
  .legacy__timeline { grid-column: 1 / span 6; }
  .timeline-item { min-height: 130px; padding-right: 12px; }
  .program-card {
    height: 72svh;
    min-height: 580px;
    grid-column: 1 / span 6;
    grid-template-columns: 1fr;
  }

  .program-card__media { inset: 0 0 0 42%; }
  .program-card__wash {
    background: linear-gradient(90deg, var(--graphite) 0%, var(--graphite) 36%, rgba(16, 19, 20, 0.76) 60%, rgba(16, 19, 20, 0.16));
  }

  .program-card__content { width: 64%; padding: 52px; }
  .film__video { grid-column: 1 / span 3; }
  .film__statement { grid-column: 4 / span 3; }
  .film__statement .display-title { font-size: clamp(2.2rem, 5.5vw, 4rem); }
  .journey__visual { grid-column: 1 / span 3; }
  .steps { grid-column: 4 / span 3; }
  .step { grid-template-columns: 38px 1fr; gap: 12px; }
  .gallery__item--a { grid-column: 1 / span 2; }
  .gallery__item--b { grid-column: 4 / span 3; }
  .gallery__manifesto { grid-column: 1 / span 6; }
  .gallery__item--c { grid-column: 1 / span 3; }
  .gallery__item--d { grid-column: 5 / span 2; }
  .faq__intro { position: static; grid-column: 1 / span 6; }
  .accordion { grid-column: 1 / span 6; margin-top: 72px; }
  .final-cta__content .eyebrow,
  .final-cta__content > h2,
  .final-cta__content > p { grid-column: 1 / span 5; }
  .cta-orbit { grid-column: 5 / span 2; }
  .site-footer__top .brand { grid-column: 1 / span 2; }
  .site-footer__top > p { grid-column: 3 / span 2; }
  .back-to-top { grid-column: 5 / span 2; }
  .site-footer__bottom span:nth-child(1) { grid-column: 1 / span 2; }
  .site-footer__bottom span:nth-child(2) { grid-column: 3 / span 2; }
  .site-footer__bottom span:nth-child(3) { grid-column: 5 / span 2; }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 20px;
    --section-space: 80px;
  }

  body { font-size: 15px; }
  .section-energy-trace { opacity: 0.34; }
  .page-noise { opacity: 0.025; }
  .brand__name { display: none; }
  .site-header { padding-inline: 16px; }

  .display-title {
    font-size: clamp(2.4rem, 11vw, 4.1rem);
    line-height: 1.04;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero__sticky {
    position: relative;
    min-height: 100svh;
    height: auto;
  }

  .hero__grid {
    min-height: 100svh;
    padding-top: 88px;
    padding-bottom: 175px;
  }

  .hero__content {
    padding: 30px 0 0;
    transform: none;
  }

  .hero__title {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
    line-height: 0.92;
  }

  .title-mask--small { font-size: 0.34em; }
  .hero__copy { margin-top: 24px; font-size: 13px; line-height: 1.7; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__media { clip-path: inset(0); }
  .hero__media img { object-position: 68% center; transform: scale(1.04); }
  .hero__media-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.32)),
      linear-gradient(180deg, rgba(5, 6, 6, 0.78), transparent 25%, rgba(5, 6, 6, 0.97) 76%);
  }

  .hero__credential {
    bottom: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .hero__credential > div {
    min-height: 62px;
    align-items: center;
    padding-top: 6px;
  }

  .hero__credential > div:nth-child(3) { display: none; }
  .hero__credential strong { font-size: 1.5rem; }
  .hero__outline { display: none; }
  .kinetic-strip { transform: rotate(-1.7deg) scale(1.04); }
  .kinetic-strip__track { min-height: 44px; }
  .kinetic-strip span { font-size: 11px; }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portrait-card { grid-column: 1 / span 6; width: calc(100% - 24px); }
  .portrait-card__ring { right: -24px; width: 88px; height: 88px; }
  .principles { row-gap: 12px; }
  .principle:nth-child(1),
  .principle:nth-child(2),
  .principle:nth-child(3) {
    min-height: 310px;
    grid-column: 1 / span 6;
  }

  .principle h3 { margin-top: 62px; }
  .legacy { min-height: auto; }
  .legacy__content { min-height: 920px; }
  .legacy__media img { object-position: 68% center; }
  .legacy__media span {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.86), rgba(5, 6, 6, 0.28)),
      linear-gradient(180deg, rgba(5, 6, 6, 0.88), transparent 38%, rgba(5, 6, 6, 0.96));
  }

  .legacy__timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }

  .timeline-item { min-height: 112px; }
  .program-stack { padding-inline: 12px; }
  .program-card {
    top: 76px;
    height: 76svh;
    min-height: 590px;
  }

  .program-card:nth-child(2),
  .program-card:nth-child(3) { top: 82px; }
  .program-card__media { inset: 0; }
  .program-card__wash {
    background: linear-gradient(180deg, rgba(16, 19, 20, 0.22), rgba(16, 19, 20, 0.92) 47%, var(--graphite) 100%);
  }

  .program-card__index { top: 28px; right: 30px; }
  .program-card__content {
    width: auto;
    max-width: 100%;
    padding: 34px;
    justify-content: flex-end;
  }

  .program-card__description,
  .program-card li {
    overflow-wrap: anywhere;
  }

  .program-card__pricing {
    width: 100%;
  }

  .program-card__pricing span,
  .program-card__pricing--single span {
    min-width: 0;
    padding-inline: 12px;
    flex: 1;
  }

  .program-card h3 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .program-card__description { margin-top: 18px; }
  .program-card ul { margin-top: 20px; }
  .program-card .text-link { margin-top: 22px; }
  .film::before { display: none; }
  .film__video { grid-column: 1 / span 6; width: min(100%, 390px); justify-self: center; }
  .film__statement { grid-column: 1 / span 6; margin-top: 64px; }
  .film__statement .display-title { font-size: clamp(2.4rem, 10.5vw, 4rem); }
  .journey__visual { position: relative; top: 0; grid-column: 1 / span 6; height: 66svh; }
  .steps { grid-column: 1 / span 6; margin-top: 48px; }
  .step { min-height: 150px; }
  .gallery { row-gap: 52px; }
  .gallery__item--a,
  .gallery__item--b,
  .gallery__item--c,
  .gallery__item--d {
    grid-column: 1 / span 6;
    width: calc(100% - 44px);
    height: 580px;
    margin-top: 0;
  }

  .gallery__item--b,
  .gallery__item--d { justify-self: end; }
  .gallery__manifesto { grid-column: 1 / span 6; padding-block: 20px; }
  .gallery__manifesto strong { font-size: clamp(3rem, 15vw, 5.4rem); }
  .faq__intro .section-index { margin-bottom: 44px; }
  .accordion button { min-height: 84px; grid-template-columns: 1fr 36px; gap: 12px; }
  .accordion button i { width: 32px; height: 32px; }
  .final-cta { min-height: 900px; align-items: center; }
  .final-cta__content { align-content: center; }
  .final-cta__content .eyebrow,
  .final-cta__content > h2,
  .final-cta__content > p { grid-column: 1 / span 6; }
  .final-cta__content > h2 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .cta-orbit {
    width: 156px;
    height: 156px;
    margin: 60px auto 0;
    grid-column: 1 / span 6;
    grid-row: auto;
    justify-self: center;
  }

  .final-cta__media img { object-position: 68% center; }
  .final-cta__shade {
    background: linear-gradient(180deg, rgba(5, 6, 6, 0.82), rgba(5, 6, 6, 0.62) 54%, rgba(5, 6, 6, 0.95));
  }

  .final-cta__word { font-size: 42vw; }
  .site-footer__top .brand { grid-column: 1 / span 2; }
  .site-footer__top .brand__name { display: flex; }
  .site-footer__top > p { display: none; }
  .back-to-top { grid-column: 4 / span 3; }
  .site-footer__bottom { row-gap: 12px; }
  .site-footer__bottom span:nth-child(1),
  .site-footer__bottom span:nth-child(2),
  .site-footer__bottom span:nth-child(3) { grid-column: 1 / span 6; text-align: left; }
  .contact-dialog { max-height: calc(100svh - 16px); width: calc(100% - 16px); }
  .contact-dialog[open] { grid-template-columns: 1fr; }
  .contact-dialog__visual { display: none; }
  .contact-dialog__body { padding: 58px 24px 28px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-aura { display: none; }
  .principle { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero { height: 100svh; }
  .hero__sticky { position: relative; }
  .hero__content,
  .hero__media img,
  .hero__outline,
  [data-parallax] img,
  [data-parallax] { transform: none !important; }
  .section-energy-trace__line { stroke-dashoffset: 0 !important; opacity: 0.2; }
  .section-energy-trace__head { display: none; }
  .cursor-aura { display: none; }
  .program-card { position: relative; top: 0 !important; }
  .journey__visual,
  .faq__intro { position: relative; top: 0; }
}
