:root {
  --bg: #090f1d;
  --bg-soft: #0e1729;
  --surface: rgba(19, 30, 50, 0.72);
  --surface-solid: #121d31;
  --surface-light: rgba(255, 255, 255, 0.055);
  --line: rgba(209, 222, 239, 0.13);
  --line-strong: rgba(221, 231, 244, 0.24);
  --text: #f5f1e9;
  --text-soft: #c5c4c0;
  --muted: #9fa6b2;
  --gold: #efc77b;
  --gold-strong: #d9a94e;
  --gold-soft: rgba(239, 199, 123, 0.12);
  --mint: #83d5b0;
  --mint-soft: rgba(131, 213, 176, 0.12);
  --violet: #9d8bd8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.22);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shell: 1180px;
  --serif:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia,
    serif;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
}
body {
  background:
    radial-gradient(circle at 50% -14%, rgba(104, 79, 168, 0.1), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.018), transparent 30%, rgba(131, 213, 176, 0.012) 68%, transparent);
  opacity: 0.72;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button {
  font: inherit;
}
svg {
  display: block;
}
img,
canvas {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 700;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
  position: relative;
}
.section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.constellation {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
  z-index: -3;
}
.page-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: -2;
}
.page-glow-a {
  width: 720px;
  height: 720px;
  top: -340px;
  left: -180px;
  background: radial-gradient(
    circle,
    rgba(111, 87, 180, 0.17),
    transparent 67%
  );
}
.page-glow-b {
  width: 620px;
  height: 620px;
  top: 34vh;
  right: -260px;
  background: radial-gradient(
    circle,
    rgba(34, 128, 120, 0.12),
    transparent 69%
  );
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: max(14px, env(safe-area-inset-top));
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(9, 15, 29, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(20px) saturate(130%);
}
.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 199, 123, 0.25);
  border-radius: 50%;
  background: rgba(239, 199, 123, 0.06);
  box-shadow: 0 0 24px rgba(239, 199, 123, 0.12);
}
.brand-mark span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 28%,
    #fff3ca 0 8%,
    var(--gold) 30%,
    var(--gold-strong) 72%,
    #7d5a25 100%
  );
  box-shadow: 0 0 16px rgba(239, 199, 123, 0.64);
}
.brand-copy {
  display: grid;
  line-height: 1.05;
}
.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.01em;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}
.site-nav a {
  position: relative;
  padding-block: 12px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}
.site-nav a:hover::after {
  right: 0;
}
.menu-toggle {
  display: none;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28) 48%, transparent 78%);
  transform: translateX(-130%);
  transition: transform 620ms var(--ease-out);
}
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:hover svg {
  transform: translateX(2px);
}
.button:hover::before {
  transform: translateX(130%);
}
.button:active {
  transform: translateY(0) scale(0.98);
}
.button-primary {
  color: #1c160b;
  background: linear-gradient(135deg, #f3d28f, var(--gold-strong));
  box-shadow:
    0 14px 40px rgba(217, 169, 78, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.5);
}
.button-primary:hover {
  box-shadow: 0 18px 48px rgba(217, 169, 78, 0.32);
}
.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}
.button-secondary:hover {
  border-color: rgba(239, 199, 123, 0.4);
  background: rgba(239, 199, 123, 0.08);
}
.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 14px;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}
.button-large {
  min-height: 58px;
  padding-inline: 30px;
}
.text-link {
  color: var(--text-soft);
  font-weight: 700;
  border-bottom: 1px solid rgba(239, 199, 123, 0.45);
  padding-block: 7px;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}
.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}

