@font-face {
  font-family: "ABCDiatype";
  src: url("assets/fonts/ABCDiatype-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Gendy";
  src: url("assets/fonts/Gendy.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #030405;
  --black-soft: #06080a;
  --panel: #0a0d10;
  --panel-raised: #101419;
  --steel: #172027;
  --white: #f5f7f8;
  --muted: #a9b1b7;
  --muted-dark: #8b959d;
  --line: rgba(209, 224, 234, 0.14);
  --line-strong: rgba(209, 224, 234, 0.27);
  --red: #ff3b35;
  --red-bright: #ff554f;
  --red-deep: #8d0b08;
  --red-glow: rgba(255, 59, 53, 0.22);
  --cyan: #61d8fe;
  --cyan-soft: rgba(97, 216, 254, 0.14);
  --amber: #ffb84a;
  --shell: 1240px;
  --header-height: 76px;
  --section-space: clamp(6.25rem, 10vw, 10rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.77, 0, 0.18, 1);
  font-family: "ABCDiatype", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  color: var(--white);
  background: rgba(255, 59, 53, 0.75);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border: 1px solid var(--cyan);
  color: var(--black);
  background: var(--cyan);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.ambient-shell {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 80%, transparent);
}

.ambient-beam {
  position: absolute;
  top: 25%;
  left: 52%;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 53, 0.08), transparent 67%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
}

.ambient-noise {
  position: absolute;
  inset: -50%;
  opacity: 0.035;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: noise-shift 0.18s steps(2) infinite;
}

@keyframes noise-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(2%, -1%, 0); }
  50% { transform: translate3d(-1%, 2%, 0); }
  75% { transform: translate3d(1%, 1%, 0); }
  100% { transform: translate3d(-2%, -1%, 0); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 320ms var(--ease-out),
    border-color 320ms ease,
    background-color 320ms ease,
    backdrop-filter 320ms ease;
  transform: translateZ(0);
  isolation: isolate;
}

.site-header.is-scrolled {
  height: 66px;
  border-bottom-color: var(--line);
  background: rgba(3, 4, 5, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(97, 216, 254, 0.1));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #c3c9ce;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

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

.header-key {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid transparent;
  color: #aeb7bd;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.header-key svg {
  width: 17px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.35;
}

.header-key:hover,
.header-key:focus-visible {
  border-color: rgba(97, 216, 254, 0.28);
  color: var(--white);
  background: rgba(97, 216, 254, 0.05);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 9px 14px 9px 17px;
  border: 1px solid rgba(255, 59, 53, 0.55);
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 59, 53, 0.16), transparent 55%),
    rgba(7, 8, 10, 0.78);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.header-cta svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.header-cta:hover {
  border-color: var(--red);
  background-color: rgba(255, 59, 53, 0.18);
  box-shadow: 0 0 28px rgba(255, 59, 53, 0.14);
}

.hero {
  position: relative;
  display: block;
  min-height: max(1080px, 155svh);
  overflow: clip;
  border-bottom: 1px solid var(--line);
  background: #030405;
  isolation: isolate;
}

.hero::before {
  display: none;
}

.hero-media {
  position: sticky;
  z-index: 0;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  opacity: var(--hero-film-opacity, 1);
  background-color: #030405;
  background-image: url("assets/command-core-hero.jpg");
  background-position: 54% center;
  background-size: cover;
  pointer-events: none;
  will-change: opacity;
}

.hero-media::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: 0.16;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 4px,
      rgba(255, 255, 255, 0.018) 5px
    ),
    linear-gradient(90deg, rgba(255, 59, 53, 0.06), transparent 42%, rgba(97, 216, 254, 0.04));
  content: "";
  pointer-events: none;
}

.hero-media video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.88) contrast(1.08) brightness(0.82);
  transform: scale(1.025);
  transition: opacity 900ms ease;
  will-change: opacity;
}

.hero-media.is-film-ready video {
  opacity: 1;
}

.hero-media.is-poster video {
  display: none;
}

.hero-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.98) 0%, rgba(3, 4, 5, 0.86) 33%, rgba(3, 4, 5, 0.2) 68%, rgba(3, 4, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.72) 0%, transparent 23%, transparent 62%, rgba(3, 4, 5, 0.88) 100%);
}

.corridor-frame {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.corridor-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 53, 0.85), transparent);
  box-shadow: 0 0 16px rgba(255, 59, 53, 0.55);
}

.corridor-line-a {
  top: 19%;
  right: -7%;
  width: 54%;
  height: 1px;
  transform: rotate(-15deg);
}

.corridor-line-b {
  right: 3%;
  bottom: 15%;
  width: 48%;
  height: 1px;
  opacity: 0.7;
  transform: rotate(10deg);
}

.corridor-line-c {
  top: 0;
  right: 20%;
  width: 1px;
  height: 38%;
  opacity: 0.55;
  background: linear-gradient(transparent, rgba(58, 215, 255, 0.65), transparent);
  box-shadow: 0 0 12px rgba(58, 215, 255, 0.35);
}

.hero-grid {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: max(720px, 100svh);
  padding-top: calc(var(--header-height) + 58px);
  padding-bottom: 84px;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
  opacity: var(--hero-copy-opacity, 1);
  will-change: opacity;
}

.system-kicker {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #d8dde1;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 59, 53, 0.9);
  animation: status-pulse 2.2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 5px rgba(255, 59, 53, 0.5); }
  50% { opacity: 1; box-shadow: 0 0 17px rgba(255, 59, 53, 1); }
}

.kicker-divider {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 26px;
  font-family: "Gendy", "Arial Black", sans-serif;
  font-size: clamp(4.25rem, 7.4vw, 7.9rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.52);
}

.hero h1 span {
  display: block;
  margin-top: 0.1em;
  color: var(--red);
  font-size: 0.58em;
  letter-spacing: -0.045em;
  text-shadow:
    0 0 34px rgba(255, 59, 53, 0.2),
    0 3px 30px rgba(0, 0, 0, 0.6);
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 32px;
  color: #d3d8dc;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms var(--ease-out);
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.22) 48%, transparent 70%);
  content: "";
  transform: translateX(-120%);
  transition: transform 620ms var(--ease-out);
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
  transition: transform 240ms var(--ease-out);
}

.button:hover::before {
  transform: translateX(120%);
}

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

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: rgba(255, 92, 86, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #e22620, #a90e0a);
  box-shadow:
    0 0 0 1px rgba(255, 59, 53, 0.16) inset,
    0 14px 38px rgba(166, 12, 9, 0.22),
    0 0 28px rgba(255, 59, 53, 0.12);
}

.button-primary:hover {
  border-color: #ff8985;
  background-color: var(--red);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 18px 48px rgba(166, 12, 9, 0.28),
    0 0 36px rgba(255, 59, 53, 0.2);
}

.button-ghost {
  background: rgba(3, 4, 5, 0.52);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background-color: rgba(255, 255, 255, 0.06);
}

.button-wide {
  width: 100%;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #9ba4aa;
  font-size: 0.78rem;
}

.hero-note svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.2;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-enter 900ms var(--ease-out) forwards;
}

.hero-copy .hero-reveal:nth-child(1) { animation-delay: 160ms; }
.hero-copy .hero-reveal:nth-child(2) { animation-delay: 260ms; }
.hero-copy .hero-reveal:nth-child(3) { animation-delay: 390ms; }
.hero-copy .hero-reveal:nth-child(4) { animation-delay: 500ms; }
.hero-copy .hero-reveal:nth-child(5) { animation-delay: 610ms; }
.hero-copy .hero-reveal:nth-child(6) { animation-delay: 690ms; }

