@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b0c12;
  --surface: #11131a;
  --surface-2: #161822;
  --surface-bright: #1b1d2a;
  --border: #202330;
  --border-2: #303447;
  --text: #f4f4f9;
  --text-dim: #8e8ea0;
  --text-faint: #5a5a70;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-glow: rgba(124, 58, 237, .42);
  --orb-pink: #f472b6;
  --orb-pink-rgb: 244, 114, 182;
  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, .3);
  --money: #10b981;
  --money-glow: rgba(16, 185, 129, .3);
  --xp: #fbbf24;
  --xp-glow: rgba(251, 191, 36, .28);
  --category-physical: #ef4444;
  --category-creative: #f59e0b;
  --category-social: #10b981;
  --category-cognitive: #6366f1;
  --category-technical: #06b6d4;
  --serif: 'Instrument Serif', Georgia, serif;
  --display: 'Space Grotesk', sans-serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
  --narrow-width: 780px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: none;
  content: '';
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.85rem, 6.4vw, 6.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  color: var(--text-dim);
}

.container {
  width: min(var(--max-width), calc(100% - 3rem));
  margin-inline: auto;
}

.narrow {
  width: min(var(--narrow-width), calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 9.5rem);
}

.section + .section {
  border-top: 1px solid var(--border);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  transition: width .1s linear;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(26, 26, 40, .8);
  background: rgba(7, 7, 12, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
}

.brand-mark {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a,
.footer-nav a {
  color: var(--text-dim);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.top-apps {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.top-app {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: rgba(14, 14, 22, .78);
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.top-app svg {
  width: 1.05rem;
  height: 1.05rem;
}

.top-app:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 .5rem 1.4rem rgba(124, 92, 252, .22);
}

.top-app:last-child:hover {
  border-color: var(--money);
  box-shadow: 0 .5rem 1.4rem rgba(52, 211, 153, .2);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid var(--border-2);
  border-radius: .7rem;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  content: '';
}

.menu-toggle span::before {
  transform: translateY(-5px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.site-header.is-open .menu-toggle span {
  background: transparent;
}

.site-header.is-open .menu-toggle span::before {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span::after {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.15rem;
  border: 1px solid rgba(124, 58, 237, .58);
  border-radius: 999px;
  background: rgba(124, 58, 237, .18);
  box-shadow: 0 0 24px -7px rgba(124, 58, 237, .2);
  color: var(--text);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button > span[aria-hidden="true"] {
  color: var(--accent-light);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, .78);
  background: rgba(124, 58, 237, .24);
  box-shadow: 0 .8rem 2rem rgba(124, 92, 252, .25);
}

.button-small {
  min-height: 2.5rem;
  padding: .55rem .9rem;
  font-size: .82rem;
}

.button-secondary {
  border-color: rgba(124, 58, 237, .36);
  background: rgba(17, 19, 26, .72);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(167, 139, 250, .62);
  background: rgba(124, 58, 237, .12);
  box-shadow: 0 0 24px -7px rgba(124, 58, 237, .16);
}

.button-text {
  padding-inline: 0;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  text-decoration: none;
}

.button-text:hover {
  color: var(--text);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.25rem;
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 1px;
  background: var(--accent);
  content: '';
}

.hero {
  position: relative;
  min-height: min(54rem, calc(100svh - 4.5rem));
  padding-block: clamp(4.5rem, 9vw, 7rem) clamp(4rem, 8vw, 6rem);
  isolation: isolate;
  perspective: 1200px;
  perspective-origin: 50% 42%;
  text-align: center;
}

.hero-edge-art {
  position: absolute;
  z-index: 1;
  top: clamp(1rem, 4vw, 4rem);
  left: calc(50% + clamp(21rem, 32vw, 38rem));
  width: clamp(15rem, 20vw, 25rem);
  aspect-ratio: 1;
  height: auto;
  pointer-events: none;
}

.hero-edge-orb {
  opacity: .82;
  filter: drop-shadow(0 0 2.8rem rgba(124, 58, 237, .18));
}

.hero-edge-orb.is-fallback {
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, rgba(196, 181, 253, .9), rgba(124, 58, 237, .85) 38%, rgba(48, 23, 112, .94) 68%, rgba(11, 12, 18, 0) 72%);
  filter: drop-shadow(0 0 2.8rem rgba(124, 58, 237, .28));
}

.hero-companion-trace {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity .75s ease;
}

.hero-companion-trace.is-active {
  opacity: 1;
}

.hero-companion-trace.is-dissipating {
  opacity: 0;
}

.hero-companion-trace path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero-companion-trace-glow {
  stroke: rgba(124, 58, 237, .3);
  stroke-width: 28;
  filter: blur(13px);
}

.hero-companion-trace-body {
  stroke: rgba(167, 139, 250, .56);
  stroke-width: 14;
  filter: blur(3.5px);
}

.hero-companion-trace-core {
  stroke: url('#hero-companion-trace-core');
  stroke-width: 3.1;
  filter: drop-shadow(0 0 .48rem rgba(196, 181, 253, .78));
}

.hero-companion-trace-streak {
  stroke: rgba(244, 244, 249, .62);
  stroke-width: .8;
  filter: drop-shadow(0 0 .28rem rgba(167, 139, 250, .5));
}

.hero-companion-trace-streak.streak-a {
  opacity: .48;
}

.hero-companion-trace-streak.streak-b {
  opacity: .3;
}

.hero-companion-trace-streak.streak-c {
  opacity: .58;
}

.hero-companion-ship {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: clamp(5.5rem, 7vw, 8rem);
  height: auto;
  opacity: 0;
  transform: translate3d(calc(var(--ship-x, 0px) + var(--ship-parallax-x, 0px)), calc(var(--ship-y, 0px) + var(--ship-parallax-y, 0px)), calc(var(--ship-z, -160px) + var(--ship-parallax-z, 0px))) rotateY(calc(var(--ship-yaw, 0deg) + var(--ship-parallax-yaw, 0deg))) rotateX(calc(var(--ship-pitch, 0deg) + var(--ship-parallax-pitch, 0deg))) rotateZ(var(--ship-angle, 0rad)) scale(var(--ship-scale, .3));
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-companion-ship.is-front {
  z-index: 3;
}

.hero-companion-mote-trail {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -3rem;
  width: 4.5rem;
  height: 4.6rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-companion-ship.is-settled {
  animation: hero-companion-turbulence 1.15s infinite steps(1, end);
  will-change: translate, rotate;
}

@keyframes hero-companion-turbulence {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  11% {
    translate: -.7px .4px;
    rotate: -.35deg;
  }

  24% {
    translate: .5px -.8px;
    rotate: .22deg;
  }

  38% {
    translate: -.35px .65px;
    rotate: .45deg;
  }

  52% {
    translate: .85px .25px;
    rotate: -.28deg;
  }

  67% {
    translate: -.55px -.45px;
    rotate: .18deg;
  }

  83% {
    translate: .3px .7px;
    rotate: -.38deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-companion-ship.is-settled {
    animation: none;
    translate: 0 0;
    rotate: 0deg;
  }
}

.hero-companion-ship-art {
  transition: opacity .35s ease;
}

.hero-companion-ship.is-settled .hero-companion-mote-trail {
  opacity: 1;
  visibility: visible;
}

.hero-companion-ship.is-settled .hero-companion-ship-art {
  opacity: 1;
}

.hero-companion-ship-art {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-companion-ship-shadow {
  fill: rgba(0, 0, 0, .48);
  filter: blur(2.5px);
  transform: translate(.8px, 1.2px);
}

.hero-companion-ship-hull {
  fill: url('#hero-ship-hull');
}

.hero-companion-ship-rim {
  fill: none;
  stroke: url('#hero-ship-rim');
  stroke-width: 1.1;
}

.hero-companion-ship-panels ellipse {
  fill: rgba(0, 0, 0, .16);
  filter: blur(1.5px);
}

.hero-companion-ship-crack {
  fill: none;
  stroke: rgba(167, 139, 250, .2);
  stroke-width: .65;
}

.hero-companion-ship-trail circle {
  fill: #a78bfa;
  opacity: .42;
}

.hero-companion-ship-trail circle:first-child {
  opacity: .75;
}

.hero-companion-ship-eye-glow {
  fill: url('#hero-ship-eye-glow');
}

.hero-companion-ship-eye {
  fill: #c4b5fd;
  filter: drop-shadow(0 0 .25rem rgba(167, 139, 250, .9));
}

.hero-companion-ship-eye-highlight {
  fill: rgba(255, 255, 255, .86);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 70rem);
  margin-inline: auto;
}

.hero h1 {
  max-width: 19ch;
  margin: 0 auto 1.5rem;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  line-height: .9;
}

.hero h1 strong {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.065em;
}

.hero-summary {
  max-width: 36rem;
  margin: 0 auto 1.8rem;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .9rem 1.2rem;
  margin-bottom: .9rem;
}

.hero-note {
  margin-bottom: 0;
  color: var(--text-faint);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-demo {
  position: relative;
}

.demo-window {
  overflow: hidden;
  border: 1px solid var(--border-2);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .35), 0 0 5rem rgba(124, 92, 252, .12);
}

.demo-bar {
  display: flex;
  height: 2.8rem;
  align-items: center;
  gap: .45rem;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.demo-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--border-2);
}

.demo-url {
  margin-left: .45rem;
  color: var(--text-faint);
  font-size: .7rem;
  letter-spacing: .04em;
}

.demo-screen {
  position: relative;
  min-height: 28rem;
  background: var(--surface-2);
}

.demo-screen::after {
  position: absolute;
  right: 1.3rem;
  bottom: 1.2rem;
  left: 1.3rem;
  height: 4.5rem;
  border: 1px solid rgba(124, 92, 252, .28);
  border-radius: .9rem;
  background: linear-gradient(135deg, rgba(124, 92, 252, .2), rgba(14, 14, 22, .5));
  content: '';
  pointer-events: none;
}

.demo-screen video {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  background: var(--surface-2);
}

.demo-caption {
  position: absolute;
  right: 2rem;
  bottom: 2.35rem;
  left: 2rem;
  z-index: 1;
  color: var(--text);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
}

.demo-badge {
  position: absolute;
  right: -1.4rem;
  bottom: -1.6rem;
  z-index: 2;
  max-width: 11rem;
  padding: 1rem;
  border: 1px solid rgba(52, 211, 153, .3);
  border-radius: .9rem;
  background: rgba(14, 14, 22, .94);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .3);
  color: var(--text-dim);
  font-size: .78rem;
}

.demo-badge strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--money);
  font-family: var(--display);
  font-size: 1.3rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  margin-bottom: 1.1rem;
}

.section-heading p {
  max-width: 40rem;
  font-size: 1.08rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center p {
  margin-inline: auto;
}

.section-link {
  margin: 1.5rem 0 0;
}

.definition-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.definition-copy {
  max-width: 48rem;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.7vw, 2.4rem);
  letter-spacing: -.025em;
  line-height: 1.22;
}

.definition-copy em {
  color: var(--accent);
  font-style: normal;
}

.fact-list {
  display: grid;
  gap: .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: .8rem;
  background: var(--surface);
  color: var(--text-dim);
  font-size: .9rem;
}

.fact-list strong {
  display: block;
  margin-bottom: .22rem;
  color: var(--text);
  font-family: var(--display);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step-card {
  min-height: 15rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.step-card:hover,
.feature-card:hover,
.coach-card:hover,
.method-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
}

.step-number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.step-card h3 {
  margin-bottom: .65rem;
  font-size: 1.25rem;
}

.step-card p {
  margin-bottom: 0;
  font-size: .9rem;
}

.goal-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2rem;
}

.goal-chip,
.tag {
  display: inline-flex;
  align-items: center;
  padding: .52rem .75rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-dim);
  font-size: .8rem;
}

.comparison-shell {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-table th {
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 25%;
}

.comparison-table td {
  color: var(--text-dim);
  font-size: .9rem;
}

.comparison-table td:first-child {
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
}

.comparison-table .highlight {
  background: rgba(124, 92, 252, .06);
  color: var(--text);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.feature-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: var(--accent-glow);
  content: '';
  filter: blur(45px);
  opacity: .18;
  pointer-events: none;
}

.feature-index {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.feature-card h3 {
  max-width: 18rem;
  margin-bottom: .7rem;
}

.feature-card p {
  max-width: 32rem;
  margin-bottom: 0;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}

.coach-card {
  min-height: 20rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.coach-card:nth-child(2),
.coach-card:nth-child(4) {
  margin-top: 1.5rem;
}

.coach-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.coach-index::after {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  content: '';
}

.coach-card:nth-child(2) .coach-index::after,
.coach-card:nth-child(4) .coach-index::after {
  background: var(--money);
  box-shadow: 0 0 12px var(--money-glow);
}

.coach-card h3 {
  margin-bottom: .45rem;
  font-size: 1.35rem;
}

.coach-role {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coach-card p {
  margin-bottom: 0;
  font-size: .86rem;
}

.method-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.method-intro h2 {
  margin-bottom: 1.2rem;
}

.method-intro p {
  max-width: 24rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.method-card {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.method-card strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--text);
  font-family: var(--display);
}

.method-card p {
  margin-bottom: 0;
  font-size: .87rem;
}

.boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.boundary > div {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  background: rgba(14, 14, 22, .65);
}

.boundary strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--text);
  font-family: var(--display);
}

.boundary p {
  margin-bottom: 0;
  font-size: .86rem;
}

.pricing-grid {
  display: grid;
  max-width: 58rem;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-inline: auto;
}

.price-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: var(--surface);
}

.price-card.featured {
  border-color: rgba(124, 92, 252, .55);
  background: linear-gradient(155deg, rgba(124, 92, 252, .13), var(--surface) 50%);
  box-shadow: 0 1.5rem 4rem rgba(124, 92, 252, .1);
}

.price-label {
  margin-bottom: 2.5rem;
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: .5rem;
}

.price-amount {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -.06em;
}

.price-amount small {
  color: var(--text-dim);
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: .7rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-dim);
  font-size: .9rem;
}

.price-card li::before {
  position: absolute;
  top: .55rem;
  left: 0;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.price-card .button {
  width: 100%;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  color: var(--text);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--accent);
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 44rem;
  padding: 0 2rem 1.35rem 0;
  color: var(--text-dim);
  font-size: .95rem;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: var(--surface);
}

.newsletter h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.newsletter p {
  margin-bottom: 0;
}

.email-form {
  display: flex;
  min-width: min(100%, 22rem);
  gap: .45rem;
  padding: .3rem;
  border: 1px solid var(--border-2);
  border-radius: .8rem;
  background: var(--bg);
}

.email-form input {
  width: 100%;
  min-width: 0;
  padding: .65rem .7rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: .88rem;
}

.email-form input::placeholder {
  color: var(--text-faint);
}

.email-form button {
  flex: 0 0 auto;
  padding: .65rem .9rem;
  border: 0;
  border-radius: .55rem;
  background: #7c3aed;
  color: #fff;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}

.email-form button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-message {
  display: none;
  margin: .55rem 0 0;
  color: var(--text-dim);
  font-size: .78rem;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  color: var(--money);
}

.site-footer {
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: .8rem;
  font-size: 1rem;
  letter-spacing: -.01em;
}

.footer-column p {
  max-width: 20rem;
  margin-bottom: 0;
  font-size: .86rem;
}

.footer-nav {
  display: grid;
  gap: .55rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: .78rem;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Shared inner pages */
.page-main {
  min-height: 70vh;
}

.page-hero {
  padding-block: clamp(5rem, 10vw, 8rem) 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-hero h1 strong {
  color: var(--accent);
  font-weight: 600;
}

.page-lead {
  max-width: 43rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-top: 1.3rem;
  color: var(--text-faint);
  font-size: .8rem;
}

.content-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  margin: 3.5rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.prose h3 {
  margin: 2.1rem 0 .7rem;
  font-size: 1.35rem;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
}

.prose a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-underline-offset: .18em;
}

.prose ul,
.prose ol {
  display: grid;
  gap: .55rem;
  padding-left: 1.25rem;
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.35rem;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  color: var(--text);
  font-family: var(--display);
  font-size: 1.25rem;
}

.callout {
  margin: 2rem 0;
  padding: 1.35rem;
  border: 1px solid rgba(124, 92, 252, .35);
  border-radius: .9rem;
  background: rgba(124, 92, 252, .08);
}

.callout strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--text);
  font-family: var(--display);
}

.callout p {
  margin-bottom: 0;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16rem;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 6rem;
}

.sidebar-card {
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  background: var(--surface);
}

.sidebar-card h2 {
  margin-bottom: .8rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sidebar-card a {
  display: block;
  padding: .35rem 0;
  color: var(--text-dim);
  font-size: .82rem;
  text-decoration: none;
}

.sidebar-card a:hover {
  color: var(--text);
}

.post-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.post-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.post-card .tag {
  align-self: flex-start;
  margin-bottom: 2.2rem;
  color: var(--accent);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.post-card h2 {
  margin-bottom: .65rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.post-card p {
  margin-bottom: 1.4rem;
  font-size: .9rem;
}

.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  color: var(--text-faint);
  font-size: .75rem;
}

.post-card-meta span:last-child {
  color: var(--accent);
}

.article-header {
  max-width: 55rem;
}

.article-header h1 {
  max-width: 15ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.article-header .page-lead {
  max-width: 43rem;
}

.article-facts {
  margin: 2rem 0 2.5rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(52, 211, 153, .32);
  border-radius: 1rem;
  background: rgba(52, 211, 153, .06);
}

.article-facts h2 {
  margin-bottom: .7rem;
  color: var(--money);
  font-size: 1rem;
  letter-spacing: .02em;
}

.article-facts ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.article-facts li {
  color: var(--text-dim);
  font-size: .92rem;
}

.article-source {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: .78rem;
}

.article-source a {
  color: var(--text-dim);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.press-card,
.press-empty,
.press-kit {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}

.press-empty {
  grid-column: 1 / -1;
  padding-block: 3rem;
  text-align: center;
}

.press-empty h2 {
  margin-bottom: .7rem;
  font-size: 2rem;
}

.press-empty p {
  max-width: 35rem;
  margin: 0 auto 1.3rem;
}

.press-card .tag {
  margin-bottom: 2rem;
}

.press-card h2 {
  margin-bottom: .6rem;
  font-size: 1.3rem;
}

.press-card p {
  margin-bottom: 1.2rem;
  font-size: .88rem;
}

.press-card a {
  color: var(--accent);
  font-size: .85rem;
  text-decoration: none;
}

.press-kit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(124, 92, 252, .1), var(--surface) 55%);
}

.press-kit h2 {
  margin-bottom: .75rem;
  font-size: 1.65rem;
}

.press-kit p {
  margin-bottom: 0;
  font-size: .9rem;
}

.resource-list {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .86rem;
  text-decoration: none;
}

.resource-list a:hover {
  color: var(--text);
}

.resource-list a::after {
  color: var(--accent);
  content: '↗';
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.about-stat {
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  background: var(--surface);
}

.about-stat strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.3rem;
}

.about-stat span {
  color: var(--text-dim);
  font-size: .82rem;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-demo {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coach-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coach-card:nth-child(4) {
    margin-top: 0;
  }

  .coach-card:nth-child(5) {
    grid-column: 2;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .method-intro p {
    max-width: 38rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-grid .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 2rem, var(--max-width));
  }

  .section {
    padding-block: 4.5rem;
  }

  .site-header-inner {
    min-height: 4rem;
  }

  .site-nav {
    position: absolute;
    top: 4rem;
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: .5rem;
    border: 1px solid var(--border-2);
    border-radius: .9rem;
    background: rgba(14, 14, 22, .98);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .35);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: .8rem;
    border-radius: .5rem;
  }

  .site-nav a:hover {
    background: var(--surface-2);
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .definition-layout,
  .feature-grid,
  .pricing-grid,
  .newsletter,
  .boundary,
  .press-kit {
    grid-template-columns: 1fr;
  }

  .definition-copy {
    font-size: 1.65rem;
  }

  .step-grid,
  .method-grid,
  .post-card-grid,
  .press-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coach-card:nth-child(2) {
    margin-top: 1rem;
  }

  .coach-card:nth-child(5) {
    grid-column: auto;
    margin-top: 0;
  }

  .step-card {
    min-height: auto;
  }

  .step-number,
  .feature-index {
    margin-bottom: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .email-form {
    width: 100%;
    min-width: 0;
  }

  .demo-badge {
    right: .8rem;
    bottom: -1.3rem;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: -1;
  }

  .sidebar-card {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ATLVL visual direction: a living system, not a generic SaaS dashboard. */
body {
  background: var(--bg);
}

body::before {
  background: none;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  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='.22'/%3E%3C/svg%3E");
  content: '';
  opacity: .035;
  pointer-events: none;
}

.scroll-progress {
  display: none;
}

.site-header {
  border-bottom-color: rgba(48, 52, 71, .62);
  background: rgba(11, 12, 18, .72);
}

.brand-mark {
  background: var(--accent-light);
  box-shadow: 0 0 18px var(--accent-glow), 0 0 4px var(--accent-light);
}

h1,
h2 {
  letter-spacing: -.055em;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1 strong {
  display: inline;
  text-shadow: 0 0 .65rem rgba(167, 139, 250, .22);
}

@media (min-width: 961px) {
  .landing-console-v2 .hero {
    width: min(calc(100% - 3rem), 1320px);
    min-height: clamp(54rem, 68vw, 70rem);
    align-items: flex-start;
    text-align: left;
  }

  .landing-console-v2 .hero-copy {
    width: min(84%, 136rem);
    margin-right: 0;
    margin-left: clamp(.75rem, 2vw, 2rem);
    text-align: left;
  }

  .landing-console-v2 .hero h1 {
    margin-right: auto;
    margin-left: 0;
  }

  .landing-ru .hero h1 {
    font-size: calc(clamp(3.3rem, 8vw, 6.8rem) - 1.5rem);
  }

  .landing-console-v2 .hero-summary {
    margin-right: auto;
    margin-left: 0;
  }

  .landing-console-v2 .hero-actions {
    justify-content: flex-start;
  }

  .landing-console-v2 .hero-console-wrap {
    position: absolute;
    top: clamp(2.5rem, 5vw, 5rem);
    left: calc(var(--console-bleed) * -1);
    width: calc(100% + var(--console-bleed) + var(--console-bleed));
    margin: 0;
    z-index: 5;
    pointer-events: none;
  }

  .landing-console-v2 .console-stage {
    pointer-events: none;
  }

  .landing-console-v2 .console-node-option,
  .landing-console-v2 .console-expand-control {
    pointer-events: all;
  }

  .landing-console-v2 .console-difficulty {
    pointer-events: auto;
  }

  .landing-console-v2 .console-spacefield {
    opacity: .87;
  }

  .landing-console-v2 .console-orbital-chart {
    opacity: .58;
  }
}

.hero-console-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: clamp(4.5rem, 8vw, 8rem) 0 0;
  padding: clamp(0.1rem, 1.8vw, 0.6rem) 0 clamp(0.15rem, 2.5vw, 0.3rem);
  background: transparent;
  will-change: transform;
}

.hero-console-wrap[data-reveal] {
  transform: translate3d(0, calc(1.2rem + var(--console-parallax, 0px)), 0);
}

.hero-console-wrap[data-reveal].is-visible {
  transform: translate3d(0, var(--console-parallax, 0px), 0);
}

.hero-console {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 7.4;
  grid-template-rows: minmax(0, 1fr);
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero-console::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .035) 0, rgba(255, 255, 255, .035) 1px, transparent 1px, transparent 4px);
  content: '';
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 0%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 0%, #000 50%, transparent 100%);
  opacity: .26;
  pointer-events: none;
}

.hero-console::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(ellipse at 52% 48%, rgba(0, 0, 0, .62), transparent 72%);
  content: '';
  pointer-events: none;
}

.console-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 52% 46% at 60% 44%, rgba(124, 58, 237, .08), transparent 72%),
    transparent;
}

.landing-console-v2 .console-goal-orb {
  position: absolute;
  z-index: 5;
  width: clamp(1.8rem, 2.8vw, 2.8rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .88;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 1.5rem rgba(124, 58, 237, .22));
}

.landing-console-v2 .console-goal-orb.is-fallback {
  background: radial-gradient(circle at 32% 26%, rgba(255, 228, 244, .98), rgba(244, 114, 182, .95) 30%, rgba(124, 58, 237, .82) 64%, rgba(11, 12, 18, 0) 74%);
  filter: drop-shadow(0 0 1.5rem rgba(244, 114, 182, .28));
}

.landing-console-v2 .console-ship-trace {
  position: absolute;
  z-index: 1;
  inset: -13% -8% -12%;
  width: 116%;
  height: 125%;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity .75s ease;
}

.landing-console-v2 .console-ship-trace.is-active {
  opacity: 1;
}

.landing-console-v2 .console-ship-trace.is-dissipating {
  opacity: 0;
}

.landing-console-v2 .console-ship-trace path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.landing-console-v2 .console-ship-trace .hero-companion-trace-core {
  stroke: url('#console-ship-trace-core');
}

.landing-console-v2 .console-stage > .hero-companion-ship {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: clamp(5.5rem, 7vw, 8rem);
  height: auto;
  opacity: 1;
  transform: translate3d(var(--ship-x, 0px), var(--ship-y, 0px), 0) rotateZ(var(--ship-angle, 0rad)) scale(var(--ship-scale, .86));
  transform-origin: 50% 50%;
  pointer-events: none;
  will-change: transform;
}

.landing-console-v2 .console-label-layer {
  position: absolute;
  z-index: 5;
  inset: -13% -8% -12%;
  width: 116%;
  height: 125%;
  overflow: visible;
  pointer-events: none;
}

.landing-console-v2 .console-route .console-node-label,
.landing-console-v2 .console-route .console-next-node-label,
.landing-console-v2 .console-route .console-goal-label {
  visibility: hidden;
}

.landing-console-v2 .console-label-layer-next {
  opacity: 0;
  transition: opacity .35s ease;
}

.landing-console-v2 .console-label-layer-next.is-visible {
  opacity: 1;
}

.landing-console-v2 .console-label-layer .console-node-label.is-active {
  fill: var(--accent-light);
  opacity: 1;
}

.landing-console-v2 .console-label-layer .console-node-label.is-locked {
  opacity: .14;
}

.landing-console-v2 .console-stage > .hero-companion-ship.is-traveling {
  animation: none;
}

.landing-console-v2 .console-stage > .hero-companion-ship.is-settled {
  animation: console-ship-hover 2.6s ease-in-out infinite;
}

@keyframes console-ship-hover {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -2px;
  }
}

.console-grid,
.console-route,
.console-registration {
  position: absolute;
}

.console-grid {
  inset: 0;
  display: none;
}

.console-spacefield,
.console-orbital-chart {
  pointer-events: none;
}

.console-spacefield {
  opacity: .74;
}

.console-star {
  --star-min: .08;
  --star-max: .34;
  fill: rgba(238, 241, 255, .92);
  opacity: var(--star-min);
  animation: console-star-twinkle 3.75s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.star-b,
.star-d,
.star-f,
.star-i,
.star-l,
.star-n,
.star-q,
.star-s,
.star-v,
.star-x,
.star-aa,
.star-ab,
.star-ad {
  --star-min: .06;
  --star-max: .26;
}

.star-c,
.star-e,
.star-h,
.star-k,
.star-o,
.star-r,
.star-w,
.star-z,
.star-ac {
  --star-min: .1;
  --star-max: .44;
}

.star-a,
.star-g,
.star-j,
.star-m,
.star-p,
.star-t,
.star-u,
.star-y {
  animation-delay: -1.8s;
}

.star-b,
.star-e,
.star-h,
.star-l,
.star-q,
.star-v,
.star-aa,
.star-ad {
  animation-delay: -4.2s;
  animation-duration: 4.4s;
}

.star-c,
.star-f,
.star-i,
.star-k,
.star-n,
.star-r,
.star-w,
.star-x,
.star-z {
  animation-delay: -6.1s;
}

.console-orbital-chart {
  opacity: .5;
}

.console-orbit {
  fill: none;
  stroke: rgba(145, 157, 190, .22);
  stroke-dasharray: 118 46;
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.orbit-low {
  stroke: rgba(167, 139, 250, .16);
  stroke-dasharray: 154 66;
}

.orbit-steady {
  stroke: rgba(129, 154, 185, .2);
  stroke-dasharray: 96 42;
}

.orbit-focused {
  stroke: rgba(167, 139, 250, .12);
  stroke-dasharray: 184 82;
}

.console-chart-bearing {
  fill: none;
  stroke: rgba(151, 164, 193, .16);
  stroke-dasharray: 1 13;
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.console-chart-tick {
  fill: none;
  stroke: rgba(167, 139, 250, .32);
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.console-route {
  z-index: 4;
  inset: 5% 3% 4%;
  width: 94%;
  height: 91%;
  overflow: visible;
  pointer-events: none;
}

.landing-console-v2 .hero-console-wrap {
  --console-bleed: clamp(6rem, 11vw, 11rem);
  width: calc(100% + var(--console-bleed) + var(--console-bleed));
  margin: clamp(1.75rem, 3vw, 3.5rem) 0 0 calc(var(--console-bleed) * -1);
}

.landing-console-v2 .hero-console {
  overflow: visible;
  min-height: clamp(34rem, 48vw, 48rem);
  aspect-ratio: 16 / 8.8;
}

.landing-console-v2 .hero-console::before {
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .035) 0, rgba(255, 255, 255, .035) 1px, transparent 1px, transparent 4px);
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 0%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 0%, #000 50%, transparent 100%);
  opacity: .26;
}
.landing-console-v2 .hero-console::after {
  background: none;
  opacity: 0;
}

.landing-console-v2 .console-stage {
  z-index: 2;
  overflow: visible;
  background: transparent;
}

.landing-console-v2 .console-route {
  z-index: 2;
  inset: -13% -8% -12%;
  width: 116%;
  height: 125%;
}
.landing-console-v2 .console-status {
  top: auto;
  right: 1.4rem;
  bottom: 1.15rem;
  left: auto;
  max-width: calc(100% - 2.8rem);
  text-align: right;
}

.landing-console-v2 .console-difficulty {
  z-index: 6;
}

.console-route path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.console-route-branch {
  stroke: rgba(117, 139, 169, .34);
  stroke-width: 1.45;
  opacity: .5;
  transition: stroke .35s ease, stroke-width .35s ease, opacity .35s ease, filter .35s ease;
}

.console-route-branch.is-selected {
  stroke: rgba(167, 139, 250, .52);
  stroke-width: 1.7;
  opacity: .82;
  animation: console-route-focus .85s cubic-bezier(.2, .75, .25, 1) both;
}

.console-route-branch.is-receding {
  stroke: rgba(117, 139, 169, .22);
  opacity: .17;
  filter: none;
}

.console-route-progress {
  stroke: var(--accent-light);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
  filter: drop-shadow(0 0 .3rem rgba(167, 139, 250, .38));
  opacity: 0;
  pointer-events: none;
  transition: filter .35s ease, stroke-width .35s ease;
}

.console-route-progress.is-active {
  opacity: 1;
  animation: console-route-draw 1.2s cubic-bezier(.2, .75, .25, 1) forwards;
}

.console-route-progress:not(.is-active) {
  stroke-dashoffset: 1;
}

.console-next-route {
  display: none;
  visibility: hidden;
  stroke: rgba(129, 148, 178, .42);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  pointer-events: none;
  transition: stroke .35s ease, opacity .35s ease, visibility 0s linear .35s;
}

.console-next-route.is-available {
  display: inline;
  visibility: visible;
  stroke: rgba(167, 139, 250, .4);
  stroke-width: 1.5;
  opacity: .56;
  transition-delay: 0s;
}

.console-next-route.is-selected {
  stroke: rgba(167, 139, 250, .64);
  opacity: .7;
}

.console-next-route.is-receding {
  stroke: rgba(129, 148, 178, .28);
  opacity: .2;
}

.console-next-waypoint {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear .35s;
}

.console-next-waypoint.is-available {
  display: inline;
  visibility: visible;
  opacity: .52;
  transition-delay: 0s;
}

.console-next-waypoint.is-selected {
  opacity: .16;
}

.console-next-waypoint-mark {
  fill: #090a0f;
  stroke: rgba(203, 205, 221, .55);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.console-feedback-signal {
  pointer-events: none;
  opacity: 0;
}

.console-feedback-signal-ring {
  fill: none;
  stroke: rgba(167, 139, 250, .72);
  stroke-width: 1.25;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.console-feedback-signal-core {
  fill: var(--accent-light);
  filter: drop-shadow(0 0 .35rem rgba(167, 139, 250, .72));
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.console-feedback-signal.is-active {
  opacity: 1;
}

.console-feedback-signal.is-active .console-feedback-signal-ring {
  animation: console-feedback-ring .85s cubic-bezier(.2, .75, .25, 1) both;
}

.console-feedback-signal.is-active .console-feedback-signal-core {
  animation: console-feedback-core .85s ease-out both;
}

.console-next-progress {
  stroke: var(--accent-light);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
  filter: drop-shadow(0 0 .3rem rgba(167, 139, 250, .38));
  opacity: 0;
  pointer-events: none;
}

.console-next-progress.is-active {
  opacity: 1;
  animation: console-route-draw 1.2s cubic-bezier(.2, .75, .25, 1) forwards;
}

.console-route-node {
  fill: #090a0f;
  stroke: rgba(203, 205, 221, .62);
  stroke-width: 1.5;
}

.console-branch-node {
  opacity: .32;
  transition: fill .35s ease, opacity .35s ease, filter .35s ease, stroke .35s ease;
}

.console-node-option {
  cursor: pointer;
  outline: none;
  pointer-events: all;
}

.console-node-hit {
  fill: transparent;
  pointer-events: all;
  stroke: transparent;
  stroke-width: 1;
}

.console-node-option .console-branch-node {
  pointer-events: none;
}

.console-node-option.is-active .console-branch-node {
  fill: var(--accent-light);
  stroke: #f4f4f9;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 .42rem rgba(167, 139, 250, .58));
  opacity: 1;
}

.console-node-option.is-complete .console-branch-node {
  fill: #090a0f;
  stroke: var(--accent-light);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 .28rem rgba(167, 139, 250, .4));
  opacity: .92;
}

.console-node-option.is-complete .console-node-label {
  fill: rgba(244, 244, 249, .72);
}

.console-node-option:not(.is-active):not(.is-locked) .console-branch-node {
  animation: console-node-idle-pulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.console-node-option.is-locked {
  cursor: default;
  pointer-events: none;
}

.console-node-option.is-locked .console-branch-node {
  animation: none;
  fill: #090a0f;
  opacity: .14;
}

.console-node-option:hover .console-branch-node,
.console-node-option:focus-visible .console-branch-node {
  fill: rgba(167, 139, 250, .72);
  filter: drop-shadow(0 0 .42rem rgba(167, 139, 250, .5));
  opacity: .92;
}

.console-node-option.is-locked:hover .console-branch-node,
.console-node-option.is-locked:focus-visible .console-branch-node {
  fill: #090a0f;
  filter: none;
  opacity: .14;
}

.console-expand-control {
  cursor: pointer;
  opacity: .96;
  outline: none;
  pointer-events: all;
  animation: none;
  transition: opacity .2s ease, filter .2s ease;
}

.console-expand-control[hidden] {
  display: none;
}

.console-expand-hit {
  fill: transparent;
  pointer-events: all;
  stroke: transparent;
  stroke-width: 1;
}

.console-expand-arrow {
  fill: none;
  pointer-events: none;
  stroke: var(--accent-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  vector-effect: non-scaling-stroke;
}

.console-expand-control:hover,
.console-expand-control:focus-visible {
  filter: drop-shadow(0 0 .42rem rgba(167, 139, 250, .72));
  opacity: 1;
}

.console-expand-control:focus-visible .console-expand-arrow {
  stroke: #f4f4f9;
  stroke-width: 2;
}

.console-goal-node {
  fill: rgba(var(--orb-pink-rgb), .1);
  stroke: rgba(var(--orb-pink-rgb), .78);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 .35rem rgba(var(--orb-pink-rgb), .34));
  opacity: .92;
  animation: console-goal-breathe 4.2s ease-in-out infinite;
}

.console-goal-core {
  fill: var(--orb-pink);
  filter: drop-shadow(0 0 .28rem rgba(var(--orb-pink-rgb), .86));
  animation: console-goal-core-breathe 4.2s ease-in-out infinite;
}

.console-goal-anchor {
  fill: transparent;
  pointer-events: none;
  stroke: none;
}

.landing-console-v2 .console-goal-node,
.landing-console-v2 .console-goal-core {
  display: none;
}

.console-goal-label {
  fill: rgba(var(--orb-pink-rgb), .96);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  opacity: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.console-node-label {
  fill: rgba(244, 244, 249, .84);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  opacity: .92;
  pointer-events: none;
  text-transform: uppercase;
  transition: opacity .25s ease, fill .25s ease;
}

.console-node-option.is-active .console-node-label,
.console-node-option:hover .console-node-label,
.console-node-option:focus-visible .console-node-label {
  fill: var(--accent-light);
  opacity: 1;
}

.console-node-option.is-locked .console-node-label {
  opacity: .14;
}

.console-node-option.is-locked:hover .console-node-label,
.console-node-option.is-locked:focus-visible .console-node-label {
  fill: rgba(244, 244, 249, .28);
  opacity: 0;
}

.console-next-node {
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}

.console-next-node.is-visible {
  opacity: 1;
}

.console-next-node-core {
  fill: var(--accent-light);
  stroke: none;
  filter: drop-shadow(0 0 .42rem rgba(167, 139, 250, .56));
  transform-box: fill-box;
  transform-origin: center;
}

.console-next-node-label {
  fill: var(--accent-light);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.console-next-node.is-visible .console-next-node-core {
  animation: console-waypoint-core-reveal .45s ease-out both;
}

@keyframes console-waypoint-core-reveal {
  from {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(167, 139, 250, 0));
    transform: scale(.55);
  }

  45% {
    opacity: 1;
    filter: drop-shadow(0 0 .72rem rgba(167, 139, 250, .84));
    transform: scale(1.12);
  }

  to {
    opacity: 1;
    filter: drop-shadow(0 0 .42rem rgba(167, 139, 250, .56));
    transform: scale(1);
  }
}

@keyframes console-route-focus {
  0% {
    filter: none;
    opacity: .5;
    stroke-width: 1.45;
  }

  45% {
    filter: drop-shadow(0 0 .55rem rgba(167, 139, 250, .5));
    opacity: 1;
    stroke-width: 2;
  }

  100% {
    filter: drop-shadow(0 0 .22rem rgba(167, 139, 250, .22));
    opacity: .82;
    stroke-width: 1.7;
  }
}

@keyframes console-feedback-ring {
  from {
    opacity: .76;
    transform: scale(.65);
  }

  to {
    opacity: 0;
    transform: scale(2.45);
  }
}

@keyframes console-feedback-core {
  0% {
    opacity: 0;
    transform: scale(.7);
  }

  28% {
    opacity: 1;
    transform: scale(1.15);
  }

  100% {
    opacity: 0;
    transform: scale(.8);
  }
}

@keyframes console-goal-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 .28rem rgba(var(--orb-pink-rgb), .24));
    opacity: .76;
  }

  50% {
    filter: drop-shadow(0 0 .48rem rgba(var(--orb-pink-rgb), .44));
    opacity: 1;
  }
}

@keyframes console-goal-core-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 .22rem rgba(var(--orb-pink-rgb), .68));
    opacity: .82;
  }

  50% {
    filter: drop-shadow(0 0 .34rem rgba(var(--orb-pink-rgb), .94));
    opacity: 1;
  }
}

@keyframes console-route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes console-star-twinkle {
  0%,
  100% {
    opacity: var(--star-min);
  }

  50% {
    opacity: var(--star-max);
  }
}

@keyframes console-node-idle-pulse {
  0%,
  100% {
    opacity: .38;
    transform: scale(.94);
  }

  50% {
    opacity: .9;
    transform: scale(1.1);
    filter: drop-shadow(0 0 .5rem rgba(167, 139, 250, .68));
  }
}

.console-registration {
  z-index: 2;
  width: .85rem;
  height: .85rem;
  border-color: rgba(174, 176, 194, .58);
  border-style: solid;
}

.registration-top-left {
  top: 1.2rem;
  left: 1.25rem;
  border-width: 1px 0 0 1px;
}

.registration-top-right {
  top: 1.2rem;
  right: 1.25rem;
  border-width: 1px 1px 0 0;
}

.registration-bottom-left {
  bottom: 1.2rem;
  left: 1.25rem;
  border-width: 0 0 1px 1px;
}

.registration-bottom-right {
  right: 1.25rem;
  bottom: 1.2rem;
  border-width: 0 1px 1px 0;
}

.console-difficulty {
  position: absolute;
  z-index: 4;
  top: var(--difficulty-top, 0px);
  left: var(--difficulty-left, 0px);
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .55rem;
  border: 1px solid rgba(174, 176, 194, .46);
  border-radius: .12rem;
  background: rgba(9, 10, 15, .94);
  box-shadow: 0 .8rem 1.8rem rgba(0, 0, 0, .3), 0 0 1.2rem rgba(124, 58, 237, .12);
  transform: translate(-50%, calc(-100% - .85rem));
  white-space: nowrap;
}

.console-difficulty[hidden] {
  display: none;
}

.console-difficulty.is-below {
  transform: translate(-50%, .85rem);
}

.console-difficulty::after {
  position: absolute;
  bottom: -.35rem;
  left: 50%;
  width: .65rem;
  height: .65rem;
  border-right: 1px solid rgba(174, 176, 194, .46);
  border-bottom: 1px solid rgba(174, 176, 194, .46);
  background: rgba(9, 10, 15, .94);
  content: '';
  transform: translateX(-50%) rotate(45deg);
}

.console-difficulty.is-below::after {
  top: -.35rem;
  bottom: auto;
  border-top: 1px solid rgba(174, 176, 194, .46);
  border-right: 0;
  border-bottom: 0;
}

.console-difficulty-label {
  color: rgba(244, 244, 249, .72);
  font-family: var(--display);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.console-difficulty-options {
  display: flex;
  gap: .25rem;
}

.console-difficulty-options button {
  min-height: 1.8rem;
  padding: .3rem .48rem;
  border: 1px solid rgba(142, 142, 160, .52);
  border-radius: .08rem;
  background: rgba(17, 19, 26, .78);
  color: rgba(244, 244, 249, .72);
  cursor: pointer;
  font-family: var(--display);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.console-difficulty-options button:hover,
.console-difficulty-options button:focus-visible,
.console-difficulty-options button[aria-pressed="true"] {
  border-color: var(--accent-light);
  background: rgba(124, 58, 237, .28);
  box-shadow: 0 0 .7rem rgba(167, 139, 250, .2);
  color: var(--accent-light);
}

.console-status {
  position: absolute;
  z-index: 4;
  top: 1.15rem;
  left: 1.4rem;
  width: auto;
  max-width: calc(100% - 2.8rem);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  color: rgba(244, 244, 249, .72);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.35;
  pointer-events: none;
  text-overflow: ellipsis;
  text-shadow: 0 0 .55rem rgba(8, 10, 17, .9);
  text-transform: uppercase;
  white-space: nowrap;
}

.console-task-preview {
  position: fixed;
  z-index: 70;
  top: var(--preview-top, 1rem);
  left: var(--preview-left, 1rem);
  display: none;
  width: min(20rem, calc(100vw - 2rem));
  max-height: min(31rem, calc(100vh - 2rem));
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(174, 176, 194, .5);
  border-radius: .18rem;
  background: rgba(9, 10, 15, .97);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, .48), 0 0 1.6rem rgba(124, 58, 237, .12);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(.45rem) scale(.985);
  transition: opacity .2s ease, transform .2s ease;
}

.console-task-preview.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.console-task-preview[data-console-preview-hidden="true"] {
  display: none;
}

.console-task-preview::backdrop {
  background: transparent;
}

.console-task-preview-inner {
  padding: 1rem 1rem .9rem;
}

.console-task-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.console-task-preview-kicker {
  margin: 0;
  color: var(--accent-light);
  font-family: var(--display);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
}

.console-task-preview-close {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  place-items: center;
  margin: -.2rem -.2rem 0 0;
  border: 1px solid rgba(174, 176, 194, .34);
  border-radius: 50%;
  background: transparent;
  color: rgba(244, 244, 249, .72);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.console-task-preview-close:hover,
.console-task-preview-close:focus-visible {
  border-color: var(--accent-light);
  background: rgba(124, 58, 237, .2);
  color: var(--accent-light);
}

.console-task-preview h2 {
  max-width: 15ch;
  margin: .7rem 0 .35rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  letter-spacing: -.04em;
  line-height: 1.02;
}

.console-task-preview-meta {
  margin: 0;
  color: rgba(203, 205, 221, .62);
  font-family: var(--display);
  font-size: .57rem;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1.4;
}

.console-task-preview-brief {
  margin: .85rem 0 .75rem;
  color: rgba(244, 244, 249, .78);
  font-size: .82rem;
  line-height: 1.5;
}

.console-task-preview-steps {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.console-task-preview-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .6rem;
  align-items: baseline;
  padding-top: .5rem;
  border-top: 1px solid rgba(174, 176, 194, .17);
  font-size: .74rem;
  line-height: 1.4;
}

.console-task-preview-step-label {
  color: var(--accent-light);
  font-family: var(--display);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.console-task-preview-step-copy {
  color: rgba(244, 244, 249, .68);
}

.console-task-preview-done {
  width: 100%;
  min-height: 2.25rem;
  margin-top: 1rem;
  border: 1px solid rgba(167, 139, 250, .6);
  border-radius: .12rem;
  background: rgba(124, 58, 237, .2);
  color: var(--accent-light);
  cursor: pointer;
  font-family: var(--display);
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.console-task-preview-done:hover,
.console-task-preview-done:focus-visible {
  border-color: #f4f4f9;
  background: rgba(124, 58, 237, .34);
  color: #f4f4f9;
}

.product-pulse {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.product-pulse i {
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.live-section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 19, 26, .4), transparent);
}

.live-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(24rem, 1.3fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}

.live-copy h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.live-copy p:not(.eyebrow) {
  max-width: 27rem;
  margin-bottom: 1.5rem;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-2);
  border-radius: 1.5rem 1.5rem .35rem 1.5rem;
  background: var(--surface);
  box-shadow: 1.5rem 1.5rem 0 rgba(124, 58, 237, .08), 0 2rem 5rem rgba(0, 0, 0, .32);
}

.product-frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .63rem;
  letter-spacing: .12em;
}

.product-pulse {
  color: var(--money);
  letter-spacing: .08em;
}

.product-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-2);
}

.scroll-story {
  position: relative;
  height: 300vh;
  border-block: 1px solid var(--border);
  background: var(--bg);
}

.scroll-story-stage {
  position: sticky;
  top: 4.5rem;
  height: calc(100svh - 4.5rem);
  min-height: 36rem;
  overflow: hidden;
  isolation: isolate;
  background: #08090f;
}

.scroll-story-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.scroll-story-poster {
  position: absolute;
  top: 50%;
  left: 58%;
  width: min(44rem, 72vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.scroll-story-stage.is-fallback .scroll-story-poster {
  opacity: 1;
}

.scroll-story-poster-orbit,
.scroll-story-poster-world,
.scroll-story-poster-core,
.scroll-story-poster-sun {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.scroll-story-poster-orbit {
  top: 50%;
  left: 50%;
  width: 92%;
  height: 38%;
  border: 1px solid rgba(167, 139, 250, .18);
  transform: translate(-50%, -50%) rotate(-14deg);
}

.scroll-story-poster-orbit.orbit-b {
  width: 70%;
  height: 29%;
  border-color: rgba(6, 182, 212, .14);
  transform: translate(-50%, -50%) rotate(18deg);
}

.scroll-story-poster-orbit.orbit-c {
  width: 52%;
  height: 22%;
  border-color: rgba(167, 139, 250, .12);
  transform: translate(-50%, -50%) rotate(-28deg);
}

.scroll-story-poster-sun {
  top: 25%;
  left: 76%;
  width: 8%;
  aspect-ratio: 1;
  background: #f5bd6b;
  box-shadow: 0 0 2rem rgba(245, 189, 107, .35);
}

.scroll-story-poster-world {
  top: 34%;
  left: 30%;
  width: 25%;
  aspect-ratio: 1;
  background: #2c555c;
  box-shadow: inset -1.5rem -1rem 2rem rgba(4, 10, 18, .7), 0 0 2rem rgba(70, 142, 153, .18);
}

.scroll-story-poster-core {
  top: 42%;
  left: 45%;
  width: 18%;
  aspect-ratio: 1;
  background: #7c3aed;
  box-shadow: 0 0 2.5rem rgba(124, 58, 237, .38), inset .7rem .5rem 1rem rgba(244, 244, 249, .2);
}

.scroll-story-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 15, .88), transparent 38%, transparent 74%, rgba(8, 9, 15, .46)),
    linear-gradient(180deg, rgba(8, 9, 15, .28), transparent 22%, transparent 76%, rgba(8, 9, 15, .7));
  pointer-events: none;
}

.scroll-story-ui {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-block: clamp(2rem, 7vh, 5rem) clamp(2rem, 7vh, 5rem);
  pointer-events: none;
}

.scroll-story-kicker {
  color: var(--accent-light);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-story-kicker {
  margin: 0;
}

.scroll-story-panels {
  position: relative;
  align-self: center;
  width: min(30rem, 42vw);
  min-height: 15rem;
  isolation: isolate;
}

.scroll-story-panels::before {
  position: absolute;
  z-index: 0;
  top: -4rem;
  right: -7rem;
  bottom: -4rem;
  left: -3rem;
  border-radius: 50%;
  background: radial-gradient(ellipse 78% 76% at 30% 50%, rgba(8, 9, 15, .72), rgba(8, 9, 15, .42) 52%, transparent 100%);
  filter: blur(10px);
  content: '';
  pointer-events: none;
}

.scroll-story-panel {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translate3d(0, calc(-50% + 1.2rem), 0);
  transition: opacity .45s ease, transform .65s cubic-bezier(.2, .75, .25, 1);
}

.scroll-story-panel.is-active {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.scroll-story-panel h2 {
  max-width: 8ch;
  margin: .8rem 0 1rem;
  color: var(--text);
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.06em;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: 0 .12rem 1.2rem rgba(8, 9, 15, .9), 0 .04rem .28rem rgba(8, 9, 15, .72);
}

.scroll-story-panel p {
  max-width: 25rem;
  margin: 0;
  color: rgba(244, 244, 249, .7);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  text-shadow: 0 .08rem .8rem rgba(8, 9, 15, .86), 0 .03rem .2rem rgba(8, 9, 15, .62);
}

.scroll-story-copy-alternative,
.scroll-story-nojs {
  display: none;
}

.scroll-story-nojs {
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.scroll-story-nojs h2,
.scroll-story-copy-alternative h2 {
  max-width: 12ch;
  margin: .8rem 0 1rem;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: .92;
}

.scroll-story-nojs p:last-child,
.scroll-story-copy-alternative p:last-child {
  max-width: 34rem;
}

.step-card,
.feature-card,
.method-card,
.price-card,
.newsletter,
.fact-list li {
  border-radius: 1.2rem .35rem 1.2rem .35rem;
  background: linear-gradient(145deg, rgba(27, 29, 42, .78), rgba(17, 19, 26, .88));
}

.step-card:hover,
.feature-card:hover,
.coach-card:hover,
.method-card:hover,
.post-card:hover {
  transform: none;
  border-color: var(--accent-light);
}

.feature-card::after {
  display: none;
}

.coach-card {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  border-radius: 1.3rem .35rem 1.3rem .35rem;
  background: linear-gradient(160deg, rgba(27, 29, 42, .9), rgba(17, 19, 26, .72));
}

.coach-card::after {
  position: absolute;
  right: -2rem;
  bottom: 2.6rem;
  left: -2rem;
  height: 9rem;
  background: linear-gradient(180deg, transparent, rgba(11, 12, 18, .96) 42%);
  content: '';
  pointer-events: none;
}

.coach-art {
  position: absolute;
  top: 2.5rem;
  right: .5rem;
  width: 8.5rem;
  height: 8.5rem;
  object-fit: contain;
  opacity: .92;
  filter: drop-shadow(0 0 1.5rem rgba(167, 139, 250, .2));
  transition: transform .35s ease, filter .35s ease;
}

.coach-card:hover .coach-art {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 0 1.8rem rgba(167, 139, 250, .4));
}

.coach-card .coach-index,
.coach-card h3,
.coach-card .coach-role,
.coach-card p {
  position: relative;
  z-index: 2;
}

.coach-card h3 {
  margin-top: 7rem;
}

.coach-mira .coach-role { color: #fbbf24; }
.coach-vivi .coach-role { color: #f472b6; }
.coach-flint .coach-role { color: #10b981; }
.coach-kai .coach-role { color: #06b6d4; }
.coach-echo .coach-role { color: #a78bfa; }

@media (max-width: 960px) {
  .hero {
    width: min(calc(100% - 2rem), 1280px);
  }

  .hero-edge-art {
    top: -.75rem;
    left: calc(50% + clamp(16rem, 31vw, 23rem));
    width: clamp(20rem, 44vw, 28rem);
    opacity: .62;
  }

  .hero-companion-ship {
    width: clamp(5rem, 11vw, 7rem);
  }

  .live-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .live-copy h2 {
    max-width: 14ch;
  }

  .scroll-story {
    height: 280vh;
  }

  .scroll-story-panels {
    width: min(28rem, 58vw);
  }
}

@media (max-width: 720px) {
  .site-header {
    background: rgba(11, 12, 18, .96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body::after {
    display: none;
  }

  .top-apps {
    display: none;
  }

  .nav-actions {
    gap: .55rem;
  }

  .nav-actions .button {
    display: inline-flex;
    min-height: 2.35rem;
    padding: .45rem .7rem;
    font-size: .72rem;
  }

  .menu-toggle {
    border-radius: .2rem;
    background: transparent;
  }

  .hero {
    width: min(calc(100% - 1rem), 1280px);
    min-height: auto;
    gap: 1.75rem;
    padding-block: 2rem 3.75rem;
  }

  .landing-console-v2 .hero {
    gap: .75rem;
  }

  .hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
      radial-gradient(ellipse 88% 62% at 70% 32%, rgba(14, 14, 22, .38), transparent 72%),
      linear-gradient(180deg, rgba(14, 14, 22, .92), rgba(14, 14, 22, .78) 48%, rgba(14, 14, 22, .98) 100%);
    content: '';
    pointer-events: none;
  }

  .hero-edge-art {
    top: -1.25rem;
    left: calc(50% + clamp(12rem, 28vw, 18rem));
    width: clamp(26rem, 68vw, 32rem);
    opacity: .55;
  }

  .hero-companion-ship {
    z-index: 3;
    width: 5.5rem;
  }

  .hero-scene {
    border-radius: .6rem;
  }

  .hero-copy {
    min-height: 18rem;
    padding: 2.5rem 1rem 2.25rem;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.3rem, 15vw, 5.5rem);
  }

  .hero-summary {
    max-width: 23rem;
    color: var(--text-dim);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-console-wrap {
    width: calc(100vw - var(--scrollbar-width, 0px));
    max-width: none;
    margin-top: 1.25rem;
    padding: .8rem 0 1.5rem;
  }

  .hero-console {
    aspect-ratio: 16 / 11;
    box-shadow: none;
  }

  .landing-console-v2 .hero-console-wrap {
    --console-bleed: 0px;
    width: calc(100vw - var(--scrollbar-width, 0px));
    max-width: none;
    margin-top: .5rem;
    margin-left: 0;
    padding-top: 0;
  }

  .landing-console-v2 .hero-console {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .landing-console-v2 .console-goal-orb {
    width: 1.95rem;
  }

  .landing-console-v2 .console-stage > .hero-companion-ship {
    width: 5.4rem;
  }

  .hero-scene-registration {
    width: .6rem;
    height: .6rem;
  }

  .hero-scene-registration.registration-top-left,
  .hero-scene-registration.registration-top-right {
    top: .65rem;
  }

  .hero-scene-registration.registration-bottom-left,
  .hero-scene-registration.registration-bottom-right {
    bottom: .65rem;
  }

  .hero-scene-registration.registration-top-left,
  .hero-scene-registration.registration-bottom-left {
    left: .65rem;
  }

  .hero-scene-registration.registration-top-right,
  .hero-scene-registration.registration-bottom-right {
    right: .65rem;
  }

  .console-grid {
    background-size: 3rem 3rem;
  }

  .console-spacefield {
    opacity: .62;
  }

  .console-orbital-chart {
    opacity: .32;
  }

  .console-orbit {
    stroke-width: .8;
  }

  .orbit-focused,
  .console-chart-tick {
    display: none;
  }

  .console-route {
    inset: 7% 2% 5%;
    width: 96%;
    height: 88%;
  }

  .landing-console-v2 .console-route {
    inset: 7% 2% 5%;
    width: 96%;
    height: 88%;
    transform: translateX(-50%) scale(2.15);
    transform-box: border-box;
    transform-origin: 50% 50%;
  }

  .landing-console-v2 .console-ship-trace {
    inset: 7% 2% 5%;
    width: 96%;
    height: 88%;
    transform: translateX(-50%) scale(2.15);
    transform-box: border-box;
    transform-origin: 50% 50%;
  }

  .landing-console-v2 .console-label-layer {
    inset: 7% 2% 5%;
    width: 96%;
    height: 88%;
    transform: translateX(-50%) scale(2.15);
    transform-box: border-box;
    transform-origin: 50% 50%;
  }

  .console-registration {
    width: .65rem;
    height: .65rem;
  }

  .registration-top-left,
  .registration-top-right {
    top: .8rem;
  }

  .registration-bottom-left,
  .registration-bottom-right {
    bottom: .8rem;
  }

  .registration-top-left,
  .registration-bottom-left {
    left: .8rem;
  }

  .registration-top-right,
  .registration-bottom-right {
    right: .8rem;
  }

  .console-difficulty {
    align-items: stretch;
    flex-direction: column;
    gap: .35rem;
    padding: .35rem .4rem;
    max-width: calc(100vw - 1.5rem);
  }

  .console-difficulty-label {
    font-size: .42rem;
    text-align: center;
  }

  .console-difficulty-options {
    gap: .15rem;
    justify-content: center;
  }

  .console-difficulty-options button {
    min-height: 1.55rem;
    padding: .25rem .35rem;
    font-size: .42rem;
  }

  .console-status {
    top: .8rem;
    left: .9rem;
    max-width: calc(100% - 1.8rem);
    font-size: .46rem;
    letter-spacing: .08em;
  }

  .console-task-preview {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    max-height: calc(100vh - 2rem);
    transform: translateY(.65rem);
  }

  .console-task-preview h2 {
    max-width: 18ch;
    font-size: 1.35rem;
  }

  .console-task-preview.is-open {
    transform: translateY(0);
  }

  .console-node-label {
    font-size: 8px;
    letter-spacing: 1px;
    stroke-width: 4px;
  }

  .console-goal-label {
    font-size: 8px;
    letter-spacing: .9px;
  }

  .scroll-story {
    height: 260vh;
  }

  .scroll-story-stage {
    min-height: 30rem;
  }

  .scroll-story-ui {
    padding-inline: 1.5rem;
  }

  .scroll-story-vignette {
    background:
      linear-gradient(90deg, rgba(8, 9, 15, .94), rgba(8, 9, 15, .82) 34%, rgba(8, 9, 15, .55) 66%, rgba(8, 9, 15, .42)),
      linear-gradient(180deg, rgba(8, 9, 15, .28), transparent 22%, transparent 76%, rgba(8, 9, 15, .7));
  }

  .scroll-story-panels {
    width: min(21rem, 100%);
    justify-self: start;
  }

  .scroll-story-panels::before {
    top: -5rem;
    right: -2rem;
    bottom: -5rem;
    left: -3rem;
    background: radial-gradient(ellipse 108% 78% at 24% 50%, rgba(8, 9, 15, .78), rgba(8, 9, 15, .48) 52%, transparent 100%);
    filter: blur(13px);
  }

  .scroll-story-panel h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 8.8vw, 2.75rem);
  }

  .scroll-story-panel p {
    color: rgba(244, 244, 249, .82);
  }

  .product-frame {
    border-radius: 1rem .3rem 1rem .3rem;
    box-shadow: .7rem .7rem 0 rgba(124, 58, 237, .08), 0 1rem 3rem rgba(0, 0, 0, .28);
  }

  .coach-card {
    min-height: 21rem;
  }
}

@media (max-width: 650px) {
  /* Match the mobile app's enhancedWebMinWidth shader cutoff. Keep the
     route readable by zooming the map and cropping its wide entry tail
     instead of shrinking the whole map into a soft strip. */
  .console-route {
    transform: translateX(-77%) scale(1.8);
    transform-origin: 0 50%;
    transform-box: border-box;
  }
}

@media (max-width: 500px) {
  .hero {
    overflow: hidden;
  }

  .hero-edge-art {
    top: 1rem;
    right: -10.5rem;
    left: auto;
    width: min(23rem, 82vw);
  }

  .hero-console-wrap {
    margin-top: 1.375rem;
    padding: .5rem 0 1rem;
  }

  .hero-console {
    aspect-ratio: 4 / 3;
  }

  .landing-console-v2 .hero-console {
    aspect-ratio: 4 / 3;
  }

  .console-route {
    transform: translateX(-106%) scale(2.15);
  }

  .landing-console-v2 .console-ship-trace {
    transform: translateX(-50%) scale(2.15);
  }

  .landing-console-v2 .console-label-layer {
    transform: translateX(-50%) scale(2.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .console-route-progress.is-active,
  .console-next-progress.is-active,
  .console-star,
  .console-route-branch.is-selected,
  .console-node-option:not(.is-active):not(.is-locked) .console-branch-node,
  .console-feedback-signal.is-active .console-feedback-signal-ring,
  .console-feedback-signal.is-active .console-feedback-signal-core,
  .console-goal-node,
  .console-goal-core,
  .console-next-node.is-visible .console-next-node-core,
  .landing-console-v2 .console-stage > .hero-companion-ship.is-settled {
    animation: none;
  }

  .console-route-progress.is-active,
  .console-next-progress.is-active {
    stroke-dashoffset: 0;
    filter: none;
  }

  .console-orbital-chart {
    opacity: .24;
  }

  .console-feedback-signal {
    display: none;
  }

  .console-expand-control,
  .console-task-preview,
  .console-task-preview.is-open {
    transition: none;
  }

  .console-task-preview.is-open {
    transform: none;
  }

  .console-star {
    opacity: .14;
  }

  .console-node-option.is-active .console-branch-node,
  .console-next-node-core,
  .console-goal-node,
  .console-goal-core {
    filter: none;
  }

  .scroll-story {
    height: auto;
  }

  .scroll-story-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding-block: 3rem;
  }

  .scroll-story-ui {
    position: relative;
    inset: auto;
    display: block;
    padding-block: 0;
  }

  .scroll-story-panels {
    width: min(34rem, 100%);
    min-height: 0;
    margin-top: 5rem;
  }

  .scroll-story-panel,
  .scroll-story-panel.is-active {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 4rem;
    opacity: 1;
    transform: none;
  }

  .scroll-story-panel:first-child {
    margin-top: 0;
  }

}