.hero {
  min-height: calc(100dvh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding-block: 66px 94px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow > span {
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 9px 4px 0;
  background: var(--gold);
}
.hero h1,
.section-heading h2,
.safety-copy h2,
.final-inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(45px, 5.5vw, 74px);
  line-height: 0.99;
  text-wrap: balance;
}
.hero h1 em {
  color: var(--gold);
  font-weight: inherit;
}
.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}
.risk-reducers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.risk-reducers li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 4px 0;
}
.risk-reducers svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  --rx: -4deg;
  --ry: 5deg;
  --sy: 0px;
  position: relative;
  min-height: 560px;
  margin: 0;
  isolation: isolate;
  perspective: 900px;
  transform: translate3d(0, var(--sy), 0);
  transition: transform 320ms var(--ease-out);
}
.hero-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 420ms var(--ease-out);
  will-change: transform;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 11% 5% 12%;
  border-radius: 48%;
  background: radial-gradient(
    circle,
    rgba(97, 75, 154, 0.23),
    rgba(32, 100, 102, 0.09) 48%,
    transparent 72%
  );
  filter: blur(8px);
  animation: visual-aura 6.5s ease-in-out infinite;
  animation-play-state: var(--motion-state, running);
}

.route-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.5fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
  margin-top: -24px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(239, 199, 123, 0.075),
    rgba(23, 38, 62, 0.72) 42%,
    rgba(32, 69, 72, 0.2)
  );
  box-shadow:
    var(--shadow-soft),
    inset 0 1px rgba(255, 255, 255, 0.045);
}
.route-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 34%);
  pointer-events: none;
}
.route-proof-heading,
.route-proof-list {
  position: relative;
  z-index: 1;
}
.route-proof-heading .eyebrow {
  margin-bottom: 12px;
}
.route-proof-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.03em;
}
.route-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.route-proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-width: 0;
  padding: 6px clamp(16px, 2.4vw, 28px);
  border-left: 1px solid var(--line);
}
.route-proof-list li:first-child {
  border-left: 0;
  padding-left: 0;
}
.route-proof-list li:last-child {
  padding-right: 0;
}
.route-proof-list li > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.route-proof-list strong {
  display: block;
  margin-top: -2px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}
.route-proof-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.psyche-core {
  position: absolute;
  width: 270px;
  height: 270px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) translateZ(90px);
  border-radius: 50%;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.32));
  animation: core-float 7s ease-in-out infinite;
}
.psyche-core,
.core-shell::before,
.core-shell::after,
.orbit,
.final-orb span {
  animation-play-state: var(--motion-state, running);
}
.core-shell,
.core-light,
.core-thread {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.core-shell {
  overflow: hidden;
  background: radial-gradient(
    circle at 35% 26%,
    rgba(255, 244, 207, 0.9) 0 2%,
    rgba(239, 199, 123, 0.82) 5%,
    rgba(108, 91, 155, 0.72) 28%,
    rgba(24, 57, 73, 0.92) 62%,
    #0b1626 100%
  );
  box-shadow:
    inset -34px -40px 70px rgba(3, 8, 18, 0.8),
    inset 22px 18px 55px rgba(255, 222, 154, 0.18),
    0 0 80px rgba(91, 75, 151, 0.28);
}
.core-shell::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 48% 52% 43% 57%;
  border: 1px solid rgba(255, 232, 184, 0.2);
  background: conic-gradient(
    from 40deg,
    transparent,
    rgba(239, 199, 123, 0.22),
    transparent 27%,
    rgba(105, 175, 166, 0.17),
    transparent 58%,
    rgba(167, 132, 199, 0.24),
    transparent
  );
  filter: blur(1px);
  animation: core-turn 14s linear infinite;
}
.core-shell::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 35%,
    #ffe4a7,
    #dba84e 17%,
    rgba(134, 84, 117, 0.62) 44%,
    transparent 72%
  );
  filter: blur(5px);
  opacity: 0.7;
  animation: core-breathe 5s ease-in-out infinite;
}
.core-light {
  inset: 3%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.16),
    transparent 27%,
    rgba(255, 255, 255, 0.02) 62%
  );
}
.core-thread {
  inset: 14%;
  border: 1px solid rgba(239, 199, 123, 0.24);
  transform: rotate(34deg) scaleY(0.55);
}
.core-thread-b {
  transform: rotate(-48deg) scaleY(0.72);
  border-color: rgba(131, 213, 176, 0.22);
}
.orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 390px;
  height: 150px;
  border: 1px solid rgba(239, 199, 123, 0.2);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: 12%;
  top: 18%;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}