.hero-keyline {
  display: grid;
  width: min(100%, 370px);
  min-height: 58px;
  margin-top: 20px;
  padding: 9px 2px;
  border: 0;
  border-top: 1px solid rgba(97, 216, 254, 0.22);
  border-bottom: 1px solid rgba(97, 216, 254, 0.12);
  color: var(--white);
  background: rgba(3, 5, 7, 0.28);
  cursor: pointer;
  grid-template-columns: 40px 1fr auto;
  gap: 11px;
  align-items: center;
  text-align: left;
  transition:
    border-color 240ms ease,
    background-color 240ms ease;
}

.hero-keyline:hover,
.hero-keyline:focus-visible {
  border-color: rgba(97, 216, 254, 0.58);
  background: rgba(97, 216, 254, 0.06);
}

.keyline-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(97, 216, 254, 0.32);
  background: rgba(97, 216, 254, 0.05);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.keyline-icon svg {
  width: 20px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.25;
}

.hero-keyline > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.hero-keyline small {
  color: var(--muted-dark);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-keyline strong {
  font-size: 0.79rem;
  letter-spacing: 0.025em;
}

.hero-keyline > i {
  padding-right: 7px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-style: normal;
  transition: transform 240ms var(--ease-out);
}

.hero-keyline:hover > i {
  transform: translate(2px, -2px);
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.scroll-cue {
  position: absolute;
  z-index: 6;
  top: calc(100svh - 44px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  opacity: var(--hero-copy-opacity, 1);
  color: #7d868c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--red);
  content: "";
  transform: translateX(-100%);
  animation: cue-scan 2.4s ease-in-out infinite;
}

@keyframes cue-scan {
  50%, 100% { transform: translateX(100%); }
}

.telemetry {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: #050709;
}

.telemetry::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 26%;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 14px rgba(255, 59, 53, 0.45);
  content: "";
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.telemetry-item {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 1px;
  padding: 24px clamp(1rem, 2.5vw, 2.1rem);
  border-right: 1px solid var(--line);
}

.telemetry-item:first-child {
  border-left: 1px solid var(--line);
}

.telemetry-item::after {
  position: absolute;
  right: -3px;
  bottom: -3px;
  z-index: 1;
  width: 5px;
  height: 5px;
  background: var(--red);
  content: "";
}

.telemetry-item:nth-child(even)::after {
  background: var(--cyan);
}

.telemetry-code {
  margin-bottom: 7px;
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.telemetry-item strong {
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  letter-spacing: -0.01em;
}

.telemetry-item small {
  color: var(--muted-dark);
  font-size: 0.76rem;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section h2,
.final-cta h2,
.checkout-heading h2,
.checkout-success h2 {
  margin-bottom: 0;
  font-family: "Gendy", "Arial Black", sans-serif;
  font-size: clamp(3rem, 5.1vw, 5.25rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section h2 span {
  color: var(--red);
}

.section-intro {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.6fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.section-intro > p {
  max-width: 480px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.section-outcomes {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 13%, rgba(255, 59, 53, 0.07), transparent 23rem),
    linear-gradient(180deg, #06080a, #030405);
}

.section-outcomes::before {
  position: absolute;
  top: -240px;
  right: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.012),
    0 0 0 140px rgba(255, 255, 255, 0.01);
  content: "";
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 30%), rgba(58, 215, 255, 0.065), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), transparent 40%),
    rgba(9, 12, 15, 0.76);
  transform-style: preserve-3d;
  transition:
    border-color 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease,
    transform 180ms ease-out;
}

.module-card:first-child,
.module-card:nth-child(4) {
  border-left: 1px solid var(--line);
}

.module-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 59, 53, 0.5);
  content: "";
  transition: width 420ms var(--ease-out);
}

.module-card::after {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  content: "";
}

.module-card:hover {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.29);
  background-color: #0d1115;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.module-card:hover::before {
  width: 100%;
}

.module-card-wide {
  grid-column: span 2;
}

.module-index {
  position: absolute;
  top: 17px;
  right: 22px;
  color: #5c656c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.module-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
  fill: none;
  stroke: var(--red-bright);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.15;
  filter: drop-shadow(0 0 12px rgba(255, 59, 53, 0.18));
}

.module-card:nth-child(2) .module-icon,
.module-card:nth-child(5) .module-icon {
  stroke: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(58, 215, 255, 0.18));
}

.module-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.7vw, 1.48rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.module-card p {
  max-width: 460px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.module-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.module-status::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(58, 215, 255, 0.65);
  content: "";
}

.section-program {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 59, 53, 0.035), transparent 30%),
    #030405;
}

.section-program::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.04) 120px),
    repeating-linear-gradient(0deg, transparent 0 119px, rgba(255, 255, 255, 0.04) 120px);
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 45%);
}

.program-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.program-copy {
  align-self: start;
}

.program-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5.3vw, 5.6rem);
}

.program-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link svg {
  width: 18px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.5;
  transition: transform 220ms var(--ease-out);
}

.text-link:hover svg {
  transform: translateX(5px);
}

.week-scanner {
  width: min(100%, 440px);
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 59, 53, 0.04), transparent 44%),
    rgba(5, 8, 10, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.scanner-topline {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  color: #c7cfd4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scanner-topline i {
  color: var(--red-bright);
  font-style: normal;
}

.week-scanner > svg {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 12px 12px;
}

.scanner-grid {
  fill: none;
  stroke: rgba(225, 235, 240, 0.13);
  stroke-width: 1;
}

.scanner-labels,
.scanner-days {
  fill: #7d878e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.scanner-days {
  fill: #5f686f;
  font-size: 12px;
  text-anchor: middle;
}

.scanner-cells rect {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.08);
}

.scanner-cells .signal-hot {
  fill: rgba(255, 59, 53, 0.22);
  stroke: rgba(255, 92, 86, 0.62);
}

.scanner-cells .signal-cyan {
  fill: rgba(97, 216, 254, 0.16);
  stroke: rgba(97, 216, 254, 0.48);
}

.scanner-beam {
  fill: none;
  stroke-width: 3;
  animation: scanner-sweep 4.8s ease-in-out infinite;
}

@keyframes scanner-sweep {
  0%, 8% { transform: translateX(0); }
  82%, 100% { transform: translateX(504px); }
}

.program-rail {
  position: relative;
  padding: 30px 30px 4px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(97, 216, 254, 0.035), transparent 35%),
    rgba(8, 11, 14, 0.74);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.3);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.program-rail::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 57px;
  width: 1px;
  background: linear-gradient(var(--red), rgba(255, 59, 53, 0.12));
  box-shadow: 0 0 13px rgba(255, 59, 53, 0.22);
  content: "";
}

.program-day {
  position: relative;
  display: grid;
  min-height: 158px;
  grid-template-columns: 56px 1fr;
  gap: 26px;
}

.program-day + .program-day {
  margin-top: 24px;
}

.day-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 59, 53, 0.48);
  background: #050708;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow: 0 0 24px rgba(255, 59, 53, 0.1);
}

.day-marker span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.69rem;
  font-weight: 800;
}

.day-copy {
  padding: 0 0 36px;
  border-bottom: 1px solid var(--line);
}

.program-day:last-child .day-copy {
  border-bottom: 0;
}

.day-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.day-meta span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-meta small {
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.day-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.82rem);
  letter-spacing: -0.025em;
}

