:root {
  color-scheme: dark;
  --bg: #030412;
  --bg-soft: #070923;
  --panel: rgba(9, 12, 35, 0.68);
  --panel-strong: rgba(14, 16, 45, 0.9);
  --text: #f7f0ff;
  --muted: #a9a3be;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #56a9ff;
  --violet: #b967ff;
  --pink: #f28cff;
  --gold: #f6c45c;
  --gold-bright: #ffe194;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow-gold: 0 0 34px rgba(246, 196, 92, 0.34);
  --shadow-violet: 0 0 42px rgba(185, 103, 255, 0.28);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 8%, rgba(97, 63, 229, 0.42), transparent 34rem),
    radial-gradient(circle at 22% 18%, rgba(246, 196, 92, 0.16), transparent 28rem),
    radial-gradient(circle at 52% 46%, rgba(80, 141, 255, 0.18), transparent 35rem),
    linear-gradient(180deg, #030411 0%, #050515 45%, #02030d 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(246, 196, 92, 0.88) 0 1px, transparent 1.6px);
  background-position:
    0 0,
    38px 72px;
  background-size:
    180px 180px,
    260px 260px;
  opacity: 0.34;
}

.space-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  pointer-events: none;
}

.space-bg > * {
  position: absolute;
  inset: -18% -8%;
  will-change: transform;
}

.space-bg__nebula {
  background: transparent;
}

.space-bg__stars--far {
  opacity: 0.4;
  background-image:
    radial-gradient(1px 1px at 17px 43px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 83px 19px, rgba(255, 255, 255, 0.72), transparent),
    radial-gradient(1px 1px at 141px 97px, rgba(255, 255, 255, 0.82), transparent),
    radial-gradient(1px 1px at 207px 58px, rgba(255, 255, 255, 0.62), transparent),
    radial-gradient(1px 1px at 63px 131px, rgba(255, 255, 255, 0.68), transparent),
    radial-gradient(1px 1px at 189px 142px, rgba(255, 255, 255, 0.78), transparent);
  background-size: 241px 187px;
}

.space-bg__stars--mid {
  opacity: 0.52;
  background-image:
    radial-gradient(1.2px 1.2px at 31px 67px, rgba(255, 255, 255, 0.98), transparent),
    radial-gradient(1px 1px at 112px 23px, rgba(246, 196, 92, 0.92), transparent),
    radial-gradient(1px 1px at 76px 118px, rgba(185, 103, 255, 0.82), transparent),
    radial-gradient(1.4px 1.4px at 167px 89px, rgba(255, 255, 255, 0.94), transparent),
    radial-gradient(1px 1px at 203px 37px, rgba(86, 169, 255, 0.78), transparent),
    radial-gradient(1px 1px at 48px 154px, rgba(246, 196, 92, 0.68), transparent),
    radial-gradient(1px 1px at 178px 161px, rgba(255, 255, 255, 0.84), transparent);
  background-size: 317px 263px;
}

.space-bg__stars--near {
  opacity: 0.66;
  background-image:
    radial-gradient(1.6px 1.6px at 22px 38px, rgba(255, 255, 255, 1), transparent),
    radial-gradient(1.2px 1.2px at 94px 71px, rgba(246, 196, 92, 0.96), transparent),
    radial-gradient(1px 1px at 156px 14px, rgba(185, 103, 255, 0.88), transparent),
    radial-gradient(1.8px 1.8px at 41px 126px, rgba(255, 255, 255, 0.96), transparent),
    radial-gradient(1px 1px at 128px 147px, rgba(86, 169, 255, 0.82), transparent),
    radial-gradient(1.3px 1.3px at 211px 103px, rgba(246, 196, 92, 0.9), transparent);
  background-size: 283px 221px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 10%, transparent 72%);
}

.page-orb {
  position: fixed;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.42;
  pointer-events: none;
}

.page-orb--violet {
  top: 8rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(167, 74, 255, 0.62), transparent 68%);
}

.page-orb--gold {
  top: 38rem;
  left: -16rem;
  background: radial-gradient(circle, rgba(246, 196, 92, 0.34), transparent 68%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px);
  min-height: 76px;
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(22px);
}

.brand,
.nav,
.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 24, 0.56);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
}

.brand__logo {
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(246, 196, 92, 0.55);
  border-radius: 999px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.32);
  box-shadow: var(--shadow-gold);
}

.brand strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
}

.nav a {
  padding: 9px 13px;
  color: #d9d2ec;
  border-radius: 999px;
  font-size: 13px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  padding: 12px 18px;
  border-color: rgba(185, 103, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  box-shadow: var(--shadow-violet);
}

.section {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
}

.hero {
  display: grid;
  min-height: calc(100svh - 76px);
  place-items: center start;
  padding-top: 70px;
  padding-left: clamp(18px, 4vw, 64px);
}

.hero__inner {
  width: min(1180px, 100%);
  overflow: visible;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  display: block;
  width: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  display: grid;
  width: min(1120px, 100%);
  max-width: 1120px;
  margin-bottom: 26px;
  padding-right: 0.22em;
  padding-bottom: 0.08em;
  overflow: visible;
  font-size: clamp(56px, 7.35vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  background: linear-gradient(110deg, #fff4d0 0%, #f4b85d 22%, #d080ff 52%, #ffffff 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(185, 103, 255, 0.24));
}

h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: visible;
  white-space: nowrap;
}

h1 span:first-child {
  letter-spacing: 0;
}

h1 span:last-child {
  font-size: 0.74em;
  letter-spacing: 0.03em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero__lead {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.hero__text {
  width: min(560px, 100%);
  margin-bottom: 34px;
  font-size: 19px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 700;
}

.button--primary {
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 232, 139, 0.92), transparent 0.7rem),
    linear-gradient(135deg, #794eff, #b85dff 45%, #f0a63a 100%);
  box-shadow:
    0 0 34px rgba(185, 103, 255, 0.46),
    0 0 42px rgba(246, 196, 92, 0.28);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(185, 103, 255, 0.46),
    0 0 56px rgba(246, 196, 92, 0.36);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 48px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

#how .section-heading .eyebrow,
#sources .section-heading .eyebrow,
#compare .section-heading .eyebrow,
.roadmap-section .section-heading .eyebrow,
.audience-section .section-heading .eyebrow,
.navigation-section .section-heading .eyebrow,
.final-screen .section-heading .eyebrow {
  position: relative;
  gap: 14px;
  margin-bottom: 16px;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-transform: none;
}

#how .section-heading .eyebrow::before,
#sources .section-heading .eyebrow::before,
#compare .section-heading .eyebrow::before,
.roadmap-section .section-heading .eyebrow::before,
.audience-section .section-heading .eyebrow::before,
.navigation-section .section-heading .eyebrow::before,
.final-screen .section-heading .eyebrow::before {
  position: static;
  z-index: auto;
  display: block;
  width: clamp(24px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(246, 196, 92, 0.85));
  filter: drop-shadow(0 0 8px rgba(246, 196, 92, 0.36));
  opacity: 0.85;
}

#how .section-heading .eyebrow::after,
#sources .section-heading .eyebrow::after,
#compare .section-heading .eyebrow::after,
.roadmap-section .section-heading .eyebrow::after,
.audience-section .section-heading .eyebrow::after,
.navigation-section .section-heading .eyebrow::after,
.final-screen .section-heading .eyebrow::after {
  display: block;
  width: clamp(24px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(246, 196, 92, 0.85), transparent);
  filter: drop-shadow(0 0 8px rgba(246, 196, 92, 0.36));
  opacity: 0.85;
}

#how .section-heading h2,
#sources .section-heading h2,
#compare .section-heading h2,
.audience-section .section-heading h2,
.navigation-section .section-heading h2,
.final-screen .section-heading h2 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

#compare .section-heading {
  width: min(980px, 100%);
}

#compare .section-heading .eyebrow {
  white-space: nowrap;
}

.system-section {
  position: relative;
}

.system-map {
  position: relative;
  display: grid;
  grid-template-columns: 240px 0.72fr minmax(280px, 330px) 0.72fr 240px;
  gap: 16px;
  align-items: center;
  min-height: 540px;
  padding: 46px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.system-map::before,
.system-map::after {
  position: absolute;
  inset: 10% 5%;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(246, 196, 92, 0.13);
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(246, 196, 92, 0.16));
  transform: rotate(-5deg);
}

.system-map::after {
  inset: 20% 8%;
  border-color: rgba(185, 103, 255, 0.13);
  transform: rotate(6deg);
}

.person-node {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.person-core {
  position: relative;
  display: grid;
  width: 180px;
  height: 260px;
  place-items: center;
}

.person-core::before,
.person-core::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.person-core::before {
  inset: 12px 18px;
  border-radius: 46% 46% 42% 42%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 233, 165, 0.96) 0 13%, rgba(246, 184, 62, 0.48) 19%, transparent 31%),
    radial-gradient(ellipse at 50% 62%, rgba(246, 177, 42, 0.72) 0 18%, rgba(139, 72, 255, 0.28) 43%, transparent 70%);
  filter: blur(16px);
  opacity: 0.95;
  animation: personPulse 4.6s ease-in-out infinite;
}

.person-core::after {
  inset: -18px -4px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(246, 196, 92, 0.24), transparent 52%),
    radial-gradient(ellipse at 52% 44%, rgba(185, 103, 255, 0.18), transparent 62%);
  filter: blur(22px);
}

