:root {
  color-scheme: dark;
  --ink: #eef7f3;
  --muted: #93a49f;
  --signal: #55d49a;
  --amber: #c9a35f;
  --line: rgba(154, 194, 181, 0.22);
  --glass: rgba(3, 10, 9, 0.9);
  --font-body: 16px;
  --font-meta: 14px;
  --routeProgress: 0;
  --chapterProgress: 0;
  --safe-x: clamp(22px, 4.2vw, 72px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #010303;
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: #010303;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: #010303;
  font-size: var(--font-body);
  line-height: 1.5;
}

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

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

button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.scene-fallback {
  position: fixed;
  z-index: 120;
  top: 18px;
  right: 18px;
  display: none;
  width: min(430px, calc(100vw - 36px));
  padding: 12px 16px;
  border: 1px solid rgba(201, 163, 95, 0.58);
  border-radius: 10px;
  color: #f2ead8;
  background: rgba(20, 18, 10, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  font-size: 13px;
}

.scene-fallback strong,
.scene-fallback span {
  display: block;
}

.scene-fallback strong {
  margin-bottom: 3px;
  color: var(--amber);
}

html.scene-fallback .scene-fallback {
  display: block;
}

html.scene-fallback .route-copy,
html.scene-fallback .scene-semantic-copy,
html.scene-fallback .title-card {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.skip-intro {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #02110b;
  background: var(--signal);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

#world,
.sequence-stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

#world {
  z-index: 0;
  display: block;
  pointer-events: none;
}

.sequence-stage {
  z-index: 1;
  pointer-events: none;
}

.rain-field {
  display: none;
}

.film-noise {
  position: absolute;
  inset: -8%;
  opacity: 0.025;
  background: rgba(180, 220, 208, 0.08);
  mix-blend-mode: soft-light;
}

.lens-mask {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 15vw rgba(0, 0, 0, 0.82);
}

.letterbox::before,
.letterbox::after {
  content: "";
  position: fixed;
  z-index: 8;
  left: 0;
  width: 100%;
  height: clamp(10px, 2.5vh, 28px);
  background: #000;
}

.letterbox::before {
  top: 0;
}

.letterbox::after {
  bottom: 0;
}

.utility-links a,
.methodology-link {
  transition: color 150ms ease;
}

.utility-links a:hover,
.methodology-link:hover {
  color: var(--signal);
}

.button {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109, 229, 174, 0.45);
  color: #defff0;
  background: rgba(4, 24, 16, 0.58);
  font-size: var(--font-body);
  font-weight: 760;
  letter-spacing: 0.04em;
}

.button-primary {
  color: #02110b;
  background: var(--signal);
  border-color: var(--signal);
}

.button-secondary {
  background: rgba(1, 7, 6, 0.78);
}

.language-menu {
  position: fixed;
  z-index: 20;
  top: clamp(24px, 4.2vh, 50px);
  right: var(--safe-x);
  min-width: 112px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: rgba(2, 8, 7, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: var(--font-meta);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-menu option {
  color: var(--ink);
  background: #07100f;
}

.route-progress {
  position: fixed;
  z-index: 20;
  top: 50%;
  right: clamp(12px, 2.4vw, 38px);
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}

.route-progress ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.route-progress a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  color: #53635e;
  font: 700 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.route-progress a[data-active="true"] {
  color: var(--signal);
  border-color: rgba(85, 212, 154, 0.42);
  background: rgba(3, 18, 12, 0.62);
}

.route-progress-track {
  width: 1px;
  background: rgba(161, 190, 181, 0.14);
  overflow: hidden;
}

.route-progress-track span {
  display: block;
  width: 100%;
  height: calc(var(--routeProgress) * 100%);
  background: var(--signal);
}

#route {
  position: relative;
  z-index: 3;
}

.frame {
  position: relative;
  min-height: 124vh;
  padding: 8vh var(--safe-x) 10vh;
}

.frame-hero,
.final {
  min-height: 136vh;
  display: grid;
  align-items: center;
}

.route-copy,
.title-card {
  width: min(610px, calc(100vw - 2 * var(--safe-x)));
}

.hero-copy {
  position: fixed;
  z-index: 14;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100vw - 2 * var(--safe-x)));
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -44%, 0) scale(0.975);
  transition: opacity 320ms ease-out, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-copy[data-active="true"] {
  opacity: var(--copyOpacity, 1);
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(44px, 5.8vw, 76px);
  white-space: pre;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: var(--font-meta);
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
.final-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(44px, 6.8vw, 100px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-summary {
  max-width: 100%;
  margin: 24px 0 0;
  color: #a9b9b4;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
}

.hero-return {
  width: max-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 3px 0 3px 15px;
  border-left: 2px solid var(--signal);
  color: #dff7ed;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chapter-copy {
  position: fixed;
  z-index: 14;
  top: 50%;
  width: min(560px, 43vw);
  max-height: min(76vh, 720px);
  margin: 0;
  padding: 0;
  overflow-y: visible;
  overscroll-behavior-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(85, 212, 154, 0.45) transparent;
  border: 0;
  color: #e8f2ef;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease-out, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chapter-copy--left {
  left: clamp(34px, 7vw, 118px);
  transform: translate3d(-36px, -46%, 0) scale(0.98);
}

.chapter-copy--right {
  right: clamp(62px, 9vw, 154px);
  transform: translate3d(36px, -46%, 0) scale(0.98);
}

.chapter-copy[data-active="true"] {
  opacity: var(--copyOpacity, 1);
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.chapter-kicker {
  margin: 0 0 16px;
  color: var(--amber);
  font: 760 var(--font-meta)/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.16em;
}

.chapter-copy h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: pre-line;
}

.chapter-body {
  max-width: 46ch;
  margin: 22px 0 0;
  color: #aebdb8;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.72;
}

.chapter-emphasis,
.chapter-brand {
  max-width: 44ch;
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--signal);
  color: #e2eee9;
  font-size: clamp(16px, 1.18vw, 17px);
  font-weight: 680;
  line-height: 1.65;
}

.chapter-brand {
  color: var(--signal);
  font-size: clamp(17px, 1.45vw, 21px);
}

.risk-lead {
  margin: 20px 0 10px;
  color: #dce9e5;
  font-weight: 680;
}

.risk-list {
  max-width: 52ch;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(154, 194, 181, 0.22);
}

.risk-list li {
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid rgba(154, 194, 181, 0.16);
  color: #aebdb8;
  font-size: var(--font-body);
  line-height: 1.5;
}

.risk-list li:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid rgba(154, 194, 181, 0.16);
}

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

.chapter-copy--risk {
  width: min(680px, 62vw);
}

.chapter-copy--risk h2 {
  max-width: none;
  font-size: clamp(36px, 4.1vw, 50px);
  white-space: pre;
}

.chapter-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  text-shadow: none;
}