.day-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.section-experience {
  min-height: 850px;
  overflow: hidden;
  background: #050608;
}

.experience-image {
  position: absolute;
  inset: 0;
  opacity: 0.82;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.9), rgba(3, 4, 5, 0.32) 48%, rgba(3, 4, 5, 0.08)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.18), rgba(3, 4, 5, 0.82)),
    url("assets/beyond-the-sessions.jpg") 57% center / cover no-repeat;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.015);
}

.section-experience::after {
  position: absolute;
  inset: 0;
  border-block: 1px solid rgba(255, 59, 53, 0.17);
  background:
    linear-gradient(110deg, rgba(255, 59, 53, 0.13), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 239px, rgba(255, 255, 255, 0.028) 240px);
  content: "";
  pointer-events: none;
}

.experience-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.experience-panel {
  padding: clamp(2rem, 5vw, 4.75rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 5, 7, 0.78);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.65) inset;
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
  backdrop-filter: blur(18px);
}

.experience-panel h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
}

.experience-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: #bdc5ca;
  font-size: 1.06rem;
  line-height: 1.72;
}

.experience-features {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-features li {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 0;
  border-bottom: 1px solid var(--line);
  color: #e0e4e6;
  font-size: 0.9rem;
}

.experience-features li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.experience-features li:nth-child(even) {
  padding-left: 18px;
}

.experience-features span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6rem;
  font-weight: 800;
}

.takeaway-card {
  position: relative;
  align-self: end;
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid rgba(97, 216, 254, 0.24);
  background:
    linear-gradient(145deg, rgba(97, 216, 254, 0.07), transparent 48%),
    rgba(3, 5, 7, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.takeaway-card::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 74px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(97, 216, 254, 0.65);
  content: "";
}

.takeaway-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: #b9c2c8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.takeaway-topline span:last-child {
  color: var(--cyan);
}

.takeaway-list {
  display: grid;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.takeaway-list li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.takeaway-list li > span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6rem;
  font-weight: 800;
}

.takeaway-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.takeaway-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.takeaway-stamp {
  margin-top: 17px;
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-fit {
  background:
    radial-gradient(circle at 15% 60%, rgba(58, 215, 255, 0.05), transparent 24rem),
    #06080a;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.fit-heading h2 {
  max-width: 520px;
  font-size: clamp(3rem, 5.3vw, 5.4rem);
}

.fit-topology {
  width: min(100%, 480px);
  margin-top: 46px;
  border-top: 1px solid rgba(97, 216, 254, 0.2);
  border-bottom: 1px solid var(--line);
}

.topology-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  color: #aeb7bd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topology-topline i {
  color: var(--cyan);
  font-style: normal;
}

.fit-topology > svg {
  display: block;
  width: 100%;
  height: auto;
}

.topology-paths {
  fill: none;
  stroke: rgba(225, 235, 240, 0.24);
  stroke-dasharray: 5 7;
  stroke-width: 1.25;
}

.topology-node {
  fill: rgba(5, 8, 10, 0.88);
  stroke: rgba(97, 216, 254, 0.5);
  stroke-width: 1.5;
}

.topology-node circle:last-child {
  fill: var(--cyan);
  filter: drop-shadow(0 0 7px rgba(97, 216, 254, 0.85));
  stroke: none;
}

.topology-node-b {
  stroke: rgba(255, 92, 86, 0.62);
}

.topology-node-b circle {
  fill: var(--red);
  filter: drop-shadow(0 0 7px rgba(255, 59, 53, 0.85));
  stroke: none;
}

.topology-node-c {
  stroke: rgba(255, 184, 74, 0.58);
}

.topology-node-c circle {
  fill: var(--amber);
  filter: drop-shadow(0 0 7px rgba(255, 184, 74, 0.72));
  stroke: none;
}

.topology-core {
  fill: rgba(255, 59, 53, 0.06);
  stroke: var(--red-bright);
  stroke-width: 1.4;
  transform-origin: 260px 130px;
  animation: topology-breathe 3.8s ease-in-out infinite;
}

.topology-core circle:last-child {
  fill: var(--red);
  stroke: none;
}

.topology-labels {
  fill: #747e85;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-anchor: middle;
}

@keyframes topology-breathe {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-item {
  display: grid;
  min-height: 160px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
}

.fit-item > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 59, 53, 0.42);
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.fit-item h3 {
  margin-bottom: 7px;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.025em;
}

.fit-item p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-passes {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 59, 53, 0.11), transparent 28rem),
    linear-gradient(135deg, #030405 20%, #08090b);
}

.section-passes::before,
.section-passes::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-passes::before {
  top: -250px;
  right: -180px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 59, 53, 0.12);
  box-shadow:
    0 0 0 62px rgba(255, 255, 255, 0.012),
    0 0 0 125px rgba(255, 255, 255, 0.01);
}

.section-passes::after {
  top: 12%;
  right: 6%;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(255, 59, 53, 0.12), transparent 65%);
  filter: blur(30px);
}

.pass-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 0.68fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.pass-copy h2 {
  max-width: 700px;
  margin-bottom: 28px;
}

.pass-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.availability {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.availability-light {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 13px rgba(255, 184, 74, 0.7);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.availability div {
  display: grid;
  gap: 1px;
}

.availability strong {
  font-size: 0.83rem;
}

.availability small {
  color: var(--muted-dark);
  font-size: 0.73rem;
}

.pass-card {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    rgba(7, 9, 12, 0.92);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(0, 0, 0, 0.6) inset;
  clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.pass-card::before {
  position: absolute;
  top: 0;
  left: 25px;
  width: 100px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(255, 59, 53, 0.75);
  content: "";
}

.pass-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.pass-label {
  display: block;
  margin-bottom: 7px;
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pass-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.pass-year {
  display: grid;
  width: 56px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(58, 215, 255, 0.28);
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pass-price {
  display: grid;
  gap: 3px;
  padding: 28px 0 25px;
  border-bottom: 1px solid var(--line);
}

.price-value {
  font-family: "Gendy", "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.pass-price small {
  color: var(--muted-dark);
  font-size: 0.73rem;
}

.pass-includes {
  display: grid;
  gap: 13px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.pass-includes li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #d0d6da;
  font-size: 0.9rem;
}

.pass-includes svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.pass-key {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
  border: 1px solid rgba(97, 216, 254, 0.22);
  color: #bdc6cb;
  background: rgba(97, 216, 254, 0.035);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.pass-key svg {
  width: 16px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.3;
}

.pass-key:hover,
.pass-key:focus-visible {
  border-color: rgba(97, 216, 254, 0.58);
  color: var(--white);
  background: rgba(97, 216, 254, 0.08);
}

.pass-secure,
.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 0.69rem;
  text-align: center;
}

.pass-secure svg,
.form-secure svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.section-faq {
  background: #06080a;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 9vw, 8.5rem);
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  max-width: 500px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  cursor: pointer;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 59, 53, 0.4);
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--red-bright);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item p {
  max-width: 660px;
  margin: -4px 48px 30px 4px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255, 59, 53, 0.12), transparent 30rem),
    #030405;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  inset: 0;
  opacity: 0.3;
  background:
    repeating-linear-gradient(90deg, transparent 0 159px, rgba(255, 255, 255, 0.035) 160px),
    repeating-linear-gradient(0deg, transparent 0 159px, rgba(255, 255, 255, 0.035) 160px);
  mask-image: radial-gradient(circle, #000, transparent 66%);
}

.final-cta::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 22px rgba(255, 59, 53, 0.4);
}

.final-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-core i {
  position: absolute;
  border: 1px solid rgba(255, 59, 53, 0.11);
  border-radius: 50%;
  inset: 11%;
  animation: ring-clockwise 60s linear infinite;
}

.final-core i:nth-child(2) {
  border-style: dashed;
  inset: 24%;
  animation: ring-counter 42s linear infinite;
}

.final-core i:nth-child(3) {
  border-color: rgba(58, 215, 255, 0.12);
  inset: 37%;
  animation-duration: 30s;
}

.final-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding-block: 100px;
  text-align: center;
}

.final-content h2 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
}