.orbit-one {
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-12deg);
  animation: orbit-one 18s linear infinite;
}
.orbit-two {
  width: 340px;
  height: 240px;
  border-color: rgba(131, 213, 176, 0.14);
  transform: translate(-50%, -50%) rotateX(77deg) rotateZ(74deg);
  animation: orbit-two 23s linear infinite;
}
.orbit-two::after {
  left: 74%;
  top: 78%;
  width: 7px;
  height: 7px;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}
.memory-card {
  position: absolute;
  z-index: 3;
  width: 238px;
  padding: 16px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(15, 25, 43, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(130%);
}
.memory-card-a {
  top: 8%;
  left: -3%;
  transform: translateZ(130px) rotate(-2deg);
}
.memory-card-b {
  right: -4%;
  bottom: 16%;
  transform: translateZ(150px) rotate(2deg);
}
.card-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.memory-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.35;
}
.confidence,
.step-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  color: var(--gold);
  font-size: 11px;
}
.confidence i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.step-state {
  color: var(--mint);
}
.step-state svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  max-width: 560px;
}
.section-heading-wide {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-heading h2,
.safety-copy h2,
.final-inner h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.06;
  text-wrap: balance;
}
.section-heading > p:last-child,
.safety-copy > p {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 17px;
}
.recognition {
  border-top: 1px solid var(--line);
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.recognition-card {
  min-height: 226px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.052),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition:
    transform 320ms var(--ease-out),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 320ms var(--ease-out);
}
.line-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 199, 123, 0.22);
  border-radius: 13px;
  color: var(--gold);
  background: var(--gold-soft);
}
.line-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.recognition-card h3 {
  margin: 34px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
}
.recognition-card p {
  margin: 0;
  color: var(--muted);
}

.journey {
  --journey-progress: 0;
  --journey-shift: -80px;
  overflow: clip;
  background: linear-gradient(
    180deg,
    rgba(19, 29, 49, 0.5),
    rgba(10, 16, 29, 0.15)
  ), var(--bg);
  border-block: 1px solid var(--line);
}
.journey::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  left: calc(50% - 260px);
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 87, 174, 0.14),
    rgba(43, 121, 113, 0.055) 46%,
    transparent 70%
  );
  filter: blur(12px);
  transform: translate3d(var(--journey-shift), 0, 0);
  transition: transform 120ms linear;
  pointer-events: none;
}
.journey-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(64px, 9vw, 130px);
  align-items: start;
}
.journey-heading {
  position: sticky;
  top: 130px;
}
.journey-heading .text-link {
  margin-top: 22px;
}
.journey-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.journey-route-track {
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}
.journey-route-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--mint));
  transform: scaleX(var(--journey-progress));
  transform-origin: left;
  transition: transform 120ms linear;
}
.journey-route strong {
  color: var(--gold);
  font-size: 11px;
}
.journey-steps {
  --journey-progress: 0;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}
.journey-steps::before,
.journey-steps::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 31px;
  top: 32px;
  bottom: 78px;
  width: 1px;
  transform-origin: top;
}
.journey-steps::before {
  background: var(--line-strong);
}
.journey-steps::after {
  background: linear-gradient(var(--gold), var(--mint));
  box-shadow: 0 0 12px rgba(239, 199, 123, 0.2);
  transform: scaleY(var(--journey-progress));
  transition: transform 120ms linear;
}
.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 0 0 46px;
}
.journey-steps.has-motion li {
  opacity: 0.62;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}
