:root {
  --deep-black: #09090b;
  --midnight-plum: #151027;
  --forest: #17372f;
  --electric-blue: #176fa8;
  --wine: #68152b;
  --magenta: #c92e67;
  --ivory: #f0eadf;
  --soft-white: #f4f2ee;
  --brass: #ac9565;
  --ink: #101014;
  --line: rgba(244, 242, 238, 0.22);
  --pad: clamp(1.25rem, 4.5vw, 5.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--deep-black);
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--deep-black);
  color: var(--soft-white);
  overflow-x: clip;
}

button,
input {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--ivory);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.25rem var(--pad);
  border-bottom: 1px solid rgba(244, 242, 238, 0.12);
  transition: border-color 320ms ease, background 320ms ease;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(240, 234, 223, 0.52);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-name {
  color: var(--soft-white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-meta {
  display: none;
  color: rgba(244, 242, 238, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.17em;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.8rem;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(244, 242, 238, 0.36);
  border-radius: 50%;
  color: var(--soft-white);
  transition: transform 260ms var(--ease), color 260ms ease, border-color 260ms ease, background 260ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 242, 238, 0.82);
  background: rgba(244, 242, 238, 0.08);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
}

.social-link svg > * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.social-link .social-play,
.social-link .social-dot {
  fill: currentColor;
  stroke: none;
}

.site-header.is-light {
  border-bottom-color: rgba(16, 16, 20, 0.13);
  background: rgba(240, 234, 223, 0.72);
  backdrop-filter: blur(14px);
}

.site-header.is-light .brand-mark {
  border-color: rgba(16, 16, 20, 0.5);
  color: var(--ink);
}

.site-header.is-light .brand-name {
  color: var(--ink);
}

.site-header.is-light .header-meta {
  color: rgba(16, 16, 20, 0.5);
}

.site-header.is-light .social-link {
  border-color: rgba(16, 16, 20, 0.28);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep-black);
}

.hero-media,
.hero-image,
.hero-colorwash {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 45%;
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.04);
  will-change: transform;
}

.hero-colorwash {
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.06) 0%, rgba(9, 9, 11, 0.03) 24%, rgba(9, 9, 11, 0.96) 82%, var(--deep-black) 100%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.25), rgba(9, 9, 11, 0.03) 70%);
}

.hero-content {
  width: 100%;
  padding: 8rem var(--pad) 7.5rem;
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 18rem;
  color: rgba(240, 234, 223, 0.74);
}

.hero-title {
  max-width: 49rem;
  margin: 1.05rem 0 0;
  color: var(--soft-white);
  font-size: clamp(3rem, 12.7vw, 5.3rem);
  font-weight: 450;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.hero-title span {
  display: block;
  margin-top: 0.12em;
  color: var(--ivory);
}

.hero-copy {
  max-width: 30rem;
  margin: 1.6rem 0 0;
  color: rgba(244, 242, 238, 0.73);
  font-size: 1rem;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  margin-top: 1.8rem;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 3.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 1.15rem;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.125em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button-primary {
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 0 0 rgba(23, 111, 168, 0);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #faf7f0;
  box-shadow: 0 0 2.5rem rgba(23, 111, 168, 0.34);
}

.button-gradient {
  min-height: 3.55rem;
  padding-right: 1.7rem;
  padding-left: 1.7rem;
  border: 0;
  border-radius: 1.9rem;
  color: var(--ink);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.1) 29%, rgba(34, 31, 92, 0.16) 100%),
    linear-gradient(172.44deg, #c576dc 0%, #a271e7 27%, #7489ea 56%, #56c7ce 100%);
  background-position: 0% 50%;
  background-size: 100% 100%, 145% 145%;
  box-shadow:
    0 0.95rem 2.9rem rgba(78, 84, 210, 0.28),
    0 0.2rem 0.42rem rgba(0, 0, 0, 0.24),
    inset 0 -0.34rem 0.8rem rgba(32, 29, 84, 0.16);
  transition: transform 300ms var(--ease), box-shadow 300ms ease, filter 300ms ease, background-position 500ms var(--ease);
}

.button-gradient::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(75% 85% at 18% 2%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 66%),
    linear-gradient(127deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 42%, rgba(19, 66, 102, 0.13) 100%);
  content: "";
  pointer-events: none;
}