.final-content > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  padding: 70px 0 30px;
  background: #050708;
}

.footer-grid {
  display: grid;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.4fr 0.8fr 0.5fr;
  gap: 48px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.85rem;
}

.footer-brand .brand-logo {
  width: 100px;
}

.footer-meta {
  align-self: end;
}

.footer-meta p {
  margin-bottom: 5px;
  color: #aeb5ba;
  font-size: 0.82rem;
}

.footer-meta p:last-child {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 9px;
}

.footer-links a,
.footer-links button {
  min-height: 30px;
  padding: 4px 0;
  border: 0;
  color: #aeb5ba;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: #808990;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.59rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-action {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-strong);
  background: rgba(3, 4, 5, 0.92);
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  visibility: hidden;
  pointer-events: none;
  transform: translateY(120%);
  transition:
    visibility 0s linear 420ms,
    transform 420ms var(--ease-out);
}

.mobile-action.is-visible {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-action > div {
  display: grid;
  gap: 1px;
}

.mobile-action span {
  color: var(--muted-dark);
  font-size: 0.68rem;
}

.mobile-action strong {
  font-size: 0.82rem;
}

.mobile-action button {
  min-height: 48px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 92, 86, 0.9);
  color: var(--white);
  background: linear-gradient(135deg, #e22620, #a90e0a);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

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

.outcome-grid .reveal:nth-child(2),
.fit-list .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.outcome-grid .reveal:nth-child(3),
.fit-list .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.outcome-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.outcome-grid .reveal:nth-child(5) {
  transition-delay: 280ms;
}

.outcome-grid .reveal:nth-child(6) {
  transition-delay: 350ms;
}

.checkout-dialog {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  max-height: min(900px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--white);
  background: #080b0e;
  box-shadow:
    0 50px 140px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 59, 53, 0.08);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.checkout-dialog[open] {
  animation: dialog-in 380ms var(--ease-out);
}

.checkout-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  animation: backdrop-in 260ms ease;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
}

@keyframes backdrop-in {
  from { opacity: 0; }
}

.checkout-shell {
  position: relative;
  max-height: min(900px, calc(100dvh - 32px));
  padding: 22px;
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(58, 215, 255, 0.035), transparent 30%),
    linear-gradient(315deg, rgba(255, 59, 53, 0.05), transparent 30%),
    #080b0e;
}

.checkout-chrome {
  position: sticky;
  z-index: 8;
  top: -22px;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -22px -22px 0;
  padding: 11px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #080b0e 72%, rgba(8, 11, 14, 0.94));
}

.checkout-shell::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 110px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 59, 53, 0.75);
  content: "";
}

.dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  color: #b7bec3;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.dialog-close:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.checkout-brand {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.checkout-brand .brand-logo {
  width: 104px;
}

.checkout-brand > span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-progress {
  display: flex;
  max-width: 340px;
  align-items: center;
  gap: 10px;
  margin: 24px 0 18px;
}

.checkout-progress span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #697179;
  font-size: 0.7rem;
  font-weight: 700;
}

.checkout-progress i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #3a4248;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.55rem;
  font-style: normal;
}

.checkout-progress span.is-active {
  color: var(--white);
}

.checkout-progress span.is-active i {
  border-color: var(--red);
  color: var(--red-bright);
  box-shadow: 0 0 12px rgba(255, 59, 53, 0.12);
}

.checkout-progress b {
  width: 48px;
  height: 1px;
  background: var(--line);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  gap: 20px;
}

.checkout-layout[hidden] {
  display: none !important;
}

.checkout-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: rgba(3, 5, 7, 0.58);
}

.checkout-heading {
  margin-bottom: 26px;
}

.checkout-heading .eyebrow {
  margin-bottom: 10px;
}

.checkout-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
}

.checkout-heading > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.field > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c8ced2;
  font-size: 0.72rem;
  font-weight: 700;
}

.field em {
  color: var(--muted-dark);
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  color: var(--white);
  background: #0a0e11;
  caret-color: var(--cyan);
  outline: 0;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.5;
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  background: #0c1115;
  box-shadow: 0 0 0 3px rgba(97, 216, 254, 0.1);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(255, 59, 53, 0.1);
}

.field small,
.check-error {
  min-height: 0;
  color: #ff8d89;
  font-size: 0.66rem;
}

.field small:empty,
.check-error:empty {
  display: none;
}

.check-field {
  display: grid;
  margin-top: 4px;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #aab2b8;
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.5;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  border-radius: 0;
  accent-color: var(--red);
}

.check-error {
  display: block;
  margin: 4px 0 13px 28px;
}

.checkout-submit {
  margin-top: 18px;
}

.form-error-summary {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-left: 2px solid var(--red);
  color: #ffc3c1;
  background: rgba(255, 59, 53, 0.09);
  font-size: 0.76rem;
}

.form-status {
  min-height: 20px;
  margin-top: 8px;
  color: #ffb3b0;
  font-size: 0.72rem;
  text-align: center;
}

.order-summary {
  position: sticky;
  top: 0;
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 59, 53, 0.05), transparent 45%),
    #0b0f12;
}

.order-visual {
  position: relative;
  display: grid;
  height: 178px;
  margin-bottom: 20px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(125deg, transparent 0 43%, rgba(255, 59, 53, 0.18) 43.2% 43.6%, transparent 43.8%),
    radial-gradient(circle at 78% 24%, rgba(97, 216, 254, 0.12), transparent 38%),
    #06080a;
}

.order-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

.order-visual > span {
  position: absolute;
  right: 9px;
  bottom: 7px;
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.invite-glyph {
  position: relative;
  z-index: 1;
  color: rgba(245, 247, 248, 0.92);
  font-family: "Gendy", "Arial Black", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(255, 59, 53, 0.22);
}

.order-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px 17px;
  border-bottom: 1px solid var(--line);
}

.order-heading > div {
  display: grid;
  gap: 3px;
}

.order-heading span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-heading strong {
  font-size: 0.92rem;
}

.order-heading .order-quantity {
  color: var(--muted-dark);
}

.approval-steps {
  display: grid;
  margin: 10px 2px 0;
  padding: 0;
  list-style: none;
}

.approval-steps li {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 30px 1fr;
  gap: 10px;
}

.approval-steps li > span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.57rem;
  font-weight: 800;
}

.approval-steps li div {
  display: grid;
  gap: 2px;
}

.approval-steps strong {
  font-size: 0.8rem;
}

.approval-steps small {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.45;
}

.order-summary dl {
  margin: 14px 2px;
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}

.order-summary dt,
.order-summary dd {
  font-size: 0.73rem;
}

.order-summary dt {
  color: var(--muted-dark);
}

.order-summary dd {
  margin: 0;
  color: #c2c9cd;
  text-align: right;
}

.order-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px 0;
  border-top: 1px solid var(--line);
}

.order-total span {
  color: var(--muted);
  font-size: 0.78rem;
}