.journey-steps.has-motion li.is-complete {
  opacity: 0.82;
}
.journey-steps.has-motion li.is-active {
  opacity: 1;
  transform: none;
}
.journey-steps li:not(:last-child)::after {
  display: none;
}
.step-number {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  background: var(--bg-soft);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}
.journey-steps li.is-complete .step-number {
  border-color: rgba(131, 213, 176, 0.48);
  color: var(--mint);
  background: #102334;
}
.journey-steps li.is-active .step-number {
  border-color: var(--gold);
  color: #1c160b;
  background: linear-gradient(135deg, #f3d28f, var(--gold-strong));
  box-shadow: 0 0 0 7px rgba(239, 199, 123, 0.08), 0 0 34px rgba(239, 199, 123, 0.22);
}
.journey-steps h3 {
  margin: 5px 0 7px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
}
.journey-steps p {
  margin: 0;
  color: var(--muted);
}

.difference {
  background: linear-gradient(
    180deg,
    rgba(15, 24, 40, 0.58),
    rgba(9, 15, 29, 0.12)
  );
  border-block: 1px solid var(--line);
}
.difference-grid {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
}
.difference-card {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition:
    transform 320ms var(--ease-out),
    border-color 220ms ease,
    box-shadow 320ms var(--ease-out);
}
.difference-muted {
  background: rgba(255, 255, 255, 0.025);
}
.difference-accent {
  border-color: rgba(239, 199, 123, 0.3);
  background: linear-gradient(
    145deg,
    rgba(239, 199, 123, 0.11),
    rgba(106, 81, 147, 0.09)
  );
  box-shadow: var(--shadow-soft);
}
.difference-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.difference-accent .difference-label {
  color: var(--gold);
}
.difference-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.difference-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.difference-card li {
  position: relative;
  margin-top: 17px;
  padding-left: 25px;
  color: var(--text-soft);
}
.difference-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 1px;
  background: var(--muted);
}
.difference-accent li::before {
  width: 12px;
  height: 7px;
  top: 0.45em;
  border-left: 1.5px solid var(--mint);
  border-bottom: 1.5px solid var(--mint);
  background: none;
  transform: rotate(-45deg);
}
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 56px auto 0;
}
.benefit-row article {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}
.benefit-row .line-icon {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
}
.benefit-row h3 {
  margin: 1px 0 4px;
  font-family: var(--serif);
  font-size: 19px;
}
.benefit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.safety-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(44px, 8vw, 100px);
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(131, 213, 176, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(26, 50, 57, 0.54),
    rgba(22, 29, 49, 0.66)
  );
  box-shadow: var(--shadow-soft);
}
.safety-copy .text-link {
  margin-top: 20px;
}
.safety-list {
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: center;
}
.safety-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}
.safety-list li:last-child {
  border-bottom: 0;
}
.safety-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.safety-list strong {
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 320ms var(--ease-out),
    border-color 220ms ease,
    box-shadow 320ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .recognition-card:hover,
  .difference-card:hover,
  .price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 199, 123, 0.28);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  }
  .recognition-card:hover {
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(239, 199, 123, 0.025)
    );
  }
}
.trial-card {
  border-color: rgba(239, 199, 123, 0.34);
  background: linear-gradient(
    145deg,
    rgba(239, 199, 123, 0.1),
    rgba(101, 78, 139, 0.08)
  );
  box-shadow: var(--shadow);
}
.paid-card {
  background: rgba(255, 255, 255, 0.022);
}
.price-label {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--gold);
  background: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.price-card h3 {
  margin: 22px 0 4px;
  font-family: var(--serif);
  font-size: 26px;
}
.price-value {
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 600;
  line-height: 1;
}
.price-value span {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.price-card ul {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.price-card li {
  position: relative;
  margin: 13px 0;
  padding-left: 24px;
  color: var(--text-soft);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.44em;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--mint);
  border-bottom: 1.5px solid var(--mint);
  transform: rotate(-45deg);
}
.annual-note {
  max-width: 980px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}
.annual-note div {
  display: grid;
}
.annual-note strong {
  font-family: var(--serif);
  font-size: 18px;
}
.annual-note span {
  color: var(--muted);
  font-size: 13px;
}
.annual-note > a {
  color: var(--gold);
  font-weight: 750;
  white-space: nowrap;
}
.stars-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.stars-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq {
  max-width: 940px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 18px 8px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 1px;
  background: var(--gold);
  transition: transform 180ms ease;
}
.faq-list summary span::after {
  transform: rotate(90deg);
}
.faq-list details[open] summary span::after {
  transform: rotate(0);
}
.faq-list details[open] summary {
  color: var(--gold);
}
.faq-list p {
  max-width: 790px;
  margin: -2px 0 24px;
  padding: 0 8px;
  color: var(--text-soft);
}
.faq-list a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  padding-block: 125px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(103, 76, 151, 0.2),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(13, 22, 38, 0.4), rgba(9, 15, 29, 0.9));
}
.final-inner {
  position: relative;
  z-index: 1;
}
.final-inner h2 {
  font-size: clamp(40px, 5.6vw, 68px);
}
.final-inner > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--text-soft);
  font-size: 17px;
}
.final-orb {
  width: 74px;
  height: 74px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 199, 123, 0.18);
  border-radius: 50%;
  background: rgba(239, 199, 123, 0.05);
  box-shadow: 0 0 60px rgba(239, 199, 123, 0.12);
}
.final-orb span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 33% 28%,
    #fff0bd,
    var(--gold) 22%,
    #80619d 58%,
    #18313b 100%
  );
  box-shadow: 0 0 26px rgba(239, 199, 123, 0.45);
  animation: core-breathe 5s ease-in-out infinite;
}
.crisis-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  margin-block: 38px;
  color: var(--muted);
  font-size: 13px;
}
.crisis-note svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.crisis-note p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 64px max(28px, env(safe-area-inset-bottom));
  background: #070c16;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 52px;
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-grid > div:first-child p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-column h2 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-column a {
  color: var(--muted);
  font-size: 14px;
}
.footer-column a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