.chapter-actions .button {
  min-height: 46px;
  padding-inline: 18px;
}

.chapter-disclaimer {
  max-width: 58ch;
  margin: 22px 0 0;
  color: #82938e;
  font-size: var(--font-meta);
  line-height: 1.6;
}

.scene-semantic-copy {
  position: fixed;
  z-index: 12;
  top: 50%;
  right: clamp(66px, 9vw, 150px);
  width: min(370px, calc(100vw - 110px));
  max-height: 58vh;
  padding: 18px 20px;
  border: 1px solid rgba(129, 180, 162, 0.22);
  color: #dce9e5;
  background: var(--glass);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(48px, -46%, 0) scale(0.97);
  transition: opacity 320ms ease-out, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scene-semantic-copy[data-active="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.scene-semantic-copy[data-card-mode="overlay"] {
  position: fixed;
  z-index: 14;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100vw - 150px));
  height: auto;
  max-height: min(72vh, 660px);
  padding: 0;
  overflow: auto;
  clip-path: none;
  white-space: normal;
  border: 0;
  color: #e8f2ef;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -44%, 0) scale(0.975);
  transition: opacity 320ms ease-out, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scene-semantic-copy[data-card-mode="overlay"][data-active="true"] {
  opacity: var(--copyOpacity, 1);
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.scene-semantic-copy[data-card-mode="overlay"] .card-kicker {
  margin: 0 0 18px;
  color: var(--amber);
  font: 760 var(--font-meta)/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scene-semantic-copy[data-card-mode="overlay"] h2 {
  max-width: 12ch;
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.scene-semantic-copy[data-card-mode="overlay"] p,
.scene-semantic-copy[data-card-mode="overlay"] li {
  color: #a9b9b4;
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.65;
}

.scene-semantic-copy[data-card-mode="overlay"] ul,
.scene-semantic-copy[data-card-mode="overlay"] ol {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(154, 194, 181, 0.16);
}

.scene-semantic-copy[data-card-mode="overlay"] li {
  min-height: 88px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(154, 194, 181, 0.16);
  border-bottom: 1px solid rgba(154, 194, 181, 0.16);
  color: #dce9e5;
  font-weight: 650;
}

.scene-semantic-copy[data-card-mode="overlay"] li:nth-child(3n) {
  border-right: 0;
}

.evidence-card-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(154, 194, 181, 0.18);
  border-bottom: 1px solid rgba(154, 194, 181, 0.18);
}

.evidence-card-record {
  min-width: 0;
  padding: 20px 16px;
  border-right: 1px solid rgba(154, 194, 181, 0.18);
}

.evidence-card-record:last-child {
  border-right: 0;
}

.evidence-card-record time,
.evidence-card-record span {
  display: block;
  color: #748781;
  font: 700 var(--font-meta)/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-card-record strong {
  display: block;
  margin: 12px 0 8px;
  color: #ecf7f3;
  font-size: clamp(20px, 2vw, 28px);
}

.evidence-card-record span {
  color: var(--signal);
}

.scene-semantic-copy h2 {
  margin: 0 0 13px;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.1;
}

.scene-semantic-copy p,
.scene-semantic-copy li {
  color: #99aaa5;
  font-size: var(--font-body);
  line-height: 1.55;
}

.scene-semantic-copy ul,
.scene-semantic-copy ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.scene-semantic-copy li + li {
  margin-top: 7px;
}

.title-card {
  position: fixed;
  z-index: 14;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100vw - 2 * var(--safe-x)));
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -44%, 0) scale(0.975);
  transition: opacity 320ms ease-out, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.title-card[data-active="true"] {
  opacity: var(--copyOpacity, 1);
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.title-card .kicker {
  max-width: 34ch;
  margin-inline: auto;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5;
}

.title-card .button {
  margin-top: 24px;
  min-height: 48px;
  padding-inline: 20px;
  font-size: var(--font-body);
  text-shadow: none;
}

.methodology-link {
  display: block;
  width: max-content;
  margin: 18px auto 0;
  color: #aebdb8;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}

.utility-links {
  width: min(320px, calc(100vw - 2 * var(--safe-x)));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  color: #93a49f;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
}

.utility-links a {
  min-width: 0;
  text-align: center;
  text-wrap: balance;
}

.pricing-card {
  width: min(860px, calc(100vw - 2 * var(--safe-x)));
}

.pricing-card > .kicker {
  position: relative;
  width: max-content;
  padding-inline: 40px;
  color: #d6af68;
  font-size: var(--font-meta);
  letter-spacing: 0.24em;
}

.pricing-card > .kicker::before,
.pricing-card > .kicker::after {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: rgba(214, 175, 104, 0.55);
  content: "";
}

.pricing-card > .kicker::before { left: 0; }
.pricing-card > .kicker::after { right: 0; }

.pricing-title {
  max-width: none;
  margin: 10px auto 0;
  color: #f0f8f5;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.pricing-billing-toggle {
  width: max-content;
  margin: 12px auto 0;
  padding: 3px;
  display: grid;
  grid-template-columns: 92px 132px;
  gap: 3px;
  border: 1px solid rgba(114, 169, 150, 0.28);
  background: rgba(2, 12, 9, 0.72);
  backdrop-filter: blur(10px);
}

.pricing-billing-toggle button {
  min-height: 34px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  color: #9eb0aa;
  background: transparent;
  font: 700 var(--font-meta)/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.pricing-billing-toggle button.is-active {
  color: #03120c;
  background: var(--signal);
}

.pricing-billing-toggle small {
  margin: 0;
  padding: 4px 7px;
  border: 1px solid rgba(77, 211, 161, 0.32);
  border-radius: 999px;
  color: #82e6bd;
  background: rgba(77, 211, 161, 0.09);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.pricing-billing-toggle button.is-active small {
  border-color: rgba(2, 17, 11, 0.22);
  color: #062118;
  background: rgba(2, 17, 11, 0.1);
}

.pricing-billing-toggle button:focus-visible {
  outline: 2px solid #dff9ed;
  outline-offset: 2px;
}

.pricing-conversion {
  width: min(820px, 100%);
  margin: 14px auto 0;
  min-height: 84px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(114, 169, 150, 0.22);
  background: rgba(2, 12, 9, 0.72);
  box-shadow:
    inset 2px 0 0 rgba(77, 211, 161, 0.82),
    0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.pricing-trial {
  min-width: 0;
  margin: 0;
  color: #dbe8e3;
  font-size: var(--font-body);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: left;
  text-shadow: none;
}

.pricing-card .pricing-register {
  min-width: 120px;
  min-height: 48px;
  margin: 0;
  flex: 0 0 auto;
  padding-inline: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pricing-tiers {
  position: relative;
  width: min(820px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(114, 169, 150, 0.28);
  background:
    linear-gradient(180deg, rgba(12, 31, 25, 0.62), rgba(2, 12, 9, 0.5));
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px rgba(221, 244, 235, 0.04);
  backdrop-filter: blur(10px);
  text-shadow: none;
}

.pricing-tiers::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
  opacity: 0.65;
  content: "";
}

.pricing-tier {
  position: relative;
  min-width: 0;
  min-height: 154px;
  padding: 23px 18px 20px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  align-content: start;
  text-align: left;
  transition: background-color 180ms ease, transform 180ms ease;
}

.pricing-tier:hover {
  background: rgba(75, 201, 154, 0.055);
}

.pricing-tier + .pricing-tier {
  border-left: 1px solid rgba(114, 169, 150, 0.2);
}

.pricing-tier-index {
  position: absolute;
  top: 12px;
  right: 13px;
  color: rgba(178, 199, 192, 0.35);
  font: 600 9px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
}

.pricing-tier > span:not(.pricing-tier-index) {
  color: #80928c;
  font: 650 var(--font-meta)/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-tier strong {
  color: #dbe8e3;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 610;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pricing-tier b {
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 2px 7px;
  color: var(--green);
  font-weight: 720;
  white-space: nowrap;
}

.pricing-tier b > del {
  grid-column: 1 / -1;
  color: #73867f;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.03em;
  text-decoration-color: rgba(255, 160, 122, 0.9);
  text-decoration-thickness: 1px;
}

.pricing-tier b > span {
  font-size: clamp(27px, 2.8vw, 36px);
  letter-spacing: -0.045em;
}

.pricing-tier small {
  color: #91a29c;
  font-size: var(--font-meta);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.pricing-custom {
  width: min(820px, 100%);
  margin: 12px auto 0;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(114, 169, 150, 0.26);
  color: #9cafa8;
  font-size: var(--font-body);
  line-height: 1.5;
  text-align: left;
}

.pricing-custom a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ddf4eb;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-custom a span[aria-hidden="true"] {
  color: var(--green);
  font-size: 15px;
  transition: transform 160ms ease;
}

.pricing-custom a:hover span[aria-hidden="true"] {
  transform: translate3d(2px, -2px, 0);
}

.pricing-note {
  margin: 10px auto 0;
  color: #71827c;
  font-size: var(--font-meta);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.legal-draft {
  margin-top: 16px;
  color: #82918c;
  font-size: var(--font-meta);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hide-copy .route-copy,
.hide-copy .title-card,
.hide-copy .scene-semantic-copy,
.hide-copy .route-progress {
  display: none !important;
}

@media (max-width: 900px) {
  .scene-semantic-copy {
    right: 52px;
    width: min(340px, calc(100vw - 76px));
  }
}

@media (max-width: 620px) {
  .frame {
    min-height: 116vh;
  }

  .frame-hero,
  .final {
    min-height: 130vh;
  }

  .product-descriptor {
    max-width: 150px;
    font-size: var(--font-meta);
  }

  .utility-links {
    width: min(320px, calc(100vw - 2 * var(--safe-x)));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .pricing-title {
    margin-top: 8px;
    font-size: clamp(18px, 4.7vw, 26px);
  }

  .pricing-billing-toggle {
    width: min(100%, 300px);
    margin-top: 10px;
  }

  .pricing-conversion {
    margin-top: 10px;
    min-height: 0;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .pricing-trial {
    font-size: var(--font-body);
    line-height: 1.5;
    text-align: left;
  }

  .pricing-register {
    width: 100%;
  }

  .pricing-tiers {
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-tier {
    min-height: 116px;
    padding: 17px 12px 13px;
    gap: 5px;
  }

  .pricing-tier:nth-child(3) {
    border-left: 0;
  }

  .pricing-tier:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .pricing-custom {
    margin-top: 9px;
    padding: 9px 4px 9px;
    gap: 10px;
    font-size: var(--font-body);
  }

  .pricing-custom a {
    gap: 6px;
  }

  .pricing-note {
    margin-top: 8px;
    font-size: var(--font-meta);
  }

  .title-card {
    padding-right: 20px;
  }

  .route-progress {
    right: 8px;
  }

  .route-progress-track {
    display: none;
  }

  .route-progress a {
    width: 24px;
    height: 24px;
  }

  .scene-semantic-copy {
    top: auto;
    right: 42px;
    bottom: 8vh;
    width: calc(100vw - 62px);
    max-height: 42vh;
    overflow: auto;
    transform: translate3d(0, 28px, 0) scale(0.98);
  }

  .scene-semantic-copy[data-active="true"] {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .hero-summary {
    max-width: 100%;
  }

  .hero-return {
    margin-top: 14px;
    padding-left: 12px;
    font-size: clamp(17px, 5vw, 21px);
  }

  .chapter-copy,
  .chapter-copy--risk {
    top: 50%;
    left: 18px;
    right: auto;
    width: calc(100vw - 58px);
    max-height: 72vh;
    padding-right: 8px;
    overflow-y: auto;
    overscroll-behavior-y: auto;
    transform: translate3d(0, -44%, 0) scale(0.98);
  }

  .chapter-copy[data-active="true"] {
    transform: translate3d(0, -50%, 0) scale(1);
  }

  .chapter-copy h2,
  .chapter-copy--risk h2 {
    max-width: 15ch;
    font-size: clamp(31px, 9.2vw, 43px);
  }

  .hero-copy h1 {
    font-size: clamp(25px, 7.8vw, 42px);
  }

  .chapter-copy--risk h2 {
    max-width: none;
    font-size: clamp(20px, 6.5vw, 34px);
  }

  .chapter-body {
    margin-top: 17px;
    font-size: var(--font-body);
    line-height: 1.6;
  }

  .chapter-emphasis,
  .chapter-brand {
    margin-top: 17px;
    font-size: var(--font-body);
  }

  .risk-list {
    grid-template-columns: 1fr;
  }

  .risk-list li,
  .risk-list li:nth-child(odd),
  .risk-list li:nth-child(even) {
    padding: 9px 0;
    border-right: 0;
    font-size: var(--font-body);
  }

  .chapter-actions {
    margin-top: 18px;
  }

  .chapter-actions .button {
    min-height: 42px;
    font-size: var(--font-body);
  }

  .chapter-disclaimer {
    margin-top: 17px;
    font-size: var(--font-meta);
  }

  .hero-copy,
  .title-card {
    left: 18px;
    width: calc(100vw - 58px);
    padding: 24px 20px;
    transform: translate3d(0, -44%, 0) scale(0.975);
  }

  .hero-copy[data-active="true"],
  .title-card[data-active="true"] {
    transform: translate3d(0, -50%, 0) scale(1);
  }

  .scene-semantic-copy[data-card-mode="overlay"] {
    top: 50%;
    left: 18px;
    width: calc(100vw - 58px);
    max-height: 68vh;
    padding: 24px 20px;
    transform: translate3d(0, -44%, 0) scale(0.975);
  }

  .scene-semantic-copy[data-card-mode="overlay"][data-active="true"] {
    transform: translate3d(0, -50%, 0) scale(1);
  }

  .scene-semantic-copy[data-card-mode="overlay"] h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .scene-semantic-copy[data-card-mode="overlay"] ul,
  .scene-semantic-copy[data-card-mode="overlay"] ol,
  .evidence-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .scene-semantic-copy[data-card-mode="overlay"] li:nth-child(3n) {
    border-right: 1px solid rgba(154, 194, 181, 0.16);
  }

  .scene-semantic-copy[data-card-mode="overlay"] li:nth-child(2n),
  .evidence-card-record:nth-child(2n) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .rain-field,
  .film-noise {
    display: none;
  }
}