.order-total strong {
  font-size: 1.05rem;
  text-align: right;
}

.order-summary > p {
  margin: 16px 2px 0;
  color: #6d767d;
  font-size: 0.67rem;
  line-height: 1.5;
}

.checkout-success {
  display: grid;
  min-height: 590px;
  place-content: center;
  justify-items: center;
  padding: 70px 24px;
  text-align: center;
}

.checkout-success[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(58, 215, 255, 0.42);
  color: var(--cyan);
  box-shadow: 0 0 28px rgba(58, 215, 255, 0.1);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.success-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.checkout-success h2 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.checkout-success > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-success code {
  padding: 2px 5px;
  color: var(--cyan);
  background: rgba(58, 215, 255, 0.08);
  font-size: 0.84em;
}

.success-reference {
  display: grid;
  min-width: min(100%, 340px);
  gap: 2px;
  margin-bottom: 28px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.success-reference span {
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.success-reference strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.checkout-progress span.is-complete {
  color: #aeb7bd;
}

.checkout-progress span.is-complete i {
  border-color: var(--cyan);
  color: var(--cyan);
}

.access-dialog {
  width: min(1100px, calc(100% - 32px));
}

.access-shell {
  min-height: min(720px, calc(100dvh - 32px));
}

.access-grid {
  display: grid;
  min-height: 590px;
  margin-top: 22px;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: 20px;
}

.access-grid[hidden],
.access-unlocked[hidden] {
  display: none !important;
}

.access-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.access-form .checkout-heading h2 {
  max-width: 520px;
}

.access-form .checkout-heading > p:not(.eyebrow) {
  max-width: 520px;
}

.access-key-field {
  margin-top: 8px;
  margin-bottom: 8px;
}

.access-input-shell {
  position: relative;
}

.access-input-shell > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 16px;
  width: 21px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.3;
  transform: translateY(-50%);
  pointer-events: none;
}

.field .access-input-shell input {
  min-height: 62px;
  padding-left: 52px;
  border-color: rgba(97, 216, 254, 0.24);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field .access-input-shell input::placeholder {
  color: #515b62;
  opacity: 1;
}

.access-submit {
  margin-top: 18px;
}

.access-core {
  position: relative;
  display: grid;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(97, 216, 254, 0.18);
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 59, 53, 0.1), transparent 31%),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(255, 255, 255, 0.025) 60px),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(255, 255, 255, 0.025) 60px),
    #05080a;
  place-items: center;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.access-core::before,
.access-core::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.access-core::before {
  top: 0;
  left: 36px;
  width: 96px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(97, 216, 254, 0.65);
}

.access-core::after {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(97, 216, 254, 0.05), transparent 28%),
    linear-gradient(315deg, rgba(255, 59, 53, 0.07), transparent 28%);
}

.access-core-topline {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: #adb6bc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.access-core-topline i {
  color: var(--red-bright);
  font-style: normal;
}

.access-core > svg {
  position: relative;
  z-index: 1;
  display: block;
  width: min(92%, 540px);
  height: auto;
}

.core-halo {
  fill: none;
  stroke: rgba(225, 235, 240, 0.1);
  stroke-dasharray: 4 8 18 7;
  stroke-width: 1;
  transform-origin: 300px 300px;
  animation: ring-clockwise 50s linear infinite;
}

.core-halo-inner {
  stroke: rgba(97, 216, 254, 0.16);
  stroke-dasharray: 2 7 24 5;
  animation: ring-counter 34s linear infinite;
}

.assembly-lines {
  fill: none;
  stroke: url("#access-core-line");
  stroke-dasharray: 7 8;
  stroke-width: 1.4;
  animation: access-current 3.6s linear infinite;
}

.core-module {
  fill: rgba(7, 10, 12, 0.94);
  stroke: rgba(97, 216, 254, 0.54);
  stroke-width: 1.5;
}

.core-module:nth-of-type(even) {
  stroke: rgba(255, 92, 86, 0.62);
}

.core-module text {
  fill: #bdc7cd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 17px;
  font-weight: 800;
  text-anchor: middle;
}

.human-core {
  fill: rgba(255, 59, 53, 0.07);
  stroke: var(--red-bright);
  stroke-width: 1.7;
  transform-origin: 300px 300px;
  animation: human-core-pulse 2.8s ease-in-out infinite;
}

.human-core circle {
  fill: var(--red);
  stroke: none;
}

.access-core-legend {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.access-core-legend span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #69737a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.48rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.access-core-legend i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 7px rgba(97, 216, 254, 0.72);
}

.access-core-legend span:nth-child(even) i {
  background: var(--red);
  box-shadow: 0 0 7px rgba(255, 59, 53, 0.72);
}

@keyframes access-current {
  to { stroke-dashoffset: -30; }
}

@keyframes human-core-pulse {
  0%, 100% { opacity: 0.68; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.03); }
}

.access-unlocked {
  display: grid;
  min-height: 610px;
  place-content: center;
  justify-items: center;
  padding: 68px 28px 48px;
  text-align: center;
}

.unlock-signal {
  position: relative;
  display: flex;
  width: min(100%, 480px);
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.unlock-signal::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--red), var(--cyan));
  box-shadow: 0 0 18px rgba(255, 59, 53, 0.34);
  content: "";
}

.unlock-signal > span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(97, 216, 254, 0.5);
  background: #080b0e;
  transform: rotate(45deg);
  animation: unlock-node 600ms var(--ease-out) both;
}

.unlock-signal > span:nth-child(2) { animation-delay: 90ms; }
.unlock-signal > span:nth-child(3) { animation-delay: 180ms; }
.unlock-signal > span:nth-child(4) { animation-delay: 270ms; }
.unlock-signal > span:nth-child(5) { animation-delay: 360ms; }

.unlock-signal > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 92, 86, 0.74);
  color: var(--red-bright);
  background: #080b0e;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  box-shadow: 0 0 36px rgba(255, 59, 53, 0.16);
  transform: translate(-50%, -50%);
}