.button-gradient > span {
  position: relative;
  z-index: 1;
}

.button-primary.button-gradient {
  color: var(--ink);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.1) 29%, rgba(34, 31, 92, 0.16) 100%),
    linear-gradient(172.44deg, #c576dc 0%, #a271e7 27%, #7489ea 56%, #56c7ce 100%);
  background-size: 100% 100%, 145% 145%;
}

.button-gradient:hover,
.button-primary.button-gradient:hover {
  transform: translateY(-3px) scale(1.01);
  color: var(--ink);
  background-position: 0% 50%, 100% 50%;
  filter: saturate(1.1) brightness(1.035);
  box-shadow:
    0 1.2rem 3.5rem rgba(78, 84, 210, 0.4),
    0 0.24rem 0.5rem rgba(0, 0, 0, 0.2),
    inset 0 -0.28rem 0.72rem rgba(32, 29, 84, 0.13);
}

.button-gradient:active,
.button-primary.button-gradient:active {
  transform: translateY(1px) scale(0.995);
  box-shadow:
    0 0.4rem 1.25rem rgba(78, 84, 210, 0.24),
    inset 0 0.18rem 0.55rem rgba(21, 16, 39, 0.22);
}

.button-warm,
.button-warm:hover {
  background:
    linear-gradient(154deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.08) 30%, rgba(80, 26, 68, 0.15) 100%),
    linear-gradient(173.16deg, #c576dc 0%, #d96bc3 36%, #ee78a7 67%, #e45454 100%);
  background-size: 100% 100%, 145% 145%;
}

.button-arrow {
  font-size: 1rem;
  transition: transform 260ms var(--ease);
}

.button:hover .button-arrow {
  transform: translate(0.18rem, -0.18rem);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  color: rgba(244, 242, 238, 0.74);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--soft-white);
}

.hero-signature {
  position: absolute;
  right: 0;
  bottom: 2.3rem;
  left: 0;
  height: 3rem;
  pointer-events: none;
  opacity: 0.82;
}

.hero-signature svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-signature path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.signature-base {
  stroke: rgba(240, 234, 223, 0.34);
  stroke-width: 0.75;
}

.signature-wave {
  stroke: rgba(240, 234, 223, 0.76);
  stroke-width: 1;
  filter: drop-shadow(0 0 5px rgba(23, 111, 168, 0.5));
  animation: wave-drift 11s ease-in-out infinite alternate;
}

.signature-overtone {
  stroke-width: 1;
  opacity: 0.72;
  filter: drop-shadow(0 0 6px currentColor);
}

.signature-overtone-one {
  stroke: var(--electric-blue);
  animation: overtone-pulse 7s ease-in-out infinite;
}

.signature-overtone-two {
  stroke: var(--magenta);
  animation: overtone-pulse 7s 1.2s ease-in-out infinite;
}

.section-index {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.15rem);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.encounter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5.5rem var(--pad) 4.5rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 5%, rgba(104, 21, 43, 0.1), transparent 24rem),
    var(--ivory);
}

.encounter::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(23, 55, 47, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(23, 55, 47, 0.025), 0 0 0 8rem rgba(23, 55, 47, 0.02);
  content: "";
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(16, 16, 20, 0.55);
}

.section-label span:first-child {
  color: var(--wine);
}

.encounter-title {
  max-width: 53rem;
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.encounter-copy {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: rgba(16, 16, 20, 0.65);
  font-size: 1rem;
  line-height: 1.55;
}

.video-shell {
  margin-top: 3rem;
}

.video-frame {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--soft-white);
  background: var(--forest);
}

.video-image,
.video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-image {
  z-index: -2;
  object-fit: cover;
  object-position: 61% 50%;
  transform: scale(1.02);
  transition: transform 12s linear, filter 900ms ease;
}

.video-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.2), transparent 34%, rgba(9, 9, 11, 0.5)),
    linear-gradient(90deg, rgba(9, 9, 11, 0.34), transparent 70%);
  transition: background 800ms ease;
}

.video-topline,
.video-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.video-topline {
  top: 1rem;
}