.person-head,
.person-body {
  position: absolute;
  z-index: 2;
  display: block;
  background: rgba(255, 226, 139, 0.42);
  filter: blur(12px);
  box-shadow:
    0 0 48px rgba(246, 196, 92, 0.72),
    0 0 82px rgba(185, 103, 255, 0.28);
}

.person-head {
  top: 42px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
}

.person-body {
  bottom: 34px;
  width: 120px;
  height: 142px;
  border-radius: 70px 70px 34px 34px;
  clip-path: polygon(26% 0, 74% 0, 100% 100%, 0 100%);
}

.person-glow {
  position: absolute;
  inset: 20px -8px -8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 227, 143, 0.34), transparent 38%),
    radial-gradient(circle at 50% 66%, rgba(185, 103, 255, 0.22), transparent 58%);
  filter: blur(20px);
}

.person-node strong,
.mentor-node strong,
.mini-node strong,
.level-node strong {
  color: #fff;
}

.person-node small,
.mentor-node small,
.mini-node small,
.level-node small,
.understanding-card small,
.system-mentor small {
  color: var(--muted);
  line-height: 1.5;
}

.streams {
  position: relative;
  z-index: 1;
  height: 390px;
  pointer-events: none;
}

.stream,
.mentor-stream {
  position: absolute;
  display: block;
  height: 3px;
  background:
    radial-gradient(circle at 12% 50%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 42% 50%, rgba(255, 230, 154, 0.9) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(246, 196, 92, 0), rgba(246, 196, 92, 0.92), rgba(185, 103, 255, 0.76));
  background-size: 120px 100%, 180px 100%, 100% 100%;
  filter:
    drop-shadow(0 0 10px rgba(246, 196, 92, 0.85))
    drop-shadow(0 0 18px rgba(185, 103, 255, 0.36));
  animation: lightStream 6.8s linear infinite;
}

.stream {
  right: -14px;
  left: -14px;
  width: auto;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.96) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 50%, rgba(246, 196, 92, 0.9) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(86, 169, 255, 0), rgba(185, 103, 255, 0.72), rgba(246, 196, 92, 0.92));
  background-size: 120px 100%, 180px 100%, 100% 100%;
  animation: lightStream 6.4s linear infinite;
}

.stream::after,
.mentor-stream::after {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.stream::after {
  display: none;
}

.stream--one {
  top: 86px;
  transform: rotate(-12deg);
}

.stream--two {
  top: 195px;
  animation-delay: -0.8s;
}

.stream--three {
  top: 304px;
  transform: rotate(12deg);
  animation-delay: -1.4s;
}

.stream--four {
  top: 358px;
  transform: rotate(8deg);
  animation-delay: -2s;
}

.understanding-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-self: center;
  justify-items: center;
}

.understanding-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
  width: 190px;
  height: 190px;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.understanding-card::before {
  display: none;
}

.understanding-card--blue {
  box-shadow: none;
}

.understanding-card--blue::before {
  background: rgba(86, 169, 255, 0.26);
}

.understanding-card--gold {
  box-shadow: none;
}

.understanding-card--gold::before {
  background: rgba(246, 196, 92, 0.26);
}

.understanding-card--violet {
  box-shadow: none;
}

.understanding-card--violet::before {
  background: rgba(185, 103, 255, 0.26);
}

.understanding-card--pink {
  box-shadow: none;
}

.understanding-card--pink::before {
  background: rgba(242, 140, 255, 0.26);
}