.unlock-signal svg {
  width: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@keyframes unlock-node {
  from { opacity: 0; transform: rotate(45deg) scale(0.35); }
}

.access-unlocked h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: "Gendy", "Arial Black", sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.checkout-success h2:focus,
.access-unlocked h2:focus {
  outline: none;
}

.access-unlocked > p:not(.eyebrow, .unlock-note) {
  max-width: 640px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.unlock-details {
  display: grid;
  width: min(100%, 760px);
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.unlock-details div {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 4px;
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.unlock-details span {
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.unlock-details strong {
  font-size: 0.82rem;
}

.unlock-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.unlock-actions .button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  filter: grayscale(0.35);
}

.unlock-note {
  min-height: 20px;
  margin: 13px 0 0;
  color: var(--amber);
  font-size: 0.7rem;
}

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

.hero-lede-mobile {
  display: none;
}

.dialog-mode-switch {
  display: flex;
  margin-left: auto;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.34);
}

.dialog-mode-switch button {
  min-height: 34px;
  padding: 7px 12px;
  border: 0;
  color: #778189;
  background: transparent;
  cursor: pointer;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.dialog-mode-switch button:hover {
  color: var(--white);
}

.dialog-mode-switch button.is-active {
  color: var(--white);
  background: rgba(255, 59, 53, 0.13);
  box-shadow: 0 0 18px rgba(255, 59, 53, 0.08) inset;
}

.access-dialog .dialog-mode-switch button.is-active {
  background: rgba(97, 216, 254, 0.1);
  box-shadow: 0 0 18px rgba(97, 216, 254, 0.07) inset;
}

.checkout-form {
  position: relative;
  overflow: hidden;
}

.mission-stage {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.mission-stage[hidden] {
  display: none !important;
}

.mission-stage.is-active {
  animation: mission-stage-in 460ms var(--ease-out) both;
}

@keyframes mission-stage-in {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
}

.mission-nav {
  display: grid;
  margin-top: 18px;
  grid-template-columns: minmax(120px, 0.42fr) minmax(210px, 1fr);
  gap: 10px;
}

.mission-nav-forward {
  grid-template-columns: 1fr;
}

.intent-starters {
  display: grid;
  gap: 8px;
  margin: 4px 0 14px;
}

.intent-starters > span {
  color: #c8ced2;
  font-size: 0.72rem;
  font-weight: 700;
}

.intent-starters > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.intent-starters button {
  min-height: 42px;
  padding: 8px;
  border: 1px solid rgba(97, 216, 254, 0.19);
  color: #9aa5ac;
  background: rgba(97, 216, 254, 0.025);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease-out);
}

.intent-starters button:hover,
.intent-starters button:focus-visible,
.intent-starters button.is-selected {
  border-color: rgba(97, 216, 254, 0.62);
  color: var(--white);
  background: rgba(97, 216, 254, 0.09);
  transform: translateY(-1px);
}

.transmission-overlay {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-content: center;
  justify-items: center;
  gap: 12px;
  opacity: 0;
  background: rgba(3, 5, 7, 0.86);
  backdrop-filter: blur(5px);
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.transmission-overlay::before {
  width: 148px;
  height: 148px;
  border: 1px solid rgba(97, 216, 254, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 59, 53, 0.2) 0 4px, transparent 5px),
    conic-gradient(from 0deg, transparent, rgba(97, 216, 254, 0.7), transparent 28%);
  box-shadow: 0 0 46px rgba(97, 216, 254, 0.08);
  content: "";
  animation: transmission-spin 1.4s linear infinite;
}

.transmission-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(97, 216, 254, 0.9);
  animation: transmission-ping 1s ease-in-out infinite;
}

.transmission-overlay i:nth-child(2) {
  margin: -56px 0 0 48px;
  animation-delay: 160ms;
}

.transmission-overlay i:nth-child(3) {
  margin: 47px 0 0 -54px;
  background: var(--red);
  box-shadow: 0 0 13px rgba(255, 59, 53, 0.9);
  animation-delay: 320ms;
}

.transmission-overlay strong {
  color: #dce3e7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-form.is-transmitting .transmission-overlay {
  visibility: visible;
  opacity: 1;
}

@keyframes transmission-spin {
  to { transform: rotate(1turn); }
}

@keyframes transmission-ping {
  50% { opacity: 0.25; transform: scale(0.5); }
}

.mission-console {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.mission-dossier {
  position: relative;
  display: grid;
  min-height: 260px;
  margin-bottom: 20px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(97, 216, 254, 0.1), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #06080a;
  background-size: auto, 26px 26px, 26px 26px, auto;
}

.mission-orbits,
.mission-orbits::before,
.mission-orbits::after {
  position: absolute;
  width: 196px;
  height: 196px;
  border: 1px solid rgba(97, 216, 254, 0.18);
  border-radius: 50%;
}

.mission-orbits {
  animation: ring-clockwise 26s linear infinite;
}

.mission-orbits::before,
.mission-orbits::after {
  inset: 18px;
  width: auto;
  height: auto;
  content: "";
}

.mission-orbits::after {
  inset: 48px;
  border-color: rgba(255, 59, 53, 0.24);
  border-style: dashed;
  animation: ring-counter 13s linear infinite;
}

.mission-orbits i {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px rgba(97, 216, 254, 0.9);
}

.mission-orbits i:nth-child(2) {
  top: 8%;
  right: 18%;
  left: auto;
  background: var(--red);
  box-shadow: 0 0 15px rgba(255, 59, 53, 0.9);
}

.mission-orbits i:nth-child(3) {
  top: auto;
  right: 9%;
  bottom: 14%;
  left: auto;
}

.mission-avatar {
  position: relative;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 92, 86, 0.72);
  color: var(--white);
  background: #080b0e;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  box-shadow: 0 0 36px rgba(255, 59, 53, 0.14);
  font-family: "Gendy", "Arial Black", sans-serif;
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}

.mission-ping {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 13px rgba(255, 59, 53, 0.9);
  animation: status-pulse 1.8s ease-in-out infinite;
}

.mission-ping-a {
  top: 24px;
  right: 32px;
}

.mission-ping-b {
  bottom: 28px;
  left: 34px;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(97, 216, 254, 0.9);
  animation-delay: 480ms;
}

.mission-console-heading {
  display: grid;
  gap: 4px;
}

.mission-console-heading span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mission-console-heading strong {
  font-size: 1.02rem;
}

.mission-meter {
  height: 3px;
  margin: 16px 0 13px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.mission-meter i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  box-shadow: 0 0 14px rgba(97, 216, 254, 0.45);
  transition: width 420ms var(--ease-out);
}

.mission-readouts {
  display: grid;
  margin: 0;
}

.mission-readouts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.mission-readouts dt,
.mission-readouts dd {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mission-readouts dt {
  color: #68737a;
}

.mission-readouts dd {
  color: #c5cdd2;
}

.mission-console > p {
  margin: auto 0 0;
  padding-top: 16px;
  color: #768087;
  font-size: 0.68rem;
  line-height: 1.5;
}

.success-beacon {
  position: relative;
  display: grid;
  width: 170px;
  height: 170px;
  margin-bottom: 24px;
  place-items: center;
}

.success-beacon::before,
.success-beacon::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(97, 216, 254, 0.26);
  border-radius: 50%;
  content: "";
  animation: beacon-orbit 8s linear infinite;
}

.success-beacon::after {
  inset: 25px;
  border-color: rgba(255, 59, 53, 0.32);
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 5s;
}

.success-beacon > span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 17px rgba(97, 216, 254, 0.9);
}

.success-beacon > span:nth-child(2) {
  top: 14%;
  right: 14%;
  left: auto;
  background: var(--red);
  box-shadow: 0 0 17px rgba(255, 59, 53, 0.9);
}

.success-beacon > span:nth-child(3) {
  top: auto;
  right: 20%;
  bottom: 7%;
  left: auto;
}

.success-beacon > i {
  position: relative;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--cyan);
  background: #080b0e;
  border: 1px solid rgba(97, 216, 254, 0.58);
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
  box-shadow: 0 0 34px rgba(97, 216, 254, 0.14);
}

.success-beacon svg {
  width: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.checkout-success[data-mode="preview"] .success-beacon > i {
  border-color: rgba(255, 184, 74, 0.62);
  color: var(--amber);
}

@keyframes beacon-orbit {
  to { transform: rotate(1turn); }
}

.key-charge {
  display: grid;
  gap: 8px;
  margin: 10px 0 3px;
}

.key-charge > div {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}

.key-charge > div > span {
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  transform: skewX(-18deg);
  transition:
    background-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.key-charge > div > span.is-charged {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(97, 216, 254, 0.65);
  transform: skewX(-18deg) scaleY(1.35);
}

.key-charge > div > span.is-charged:nth-child(n + 9) {
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 59, 53, 0.65);
}

.key-charge small {
  color: #69747b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.key-charge b {
  color: var(--cyan);
  font-weight: 800;
}

.core-module {
  opacity: 0.3;
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    transform 360ms var(--ease-out);
}

.core-module.is-charged,
.access-dialog.is-verifying .core-module {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(97, 216, 254, 0.4));
  transform: scale(1.035);
}

.access-dialog.is-verifying .assembly-lines {
  stroke-dasharray: 3 5;
  stroke-width: 2.4;
  animation-duration: 720ms;
}

.access-dialog.is-verifying .human-core {
  filter: drop-shadow(0 0 18px rgba(255, 59, 53, 0.55));
  animation-duration: 760ms;
}

.key-core-readout {
  position: absolute;
  z-index: 3;
  top: 58px;
  right: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #6e7980;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.key-core-readout i {
  color: var(--cyan);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.access-dialog.is-verifying .access-core::after {
  background:
    linear-gradient(180deg, transparent 0 38%, rgba(97, 216, 254, 0.14) 49%, rgba(97, 216, 254, 0.72) 50%, rgba(97, 216, 254, 0.14) 51%, transparent 62%),
    linear-gradient(135deg, rgba(97, 216, 254, 0.05), transparent 28%),
    linear-gradient(315deg, rgba(255, 59, 53, 0.07), transparent 28%);
  background-size: 100% 220%, auto, auto;
  animation: key-scan 1.2s linear infinite;
}

.access-dialog.is-denied .access-input-shell {
  animation: signal-denied 420ms ease;
}

.access-dialog.is-denied .key-charge > div > span.is-charged {
  background: var(--red);
  box-shadow: 0 0 11px rgba(255, 59, 53, 0.7);
}

@keyframes key-scan {
  from { background-position: 0 -100%, 0 0, 0 0; }
  to { background-position: 0 100%, 0 0, 0 0; }
}

@keyframes signal-denied {
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(2px); }
}

.clearance-stamp {
  margin: 0 0 12px;
  padding: 6px 12px;
  border: 1px solid rgba(97, 216, 254, 0.5);
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  animation: clearance-stamp-in 540ms 520ms var(--ease-out) both;
}

.access-dialog.is-assembling .unlock-signal > span {
  animation-name: module-assemble;
}

@keyframes module-assemble {
  from {
    opacity: 0;
    transform: translate(var(--assemble-x, 0), var(--assemble-y, 0)) rotate(135deg) scale(0.25);
  }
}

@keyframes clearance-stamp-in {
  from {
    opacity: 0;
    transform: rotate(-8deg) scale(1.35);
  }
}

@media (max-width: 1100px) {
  .header-key span,
  .header-cta span {
    font-size: 0;
  }

  .header-key span::after {
    font-size: 0.68rem;
    content: "Key";
  }

  .header-cta span::after {
    font-size: 0.7rem;
    content: "Request";
  }

  .hero h1 {
    font-size: clamp(4rem, 7.8vw, 6.8rem);
  }

  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-card:first-child,
  .module-card:nth-child(4) {
    border-left: 0;
  }

  .module-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .module-card-wide {
    grid-column: span 1;
  }

  .module-card {
    min-height: 292px;
  }

  .module-icon {
    margin-bottom: 34px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .experience-panel {
    backdrop-filter: none;
  }

  .takeaway-card {
    width: min(520px, 72%);
    margin: 0 0 0 auto;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

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

  .brand-logo {
    width: 120px;
  }

  .hero {
    min-height: max(1000px, 145svh);
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-media video {
    object-position: 61% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(3, 4, 5, 0.94), rgba(3, 4, 5, 0.45) 62%, rgba(3, 4, 5, 0.18)),
      linear-gradient(180deg, rgba(3, 4, 5, 0.58), rgba(3, 4, 5, 0.2) 30%, rgba(3, 4, 5, 0.96) 90%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .section-intro,
  .program-layout,
  .fit-layout,
  .pass-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 2rem;
  }

  .section-intro > p {
    max-width: 650px;
  }

  .program-layout,
  .fit-layout,
  .faq-layout {
    gap: 3.5rem;
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .pass-card {
    width: 100%;
    justify-self: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-auto-flow: column;
    justify-content: start;
    gap: 28px;
  }

  .checkout-dialog {
    width: min(760px, calc(100% - 24px));
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-form {
    grid-row: 2;
  }

  .mission-console {
    display: grid;
    min-height: 136px;
    grid-row: 1;
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 18px;
    align-items: center;
  }

  .mission-dossier {
    min-height: 110px;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .mission-orbits,
  .mission-orbits::before,
  .mission-orbits::after {
    width: 94px;
    height: 94px;
  }

  .mission-orbits::before,
  .mission-orbits::after {
    width: auto;
    height: auto;
  }

  .mission-orbits::after {
    inset: 26px;
  }

  .mission-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }

  .mission-console-heading,
  .mission-meter,
  .mission-readouts {
    grid-column: 2;
  }

  .mission-meter {
    width: 100%;
    margin: 10px 0 7px;
  }

  .mission-readouts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .mission-readouts div {
    display: grid;
    justify-content: initial;
    gap: 3px;
    padding: 7px 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .mission-readouts dd {
    text-align: left;
  }

  .mission-console > p {
    display: none;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-form {
    grid-row: 2;
  }

  .access-core {
    min-height: 248px;
    grid-row: 1;
  }

  .access-core > svg {
    width: min(72%, 310px);
  }

  .order-summary {
    position: static;
  }

  .order-visual {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --section-space: 5.25rem;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 62px;
  }

  .brand-logo {
    width: 100px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-key {
    min-height: 40px;
    padding-inline: 8px;
  }

  .header-key span,
  .header-cta span {
    font-size: 0;
  }

  .header-key span::after {
    font-size: 0.68rem;
    content: "Key";
  }

  .header-cta span::after {
    font-size: 0.7rem;
    content: "Request";
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    min-height: max(820px, 118svh);
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-media video {
    object-position: 63% center;
    filter: saturate(0.94) contrast(1.06) brightness(0.9);
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(3, 4, 5, 0.76), rgba(3, 4, 5, 0.1)),
      linear-gradient(180deg, rgba(3, 4, 5, 0.42), rgba(3, 4, 5, 0.12) 31%, rgba(3, 4, 5, 0.42) 74%, rgba(3, 4, 5, 0.82) 100%);
  }

  .hero-grid {
    padding-top: 90px;
    padding-bottom: 48px;
  }

  .hero-copy {
    align-self: auto;
    padding-top: 0;
  }

  .system-kicker {
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 0.62rem;
  }

  .kicker-divider {
    width: 20px;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(3.35rem, 16.2vw, 4.9rem);
    line-height: 0.85;
  }

  .hero h1 span {
    font-size: 0.55em;
    line-height: 0.95;
  }

  .hero-lede {
    max-width: 530px;
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .hero-lede-desktop {
    display: none;
  }

  .hero-lede-mobile {
    display: inline;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-ghost,
  .hero-note {
    display: none;
  }

  .hero-keyline {
    width: 100%;
    min-height: 52px;
    margin-top: 13px;
    padding-block: 6px;
    background: rgba(3, 5, 7, 0.44);
    backdrop-filter: blur(8px);
  }

  .scroll-cue {
    display: none;
  }

  .telemetry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .telemetry-item {
    min-height: 104px;
    padding: 18px 15px;
  }

  .telemetry-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .telemetry-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .telemetry-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
  }

  .section-intro {
    margin-bottom: 2.8rem;
  }

  .section-intro > p,
  .program-copy > p:not(.eyebrow),
  .experience-lede,
  .day-copy p,
  .fit-item p,
  .pass-copy > p:not(.eyebrow) {
    display: none;
  }

  .outcome-grid {
    display: flex;
    gap: 12px;
    margin-right: -15px;
    padding-right: 15px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }

  .outcome-grid::-webkit-scrollbar {
    display: none;
  }

  .module-card,
  .module-card:nth-child(n) {
    min-width: 0;
    min-height: 226px;
    flex: 0 0 min(82vw, 340px);
    border-left: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .module-icon {
    margin-bottom: 20px;
  }

  .module-card p {
    display: none;
  }

  .program-rail {
    padding: 24px 18px 0;
  }

  .week-scanner {
    width: 100%;
    margin-top: 32px;
  }

  .program-day {
    min-height: 0;
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .program-rail::before {
    left: 41px;
  }

  .day-marker {
    width: 46px;
    height: 46px;
  }

  .day-meta {
    display: grid;
    gap: 4px;
  }

  .section-experience {
    min-height: 0;
  }

  .experience-image {
    opacity: 0.72;
  }

  .experience-panel {
    padding: 26px 22px;
  }

  .experience-panel h2 {
    font-size: clamp(2.9rem, 13vw, 4.35rem);
  }

  .experience-features {
    grid-template-columns: 1fr;
  }

  .experience-features li:nth-child(n) {
    padding-inline: 0;
    border-right: 0;
  }

  .takeaway-card {
    width: 100%;
  }

  .fit-item {
    min-height: 0;
    padding-block: 24px;
  }

  .fit-topology {
    width: 100%;
    margin-top: 32px;
  }

  .pass-card {
    padding: 24px 20px;
  }

  .price-value {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .faq-item summary {
    min-height: 74px;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-core {
    width: 125vw;
  }

  .final-content {
    padding-block: 90px;
  }

  .final-content .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-meta {
    align-self: start;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
    grid-auto-flow: row;
    gap: 6px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-action {
    display: flex;
  }

  .site-footer {
    padding-bottom: calc(44px + env(safe-area-inset-bottom));
  }

  .checkout-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border: 0;
    clip-path: none;
  }

  .checkout-shell {
    height: 100dvh;
    max-height: 100dvh;
    padding: 16px 14px calc(28px + env(safe-area-inset-bottom));
  }

  .checkout-chrome {
    top: -16px;
    min-height: 62px;
    margin: -16px -14px 0;
    gap: 8px;
    padding: 9px 14px;
  }

  .checkout-brand {
    min-height: 44px;
  }

  .checkout-brand .brand-logo {
    width: 96px;
  }

  .checkout-brand > span {
    display: none;
  }

  .checkout-progress {
    max-width: 100%;
    justify-content: space-between;
    gap: 5px;
    margin: 14px 0 12px;
  }

  .checkout-progress b {
    min-width: 10px;
    width: auto;
    flex: 1;
  }

  .checkout-progress span {
    gap: 4px;
    font-size: 0.6rem;
  }

  .checkout-layout {
    gap: 14px;
  }

  .access-grid {
    min-height: 0;
    margin-top: 12px;
    gap: 14px;
  }

  .access-form {
    min-height: 0;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .access-core {
    min-height: 214px;
  }

  .access-core > svg {
    width: min(76%, 238px);
  }

  .access-core-topline {
    font-size: 0.5rem;
  }

  .access-core-legend {
    display: none;
  }

  .key-core-readout {
    top: auto;
    right: 12px;
    bottom: 10px;
  }

  .checkout-form {
    padding: 20px 16px;
  }

  .checkout-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3rem);
  }

  .checkout-heading {
    margin-bottom: 20px;
  }

  .checkout-heading > p:not(.eyebrow) {
    font-size: 0.8rem;
  }

  .mission-console {
    min-height: 112px;
    padding: 10px;
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 12px;
  }

  .mission-dossier {
    min-height: 90px;
  }

  .mission-orbits,
  .mission-orbits::before,
  .mission-orbits::after {
    width: 76px;
    height: 76px;
  }

  .mission-orbits::before,
  .mission-orbits::after {
    width: auto;
    height: auto;
  }

  .mission-orbits::after {
    inset: 20px;
  }

  .mission-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .mission-console-heading strong {
    font-size: 0.85rem;
  }

  .mission-readouts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mission-readouts div:nth-child(3) {
    display: none;
  }

  .mission-readouts dt,
  .mission-readouts dd {
    font-size: 0.48rem;
  }

  .intent-starters > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-nav {
    grid-template-columns: minmax(94px, 0.38fr) minmax(0, 1fr);
  }

  .mission-nav.mission-nav-forward {
    grid-template-columns: 1fr;
  }

  .mission-nav .button {
    min-height: 50px;
    padding-inline: 13px;
    letter-spacing: 0.07em;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field input,
  .field textarea {
    min-height: 52px;
    font-size: 1rem;
  }

  .order-summary {
    padding: 15px;
  }

  .order-heading {
    padding-bottom: 12px;
  }

  .order-summary > p {
    color: var(--muted-dark);
  }

  .checkout-success {
    min-height: calc(100dvh - 110px);
    padding: 54px 10px;
  }

  .success-actions {
    display: grid;
    width: 100%;
  }

  .access-unlocked {
    min-height: calc(100dvh - 96px);
    padding: 40px 4px 30px;
  }

  .unlock-signal {
    width: min(92%, 380px);
    min-height: 88px;
  }

  .unlock-signal > span {
    width: 25px;
    height: 25px;
  }

  .unlock-signal > i {
    width: 62px;
    height: 62px;
  }

  .access-unlocked h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .unlock-details {
    grid-template-columns: 1fr;
  }

  .unlock-details div {
    min-height: 66px;
  }

  .unlock-actions {
    display: grid;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .header-cta span {
    font-size: 0;
  }

  .header-cta span::after {
    font-size: 0.7rem;
    content: "Request";
  }

  .header-key span {
    font-size: 0;
  }

  .header-key span::after {
    font-size: 0.68rem;
    content: "Key";
  }

  .hero {
    min-height: max(780px, 116svh);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16.5vw, 4.2rem);
  }

  .experience-panel h2 {
    font-size: clamp(2.55rem, 12.5vw, 3.25rem);
  }

  .telemetry-item strong {
    font-size: 0.83rem;
  }

  .telemetry-item small {
    font-size: 0.67rem;
  }

  .module-card {
    padding: 20px;
  }

  .checkout-chrome {
    min-height: 108px;
    flex-wrap: wrap;
    align-content: center;
  }

  .checkout-brand {
    flex: 1;
  }

  .dialog-mode-switch {
    width: 100%;
    margin: 0;
    order: 3;
  }

  .dialog-mode-switch button {
    flex: 1;
    min-height: 38px;
  }

  .checkout-progress span {
    font-size: 0;
  }

  .checkout-progress span i {
    font-size: 0.55rem;
  }

  .mission-console {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .mission-dossier {
    min-height: 82px;
  }

  .mobile-action > div {
    max-width: 130px;
  }

  .mobile-action strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (hover: none), (pointer: coarse) {
  .module-card {
    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-reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media video {
    display: none;
  }

  .hero {
    min-height: max(700px, 100svh);
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    color: #111;
    background: #fff;
  }

  .ambient-shell,
  .site-header,
  .hero-media,
  .scroll-cue,
  .mobile-action,
  .button,
  .checkout-dialog,
  .final-core {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
    color: #fff;
    background: #111;
  }

  .hero-grid,
  .section-intro,
  .program-layout,
  .experience-layout,
  .fit-layout,
  .pass-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 44px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