.video-caption {
  bottom: 1.4rem;
  align-items: flex-end;
}

.video-caption span:first-child {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.play-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  cursor: pointer;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(244, 242, 238, 0.72);
  border-radius: 50%;
  color: var(--soft-white);
  background: rgba(9, 9, 11, 0.18);
  backdrop-filter: blur(9px);
  transition: transform 350ms var(--ease), background 350ms ease, border-color 350ms ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  border-color: var(--soft-white);
  background: rgba(9, 9, 11, 0.31);
}

.play-icon {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-36%, -0.72rem);
  border-top: 0.52rem solid transparent;
  border-bottom: 0.52rem solid transparent;
  border-left: 0.78rem solid var(--soft-white);
}

.play-label {
  margin-top: 2.2rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-playing-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(82%, 40rem);
  transform: translate(-50%, -42%);
  flex-direction: column;
  align-items: center;
  color: var(--soft-white);
  opacity: 0;
  text-align: center;
  transition: opacity 900ms ease, transform 900ms var(--ease);
}

.video-playing-copy span:first-child {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.video-playing-copy span:last-child {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-frame.is-playing .video-image {
  transform: scale(1.085);
  filter: saturate(0.76) brightness(0.78);
}

.video-frame.is-playing .video-shade {
  background: rgba(9, 9, 11, 0.44);
}

.video-frame.is-playing .video-playing-copy {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.video-frame.is-playing .play-button {
  top: auto;
  bottom: 1rem;
  left: 1rem;
  width: 2.65rem;
  height: 2.65rem;
  transform: none;
}

.video-frame.is-playing .play-button:hover {
  transform: scale(1.05);
}

.video-frame.is-playing .play-icon {
  left: 50%;
  width: 0.68rem;
  height: 0.82rem;
  transform: translate(-50%, -50%);
  border: 0;
  border-right: 0.18rem solid var(--soft-white);
  border-left: 0.18rem solid var(--soft-white);
}

.video-frame.is-playing .play-label {
  display: none;
}

.video-frame.is-playing .video-caption {
  left: 4.35rem;
}

.video-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(244, 242, 238, 0.22);
}

.video-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--soft-white);
}