.understanding-card__image,
.system-mentor__image {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  box-shadow:
    0 0 30px rgba(246, 196, 92, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.understanding-card__image {
  width: 168px;
  height: 168px;
}

.understanding-card--blue .understanding-card__image {
  border-color: rgba(86, 169, 255, 0.18);
  box-shadow:
    0 0 20px rgba(86, 169, 255, 0.22),
    0 0 30px rgba(86, 169, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.understanding-card--gold .understanding-card__image {
  border-color: rgba(246, 196, 92, 0.18);
  box-shadow:
    0 0 20px rgba(246, 196, 92, 0.22),
    0 0 30px rgba(246, 196, 92, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.understanding-card--violet .understanding-card__image {
  border-color: rgba(185, 103, 255, 0.18);
  box-shadow:
    0 0 20px rgba(185, 103, 255, 0.22),
    0 0 30px rgba(185, 103, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.understanding-card--pink .understanding-card__image {
  border-color: rgba(242, 140, 255, 0.18);
  box-shadow:
    0 0 20px rgba(242, 140, 255, 0.22),
    0 0 30px rgba(242, 140, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.understanding-card__image img,
.system-mentor__image img {
  width: 112%;
  height: 112%;
  object-fit: cover;
}

.understanding-card div:not(.understanding-card__image),
.system-mentor span,
.system-mentor strong,
.system-mentor small {
  position: relative;
  z-index: 1;
}

.understanding-card strong {
  position: relative;
  z-index: 1;
}

.understanding-card span,
.system-mentor span {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.understanding-card strong,
.system-mentor strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.12;
}

.mentor-flow {
  position: relative;
  z-index: 1;
  height: 390px;
  pointer-events: none;
}

.mentor-flow::before,
.mentor-flow::after,
.mentor-particle {
  position: absolute;
  display: block;
  left: -12px;
  right: -12px;
  height: 3px;
  content: "";
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.96) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 50%, rgba(246, 196, 92, 0.9) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(86, 169, 255, 0), rgba(185, 103, 255, 0.72), rgba(246, 196, 92, 0.92));
  background-size: 120px 100%, 180px 100%, 100% 100%;
  filter:
    drop-shadow(0 0 10px rgba(246, 196, 92, 0.8))
    drop-shadow(0 0 18px rgba(185, 103, 255, 0.42));
  animation: lightStream 6.4s linear infinite;
}

.mentor-flow::before {
  top: 86px;
  transform: rotate(14deg);
}

.mentor-flow::after {
  top: 195px;
}

.mentor-particle--one {
  top: 304px;
  transform: rotate(-14deg);
}

.mentor-particle--two {
  top: 138px;
  display: none;
  opacity: 0.45;
  transform: rotate(5deg);
  animation-delay: -0.8s;
}

.mentor-particle--three {
  top: 258px;
  display: none;
  opacity: 0.45;
  transform: rotate(-5deg);
  animation-delay: -1.4s;
}

.mentor-particle--four {
  top: 312px;
  display: none;
  opacity: 0.45;
  transform: rotate(4deg);
  animation-delay: -1.8s;
}

.system-mentor {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 24px 20px 26px;
  text-align: center;
  border: 1px solid rgba(246, 196, 92, 0.5);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 26%, rgba(246, 196, 92, 0.22), transparent 11rem),
    linear-gradient(180deg, rgba(36, 22, 6, 0.74), rgba(5, 6, 20, 0.92));
  box-shadow:
    0 0 38px rgba(246, 196, 92, 0.26),
    0 0 54px rgba(185, 103, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.system-mentor::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(246, 196, 92, 0.18);
  border-radius: 999px;
  transform: rotate(-16deg) scaleX(0.78);
  filter: drop-shadow(0 0 18px rgba(246, 196, 92, 0.42));
}

.system-mentor__image {
  width: 150px;
  height: 150px;
  margin-bottom: 18px;
  border: 1px solid rgba(246, 196, 92, 0.34);
  box-shadow:
    0 0 34px rgba(246, 196, 92, 0.36),
    0 0 46px rgba(185, 103, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.system-side-card {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: center;
  align-content: center;
  justify-items: center;
  width: 240px;
  height: 240px;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  text-align: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.system-side-card::before {
  display: none;
}

.system-side-card__image {
  position: relative;
  z-index: 1;
  display: grid;
  width: 212px;
  height: 212px;
  margin-bottom: 0;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  box-shadow:
    0 0 30px rgba(246, 196, 92, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.system-side-card--person .system-side-card__image {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.22),
    0 0 30px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.system-side-card--mentor .system-side-card__image {
  border-color: rgba(246, 196, 92, 0.18);
  box-shadow:
    0 0 20px rgba(246, 196, 92, 0.22),
    0 0 30px rgba(246, 196, 92, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.system-side-card__image img {
  width: 112%;
  height: 112%;
  object-fit: cover;
}

.system-side-card--person {
  box-shadow: none;
}

.system-side-card--mentor {
  box-shadow: none;
}

.system-side-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.system-map {
  grid-template-columns: 240px 0.5fr minmax(340px, 390px) 0.5fr 240px;
  min-height: 580px;
  padding: 38px;
  align-items: stretch;
}

.system-side-card--person,
.system-side-card--mentor {
  align-self: center;
  justify-self: center;
  width: 240px;
  min-height: 300px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  justify-items: center;
}

.streams,
.mentor-flow {
  align-self: stretch;
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  align-items: center;
}

.streams .stream,
.mentor-flow .mentor-particle {
  position: relative;
  top: auto;
  left: -14px;
  right: -14px;
  width: auto;
  opacity: 1;
}

.mentor-flow::before,
.mentor-flow::after {
  display: none;
}

.mentor-particle--one,
.mentor-particle--two,
.mentor-particle--three,
.mentor-particle--four {
  display: block;
}

.stream--one {
  transform: rotate(-16deg);
}

.stream--two {
  transform: rotate(-6deg);
}

.stream--three {
  transform: rotate(6deg);
}

.stream--four {
  transform: rotate(16deg);
}

.mentor-particle--one {
  transform: rotate(16deg);
}

.mentor-particle--two {
  transform: rotate(6deg);
}

.mentor-particle--three {
  transform: rotate(-6deg);
}

.mentor-particle--four {
  transform: rotate(-16deg);
}

.understanding-stack {
  gap: 14px;
  justify-items: stretch;
  align-self: stretch;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  align-items: center;
}

.understanding-card {
  grid-template-columns: 86px 1fr;
  gap: 16px;
  justify-items: start;
  align-content: center;
  width: 100%;
  min-height: 0;
  height: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.07), transparent 8rem),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  text-align: left;
}

.understanding-card__image {
  width: 86px;
  height: 86px;
}

.understanding-card__body h3,
.system-card-copy h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
}

.understanding-card__body p,
.system-card-copy p {
  margin: 0;
  color: #d7d0e8;
  font-size: 13px;
  line-height: 1.5;
}

.system-side-card {
  width: 240px;
  min-height: 300px;
  height: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 196, 92, 0.1), transparent 9rem),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.system-side-card__image {
  width: 128px;
  height: 128px;
  margin-bottom: 16px;
}

.system-card-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.system-side-card--person .system-card-copy {
  justify-content: center;
}

.system-side-card--mentor .system-card-copy {
  justify-content: flex-start;
}

.levels-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.levels-row::before {
  position: absolute;
  top: 46px;
  right: 7%;
  left: 7%;
  z-index: -1;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(86, 169, 255, 0.2), var(--gold), var(--violet), var(--gold));
  box-shadow: 0 0 22px rgba(246, 196, 92, 0.46);
}

.level-node {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 190px;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.09), transparent 7rem),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.level-node::after {
  position: absolute;
  top: 31px;
  right: -16px;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  filter: drop-shadow(0 0 9px rgba(246, 196, 92, 0.8));
  transform: rotate(45deg);
}

.level-node:last-child::after {
  display: none;
}

.level-node span {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  color: #fff;
  place-items: center;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 0 28px currentColor;
}

.level-node strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.level-node--blue {
  border-color: rgba(86, 169, 255, 0.45);
}

.level-node--blue span {
  color: #76b8ff;
  background: radial-gradient(circle, rgba(86, 169, 255, 0.34), rgba(15, 21, 64, 0.92));
}

.level-node--gold {
  border-color: rgba(246, 196, 92, 0.48);
}

.level-node--gold span {
  color: var(--gold-bright);
  background: radial-gradient(circle, rgba(246, 196, 92, 0.34), rgba(38, 25, 8, 0.92));
}

.level-node--violet {
  border-color: rgba(185, 103, 255, 0.52);
}

.level-node--violet span {
  color: #d792ff;
  background: radial-gradient(circle, rgba(185, 103, 255, 0.34), rgba(31, 12, 50, 0.92));
}

.level-node--mentor {
  border-color: rgba(246, 196, 92, 0.58);
  background:
    radial-gradient(circle at 50% 12%, rgba(246, 196, 92, 0.2), transparent 9rem),
    rgba(255, 255, 255, 0.06);
}

.level-node--mentor span {
  color: var(--gold-bright);
  background: radial-gradient(circle, rgba(246, 196, 92, 0.42), rgba(47, 27, 8, 0.95));
}

.module-stack {
  display: grid;
  gap: 18px;
}

.mini-node {
  position: relative;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.mini-node::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  opacity: 0.42;
}

.mini-node--blue::before {
  background: radial-gradient(circle at 20% 20%, rgba(86, 169, 255, 0.48), transparent 60%);
}

.mini-node--gold::before {
  background: radial-gradient(circle at 20% 20%, rgba(246, 196, 92, 0.5), transparent 60%);
}

.mini-node--violet::before {
  background: radial-gradient(circle at 20% 20%, rgba(185, 103, 255, 0.5), transparent 60%);
}

.mini-node span,
.mentor-node span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-node strong,
.mentor-node strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.mentor-stream {
  position: relative;
  width: 110px;
  align-self: center;
}

.mentor-node {
  position: relative;
  min-height: 400px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 92, 0.38);
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(7, 8, 25, 0.22), rgba(7, 8, 25, 0.88)),
    radial-gradient(circle at 50% 10%, rgba(246, 196, 92, 0.22), transparent 18rem);
  box-shadow:
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mentor-node img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 18px;
  filter: saturate(1.08) contrast(1.04);
}

.mentor-node__halo {
  position: absolute;
  top: 42px;
  right: 30px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(246, 196, 92, 0.18);
  filter: blur(34px);
}

.gold-statement,
.large-note,
.framed-statement {
  margin: 40px auto 0;
  text-align: center;
  font-size: clamp(28px, 4.6vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
  background: linear-gradient(100deg, #fff4cc, #f2ad3d 38%, #c57aff 70%, #fff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(246, 196, 92, 0.28));
}

.gold-statement--soft,
.large-note--soft {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cards-grid--mentor {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.cards-grid--mentor .source-card--mentor {
  grid-column: 1 / -1;
  width: min(100%, calc((100% - 60px) / 4));
  min-height: 540px;
  justify-self: center;
}

.source-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.source-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 330px;
  content: "";
  opacity: 0.72;
  filter: blur(18px);
}

.source-card::after {
  position: absolute;
  top: 220px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100px;
  content: "";
  pointer-events: none;
}

.source-card--blue {
  border-color: rgba(86, 169, 255, 0.42);
  background:
    linear-gradient(180deg, #04092e 0%, #05082a 24%, #04071d 58%, #02030e 100%),
    radial-gradient(circle at 50% 8%, rgba(48, 66, 210, 0.22), transparent 16rem);
}

.source-card--blue::before {
  background: radial-gradient(circle at 50% 0%, rgba(68, 86, 255, 0.5), transparent 68%);
}

.source-card--blue::after {
  background: linear-gradient(180deg, rgba(4, 9, 46, 0), #05082a 72%, rgba(4, 7, 29, 0));
}

.source-card--gold {
  border-color: rgba(246, 196, 92, 0.46);
  background:
    linear-gradient(180deg, #160d04 0%, #120b04 24%, #090814 60%, #02030e 100%),
    radial-gradient(circle at 50% 8%, rgba(196, 120, 18, 0.2), transparent 16rem);
}

.source-card--gold::before {
  background: radial-gradient(circle at 50% 0%, rgba(246, 169, 32, 0.46), transparent 68%);
}

.source-card--gold::after {
  background: linear-gradient(180deg, rgba(22, 13, 4, 0), #120b04 72%, rgba(9, 8, 20, 0));
}

.source-card--gold img {
  width: calc(100% + 4px);
  margin: -2px -2px 24px;
}

.source-card--violet {
  border-color: rgba(185, 103, 255, 0.52);
  background:
    linear-gradient(180deg, #150725 0%, #120620 24%, #090615 60%, #02030e 100%),
    radial-gradient(circle at 50% 8%, rgba(146, 64, 210, 0.22), transparent 16rem);
}

.source-card--violet::before {
  background: radial-gradient(circle at 50% 0%, rgba(185, 103, 255, 0.5), transparent 68%);
}

.source-card--violet::after {
  background: linear-gradient(180deg, rgba(21, 7, 37, 0), #120620 72%, rgba(9, 6, 21, 0));
}

.source-card--pink {
  border-color: rgba(242, 140, 255, 0.48);
  background:
    linear-gradient(180deg, #18071f 0%, #14061a 24%, #090615 60%, #02030e 100%),
    radial-gradient(circle at 50% 8%, rgba(196, 64, 210, 0.2), transparent 16rem);
}

.source-card--pink::before {
  background: radial-gradient(circle at 50% 0%, rgba(242, 140, 255, 0.46), transparent 68%);
}

.source-card--pink::after {
  background: linear-gradient(180deg, rgba(24, 7, 31, 0), #14061a 72%, rgba(9, 6, 21, 0));
}

.source-card--mentor {
  border-color: rgba(246, 196, 92, 0.5);
  background:
    linear-gradient(180deg, #211405 0%, #1b1006 24%, #0b0917 60%, #030515 100%),
    radial-gradient(circle at 50% 8%, rgba(246, 177, 42, 0.3), transparent 16rem);
}

.source-card--mentor::before {
  background: radial-gradient(circle at 50% 0%, rgba(246, 177, 42, 0.48), transparent 68%);
}

.source-card--mentor::after {
  background: linear-gradient(180deg, rgba(33, 20, 5, 0), #1b1006 72%, rgba(11, 9, 23, 0));
}

.source-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.44),
    0 0 38px rgba(185, 103, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.source-card img {
  position: relative;
  z-index: 1;
  width: calc(100% + 2px);
  height: auto;
  max-width: none;
  margin: -1px -1px 24px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.source-card--blue img {
  width: calc(100% + 8px);
  margin-left: -7px;
}

.source-card > div {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 22px;
}

.source-card h3 {
  color: #fff;
}

.source-card p {
  margin-bottom: 12px;
  font-size: 15px;
}

.source-card__status {
  position: relative;
  z-index: 2;
  align-self: center;
  width: max-content;
  max-width: calc(100% - 44px);
  margin: 0 auto 12px;
  padding: 8px 12px;
  color: #fff6d7;
  border: 1px solid rgba(246, 196, 92, 0.34);
  border-radius: 999px;
  background: rgba(246, 196, 92, 0.09);
  box-shadow: 0 0 20px rgba(246, 196, 92, 0.14);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.source-card a,
.availability-card__bottom a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(246, 196, 92, 0.42);
  border-radius: 999px;
  color: var(--gold-bright);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.source-card a {
  position: relative;
  z-index: 2;
  margin: 0 22px 22px;
}

.source-card a:hover,
.availability-card__bottom a:hover {
  color: #fff8d7;
  border-color: rgba(255, 226, 148, 0.82);
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 226, 148, 0.34), transparent 1.8rem),
    linear-gradient(90deg, rgba(185, 103, 255, 0.18), rgba(246, 196, 92, 0.18));
  box-shadow:
    0 0 24px rgba(246, 196, 92, 0.42),
    0 0 34px rgba(185, 103, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.source-card a:hover span,
.availability-card__bottom a:hover span {
  transform: translate(2px, -2px);
}

.source-card a span,
.availability-card__bottom a span {
  transition: transform 0.22s ease;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.compare-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.compare-card--muted {
  opacity: 0.84;
}

.compare-card--space {
  border-color: rgba(246, 196, 92, 0.4);
  background:
    radial-gradient(circle at 84% 10%, rgba(246, 196, 92, 0.22), transparent 16rem),
    radial-gradient(circle at 12% 20%, rgba(185, 103, 255, 0.2), transparent 18rem),
    var(--panel-strong);
  box-shadow:
    var(--shadow-gold),
    0 30px 100px rgba(0, 0, 0, 0.42);
}

.compare-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 30px;
  color: #d7d0e8;
  line-height: 1.5;
}

.compare-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.compare-card--space li::before {
  background: linear-gradient(135deg, var(--gold), var(--violet));
  box-shadow: 0 0 14px rgba(246, 196, 92, 0.58);
}

.large-note {
  width: min(920px, 100%);
}

.roadmap-section .section-heading {
  width: min(780px, 100%);
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.availability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 430px;
  padding: 22px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 11rem),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.availability-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.72;
}

.availability-card__icon,
.availability-card__content,
.availability-card__bottom {
  position: relative;
  z-index: 1;
}

.availability-card__icon {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  box-shadow:
    0 0 30px rgba(246, 196, 92, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.availability-card__icon img {
  width: 116%;
  height: 116%;
  object-fit: cover;
}

.availability-card__content span {
  display: block;
  min-height: 2.8em;
  margin: 16px 0 16px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-card h3 {
  margin-bottom: 0;
  color: #fff;
}

.availability-card p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.58;
}

.availability-card__bottom {
  justify-items: center;
  display: grid;
  width: 100%;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.availability-card__bottom strong {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  color: #fff6d7;
  border: 1px solid rgba(246, 196, 92, 0.34);
  border-radius: 999px;
  background: rgba(246, 196, 92, 0.09);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(246, 196, 92, 0.14);
}

.availability-card__bottom a {
  width: 100%;
  min-height: 48px;
}

.availability-card--blue {
  border-color: rgba(86, 169, 255, 0.32);
}

.availability-card--blue::before {
  background: radial-gradient(circle at 12% 10%, rgba(86, 169, 255, 0.28), transparent 14rem);
}

.availability-card--gold {
  border-color: rgba(246, 196, 92, 0.36);
}

.availability-card--gold::before {
  background: radial-gradient(circle at 12% 10%, rgba(246, 196, 92, 0.3), transparent 14rem);
}

.availability-card--violet {
  border-color: rgba(185, 103, 255, 0.38);
}

.availability-card--violet::before {
  background: radial-gradient(circle at 12% 10%, rgba(185, 103, 255, 0.32), transparent 14rem);
}

.availability-card--mentor {
  border-color: rgba(246, 196, 92, 0.42);
}

.availability-card--mentor::before {
  background:
    radial-gradient(circle at 12% 10%, rgba(246, 196, 92, 0.28), transparent 14rem),
    radial-gradient(circle at 82% 16%, rgba(185, 103, 255, 0.2), transparent 13rem);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  width: min(980px, 100%);
  margin: 0 auto;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: transparent;
  background:
    linear-gradient(100deg, #fff2cc, #f2a83b, #b967ff, #76b8ff, #fff2cc),
    radial-gradient(circle at 20% 20%, rgba(246, 196, 92, 0.16), transparent 10rem),
    rgba(255, 255, 255, 0.055);
  background-size: 260% 100%, auto, auto;
  background-clip: text, border-box, border-box;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(185, 103, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  animation: shimmerText 12s ease-in-out infinite;
}

.tag-cloud span:nth-child(2n) {
  border-color: rgba(185, 103, 255, 0.26);
  animation-delay: -3.8s;
}

.tag-cloud span:nth-child(3n) {
  border-color: rgba(246, 196, 92, 0.3);
  animation-delay: -7.6s;
}

.navigation-card,
.final-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 92, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 14%, rgba(246, 196, 92, 0.2), transparent 20rem),
    radial-gradient(circle at 8% 100%, rgba(86, 169, 255, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(12, 14, 41, 0.86), rgba(4, 5, 18, 0.86));
  box-shadow:
    var(--shadow-violet),
    0 36px 120px rgba(0, 0, 0, 0.46);
}

.navigation-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 48px;
}

.navigation-card h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.navigation-card__text p:last-child {
  color: #fff;
}

.navigation-card__text {
  display: grid;
  width: min(860px, 100%);
  margin: 0 auto;
  gap: 12px;
  text-align: center;
}

.navigation-card__text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.framed-statement {
  grid-column: 1 / -1;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(246, 196, 92, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  font-size: clamp(28px, 4vw, 54px);
}

.decision-example {
  position: relative;
  grid-column: 1 / -1;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 92, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 28%, rgba(86, 169, 255, 0.16), transparent 17rem),
    radial-gradient(circle at 72% 20%, rgba(246, 196, 92, 0.18), transparent 18rem),
    radial-gradient(circle at 86% 78%, rgba(185, 103, 255, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 46px rgba(185, 103, 255, 0.14);
}

.decision-example::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, #000 10%, transparent 78%);
}

.decision-example__head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.decision-example__head span {
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-example__head strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.decision-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.decision-flow::before {
  position: absolute;
  top: 50%;
  right: 7%;
  left: 7%;
  z-index: -1;
  height: 3px;
  content: "";
  background:
    radial-gradient(circle at 14% 50%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 54% 50%, rgba(246, 196, 92, 0.95) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(86, 169, 255, 0.28), rgba(246, 196, 92, 0.8), rgba(185, 103, 255, 0.82), rgba(246, 196, 92, 0.95));
  background-size: 160px 100%, 230px 100%, 100% 100%;
  filter:
    drop-shadow(0 0 12px rgba(246, 196, 92, 0.78))
    drop-shadow(0 0 18px rgba(185, 103, 255, 0.34));
  animation: lightStream 7.4s linear infinite;
}

.decision-node {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 178px;
  padding: 20px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(5, 7, 25, 0.78);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.decision-node::before {
  position: absolute;
  top: -44px;
  left: 50%;
  width: 130px;
  height: 130px;
  content: "";
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.5;
  transform: translateX(-50%);
}

.decision-node span,
.decision-node strong,
.decision-node p {
  position: relative;
  z-index: 1;
}

.decision-node span {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-node strong {
  color: #fff;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.decision-node p {
  margin: 0;
  color: #d8d1ea;
  font-size: 14px;
  line-height: 1.48;
}

.decision-node--situation {
  border-color: rgba(255, 255, 255, 0.18);
}

.decision-node--situation::before {
  background: rgba(255, 255, 255, 0.16);
}

.decision-node--gold {
  border-color: rgba(246, 196, 92, 0.36);
}

.decision-node--gold::before {
  background: rgba(246, 196, 92, 0.34);
}

.decision-node--violet {
  border-color: rgba(185, 103, 255, 0.4);
}

.decision-node--violet::before {
  background: rgba(185, 103, 255, 0.34);
}

.decision-node--blue {
  border-color: rgba(86, 169, 255, 0.36);
}

.decision-node--blue::before {
  background: rgba(86, 169, 255, 0.3);
}

.decision-node--mentor {
  border-color: rgba(246, 196, 92, 0.58);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 196, 92, 0.18), transparent 11rem),
    rgba(10, 8, 24, 0.9);
  box-shadow:
    0 0 34px rgba(246, 196, 92, 0.22),
    0 20px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.decision-node--mentor::before {
  background: rgba(246, 196, 92, 0.42);
}

.decision-example__note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.mentor-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  grid-column: 1 / -1;
  min-height: 520px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 92, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(246, 196, 92, 0.18), transparent 15rem),
    radial-gradient(circle at 24% 34%, rgba(86, 169, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 78% 28%, rgba(185, 103, 255, 0.2), transparent 20rem),
    linear-gradient(180deg, rgba(9, 12, 35, 0.82), rgba(4, 5, 18, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 48px rgba(185, 103, 255, 0.14),
    0 38px 120px rgba(0, 0, 0, 0.36);
}

.mentor-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 43%, #000 8%, transparent 78%);
}

.mentor-visual::after {
  display: none;
}

.life-situations,
.space-core,
.navigation-rain,
.navigation-query-card,
.navigation-decision,
.mentor-visual__note {
  position: relative;
  z-index: 1;
}

.navigation-rain {
  display: none;
}

.navigation-rain span {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 50%, rgba(246, 196, 92, 0.9) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(246, 196, 92, 0.76), rgba(185, 103, 255, 0.58), transparent);
  background-size: 130px 100%, 190px 100%, 100% 100%;
  filter:
    drop-shadow(0 0 8px rgba(246, 196, 92, 0.5))
    drop-shadow(0 0 12px rgba(185, 103, 255, 0.24));
  opacity: 0.68;
  animation: mentorParticleFlow 8.8s linear infinite;
}

.navigation-rain--top span {
  left: 26%;
  width: 22%;
}

.navigation-rain--bottom span {
  left: 52%;
  width: 22%;
}

.navigation-rain span:nth-child(1) {
  top: 42%;
}

.navigation-rain span:nth-child(2) {
  top: 50%;
  opacity: 0.82;
  animation-delay: -1.4s;
}

.navigation-rain span:nth-child(3) {
  top: 58%;
  animation-delay: -2.6s;
}

.navigation-rain--top span {
  transform: rotate(-2deg);
}

.navigation-rain--bottom span {
  transform: rotate(2deg);
}

.life-situations {
  min-height: 360px;
}

.life-lines,
.life-lines span {
  position: absolute;
  pointer-events: none;
}

.life-lines {
  inset: 0;
  z-index: 0;
}

.life-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(246, 196, 92, 0.72), rgba(185, 103, 255, 0.56), transparent);
  background-size: 140px 100%, 100% 100%;
  filter:
    drop-shadow(0 0 8px rgba(246, 196, 92, 0.52))
    drop-shadow(0 0 12px rgba(185, 103, 255, 0.24));
  opacity: 0.72;
  animation: mentorParticleFlow 9s linear infinite;
}

.life-lines span:nth-child(1) {
  top: 92px;
  left: 18%;
  width: 48%;
  transform: rotate(16deg);
}

.life-lines span:nth-child(2) {
  top: 144px;
  left: 9%;
  width: 62%;
  transform: rotate(-10deg);
  animation-delay: -1.4s;
}

.life-lines span:nth-child(3) {
  top: 206px;
  left: 22%;
  width: 54%;
  transform: rotate(12deg);
  animation-delay: -2.2s;
}

.life-lines span:nth-child(4) {
  top: 258px;
  left: 12%;
  width: 58%;
  transform: rotate(-17deg);
  animation-delay: -3s;
}

.life-lines span:nth-child(5) {
  top: 306px;
  left: 28%;
  width: 42%;
  transform: rotate(8deg);
  animation-delay: -4s;
}

.situation-chip {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #efe9ff;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 196, 92, 0.13), transparent 8rem),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(185, 103, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-weight: 700;
}

.situation-chip--move {
  top: 28px;
  left: 9%;
}

.situation-chip--work {
  top: 86px;
  right: 7%;
}

.situation-chip--relations {
  top: 148px;
  left: 22%;
}

.situation-chip--home {
  top: 212px;
  left: 2%;
}

.situation-chip--project {
  top: 264px;
  right: 10%;
}

.situation-chip--stage {
  top: 322px;
  left: 30%;
}

.space-core {
  display: grid;
  align-self: center;
  justify-self: center;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 1px solid rgba(246, 196, 92, 0.36);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 196, 92, 0.18), transparent 5rem),
    rgba(0, 0, 0, 0.32);
  box-shadow:
    0 0 38px rgba(246, 196, 92, 0.34),
    0 0 58px rgba(185, 103, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  animation: none;
}

.space-core {
  z-index: 4;
}

.navigation-query-card,
.navigation-decision {
  z-index: 3;
}

.space-core img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border-radius: inherit;
}

.navigation-query-card,
.navigation-decision {
  display: grid;
  align-content: center;
  align-self: stretch;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(246, 196, 92, 0.34);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 196, 92, 0.2), transparent 14rem),
    radial-gradient(circle at 92% 20%, rgba(185, 103, 255, 0.16), transparent 15rem),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 34px rgba(246, 196, 92, 0.22),
    0 0 48px rgba(185, 103, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.navigation-query-card {
  gap: 14px;
  border-color: rgba(185, 103, 255, 0.28);
  background:
    radial-gradient(circle at 8% 10%, rgba(185, 103, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 86% 80%, rgba(246, 196, 92, 0.12), transparent 15rem),
    rgba(255, 255, 255, 0.06);
}

.navigation-query-card p {
  margin: 0;
  color: #efe9ff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.58;
}

.navigation-query-card__label {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navigation-query-card__question {
  margin-top: 14px !important;
  color: #fff !important;
  font-size: clamp(22px, 2.6vw, 28px) !important;
  line-height: 1.32 !important;
  letter-spacing: -0.03em;
}

.navigation-insight + .navigation-insight {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navigation-insight--mentor {
  padding-top: 18px;
  border-top: 1px solid rgba(246, 196, 92, 0.22);
}

.navigation-insight span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navigation-insight p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: -0.015em;
}

.navigation-insight--mentor span {
  color: var(--gold-bright);
}

.navigation-insight--mentor p {
  color: #f7f0ff;
}

.navigation-decision span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navigation-decision p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: -0.015em;
}

.navigation-decision p + p {
  margin-top: 16px;
}

.mentor-visual__note {
  width: min(860px, 100%);
  margin: 0 auto;
  color: #d7d0e8;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
}

.mentor-core {
  position: absolute;
  top: 250px;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: 218px;
  height: 218px;
  padding: 0;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(246, 196, 92, 0.46);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 26%, rgba(246, 196, 92, 0.24), transparent 8rem),
    radial-gradient(circle at 50% 76%, rgba(185, 103, 255, 0.16), transparent 9rem),
    rgba(6, 7, 23, 0.88);
  box-shadow:
    0 0 42px rgba(246, 196, 92, 0.28),
    0 0 68px rgba(185, 103, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.mentor-core::before {
  position: absolute;
  inset: -18px;
  content: "";
  border: 1px solid rgba(185, 103, 255, 0.18);
  border-radius: inherit;
  filter: drop-shadow(0 0 24px rgba(185, 103, 255, 0.34));
}

.mentor-core__image {
  position: relative;
  z-index: 1;
  width: 152px;
  height: 152px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 92, 0.36);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  box-shadow:
    0 0 34px rgba(246, 196, 92, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mentor-core__image img {
  width: 116%;
  height: 116%;
  object-fit: cover;
}

.mentor-core strong {
  position: relative;
  z-index: 1;
  color: var(--gold-bright);
  font-size: 17px;
  letter-spacing: 0.16em;
}

.insight-node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 176px;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 5rem),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.insight-node span {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.insight-node--top {
  top: 72px;
  left: 50%;
  border-color: rgba(86, 169, 255, 0.36);
  box-shadow:
    0 0 28px rgba(86, 169, 255, 0.18),
    0 22px 70px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.insight-node--left {
  top: 292px;
  left: 8%;
  border-color: rgba(246, 196, 92, 0.38);
  box-shadow:
    0 0 28px rgba(246, 196, 92, 0.18),
    0 22px 70px rgba(0, 0, 0, 0.28);
}

.insight-node--right {
  top: 292px;
  right: 8%;
  border-color: rgba(185, 103, 255, 0.4);
  box-shadow:
    0 0 28px rgba(185, 103, 255, 0.2),
    0 22px 70px rgba(0, 0, 0, 0.28);
}

.insight-node--bottom {
  top: 488px;
  left: 50%;
  border-color: rgba(246, 196, 92, 0.34);
  box-shadow:
    0 0 28px rgba(246, 196, 92, 0.16),
    0 22px 70px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.mentor-link,
.mentor-output {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(246, 196, 92, 0.78), rgba(185, 103, 255, 0.68), transparent);
  background-size: 180px 100%, 100% 100%;
  filter:
    drop-shadow(0 0 10px rgba(246, 196, 92, 0.58))
    drop-shadow(0 0 16px rgba(185, 103, 255, 0.28));
  opacity: 0.86;
  animation: mentorParticleFlow 10s linear infinite;
}

.mentor-link--top,
.mentor-link--bottom,
.mentor-output {
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
}

.mentor-link--top,
.mentor-link--bottom {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    linear-gradient(180deg, transparent, rgba(246, 196, 92, 0.78), rgba(185, 103, 255, 0.62), transparent);
  background-size: 100% 180px, 100% 100%;
  animation: mentorParticleFlowDown 10s linear infinite;
}

.mentor-link--top {
  top: 150px;
  height: 118px;
}

.mentor-link--bottom {
  top: 454px;
  height: 46px;
}

.mentor-link--left,
.mentor-link--right {
  top: 330px;
  width: 25%;
  height: 3px;
}

.mentor-link--left {
  left: 22%;
}

.mentor-link--right {
  right: 22%;
  animation-direction: reverse;
}

.mentor-output {
  top: 552px;
  height: 46px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    linear-gradient(180deg, rgba(246, 196, 92, 0.88), rgba(185, 103, 255, 0.6), transparent);
  background-size: 100% 150px, 100% 100%;
  animation: mentorParticleFlowDown 11s linear infinite;
}

.conscious-decision {
  position: absolute;
  right: 50%;
  bottom: 34px;
  z-index: 3;
  width: min(520px, calc(100% - 48px));
  padding: 18px 24px;
  text-align: center;
  border: 1px solid rgba(246, 196, 92, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 196, 92, 0.18), transparent 10rem),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 32px rgba(246, 196, 92, 0.2),
    0 0 42px rgba(185, 103, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transform: translateX(50%);
}

.conscious-decision span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conscious-decision p {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.42;
}

.final-screen {
  min-height: 72svh;
  display: grid;
  align-content: center;
  justify-items: center;
}

.final-screen .section-heading {
  margin-bottom: 34px;
}

.final-card {
  width: min(920px, 100%);
  padding: clamp(34px, 5vw, 56px);
  text-align: center;
}

.final-card h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.final-card::before {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 25rem;
  height: 25rem;
  content: "";
  border: 1px solid rgba(86, 169, 255, 0.22);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 101, 255, 0.28), transparent 64%);
}

.final-card__lead {
  width: min(680px, 100%);
  margin: 0 auto 36px;
  color: #fff;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.final-paths {
  display: grid;
  gap: 16px;
  text-align: left;
}

.final-path {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.08), transparent 14rem),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.22);
}

.final-path--companion {
  border-color: rgba(86, 169, 255, 0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(86, 169, 255, 0.16), transparent 14rem),
    rgba(255, 255, 255, 0.045);
}

.final-path--numerologist {
  border-color: rgba(246, 196, 92, 0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 196, 92, 0.14), transparent 14rem),
    rgba(255, 255, 255, 0.045);
}

.final-path--astrologer {
  border-color: rgba(185, 103, 255, 0.3);
  background:
    radial-gradient(circle at 10% 0%, rgba(185, 103, 255, 0.16), transparent 14rem),
    rgba(255, 255, 255, 0.045);
}

.final-path--tarologist {
  border-color: rgba(242, 140, 255, 0.3);
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 140, 255, 0.16), transparent 14rem),
    rgba(255, 255, 255, 0.045);
}

.final-path__text {
  margin: 0 0 20px;
  color: #d7d0e8;
  font-size: 16px;
  line-height: 1.68;
}

.final-path__button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 6px 22px 6px 8px;
  border: 1px solid rgba(246, 196, 92, 0.42);
  border-radius: 999px;
  color: var(--gold-bright);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.final-path__button img {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.final-path__button span {
  flex: 1;
  text-align: left;
}

.final-path__button:hover {
  color: #fff8d7;
  border-color: rgba(255, 226, 148, 0.82);
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 226, 148, 0.34), transparent 1.8rem),
    linear-gradient(90deg, rgba(185, 103, 255, 0.18), rgba(246, 196, 92, 0.18));
  box-shadow:
    0 0 24px rgba(246, 196, 92, 0.42),
    0 0 34px rgba(185, 103, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.final-path--companion .final-path__button {
  border-color: rgba(86, 169, 255, 0.42);
}

.final-path--companion .final-path__button:hover {
  border-color: rgba(118, 184, 255, 0.82);
  background:
    radial-gradient(circle at 86% 50%, rgba(118, 184, 255, 0.28), transparent 1.8rem),
    linear-gradient(90deg, rgba(86, 169, 255, 0.18), rgba(185, 103, 255, 0.16));
  box-shadow:
    0 0 24px rgba(86, 169, 255, 0.36),
    0 0 34px rgba(185, 103, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.final-path--numerologist .final-path__button {
  border-color: rgba(246, 196, 92, 0.42);
}

.final-path--astrologer .final-path__button {
  border-color: rgba(185, 103, 255, 0.42);
}

.final-path--astrologer .final-path__button:hover {
  border-color: rgba(210, 150, 255, 0.82);
  background:
    radial-gradient(circle at 86% 50%, rgba(210, 150, 255, 0.28), transparent 1.8rem),
    linear-gradient(90deg, rgba(185, 103, 255, 0.2), rgba(86, 169, 255, 0.14));
  box-shadow:
    0 0 24px rgba(185, 103, 255, 0.38),
    0 0 34px rgba(86, 169, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.final-path--tarologist .final-path__button {
  border-color: rgba(242, 140, 255, 0.42);
}

.final-path--tarologist .final-path__button:hover {
  border-color: rgba(255, 176, 255, 0.82);
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 176, 255, 0.28), transparent 1.8rem),
    linear-gradient(90deg, rgba(242, 140, 255, 0.2), rgba(185, 103, 255, 0.14));
  box-shadow:
    0 0 24px rgba(242, 140, 255, 0.38),
    0 0 34px rgba(185, 103, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.final-screen__note {
  width: min(680px, 100%);
  margin: 32px auto 0;
  color: #d7d0e8;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes personPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes lightStream {
  0% {
    background-position:
      0 50%,
      0 50%,
      0 50%;
    opacity: 0.74;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position:
      240px 50%,
      360px 50%,
      0 50%;
    opacity: 0.74;
  }
}

@keyframes mentorParticleFlow {
  0% {
    background-position:
      0 50%,
      0 50%;
  }
  100% {
    background-position:
      360px 50%,
      0 50%;
  }
}

@keyframes mentorParticleFlowDown {
  0% {
    background-position:
      50% 0,
      50% 0;
  }
  100% {
    background-position:
      50% 300px,
      50% 0;
  }
}

@keyframes shimmerText {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes progressFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 180% 50%;
  }
}

@keyframes progressSpark {
  0% {
    transform: translateX(-100%);
  }
  58%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes progressCardGlow {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-80%);
  }
  45% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translateX(80%);
  }
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .system-map {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    align-items: center;
  }

  .streams,
  .mentor-flow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
    width: auto;
    height: 56px;
    margin: 0 auto;
    grid-template-rows: none;
  }

  .streams .stream,
  .mentor-flow .mentor-particle {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    flex: 0 0 3px;
    width: 3px;
    height: 100%;
    transform: none;
    animation: none;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
      radial-gradient(circle at 50% 58%, rgba(246, 196, 92, 0.9) 0 2px, transparent 3px),
      linear-gradient(180deg, transparent, rgba(246, 196, 92, 0.72), rgba(185, 103, 255, 0.56), transparent);
    background-size: 100% 120px, 100% 180px, 100% 100%;
  }

  .mentor-flow::before,
  .mentor-flow::after {
    display: none;
  }

  .stream--one,
  .stream--two,
  .stream--three,
  .stream--four,
  .mentor-particle--one,
  .mentor-particle--two,
  .mentor-particle--three,
  .mentor-particle--four {
    display: block;
  }

  .understanding-stack {
    width: min(640px, 100%);
    margin: 0 auto;
    align-self: center;
    grid-template-rows: none;
    gap: 14px;
  }

  .system-side-card--person,
  .system-side-card--mentor {
    width: min(360px, 100%);
    min-height: 0;
    justify-self: center;
  }

  .system-side-card {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .levels-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .levels-row::before,
  .level-node::after {
    display: none;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid--mentor .source-card--mentor {
    width: min(100%, calc((100% - 20px) / 2));
  }

  .source-card {
    min-height: 560px;
  }

  .availability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-flow {
    grid-template-columns: 1fr;
  }

  .decision-flow::before {
    top: 7%;
    bottom: 7%;
    left: 50%;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }

  .mentor-visual {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 24px;
  }

  .life-situations {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .space-core {
    margin: 0 auto;
  }

  .insight-node--left {
    left: 4%;
  }

  .insight-node--right {
    right: 4%;
  }

  .mentor-link--left {
    left: 20%;
    width: 23%;
  }

  .mentor-link--right {
    right: 20%;
    width: 23%;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 16px);
  }

  .header-cta {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1320px);
    padding: 78px 0;
  }

  .hero {
    min-height: 82svh;
    padding-top: 44px;
    padding-left: 0;
  }

  h1 {
    width: 100%;
    padding-right: 0;
    font-size: clamp(38px, 11.4vw, 58px);
    letter-spacing: -0.02em;
  }

  h1 span:last-child {
    font-size: 0.66em;
    letter-spacing: 0.018em;
  }

  h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .hero__lead {
    font-size: 25px;
  }

  .hero__text {
    font-size: 16px;
  }

  #compare .section-heading .eyebrow {
    white-space: normal;
  }

  .system-map,
  .navigation-card,
  .compare-card,
  .availability-card {
    padding: 22px;
  }

  .system-map {
    border-radius: 34px;
  }

  .roadmap-section .section-heading {
    width: 100%;
  }

  .levels-row,
  .cards-grid,
  .availability-grid,
  .compare-grid,
  .navigation-card {
    grid-template-columns: 1fr;
  }

  .cards-grid--mentor .source-card--mentor {
    width: 100%;
  }

  .understanding-card {
    grid-template-columns: 76px 1fr;
    width: 100%;
    height: auto;
    padding: 12px;
  }

  .understanding-card__image {
    width: 76px;
    height: 76px;
  }

  .understanding-card__body h3,
  .system-card-copy h3 {
    font-size: 16px;
  }

  .system-side-card {
    width: min(360px, 100%);
    min-height: 0;
    height: auto;
    margin: 0 auto;
    padding: 16px;
  }

  .system-side-card__image {
    width: 104px;
    height: 104px;
  }

  .decision-example {
    padding: 22px;
  }

  .decision-example__head {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .decision-node {
    min-height: 150px;
  }

  .mentor-visual {
    gap: 0;
    min-height: auto;
    padding: 18px;
  }

  .mentor-visual::after {
    display: none;
  }

  .navigation-rain span:nth-child(1) {
    display: none;
  }

  .navigation-rain span:nth-child(2) {
    display: none;
  }

  .navigation-rain span:nth-child(3) {
    display: none;
  }

  .life-situations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    min-height: 0;
  }

  .life-lines {
    display: none;
  }

  .situation-chip {
    position: static;
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
    backdrop-filter: none;
  }

  .space-core {
    width: 132px;
    height: 132px;
    z-index: 5;
    margin: 0 auto;
  }

  .navigation-query-card__question {
    font-size: clamp(20px, 6vw, 24px) !important;
  }

  .navigation-insight + .navigation-insight {
    margin-top: 14px;
    padding-top: 14px;
  }

  .navigation-insight p {
    font-size: 14px;
  }

  #how .section-heading p {
    font-size: 16px;
    line-height: 1.65;
  }

  .cards-grid--mentor {
    margin-top: 16px;
  }

  .navigation-query-card,
  .navigation-decision {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
  }

  .navigation-query-card {
    padding-bottom: 36px;
  }

  .navigation-decision {
    padding-top: 36px;
  }

  .navigation-query-card {
    gap: 10px;
  }

  .navigation-query-card p,
  .navigation-decision p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }

  .navigation-decision p + p {
    margin-top: 12px;
  }

  .mentor-core {
    top: 312px;
    width: 190px;
    height: 190px;
    padding: 0;
  }

  .mentor-core__image {
    width: 112px;
    height: 112px;
  }

  .insight-node {
    min-width: 150px;
    min-height: 62px;
    padding: 0 16px;
  }

  .insight-node--top {
    top: 58px;
  }

  .insight-node--left {
    top: 198px;
    left: 7%;
  }

  .insight-node--right {
    top: 198px;
    right: 7%;
  }

  .insight-node--bottom {
    top: 562px;
  }

  .mentor-link--top {
    top: 124px;
    height: 208px;
  }

  .mentor-link--left,
  .mentor-link--right {
    top: 288px;
    width: 28%;
  }

  .mentor-link--left {
    left: 20%;
    transform: rotate(18deg);
  }

  .mentor-link--right {
    right: 20%;
    transform: rotate(-18deg);
  }

  .mentor-link--bottom {
    top: 492px;
    height: 90px;
  }

  .mentor-output {
    top: 606px;
    height: 82px;
  }

  .conscious-decision {
    bottom: 34px;
    padding: 20px;
  }

  .source-card {
    min-height: auto;
  }

  .source-card img {
    height: auto;
  }

  .gold-statement,
  .large-note {
    font-size: 32px;
  }

  .tag-cloud {
    gap: 12px;
    justify-content: center;
  }

  .tag-cloud span {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    animation: shimmerText 12s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background:
      linear-gradient(100deg, #fff2cc, #f2a83b, #b967ff, #76b8ff, #fff2cc),
      radial-gradient(circle at 20% 20%, rgba(246, 196, 92, 0.12), transparent 10rem),
      rgba(255, 255, 255, 0.055);
    background-size: 260% 100%, auto, auto;
    background-clip: text, border-box, border-box;
    color: transparent;
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.24),
      0 0 18px rgba(185, 103, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 520px) {
  .section {
    width: min(100% - 18px, 1320px);
  }

  h1 {
    width: 100%;
    font-size: clamp(34px, 10.6vw, 48px);
  }

  h1 span:last-child {
    font-size: 0.64em;
    letter-spacing: 0.01em;
  }

  .brand {
    max-width: 100%;
  }

  .brand small {
    display: none;
  }

  .system-map,
  .navigation-card,
  .compare-card,
  .availability-card,
  .decision-example,
  .mentor-visual {
    border-radius: 24px;
  }

  .cards-grid {
    gap: 16px;
  }

  .mentor-visual {
    min-height: auto;
  }

  .insight-node {
    left: 50%;
    right: auto;
    width: min(220px, calc(100% - 42px));
    transform: translateX(-50%);
  }

  .insight-node--top {
    top: 48px;
  }

  .insight-node--left {
    top: 154px;
  }

  .insight-node--right {
    top: 260px;
  }

  .mentor-core {
    top: 382px;
  }

  .insight-node--bottom {
    top: 628px;
  }

  .mentor-link--left,
  .mentor-link--right {
    display: none;
  }

  .mentor-link--top {
    top: 112px;
    height: 292px;
  }

  .mentor-link--bottom {
    top: 552px;
    height: 96px;
  }

  .mentor-output {
    top: 706px;
    height: 88px;
  }

  .conscious-decision {
    bottom: 34px;
    width: calc(100% - 28px);
  }
}

.site-legal-note {
  width: min(1120px, calc(100% - 36px));
  margin: -24px auto 56px;
  padding: 0;
  text-align: center;
}

.site-legal-note a {
  color: #9f94c4;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.site-legal-note a:hover {
  color: var(--gold-bright);
}

@media (max-width: 760px) {
  .site-legal-note {
    width: min(100% - 24px, 1120px);
    margin-top: -12px;
    margin-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stream,
  .mentor-flow::before,
  .mentor-flow::after,
  .mentor-particle,
  .mentor-link,
  .mentor-output,
  .mentor-visual::after,
  .navigation-rain span,
  .tag-cloud span,
  .availability-card__bottom a {
    animation: none;
  }
}

@media (max-width: 760px) {
  .source-card,
  .compare-card,
  .navigation-card,
  .final-card,
  .availability-card,
  .decision-example,
  .mentor-visual {
    backdrop-filter: none;
  }
}