/* Shared legal-document layout. */
.aura {
  position: fixed;
  width: 680px;
  height: 560px;
  left: 50%;
  top: -280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 199, 123, 0.13),
    transparent 66%
  );
  pointer-events: none;
}
.serif {
  font-family: var(--serif);
}
.doc {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
  padding: 42px 0 90px;
}
.doc h1 {
  margin: 8px 0 6px;
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.08;
}
.doc .meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 34px;
}
.doc h2 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: 24px;
}
.doc p,
.doc li {
  color: var(--text-soft);
}
.doc ul,
.doc ol {
  padding-left: 23px;
}
.doc li {
  margin-bottom: 8px;
}
.doc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.doc .back {
  display: inline-block;
  min-height: 44px;
  padding-top: 9px;
  color: var(--muted);
}
.doc-footer-link {
  margin-top: 40px;
}
.placeholder {
  color: #ffb7b7;
  background: rgba(232, 120, 120, 0.12);
  padding-inline: 5px;
  border-radius: 4px;
}

@keyframes core-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateZ(90px) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateZ(90px) translateY(-10px);
  }
}
@keyframes core-turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes core-breathe {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.92;
  }
}
@keyframes orbit-one {
  to {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(348deg);
  }
}
@keyframes orbit-two {
  to {
    transform: translate(-50%, -50%) rotateX(77deg) rotateZ(-286deg);
  }
}
@keyframes visual-aura {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}
@keyframes mobile-scene-drift {
  0%,
  100% {
    transform: rotateX(-4deg) rotateY(-6deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateX(4deg) rotateY(7deg) translate3d(0, -7px, 0);
  }
}

@media (max-width: 1200px) {
  .memory-card-a {
    transform: rotate(-2deg);
  }
  .memory-card-b {
    transform: rotate(2deg);
  }
}

@media (max-width: 1020px) {
  .site-nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
    text-align: center;
  }
  .hero-copy {
    max-width: 800px;
    margin-inline: auto;
  }
  .hero-lede {
    margin-inline: auto;
  }
  .hero-actions,
  .risk-reducers {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 610px);
    margin: -26px auto 0;
    min-height: 500px;
  }
  .route-proof {
    grid-template-columns: 1fr;
    margin-top: 0;
    text-align: center;
  }
  .route-proof-heading {
    max-width: 650px;
    margin-inline: auto;
  }
  .journey-layout {
    gap: 64px;
  }
  .journey::before {
    width: 420px;
    height: 420px;
    left: calc(50% - 210px);
  }
  .safety-panel {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }
  .section {
    padding-block: 82px;
  }
  .header-inner {
    min-height: 66px;
    gap: 12px;
  }
  .brand-copy small {
    display: none;
  }
  .menu-toggle {
    justify-self: end;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
  }
  .menu-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
  }
  .header-cta {
    display: none;
  }
  .site-nav {
    position: fixed;
    inset: 80px 16px auto;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(12, 20, 35, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:last-child {
    border-bottom: 0;
  }
  .site-nav a::after {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-block: 54px 74px;
    gap: 0;
  }
  .hero-copy {
    display: contents;
  }
  .hero .eyebrow,
  .hero h1,
  .hero-lede,
  .hero-actions,
  .hero-visual,
  .risk-reducers {
    position: relative;
    z-index: 2;
  }
  .hero .eyebrow {
    order: 1;
  }
  .hero h1 {
    order: 2;
  }
  .hero h1 {
    font-size: clamp(41px, 12vw, 62px);
  }
  .hero-lede {
    order: 3;
    font-size: 17px;
  }
  .hero-actions {
    order: 4;
    flex-direction: column;
    gap: 14px;
  }
  .hero-actions .button {
    width: min(100%, 390px);
  }
  .hero-actions .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .risk-reducers {
    order: 6;
    width: min(100%, 520px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 4px auto 0;
    text-align: left;
  }
  .risk-reducers li {
    align-items: flex-start;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid rgba(209, 222, 239, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    line-height: 1.35;
  }
  .hero-visual {
    order: 5;
    width: min(100%, 520px);
    min-height: 350px;
    margin: 12px auto 0;
    transform: translate3d(0, var(--sy), 0);
  }
  .hero-scene {
    animation: mobile-scene-drift 8s ease-in-out infinite;
    animation-play-state: var(--motion-state, running);
  }
  .route-proof {
    gap: 28px;
    padding: 28px 22px;
    text-align: left;
  }
  .route-proof-heading {
    margin-inline: 0;
  }
  .route-proof-list {
    grid-template-columns: 1fr;
  }
  .route-proof-list li,
  .route-proof-list li:first-child,
  .route-proof-list li:last-child {
    min-height: 76px;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .route-proof-list li:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 14px;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 66px;
    padding: 9px 12px 9px 18px;
    border: 1px solid rgba(239, 199, 123, 0.38);
    border-radius: 22px;
    background: rgba(12, 20, 35, 0.94);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(22px) saturate(145%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms;
  }
  .mobile-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .mobile-cta > span:first-child {
    display: grid;
    line-height: 1.2;
  }
  .mobile-cta strong {
    font-family: var(--serif);
    font-size: 17px;
  }
  .mobile-cta small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
  }
  .mobile-cta-action {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 5px;
    padding: 11px 16px;
    border-radius: 999px;
    color: #1c160b;
    background: linear-gradient(135deg, #f3d28f, var(--gold-strong));
    font-weight: 800;
  }
  .mobile-cta-action svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .core-shell::before,
  .core-shell::after,
  .orbit {
    animation: none;
  }
  .hero-visual::before {
    animation: none;
  }
  .psyche-core {
    animation: core-float 7s ease-in-out infinite;
    animation-play-state: var(--motion-state, running);
  }
  .psyche-core {
    width: 220px;
    height: 220px;
  }
  .orbit {
    width: 310px;
    height: 120px;
  }
  .orbit-two {
    width: 270px;
    height: 190px;
  }
  .memory-card {
    width: 205px;
    padding: 13px 14px;
  }
  .memory-card-a {
    left: 0;
    top: 2%;
    transform: translateZ(128px) rotate(-2deg);
  }
  .memory-card-b {
    right: 0;
    bottom: 14%;
    transform: translateZ(142px) rotate(2deg);
  }
  .memory-card strong {
    font-size: 14px;
  }
  .recognition-grid,
  .benefit-row {
    grid-template-columns: 1fr;
  }
  .recognition-card {
    min-height: 0;
  }
  .recognition-card h3 {
    margin-top: 24px;
  }
  .journey-layout {
    grid-template-columns: 1fr;
  }
  .journey-heading {
    position: static;
  }
  .journey-route {
    max-width: 460px;
  }
  .difference-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .benefit-row {
    max-width: 550px;
  }
  .annual-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 26px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-column a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }
  .section {
    padding-block: 70px;
  }
  .brand-mark {
    width: 31px;
    height: 31px;
  }
  .brand-copy strong {
    font-size: 16px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero h1 {
    font-size: clamp(38px, 11.4vw, 49px);
  }
  .hero-lede {
    font-size: 16px;
  }
  .route-proof-heading h2 {
    font-size: 30px;
  }
  .eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.11em;
  }
  .button {
    width: 100%;
  }
  .hero-visual {
    min-height: 326px;
    width: 100%;
    margin-top: 6px;
  }
  .psyche-core {
    width: 172px;
    height: 172px;
  }
  .orbit {
    width: 246px;
  }
  .orbit-two {
    width: 218px;
  }
  .memory-card {
    width: 170px;
  }
  .memory-card-a {
    left: 0;
    top: 4%;
  }
  .memory-card-b {
    right: 0;
    bottom: 15%;
  }
  .card-kicker {
    font-size: 8px;
  }
  .memory-card strong {
    font-size: 12.5px;
  }
  .confidence,
  .step-state {
    font-size: 9px;
  }
  .visual-caption {
    font-size: 9px;
    bottom: 0;
  }
  .risk-reducers {
    font-size: 11px;
  }
  .risk-reducers li {
    padding: 9px 10px;
  }
  .section-heading-wide {
    margin-bottom: 38px;
  }
  .section-heading h2,
  .safety-copy h2 {
    font-size: 36px;
  }
  .recognition-card,
  .difference-card,
  .price-card {
    padding: 25px 22px;
  }
  .journey-steps li {
    grid-template-columns: 52px 1fr;
    gap: 17px;
  }
  .journey-steps::before,
  .journey-steps::after {
    left: 25px;
    top: 26px;
    bottom: 68px;
  }
  .step-number {
    width: 52px;
    height: 52px;
  }
  .journey-steps li:not(:last-child)::after {
    left: 25px;
    top: 46px;
  }
  .journey-steps h3 {
    font-size: 21px;
  }
  .safety-panel {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .safety-list li {
    grid-template-columns: 19px 1fr;
    font-size: 14px;
  }
  .price-value {
    font-size: 38px;
  }
  .faq-list summary {
    min-height: 72px;
    font-size: 18px;
  }
  .final-inner h2 {
    font-size: 39px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-visual {
    transform: none !important;
  }
  .hero-scene {
    transform: none !important;
  }
  .journey::before,
  .journey-steps::after {
    display: none;
  }
  .journey-steps.has-motion li,
  .journey-steps.has-motion li.is-active,
  .journey-steps.has-motion li.is-complete {
    opacity: 1;
    transform: none;
  }
  .journey-route-track i {
    transform: scaleX(1);
  }
  .constellation {
    display: none;
  }
  .mobile-cta {
    transition: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #c6cbd3;
    --line: rgba(255, 255, 255, 0.28);
    --line-strong: rgba(255, 255, 255, 0.48);
  }
}