.encounter-footer {
  display: grid;
  margin-top: 2.5rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: rgba(16, 16, 20, 0.48);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.encounter-footer svg {
  width: 100%;
  height: 2.5rem;
}

.encounter-footer path {
  fill: none;
  stroke: rgba(23, 55, 47, 0.45);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.manifesto {
  position: relative;
  height: 390svh;
  background: var(--deep-black);
}

.manifesto-sticky {
  position: sticky;
  top: 0;
  isolation: isolate;
  height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(21, 16, 39, 0.96), rgba(9, 9, 11, 0.98) 62%),
    var(--deep-black);
}

.manifesto-topline {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem var(--pad);
  border-bottom: 1px solid rgba(244, 242, 238, 0.12);
}

.section-label-dark {
  color: rgba(244, 242, 238, 0.55);
}

.section-label-dark span:first-child {
  color: var(--magenta);
}

.manifesto-hint {
  display: none;
  color: rgba(244, 242, 238, 0.37);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.manifesto-copy {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  padding: 6.7rem var(--pad) 7rem;
  align-items: center;
}

.manifesto-line {
  position: absolute;
  left: var(--pad);
  width: calc(100% - (2 * var(--pad)));
  margin: 0;
  color: rgba(244, 242, 238, 0);
  font-size: clamp(2.9rem, 12.4vw, 5.6rem);
  font-weight: 450;
  letter-spacing: -0.058em;
  line-height: 0.94;
  opacity: 0;
  transform: translateY(2.2rem) scale(0.985);
  transition: opacity 780ms var(--ease), transform 900ms var(--ease), color 780ms ease;
  pointer-events: none;
}

.manifesto-line.is-active {
  color: var(--soft-white);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.manifesto-line em {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.manifesto-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.25;
  transform: translate3d(0, 0, 0);
  transition: opacity 800ms ease, transform 1100ms var(--ease);
}

.manifesto-glow-blue {
  top: 14%;
  right: -18%;
  width: 23rem;
  height: 23rem;
  background: var(--electric-blue);
}

.manifesto-glow-wine {
  right: -8%;
  bottom: -2%;
  width: 20rem;
  height: 20rem;
  background: var(--wine);
  opacity: 0.13;
}

.manifesto-glow-magenta {
  bottom: -14%;
  left: -16%;
  width: 15rem;
  height: 15rem;
  background: var(--magenta);
  opacity: 0.09;
}

.overtone-graphic {
  position: absolute;
  z-index: 1;
  right: -11rem;
  bottom: 1rem;
  width: 29rem;
  opacity: 0.34;
  transform: rotate(-7deg) scale(calc(0.84 + var(--manifest-progress, 0) * 0.2));
  transform-origin: center;
  transition: transform 300ms linear;
}

.overtone-ring,
.overtone-line {
  fill: none;
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.overtone-ring {
  stroke: rgba(201, 46, 103, 0.64);
  stroke-dasharray: 3 11;
  transform-origin: center;
}

.ring-one {
  animation: ring-spin 28s linear infinite;
}

.ring-two {
  stroke: rgba(23, 111, 168, 0.58);
  animation: ring-spin-reverse 38s linear infinite;
}

.ring-three {
  stroke: rgba(240, 234, 223, 0.28);
  animation: ring-spin 52s linear infinite;
}

.overtone-line {
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: calc(720px - var(--manifest-progress, 0) * 720px);
  transition: stroke-dashoffset 300ms linear;
}

.line-one {
  stroke: rgba(23, 111, 168, 0.9);
}

.line-two {
  stroke: rgba(201, 46, 103, 0.76);
}

.line-three {
  stroke: rgba(240, 234, 223, 0.58);
}

.manifesto-progress {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 1rem;
  width: 1px;
  height: 8rem;
  transform: translateY(-50%);
  background: rgba(244, 242, 238, 0.18);
}

.manifesto-progress-fill {
  display: block;
  width: 100%;
  height: 0%;
  background: var(--soft-white);
}

.manifesto-footer {
  position: absolute;
  z-index: 5;
  right: var(--pad);
  bottom: 1.3rem;
  left: var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  color: rgba(244, 242, 238, 0.28);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-align: center;
}

.state {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6rem var(--pad) 5rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 12%, rgba(23, 111, 168, 0.1), transparent 28rem),
    radial-gradient(circle at 4% 72%, rgba(201, 46, 103, 0.08), transparent 23rem),
    var(--ivory);
}

.state-orbit {
  position: absolute;
  z-index: -1;
  top: 7rem;
  right: -9rem;
  width: 24rem;
  height: 24rem;
  opacity: 0.5;
}

.state-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(23, 55, 47, 0.14);
  border-radius: 50%;
}

.state-orbit span:nth-child(2) {
  inset: 3.5rem;
  border-color: rgba(23, 111, 168, 0.17);
}

.state-orbit span:nth-child(3) {
  inset: 7.5rem;
  border-color: rgba(201, 46, 103, 0.16);
}

.state-title {
  max-width: 72rem;
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 11vw, 5.8rem);
  font-weight: 450;
  letter-spacing: -0.058em;
  line-height: 0.95;
}

.state-title em {
  display: block;
  margin-top: 0.16em;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.state-intro {
  max-width: 38rem;
  margin: 1.75rem 0 0;
  color: rgba(16, 16, 20, 0.64);
  font-size: 1.03rem;
  line-height: 1.58;
}

.state-list {
  margin-top: 4rem;
  border-top: 1px solid rgba(16, 16, 20, 0.18);
}

.state-item {
  display: grid;
  padding: 1.65rem 0;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.65rem 0.9rem;
  border-bottom: 1px solid rgba(16, 16, 20, 0.18);
}

.state-number {
  padding-top: 0.42rem;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.state-item h3 {
  margin: 0;
  font-size: clamp(1.75rem, 7vw, 3.2rem);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1;
}

.state-item h3 em {
  color: rgba(16, 16, 20, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.state-item p {
  margin: 0;
  grid-column: 2;
  color: rgba(16, 16, 20, 0.56);
  font-size: 0.92rem;
  line-height: 1.5;
}

.state-cta {
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.button-state {
  width: min(100%, 25rem);
}

.state-cta p {
  max-width: 26rem;
  margin: 0;
  color: rgba(16, 16, 20, 0.52);
  font-size: 0.78rem;
  line-height: 1.45;
}

.state-bridge {
  display: grid;
  margin-top: 4.5rem;
  grid-template-columns: auto minmax(3rem, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
}

.state-bridge p {
  margin: 0;
  color: rgba(16, 16, 20, 0.62);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.state-bridge-wave svg {
  width: 100%;
  height: 2.8rem;
}

.state-bridge-wave path {
  fill: none;
  stroke: rgba(23, 111, 168, 0.55);
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
}

.journey {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6rem var(--pad) 6.5rem;
  background:
    linear-gradient(145deg, rgba(21, 16, 39, 0.98), rgba(9, 9, 11, 0.99) 68%),
    var(--deep-black);
}

.journey-glow {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: -10rem;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: var(--electric-blue);
  filter: blur(120px);
  opacity: 0.2;
}

.journey-title {
  max-width: 75rem;
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 10.5vw, 6.7rem);
  font-weight: 450;
  letter-spacing: -0.058em;
  line-height: 0.95;
}

.journey-steps {
  margin: 4.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244, 242, 238, 0.18);
}

.journey-step {
  display: grid;
  padding: 1.65rem 0 1.85rem;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(244, 242, 238, 0.18);
}

.journey-index {
  padding-top: 0.45rem;
  color: #a77be8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.journey-step h3 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 450;
  letter-spacing: -0.047em;
  line-height: 1;
}

.journey-step p {
  max-width: 34rem;
  margin: 0.8rem 0 0;
  color: rgba(244, 242, 238, 0.58);
  font-size: 0.95rem;
  line-height: 1.52;
}

.journey-result {
  max-width: 62rem;
  margin: 4.5rem 0 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 8.7vw, 5.6rem);
  line-height: 1.02;
}

.decision {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 7rem var(--pad) 1.4rem;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 50% 45%, rgba(104, 21, 43, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 15%, rgba(23, 111, 168, 0.25), transparent 28rem),
    var(--deep-black);
}

.decision-signal {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: -12%;
  width: 124%;
  opacity: 0.72;
}

.decision-signal path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.decision-signal-base {
  stroke: rgba(244, 242, 238, 0.2);
  stroke-width: 0.8;
}

.decision-signal-main {
  stroke: rgba(113, 142, 255, 0.84);
  stroke-width: 1.25;
  filter: drop-shadow(0 0 8px rgba(23, 111, 168, 0.72));
  animation: signal-breathe 6s ease-in-out infinite;
}

.decision-signal-over {
  stroke: rgba(222, 90, 166, 0.78);
  stroke-width: 1;
  filter: drop-shadow(0 0 8px rgba(201, 46, 103, 0.62));
  animation: signal-breathe 6s 1.1s ease-in-out infinite;
}

.decision-content {
  width: 100%;
  max-width: 66rem;
  margin: auto;
  padding: 4rem 0;
  text-align: center;
}

.decision-content .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.decision-title {
  margin: 1.2rem 0 0;
  font-size: clamp(3.4rem, 12vw, 8rem);
  font-weight: 450;
  letter-spacing: -0.062em;
  line-height: 0.91;
}

.decision-title em {
  color: #d788dd;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.decision-copy {
  max-width: 34rem;
  margin: 1.8rem auto 0;
  color: rgba(244, 242, 238, 0.67);
  font-size: 1rem;
  line-height: 1.55;
}

.button-decision {
  width: min(100%, 27rem);
  margin-top: 2rem;
}

.decision-note {
  margin: 1rem 0 0;
  color: rgba(244, 242, 238, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  width: 100%;
  padding-top: 1.3rem;
  gap: 1.2rem;
  border-top: 1px solid rgba(244, 242, 238, 0.14);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(244, 242, 238, 0.67);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms ease, transform 260ms var(--ease);
}

.footer-social:hover {
  transform: translateY(-2px);
  color: var(--soft-white);
}

.footer-meta {
  margin: 0;
  color: rgba(244, 242, 238, 0.3);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.application-dialog {
  width: min(44rem, calc(100% - 1rem));
  max-height: calc(100svh - 1rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.application-dialog::backdrop {
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(12px);
}

.application-panel {
  position: relative;
  overflow: auto;
  max-height: calc(100svh - 1rem);
  padding: clamp(2rem, 7vw, 4.5rem);
  background:
    radial-gradient(circle at 100% 0, rgba(201, 46, 103, 0.12), transparent 18rem),
    var(--ivory);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  place-items: center;
  color: rgba(16, 16, 20, 0.6);
  background: transparent;
  font-size: 1.6rem;
  font-weight: 300;
}

.eyebrow-dark {
  color: var(--wine);
}

.application-panel h2 {
  max-width: 31rem;
  margin: 1rem 0 0;
  font-size: clamp(2.7rem, 9vw, 4.9rem);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.application-panel p:not(.eyebrow) {
  max-width: 31rem;
  margin: 1.25rem 0 0;
  color: rgba(16, 16, 20, 0.64);
  font-size: 1rem;
  line-height: 1.55;
}

.application-form {
  display: grid;
  margin-top: 2rem;
  gap: 1.35rem;
}

.application-form label {
  display: grid;
  gap: 0.55rem;
  color: rgba(16, 16, 20, 0.64);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-form input {
  width: 100%;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 20, 0.35);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  text-transform: none;
}

.application-form input:focus {
  border-bottom-color: var(--electric-blue);
}

.application-form input::placeholder {
  color: rgba(16, 16, 20, 0.36);
}

.button-dark {
  margin-top: 0.5rem;
  color: var(--soft-white);
  background: var(--ink);
}

.application-panel small {
  display: block;
  margin-top: 1rem;
  color: rgba(16, 16, 20, 0.44);
  font-size: 0.66rem;
  line-height: 1.45;
}

.application-success {
  min-height: 25rem;
  padding-top: 2rem;
}

.success-wave {
  width: 9rem;
  margin-bottom: 2.5rem;
}

.success-wave path {
  fill: none;
  stroke: var(--electric-blue);
  stroke-width: 1;
  stroke-linecap: round;
}

.text-button {
  cursor: pointer;
  margin-top: 2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 0.8rem;
}

@keyframes wave-drift {
  from { transform: translateX(-0.35%); }
  to { transform: translateX(0.35%); }
}

@keyframes overtone-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

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

@keyframes ring-spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes signal-breathe {
  0%, 100% { opacity: 0.46; }
  50% { opacity: 1; }
}

@media (min-width: 42rem) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .header-meta {
    display: block;
  }

  .hero-actions {
    width: fit-content;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }

  .button-primary {
    min-width: 12.5rem;
  }

  .video-frame {
    aspect-ratio: 16 / 10;
  }

  .manifesto-hint {
    display: block;
  }

  .manifesto-footer {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .state-cta {
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  .site-header {
    position: fixed;
  }

  .hero {
    align-items: center;
  }

  .hero-image {
    object-position: center;
  }

  .hero-colorwash {
    background:
      linear-gradient(90deg, rgba(9, 9, 11, 1) 0%, rgba(9, 9, 11, 0.94) 26%, rgba(9, 9, 11, 0.4) 51%, rgba(9, 9, 11, 0.02) 78%),
      linear-gradient(180deg, rgba(9, 9, 11, 0.06) 0%, rgba(9, 9, 11, 0.03) 76%, rgba(9, 9, 11, 0.72) 100%);
  }

  .hero-content {
    max-width: 58rem;
    padding-top: 9rem;
    padding-bottom: 7rem;
  }

  .hero-title {
    max-width: 53rem;
    font-size: clamp(5rem, 6.15vw, 6.25rem);
  }

  .hero-copy {
    margin-top: 1.8rem;
    font-size: 1.08rem;
  }

  .section-index {
    position: absolute;
    right: var(--pad);
    bottom: 4.8rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(244, 242, 238, 0.52);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
  }

  .section-index span:first-child {
    color: var(--ivory);
  }

  .encounter {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .encounter-intro {
    display: grid;
    grid-template-columns: minmax(12rem, 0.68fr) minmax(31rem, 1.4fr) minmax(20rem, 0.8fr);
    align-items: start;
    gap: 2rem;
  }

  .encounter-title {
    margin: 0;
    font-size: clamp(4.8rem, 6.2vw, 6.8rem);
  }

  .encounter-copy {
    margin-top: 0.35rem;
    font-size: 1.08rem;
  }

  .video-shell {
    margin-top: 4.5rem;
  }

  .video-frame {
    aspect-ratio: 16 / 8.3;
  }

  .video-topline,
  .video-caption {
    right: 1.75rem;
    left: 1.75rem;
  }

  .video-topline {
    top: 1.5rem;
  }

  .video-caption {
    bottom: 1.8rem;
  }

  .encounter-footer {
    margin-top: 3.5rem;
  }

  .manifesto-line {
    width: min(75rem, calc(100% - (2 * var(--pad))));
    font-size: clamp(5.2rem, 7vw, 8rem);
  }

  .manifesto-topline {
    top: 4.8rem;
  }

  .overtone-graphic {
    right: -4rem;
    bottom: -7rem;
    width: min(46rem, 54vw);
    opacity: 0.45;
  }

  .manifesto-progress {
    right: 2rem;
    height: 11rem;
  }

  .manifesto-footer {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }

  .state {
    padding-top: 8.5rem;
    padding-bottom: 7rem;
  }

  .state-orbit {
    top: 4rem;
    right: -3rem;
    width: 35rem;
    height: 35rem;
  }

  .state-heading {
    display: grid;
    grid-template-columns: minmax(12rem, 0.55fr) minmax(36rem, 1.5fr) minmax(18rem, 0.68fr);
    align-items: start;
    gap: 2rem;
  }

  .state-title {
    margin: 0;
    font-size: clamp(4.8rem, 6.4vw, 7.1rem);
  }

  .state-intro {
    margin-top: 0.35rem;
    font-size: 1.06rem;
  }

  .state-list {
    margin-top: 6rem;
  }

  .state-item {
    padding: 1.8rem 0;
    grid-template-columns: 4rem minmax(26rem, 1fr) minmax(18rem, 0.55fr);
    align-items: center;
    gap: 1.4rem;
  }

  .state-item h3 {
    font-size: clamp(2.5rem, 3.25vw, 3.8rem);
  }

  .state-item p {
    grid-column: auto;
    font-size: 1rem;
  }

  .state-cta {
    margin-top: 3.5rem;
  }

  .state-bridge {
    margin-top: 6rem;
    gap: 1.5rem;
  }

  .journey {
    padding-top: 8.5rem;
    padding-bottom: 8rem;
  }

  .journey-heading {
    display: grid;
    grid-template-columns: minmax(12rem, 0.55fr) minmax(40rem, 1.7fr);
    align-items: start;
    gap: 2rem;
  }

  .journey-title {
    margin: 0;
    font-size: clamp(5rem, 6.7vw, 7.5rem);
  }

  .journey-steps {
    margin-top: 6rem;
  }

  .journey-step {
    padding: 2rem 0 2.2rem;
    grid-template-columns: 5rem 1fr;
    align-items: center;
    gap: 1.5rem;
  }

  .journey-step > div {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(28rem, 1fr);
    align-items: center;
    gap: 3rem;
  }

  .journey-step h3 {
    font-size: clamp(3rem, 4vw, 4.6rem);
  }

  .journey-step p {
    margin-top: 0;
    font-size: 1.05rem;
  }

  .journey-result {
    margin-top: 6rem;
  }

  .decision {
    padding-top: 8.5rem;
    padding-bottom: 2rem;
  }

  .decision-copy {
    font-size: 1.08rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }

  .footer-socials {
    justify-self: center;
  }

  .footer-meta {
    grid-column: auto;
    justify-self: end;
  }

  .application-dialog {
    width: min(48rem, calc(100% - 4rem));
  }
}

@media (min-width: 90rem) {
  .hero-title {
    font-size: 6rem;
  }

  .hero-content {
    max-width: 61rem;
  }
}

@media (max-width: 23.5rem) {
  .site-header .brand-name {
    display: none;
  }
}

@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-image {
    transform: none !important;
  }
}
