@font-face {
  font-family: "Hahmlet Variable";
  src: url("./Hahmlet[wght].ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  color-scheme: dark;
  --hope-blue: #6c93c7;
  --hope-gold: #f7d365;
  --hope-gold-soft: #ffe6a0;
  --hope-mist: #abbee0;
  --hope-navy: #101f35;
  --hope-navy-2: #162e4b;
  --hope-ink: #245b82;
  --route-panel-bg-image: none;
  --route-panel-fit-width: 100%;
  --route-panel-bg-size: var(--route-panel-fit-width) auto;
  --route-panel-bg-position: center top;
  --desktop-bezel-bg: url("./backgound-bezel-ex-pc.png");
  --bg: var(--hope-navy);
  --bg-soft: var(--hope-navy-2);
  --surface: rgba(20, 36, 60, 0.78);
  --surface-strong: rgba(13, 26, 46, 0.9);
  --line: rgba(171, 190, 224, 0.18);
  --line-strong: rgba(171, 190, 224, 0.34);
  --text: #f7fbff;
  --muted: rgba(171, 190, 224, 0.86);
  --accent: var(--hope-blue);
  --accent-2: var(--hope-mist);
  --danger: #ff8a95;
  --shadow: 0 28px 84px rgba(3, 10, 22, 0.44);
  --shell-width: 430px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --font-ui: "Hahmlet Variable", "Apple SD Gothic Neo", "Malgun Gothic", serif;
  --font-display: "Hahmlet Variable", var(--font-ui);
  --font-mystic: "Hahmlet Variable", var(--font-ui);
  --font-voice: "Hahmlet Variable", var(--font-ui);
  --font-playful: "Hakgyoansim Tteokbokki", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 14% 18%, rgba(108, 147, 199, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(171, 190, 224, 0.18), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(247, 211, 101, 0.08), transparent 36%),
    linear-gradient(180deg, #132540 0%, #0b1830 100%);
  color: var(--text);
  font-family: var(--font-ui);
}

html,
body,
.site-shell,
.app-frame,
.scene-panel,
.scene-panel-form,
.scene-panel-result {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.site-shell::-webkit-scrollbar,
.app-frame::-webkit-scrollbar,
.scene-panel::-webkit-scrollbar,
.scene-panel-form::-webkit-scrollbar,
.scene-panel-result::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  overflow-x: hidden;
}

body.route-variant-a,
body.route-variant-b {
  --route-panel-bg-size: 100% auto;
  --route-panel-bg-position: center top;
}

body.route-variant-a {
  --route-panel-bg-image:
    linear-gradient(180deg, rgba(3, 7, 11, 0.2), rgba(3, 7, 11, 0.76)),
    radial-gradient(circle at 50% 20%, rgba(134, 215, 189, 0.12), transparent 30%),
    image-set(
      url("./a-route-bg.webp") type("image/webp"),
      url("./a-route-bg.png") type("image/png")
    );
}

body.route-variant-b {
  --route-panel-bg-image:
    linear-gradient(180deg, rgba(248, 252, 255, 0.26), rgba(214, 233, 248, 0.52)),
    radial-gradient(circle at 50% 14%, rgba(211, 241, 255, 0.46), transparent 24%),
    image-set(
      url("./b-route-bg.webp") type("image/webp"),
      url("./b-route-bg.png") type("image/png")
    );
}

body,
p,
h1,
h2,
h3,
span,
strong,
button,
label,
li,
input {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.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;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  padding: 0 0 env(safe-area-inset-bottom);
  transition: opacity 420ms var(--ease), visibility 420ms var(--ease);
}

body.app-booting .site-shell {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px 18px;
  background:
    linear-gradient(135deg, rgba(243, 243, 243, 0.96), rgba(223, 232, 246, 0.96)),
    radial-gradient(circle at 18% 18%, rgba(247, 211, 101, 0.48), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(108, 147, 199, 0.34), transparent 28%);
  transition: opacity 480ms var(--ease), visibility 480ms var(--ease);
}

.boot-overlay.is-leaving,
body:not(.app-booting) .boot-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none !important;
}

.boot-overlay[hidden] {
  display: none !important;
}

body:not(.app-booting) .boot-overlay,
body:not(.app-booting) .boot-overlay * {
  display: none !important;
}

.boot-panel,
.boot-orbit,
.boot-ribbon {
  position: absolute;
}

.boot-panel {
  position: relative;
  width: min(100%, 440px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.boot-panel::before,
.boot-panel::after {
  content: none;
}

.boot-kicker,
.boot-title,
.boot-status-text,
.boot-progress-meta,
.boot-task-list,
.boot-logo {
  position: relative;
  z-index: 1;
}

.boot-kicker {
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(16, 35, 62, 0.12);
  color: #3d526c;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.boot-logo {
  display: block;
  width: min(56vw, 182px);
  height: auto;
  opacity: 0.84;
  filter:
    drop-shadow(0 1px 0 rgba(243, 243, 243, 0.48))
    drop-shadow(0 14px 20px rgba(16, 35, 62, 0.12));
}

.boot-title {
  margin: 0;
  color: #10233e;
  font-size: clamp(1.5rem, 6.2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.boot-status-text {
  margin: 0;
  color: rgba(16, 35, 62, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

.boot-progress-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  height: 18px;
  padding: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(243, 243, 243, 0.56);
  border: 1px solid rgba(16, 35, 62, 0.12);
  box-shadow: 0 18px 42px rgba(16, 35, 62, 0.16);
}

.boot-progress-shell::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(108, 147, 199, 0.16);
  pointer-events: none;
}

.boot-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6c93c7 0%, #abbee0 44%, #f7d365 100%);
  box-shadow: 0 0 0 1px rgba(16, 35, 62, 0.06), 0 10px 24px rgba(108, 147, 199, 0.28);
  transition: width 360ms var(--ease);
}

.boot-progress-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #10233e;
}

.boot-progress-value {
  font-size: 1.14rem;
}

.boot-progress-count {
  font-size: 0.8rem;
  color: rgba(16, 35, 62, 0.68);
}

.boot-task-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.boot-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(243, 243, 243, 0.54);
  color: rgba(16, 35, 62, 0.7);
  font-size: 0.88rem;
  transition: transform 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease);
}

.boot-task::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: rgba(108, 147, 199, 0.28);
  box-shadow: 0 0 0 5px rgba(108, 147, 199, 0.08);
}

.boot-task.is-active {
  transform: translateY(-1px);
  background: rgba(171, 190, 224, 0.44);
  color: #10233e;
}

.boot-task.is-active::before {
  background: #2d63fb;
  box-shadow: 0 0 0 5px rgba(45, 99, 251, 0.16);
}

.boot-task.is-complete {
  color: #10233e;
}

.boot-task.is-complete::before {
  background: #94a465;
  box-shadow: 0 0 0 5px rgba(148, 164, 101, 0.18);
}

.boot-orbit {
  border-radius: 999px;
  border: 10px solid;
  opacity: 0.64;
  animation: bootRibbonDrift 9.4s ease-in-out infinite;
}

.boot-orbit-a {
  top: 10%;
  left: -16%;
  width: 66%;
  height: 78px;
  border-color: rgba(148, 164, 101, 0.78);
}

.boot-orbit-b {
  right: -20%;
  bottom: 14%;
  width: 72%;
  height: 92px;
  border-color: rgba(108, 147, 199, 0.64);
  animation-delay: -3.2s;
}

.boot-ribbon {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 65, 241, 0.76), rgba(45, 99, 251, 0.7));
  opacity: 0.8;
  animation: bootRibbonSweep 8.2s linear infinite;
}

.boot-ribbon-a {
  --boot-ribbon-rotate: -18deg;
  top: 18%;
  left: -8%;
  width: 42%;
  transform: rotate(var(--boot-ribbon-rotate));
}

.boot-ribbon-b {
  --boot-ribbon-rotate: 18deg;
  right: -6%;
  bottom: 22%;
  width: 36%;
  transform: rotate(var(--boot-ribbon-rotate));
  animation-delay: -4.1s;
}

@keyframes bootRibbonDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(2deg);
  }
}

@keyframes bootRibbonSweep {
  0% {
    transform: translate3d(-10%, 0, 0) rotate(var(--boot-ribbon-rotate, 0deg));
  }
  50% {
    transform: translate3d(6%, -4px, 0) rotate(var(--boot-ribbon-rotate, 0deg));
  }
  100% {
    transform: translate3d(-10%, 0, 0) rotate(var(--boot-ribbon-rotate, 0deg));
  }
}

.scene-transition {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background:
    radial-gradient(circle at center, rgba(136, 217, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(3, 6, 12, 0.2), rgba(3, 6, 12, 0.86));
  backdrop-filter: blur(4px);
  transition: opacity 520ms var(--ease);
}

.scene-transition.is-active {
  opacity: 1;
  visibility: visible;
}

.scene-transition-ring,
.scene-transition-beam {
  position: absolute;
}

.scene-transition-ring {
  width: 44vw;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(126, 215, 255, 0.2);
  box-shadow: 0 0 64px rgba(126, 215, 255, 0.08);
  animation: veilPulse 1.1s ease-in-out infinite;
}

.scene-transition-ring-alt {
  width: 66vw;
  max-width: 500px;
  border-color: rgba(212, 255, 117, 0.14);
  animation-duration: 1.8s;
}

.scene-transition-beam {
  width: 82vw;
  max-width: 620px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.75), transparent);
  filter: blur(0.5px);
  animation: veilScan 1.1s linear infinite;
}

.ambient-grid,
.ambient-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(180, 209, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 209, 235, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 100%);
}

.ambient-noise {
  opacity: 0.08;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 22%, transparent 78%, rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 50%, rgba(126, 215, 255, 0.05), transparent 56%);
}

.app-frame {
  position: relative;
  z-index: 1;
  width: min(100%, var(--shell-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: 14px 12px 18px;
}

.top-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

body:not(.scene-intro-active) .top-rail {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}

#topRail.is-dissolving {
  animation: introRailBreak 920ms cubic-bezier(0.2, 0.74, 0.12, 1) both;
}

#topRail.is-dissolving #railKicker,
#topRail.is-dissolving #soundToggle {
  animation: introRailShard 880ms cubic-bezier(0.2, 0.74, 0.12, 1) both;
}

#topRail.is-dissolving #soundToggle {
  animation-delay: 80ms;
}

#topRail.is-destroyed {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

.rail-kicker,
.eyebrow,
.meta-label,
.status-badge,
.future-label,
.detail-label,
.question-kicker,
.result-type,
.result-code,
.panel-copy,
.field-label,
.form-hint {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-kicker,
.eyebrow,
.meta-label,
.status-badge,
.future-label,
.detail-label,
.result-code,
.question-kicker {
  color: var(--muted);
  font-size: 0.74rem;
}

.rail-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#soundToggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sound-toggle-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.scene {
  display: none;
  min-height: calc(100svh - 72px);
}

.scene-active {
  display: block;
  animation: sceneFade 760ms cubic-bezier(0.15, 0.8, 0.12, 1);
}

.scene-panel {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 88px);
  height: calc(100svh - 88px);
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 31, 41, 0.94), rgba(11, 19, 28, 0.92)),
    linear-gradient(120deg, rgba(136, 220, 255, 0.08), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

body.route-variant-a .scene-panel::after,
body.route-variant-b .scene-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background-image: var(--route-panel-bg-image);
  background-position: var(--route-panel-bg-position);
  background-repeat: no-repeat;
  background-size: var(--route-panel-bg-size);
  opacity: 0.94;
}

body.route-variant-b .scene-panel::after {
  opacity: 0.82;
  mix-blend-mode: screen;
}

.scene-panel-result {
  height: auto;
  min-height: calc(100svh - 88px);
}

.scene-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border-radius: calc(var(--radius-xl) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.scene-panel-hero {
  display: grid;
  align-content: end;
  gap: 20px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 22%, rgba(123, 218, 226, 0.18), transparent 24%),
    radial-gradient(circle at 52% 70%, rgba(125, 184, 142, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(10, 21, 29, 0.98), rgba(8, 14, 21, 0.98));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 336px);
  margin: 0 auto 6px;
  text-align: center;
}

.hero-title,
.panel-title,
.result-title {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
}

.hero-title {
  font-size: clamp(2.06rem, 7.3vw, 3.28rem);
  max-width: 7.2ch;
  margin-inline: auto;
  text-wrap: balance;
  letter-spacing: -0.03em;
}

.hero-note {
  margin: 10px auto 0;
  max-width: 29ch;
  color: rgba(223, 238, 244, 0.72);
  font-size: 0.76rem;
  line-height: 1.5;
}

.hero-lead,
.panel-copy,
.question-copy,
.result-summary,
.future-slot p,
.detail-block p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-lead {
  white-space: pre-line;
}

.hero-actions,
.form-actions,
.result-actions {
  display: grid;
  gap: 12px;
}

.hero-actions {
  gap: 10px;
}

.hero-actions.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-actions.is-hidden .hero-cta {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  filter: blur(10px) saturate(0.5);
}

.hero-actions.is-visible .hero-cta {
  pointer-events: auto;
}

.cta {
  position: relative;
  width: 100%;
  padding: 16px 15px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
}

.cta-primary {
  background: linear-gradient(180deg, #f4fbff 0%, #bfdfff 100%);
  color: #04111e;
  box-shadow: 0 18px 40px rgba(126, 215, 255, 0.2);
}

.cta-secondary,
.cta-tertiary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.hero-cta {
  isolation: isolate;
  display: grid;
  gap: 4px;
  justify-items: start;
  padding: 14px 16px 15px;
  text-align: left;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(12, 20, 28, 0.94), rgba(16, 25, 33, 0.9)),
    radial-gradient(circle at top right, rgba(136, 220, 255, 0.1), transparent 38%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 14px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  filter: blur(10px) saturate(0.5);
}

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

.hero-cta .hero-cta-label,
.hero-cta .hero-cta-title,
.hero-cta .hero-cta-meta {
  transition:
    transform 520ms var(--ease),
    opacity 520ms var(--ease);
}

.hero-cta .hero-cta-label,
.hero-cta .hero-cta-meta {
  opacity: 0;
  transform: translateY(10px);
}

.hero-cta .hero-cta-title {
  opacity: 0;
  transform: translateY(14px);
}

.hero-cta::before {
  inset: 1px;
  border-radius: 21px;
  border: 1px solid rgba(255,255,255,0.04);
}

.hero-cta::after {
  inset: auto -20% 12px auto;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 215, 255, 0.42), transparent);
  transform: rotate(-22deg);
  opacity: 0.8;
}

.hero-cta-label,
.hero-cta-meta {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-cta-label {
  font-size: 0.66rem;
  color: rgba(171, 218, 232, 0.76);
}

.hero-cta-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: #f4fbff;
}

.hero-cta-meta {
  font-size: 0.6rem;
  color: rgba(208, 228, 245, 0.48);
}

.hero-cta-primary {
  background:
    linear-gradient(180deg, rgba(241, 250, 248, 0.98), rgba(193, 224, 214, 0.94)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.84), transparent 42%);
  color: #0b1820;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.48),
    0 18px 34px rgba(113, 191, 176, 0.18),
    0 0 28px rgba(113, 191, 176, 0.09);
}

.hero-cta-primary .hero-cta-label,
.hero-cta-primary .hero-cta-meta {
  color: rgba(11, 24, 32, 0.58);
}

.hero-cta-primary .hero-cta-title {
  color: #0b1820;
}

.hero-cta-secondary {
  background:
    linear-gradient(180deg, rgba(13, 21, 28, 0.98), rgba(12, 19, 27, 0.94)),
    radial-gradient(circle at top right, rgba(184, 233, 164, 0.12), transparent 38%);
  border-color: rgba(184, 233, 164, 0.2);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.58),
    0 24px 54px rgba(126, 215, 255, 0.28),
    0 0 36px rgba(126, 215, 255, 0.16);
}

.hero-cta.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) saturate(1);
  animation: heroCtaWake 820ms cubic-bezier(0.16, 0.86, 0.12, 1) both;
}

.hero-cta.is-revealed .hero-cta-label,
.hero-cta.is-revealed .hero-cta-title,
.hero-cta.is-revealed .hero-cta-meta {
  opacity: 1;
  transform: translateY(0);
}

.hero-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  text-align: left;
}

.hero-meta.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-meta strong {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.hero-meta > div {
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 11, 19, 0.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  filter: blur(8px) saturate(0.55);
}

.hero-meta.is-visible > div.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) saturate(1);
  animation: heroMetaWake 720ms cubic-bezier(0.16, 0.86, 0.12, 1) both;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.96;
}

.coord-ring,
.orb-core,
.rail-cluster,
.hero-scanline,
.question-orb,
.question-rails,
.loading-orb,
.loading-rail,
.loading-beam,
.result-orb-hero {
  position: absolute;
}

.coord-ring {
  border-radius: 50%;
  border: 1px solid rgba(126, 215, 255, 0.18);
  animation: spinSlow 18s linear infinite;
}

.coord-ring-1 {
  width: 396px;
  height: 396px;
  right: 12px;
  top: 78px;
}

.coord-ring-2 {
  width: 246px;
  height: 246px;
  right: 88px;
  top: 160px;
  animation-direction: reverse;
}

.coord-ring-3 {
  width: 480px;
  height: 480px;
  right: -18px;
  top: 18px;
}

.orb-core,
.loading-orb,
.question-orb,
.result-orb-hero {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(206, 237, 255, 0.52) 18%, rgba(86, 193, 255, 0.34) 52%, rgba(23, 67, 102, 0.7) 74%, rgba(8, 17, 27, 0.95) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 44px rgba(121, 215, 255, 0.35),
    0 18px 34px rgba(0, 0, 0, 0.45);
}

.orb-core {
  right: 88px;
  top: 208px;
  width: 206px;
  height: 206px;
  animation: floatOrb 5.4s ease-in-out infinite;
}

.orb-glow,
.orb-shell,
.orb-inscription {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.orb-shell {
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.orb-glow {
  inset: -16px;
  background: radial-gradient(circle, rgba(126, 215, 255, 0.22), transparent 70%);
  filter: blur(4px);
}

.orb-inscription {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(237, 249, 255, 0.78);
  letter-spacing: 0.16em;
}

.rail-cluster {
  width: 320px;
  height: 118px;
  right: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  transform: rotate(-18deg);
  box-shadow: inset 0 0 0 1px rgba(126, 215, 255, 0.06);
}

.rail-cluster::before,
.rail-cluster::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  border: 1px solid rgba(126, 215, 255, 0.16);
}

.rail-cluster::after {
  inset: 36px;
}

.rail-cluster-top {
  top: 138px;
}

.rail-cluster-bottom {
  top: 430px;
  right: 72px;
  transform: rotate(4deg);
}

.hero-scanline {
  inset: auto 0 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: scanDown 5s linear infinite;
}

.panel-head {
  margin-bottom: 14px;
}

.panel-head-center {
  text-align: center;
}

.panel-title {
  font-size: clamp(1.9rem, 7vw, 2.9rem);
  max-width: 9ch;
}

.scene-panel-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.scene-panel-form .panel-head,
.scene-panel-form .issuance-form {
  width: min(100%, 34rem);
  margin-inline: auto;
}

.issuance-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.sequence-node {
  position: relative;
  transition:
    transform 360ms var(--ease),
    opacity 360ms var(--ease),
    filter 420ms var(--ease),
    box-shadow 360ms var(--ease),
    border-color 360ms var(--ease);
}

.sequence-node::before,
.sequence-node::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    opacity 360ms var(--ease),
    transform 420ms var(--ease),
    backdrop-filter 360ms var(--ease),
    background 360ms var(--ease);
}

.sequence-node::before {
  inset: 0;
  border-radius: inherit;
  display: none;
}

.sequence-node::after {
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 241, 252, 0.62);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 14, 23, 0.52);
  opacity: 0;
}

.sequence-node > * {
  transition:
    filter 420ms var(--ease),
    transform 420ms var(--ease),
    opacity 320ms var(--ease);
}

.sequence-node.is-active {
  transform: translateY(0);
}

.sequence-node.is-active::before {
  opacity: 0.08;
  transform: scale(0.994);
  background: linear-gradient(180deg, rgba(136, 220, 255, 0.05), rgba(136, 220, 255, 0.02));
}

.sequence-node.is-active > * {
  filter: none;
  transform: none;
  opacity: 1;
}

.sequence-node:focus-within::before {
  opacity: 0.18;
  backdrop-filter: blur(5px);
  transform: scale(0.992);
}

.sequence-node:focus-within > * {
  filter: none;
  transform: none;
  opacity: 1;
}

.sequence-node:focus-within::after {
  opacity: 0.44;
}

.sequence-node.is-completed::before {
  opacity: 0.1;
  backdrop-filter: none;
}

.sequence-node.is-completed > * {
  filter: none;
  transform: none;
  opacity: 1;
}

.sequence-node.is-completed::before {
  background:
    linear-gradient(180deg, rgba(184, 233, 164, 0.05), rgba(184, 233, 164, 0.02)),
    linear-gradient(120deg, rgba(136, 220, 255, 0.04), transparent 40%);
}

.sequence-node.is-activating {
  animation: nodeLift 520ms var(--ease);
}

.sequence-node.is-sealing {
  animation: nodeSeal 560ms var(--ease);
}

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

.oracle-field {
  display: grid;
  gap: 8px;
  position: relative;
  padding: 13px;
  border-radius: 24px;
  border: 1px solid rgba(136, 220, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(12, 20, 28, 0.94), rgba(17, 26, 34, 0.88)),
    radial-gradient(circle at top left, rgba(136, 220, 255, 0.08), transparent 34%);
  overflow: hidden;
}

.oracle-field::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.oracle-field::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -18%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(126, 215, 255, 0.24), transparent);
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}

.field-label {
  color: #dfeeff;
  font-size: 0.78rem;
}

.field-meta {
  color: rgba(126, 215, 255, 0.66);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.oracle-input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(126, 215, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(8, 15, 24, 0.96), rgba(18, 28, 42, 0.7)),
    radial-gradient(circle at 10% 50%, rgba(126, 215, 255, 0.08), transparent 26%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.oracle-input-prefix {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: rgba(126, 215, 255, 0.74);
}

.oracle-input-shell input {
  width: 100%;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  outline: none;
  font-size: 1.02rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.name-seal-button {
  flex: 0 0 auto;
  display: grid;
  gap: 1px;
  min-width: 88px;
  padding: 10px 12px 9px;
  border-radius: 16px;
  border: 1px solid rgba(126, 215, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 18, 28, 0.98), rgba(18, 28, 44, 0.92)),
    radial-gradient(circle at top, rgba(126, 215, 255, 0.1), transparent 48%);
  color: #ecf7ff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    filter 220ms var(--ease),
    opacity 220ms var(--ease);
}

.name-seal-button-kicker,
.name-seal-button-label {
  display: block;
  text-align: left;
}

.name-seal-button-kicker {
  font-family: var(--font-display);
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  color: rgba(126, 215, 255, 0.62);
}

.name-seal-button-label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: none;
}

.name-seal-button.is-armed {
  border-color: rgba(126, 215, 255, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(126, 215, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(126, 215, 255, 0.1);
}

.name-seal-button:hover,
.name-seal-button:focus-visible,
.name-seal-button.is-armed:hover,
.name-seal-button.is-armed:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(212, 255, 117, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(212, 255, 117, 0.08),
    0 14px 26px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(212, 255, 117, 0.09);
}

.name-seal-button.is-confirmed {
  border-color: rgba(212, 255, 117, 0.44);
  background:
    linear-gradient(180deg, rgba(18, 32, 26, 0.98), rgba(11, 22, 21, 0.94)),
    radial-gradient(circle at top, rgba(212, 255, 117, 0.14), transparent 46%);
  box-shadow:
    inset 0 0 0 1px rgba(212, 255, 117, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(212, 255, 117, 0.09);
}

.name-seal-button.is-confirmed .name-seal-button-kicker {
  color: rgba(212, 255, 117, 0.78);
}

.oracle-input-shell input::placeholder {
  color: rgba(221, 235, 245, 0.34);
}

.oracle-field:focus-within {
  border-color: rgba(126, 215, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(126, 215, 255, 0.2), 0 0 32px rgba(126, 215, 255, 0.08);
}

.oracle-field.is-signed,
.oracle-field.is-shifted {
  border-color: rgba(212, 255, 117, 0.34);
  box-shadow:
    0 0 0 1px rgba(212,255,117,0.08),
    0 0 28px rgba(212,255,117,0.07),
    inset 0 0 26px rgba(126, 215, 255, 0.04);
}

.oracle-field.is-signed::after {
  opacity: 1;
  animation: fieldScan 620ms var(--ease) forwards;
}

.blood-matrix {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blood-button,
.stepper-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 215, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.96), rgba(14, 20, 31, 0.92)),
    radial-gradient(circle at top, rgba(126, 215, 255, 0.1), transparent 40%);
  color: #eaf5ff;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.blood-button {
  min-height: 48px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.14em;
}

.blood-button:hover,
.blood-button:focus-visible,
.blood-button.is-selected {
  transform: translateY(-1px);
  border-color: rgba(212, 255, 117, 0.44);
  box-shadow:
    0 0 0 1px rgba(212, 255, 117, 0.12),
    inset 0 0 26px rgba(212, 255, 117, 0.08),
    0 14px 24px rgba(0, 0, 0, 0.26);
  background:
    linear-gradient(180deg, rgba(20, 33, 28, 0.96), rgba(12, 20, 22, 0.92)),
    radial-gradient(circle at top, rgba(212, 255, 117, 0.16), transparent 42%);
}

.stepper-shell {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: stretch;
  gap: 10px;
}

.stepper-button {
  min-height: 56px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
}

.stepper-button:hover,
.stepper-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(126, 215, 255, 0.5);
  box-shadow: inset 0 0 24px rgba(126, 215, 255, 0.12);
}

.stepper-value-wrap {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 20px;
  border: 1px solid rgba(126, 215, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 16, 26, 0.98), rgba(15, 24, 36, 0.92)),
    radial-gradient(circle at center, rgba(126, 215, 255, 0.08), transparent 38%);
}

.stepper-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.12em;
  color: #f1f8ff;
}

.stepper-unit {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: rgba(126, 215, 255, 0.66);
  letter-spacing: 0.16em;
}

@media (min-width: 861px) {
  .oracle-field-stepper .field-meta {
    display: none;
  }

  .scene-panel-form .stepper-unit {
    display: none;
  }
}

input[type="hidden"] {
  display: none;
}

.form-hint,
.form-error {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-footer {
  display: grid;
  gap: 10px;
  padding: 12px 0 0;
  border-radius: 24px;
}

.form-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.form-error {
  color: var(--danger);
}

.scene-panel-question {
  display: grid;
  align-content: start;
  gap: 10px;
}

.progress-head {
  display: grid;
  gap: 6px;
}

.ai-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.progress-shell {
  height: 10px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #d8f1ff);
  transition: width 280ms var(--ease);
}

.question-card {
  position: relative;
  min-height: 392px;
  height: auto;
  padding: 16px 16px 108px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(136, 220, 255, 0.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(136, 220, 255, 0.1), transparent 26%),
    radial-gradient(circle at 54% -8%, rgba(184, 233, 164, 0.05), transparent 32%),
    linear-gradient(180deg, rgb(10, 18, 29), rgb(12, 22, 33));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 24px 54px rgba(0, 0, 0, 0.32);
}

.question-title {
  margin: 8px 0 0;
  font-family: var(--font-ui);
  font-size: clamp(1.34rem, 5.5vw, 1.84rem);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.02em;
  color: #f4fbff;
  text-shadow: 0 0 14px rgba(136, 220, 255, 0.08);
  min-height: 2.52em;
  padding-bottom: 0.08em;
}

.question-copy {
  margin-top: 10px;
  max-width: 29ch;
  min-height: 3.7em;
  font-size: 0.86rem;
  line-height: 1.64;
  color: rgba(230, 241, 252, 0.84);
  text-shadow: none;
  padding-bottom: 0.08em;
}

.question-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: rgba(170, 218, 232, 0.78);
  min-height: 1.2em;
}

.question-whisper {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(174, 197, 220, 0.42);
}

.question-typed::after {
  content: "";
  display: inline-block;
  width: 0.56em;
  height: 1px;
  margin-left: 0.14em;
  vertical-align: middle;
  background: rgba(182, 234, 255, 0.72);
  box-shadow: 0 0 12px rgba(126, 215, 255, 0.4);
  animation: blinkCursor 1s steps(1, end) infinite;
}

.question-typed.is-complete::after {
  animation: none;
  opacity: 0;
  width: 0;
  margin-left: 0;
}

.type-line::after {
  content: "";
  display: inline-block;
  width: 0.56em;
  height: 1px;
  margin-left: 0.14em;
  vertical-align: middle;
  background: rgba(182, 234, 255, 0.72);
  box-shadow: 0 0 12px rgba(126, 215, 255, 0.4);
  animation: blinkCursor 1s steps(1, end) infinite;
}

.type-line.is-complete::after {
  animation: none;
  opacity: 0;
  width: 0;
  margin-left: 0;
}

.goodbrother-voice {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: none;
}

#introTitle.goodbrother-voice,
#introLead.goodbrother-voice,
#questionKicker.goodbrother-voice,
#questionTitle.goodbrother-voice,
#questionCopy.goodbrother-voice,
#videoPanelTitle.goodbrother-voice,
#videoCloseButton.goodbrother-voice {
  font-family: var(--font-ui) !important;
}

#questionKicker.goodbrother-voice,
#videoPanelTitle.goodbrother-voice,
#videoCloseButton.goodbrother-voice {
  letter-spacing: 0.02em;
}

#introTitle.goodbrother-voice,
#questionTitle.goodbrother-voice {
  letter-spacing: -0.03em;
}

#introEyebrow {
  transition: opacity 320ms var(--ease), filter 320ms var(--ease), transform 320ms var(--ease);
}

#introEyebrow.is-dissolving {
  animation: introEyebrowShatter 880ms cubic-bezier(0.2, 0.74, 0.12, 1) both;
}

#introEyebrow.is-destroyed {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-8px) scale(0.98);
}

#introLead.goodbrother-voice,
#questionCopy.goodbrother-voice {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.question-visual {
  inset: auto 0 0;
  height: 104px;
  pointer-events: none;
}

.question-orb {
  width: 96px;
  height: 96px;
  right: var(--question-orb-right, 18px);
  bottom: var(--question-orb-bottom, 18px);
  animation: floatOrb 4.2s ease-in-out infinite;
  filter: saturate(0.72) brightness(1.06);
  pointer-events: none;
  will-change: transform;
}

.question-rails {
  inset: auto var(--question-rails-right, -10px) var(--question-rails-bottom, 28px) auto;
  width: 212px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(126, 215, 255, 0.18);
  transform: rotate(var(--question-rails-rotate, -12deg));
  will-change: transform;
}

.question-rails::before,
.question-rails::after {
  content: "";
  position: absolute;
}

.question-rails::before {
  inset: 16px;
  border-radius: inherit;
  border: 1px solid rgba(126, 215, 255, 0.14);
}

.question-rails::after {
  inset: 24px;
  border-radius: inherit;
  border: 1px solid rgba(126, 215, 255, 0.14);
}

.answer-stack {
  display: grid;
  gap: 8px;
}

.answer-button {
  position: relative;
  width: 100%;
  padding: 12px 14px 12px 42px;
  border-radius: 18px;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.38;
  background:
    linear-gradient(180deg, rgba(13, 21, 29, 0.98), rgba(18, 26, 33, 0.94)),
    radial-gradient(circle at left, rgba(136, 220, 255, 0.06), transparent 36%);
  color: #f2f8ff;
  border: 1px solid rgba(136, 220, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 8px 18px rgba(0, 0, 0, 0.16);
  transition:
    transform 160ms var(--ease),
    background 160ms var(--ease),
    color 160ms var(--ease),
    border-color 160ms var(--ease),
    opacity 200ms var(--ease),
    box-shadow 160ms var(--ease);
}

.answer-button::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(126, 215, 255, 0.28);
  box-shadow: inset 0 0 12px rgba(126, 215, 255, 0.08);
}

.answer-button.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.answer-button:hover,
.answer-button:focus-visible,
.answer-button.is-active {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(20, 31, 38, 0.98), rgba(15, 23, 30, 0.94)),
    radial-gradient(circle at left, rgba(184, 233, 164, 0.12), transparent 32%);
  color: #f9fcff;
  border-color: rgba(184, 233, 164, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(184,233,164,0.08),
    0 12px 24px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(136, 220, 255, 0.06);
}

.answer-button.is-active::before {
  border-color: rgba(212, 255, 117, 0.52);
}

.answer-button.is-active::after {
  background: rgba(212, 255, 117, 0.86);
  box-shadow: 0 0 18px rgba(212, 255, 117, 0.42);
}

.scene-panel-loading {
  display: grid;
  align-content: center;
  gap: 14px;
}

.loading-stage {
  position: relative;
  height: 236px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 18, 27, 0.98), rgba(9, 16, 24, 0.98)),
    radial-gradient(circle at center, rgba(136, 220, 255, 0.12), transparent 42%),
    radial-gradient(circle at 50% 30%, rgba(184, 233, 164, 0.06), transparent 28%);
}

.loading-stage::before,
.loading-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loading-stage::before {
  background:
    radial-gradient(circle at 30% 40%, rgba(126, 215, 255, 0.12), transparent 20%),
    radial-gradient(circle at 72% 52%, rgba(212, 255, 117, 0.12), transparent 16%),
    linear-gradient(180deg, transparent, rgba(126, 215, 255, 0.05), transparent);
  mix-blend-mode: screen;
  animation: loadingNebula 4s ease-in-out infinite;
}

.loading-stage::after {
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent),
    radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 60%);
  transform: translateX(-110%);
  opacity: 0;
}

.loading-stage[data-phase="scan"]::after,
.loading-stage[data-phase="forge"]::after,
.loading-stage[data-phase="engrave"]::after,
.loading-stage[data-phase="release"]::after {
  opacity: 1;
  animation: loadingSweep 1.15s var(--ease);
}

.loading-vortex,
.loading-orbit,
.loading-core,
.loading-flare {
  position: absolute;
}

.loading-vortex {
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(126, 215, 255, 0.12), transparent 54%);
  filter: blur(10px);
}

.loading-orbit {
  left: 50%;
  top: 49%;
  border-radius: 50%;
  border: 1px solid rgba(126, 215, 255, 0.12);
  transform: translate(-50%, -50%);
}

.loading-orbit-1 {
  width: 168px;
  height: 168px;
  animation: spinSlow 5.5s linear infinite;
}

.loading-orbit-2 {
  width: 224px;
  height: 224px;
  border-color: rgba(212, 255, 117, 0.08);
  animation: spinSlow 7.2s linear infinite reverse;
}

.loading-rail {
  inset: 58% 11% auto;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(126, 215, 255, 0.2);
  transform: translateY(-50%);
}

.loading-rail::before,
.loading-rail::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  border: 1px solid rgba(126, 215, 255, 0.16);
}

.loading-rail::after {
  inset: -64px auto auto 52%;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 1px solid rgba(126, 215, 255, 0.12);
  transform: translateX(-50%);
}

.loading-core {
  left: 50%;
  top: 40%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), rgba(126,215,255,0.24) 24%, transparent 58%);
  filter: blur(1px);
}

.loading-orb {
  width: 88px;
  height: 88px;
  left: 16%;
  top: calc(58% - 44px);
  transition: left 520ms var(--ease);
  z-index: 2;
}

.loading-beam {
  inset: auto 12% 22% 12%;
  height: 120px;
  background: radial-gradient(circle, rgba(126, 215, 255, 0.1), transparent 72%);
  filter: blur(14px);
}

.loading-flare {
  inset: auto 10% 18% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
  box-shadow: 0 0 24px rgba(126,215,255,0.24);
  animation: scanDown 1.7s linear infinite;
}

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

.loading-step {
  padding: 11px 13px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.loading-step.is-active {
  color: var(--text);
  border-color: rgba(136, 220, 255, 0.32);
  background: rgba(136, 220, 255, 0.08);
}

.scene-panel-result {
  display: grid;
  gap: 18px;
}

.result-banner,
.archive-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.result-card {
  position: relative;
  padding: 20px 20px 210px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(225, 242, 248, 0.22);
  background:
    radial-gradient(circle at 50% 18%, rgba(136, 220, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(11, 20, 29, 0.98), rgba(9, 16, 24, 0.98));
}

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

.result-card::before {
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255,255,255,0.05);
}

.result-card::after {
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 215, 255, 0.24), transparent);
}

.result-aurora,
.result-constellation {
  position: absolute;
  pointer-events: none;
}

.result-aurora {
  inset: -30px -20px auto -20px;
  height: 260px;
  background:
    radial-gradient(circle at 32% 38%, rgba(126,215,255,0.16), transparent 26%),
    radial-gradient(circle at 72% 26%, rgba(212,255,117,0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 70%);
  filter: blur(8px);
  opacity: 0.88;
  animation: auroraDrift 8s ease-in-out infinite;
}

.result-constellation {
  inset: 12px;
  border-radius: 26px;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255,255,255,0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 22% 28%, rgba(126,215,255,0.38) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 20%, rgba(255,255,255,0.45) 0 1px, transparent 1.5px),
    linear-gradient(120deg, transparent 0 42%, rgba(126,215,255,0.08) 46%, transparent 50%);
  opacity: 0.72;
}

.result-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.result-type {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--text);
}

.result-title {
  margin-top: 10px;
  font-size: clamp(2.2rem, 8vw, 3.2rem);
}

.result-job {
  margin: 10px 0 0;
  font-size: 1rem;
  color: #d9e8ef;
  font-family: var(--font-ui);
  font-weight: 700;
}

.result-summary {
  max-width: 34ch;
}

.result-orb-hero {
  width: 190px;
  height: 190px;
  right: 22px;
  bottom: 20px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18) inset,
    0 0 60px rgba(126,215,255,0.18),
    0 26px 38px rgba(0,0,0,0.42);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.result-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(126, 215, 255, 0.1);
  border: 1px solid rgba(126, 215, 255, 0.24);
}

.result-chip-risk {
  background: rgba(255, 123, 138, 0.12);
  border-color: rgba(255, 123, 138, 0.28);
}

.result-reasons,
.result-deep-dive,
.future-slot {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.section-head h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.reason-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #deedf9;
  line-height: 1.6;
}

.reason-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #ffffff);
  box-shadow: 0 0 14px rgba(126, 215, 255, 0.4);
}

.result-deep-dive {
  display: grid;
  gap: 14px;
}

.detail-block p {
  margin: 6px 0 0;
}

.future-slot {
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 5, 11, 0.78);
  backdrop-filter: blur(18px);
  animation: modalBackdropIn 520ms var(--ease);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), 430px);
  max-height: calc(100svh - 32px);
  margin: 16px auto;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(5, 12, 20, 0.94);
  box-shadow: var(--shadow);
  overflow: auto;
  animation: modalPanelIn 620ms cubic-bezier(0.15, 0.82, 0.12, 1);
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.4rem;
}

.video-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(2, 5, 10, 0.98), rgba(4, 8, 14, 0.98)),
    radial-gradient(circle at 50% 38%, rgba(126, 215, 255, 0.08), transparent 38%);
  aspect-ratio: 16 / 9;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 20px 40px rgba(0,0,0,0.34),
    0 0 48px rgba(126, 215, 255, 0.08);
}

.video-shell video,
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transform: scale(1.01);
  background: #02050a;
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
  filter: saturate(0.8) contrast(1.04);
}

.modal-cta {
  margin-top: 16px;
}

.modal-panel-video {
  width: min(calc(100% - 28px), 720px);
  max-width: 720px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.98), rgba(4, 8, 14, 0.98)),
    radial-gradient(circle at top, rgba(126, 215, 255, 0.08), transparent 28%);
}

.video-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.video-panel-head > div {
  min-width: 0;
  flex: 1 1 auto;
}

.video-panel-title {
  display: block;
  margin: 4px 0 0;
  max-width: 100%;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.12rem, 4.7vw, 1.56rem);
  line-height: 1.16;
  overflow: visible;
  transition: opacity 360ms var(--ease), filter 360ms var(--ease), transform 360ms var(--ease);
}

#videoPanelTitle.is-dissolving {
  animation: videoTitleShatter 860ms cubic-bezier(0.18, 0.72, 0.12, 1) both;
}

#videoPanelTitle.is-destroyed {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(-10px) scale(0.97);
}

#videoCloseButton.type-line::after {
  width: 0.34em;
  margin-left: 0.08em;
}

.video-device {
  position: relative;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(126, 215, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(7, 13, 22, 0.98), rgba(6, 11, 18, 0.96)),
    radial-gradient(circle at 50% 10%, rgba(126, 215, 255, 0.08), transparent 30%);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 18px 40px rgba(0,0,0,0.28);
}

.video-device::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.video-device-grid,
.video-device-rings,
.video-bezel,
.video-veil,
.video-noise,
.video-scan,
.video-core {
  position: absolute;
}

.video-device-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 209, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 209, 235, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at center, #000 36%, transparent 100%);
}

.video-device-rings {
  inset: 0;
  pointer-events: none;
}

.video-device-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(126, 215, 255, 0.12);
  animation: spinSlow 14s linear infinite;
}

.video-device-rings span:nth-child(1) {
  width: 320px;
  height: 320px;
  right: -84px;
  top: -42px;
}

.video-device-rings span:nth-child(2) {
  width: 204px;
  height: 204px;
  left: -56px;
  bottom: 72px;
  animation-direction: reverse;
  animation-duration: 10s;
}

.video-device-rings span:nth-child(3) {
  width: 120px;
  height: 120px;
  right: 26px;
  bottom: 26px;
  animation-duration: 7s;
}

.video-bezel {
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 0 0 1px rgba(126, 215, 255, 0.04),
    inset 0 0 28px rgba(255,255,255,0.02);
  pointer-events: none;
  z-index: 2;
}

.video-veil {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(3, 6, 12, 0.82), rgba(6, 10, 18, 0.46)),
    radial-gradient(circle at center, rgba(126, 215, 255, 0.12), transparent 38%);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), visibility 900ms var(--ease);
}

.video-noise {
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 24%, transparent 76%, rgba(255,255,255,0.02));
  background-size: 92px 92px, 120px 120px, auto;
  opacity: 0.6;
}

.video-scan {
  inset: -14% 0 auto;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
  mix-blend-mode: screen;
  animation: videoScan 1.9s linear infinite;
}

.video-core {
  inset: 50% auto auto 50%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.96), rgba(126, 215, 255, 0.34) 24%, rgba(5,10,18,0.08) 66%);
  box-shadow:
    0 0 54px rgba(126, 215, 255, 0.22),
    0 0 0 1px rgba(255,255,255,0.18) inset;
  animation: videoPulse 2.2s ease-in-out infinite;
}

.video-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(126, 215, 255, 0.16);
  background: rgba(4, 8, 14, 0.58);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(225, 241, 252, 0.82);
}

.modal-panel-video.is-phase-boot .video-core {
  animation-duration: 1.4s;
}

.modal-panel-video.is-phase-sync .video-status::after,
.modal-panel-video.is-phase-open .video-status::after {
  content: "";
  position: absolute;
  inset: auto 16px 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 255, 117, 0.72), transparent);
}

.modal-panel-video.is-phase-open .video-veil {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
}

.modal-panel-video.is-phase-open .video-shell video,
.modal-panel-video.is-phase-open .video-shell iframe {
  opacity: 1;
  transform: scale(1);
}

@keyframes videoTitleShatter {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
    letter-spacing: 0.03em;
  }
  28% {
    opacity: 0.9;
    filter: blur(0.8px);
    transform: translate3d(0, -1px, 0) scale(1.01);
  }
  54% {
    opacity: 0.55;
    filter: blur(3px);
    transform: translate3d(2px, -5px, 0) scale(1.018);
    letter-spacing: 0.09em;
  }
  100% {
    opacity: 0;
    filter: blur(16px);
    transform: translate3d(10px, -14px, 0) scale(0.965);
    letter-spacing: 0.16em;
  }
}

.archive-preview {
  position: relative;
  padding: 18px 18px 132px;
  margin: 18px 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.archive-preview-copy {
  position: relative;
  z-index: 1;
}

.archive-preview-copy .panel-copy {
  max-width: 28ch;
}

.archive-preview-orb {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(126, 215, 255, 0.1),
    0 24px 46px rgba(0, 0, 0, 0.36);
}

.archive-preview-ring {
  position: absolute;
  right: -18px;
  bottom: 10px;
  width: 188px;
  height: 78px;
  border-radius: 999px;
  border: 1px solid rgba(126, 215, 255, 0.12);
  transform: rotate(-10deg);
}

.archive-preview-ring::before,
.archive-preview-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px solid rgba(126, 215, 255, 0.1);
}

.archive-preview-ring::after {
  inset: 24px;
}

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

.archive-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  color: var(--text);
}

.archive-card.is-selected {
  border-color: rgba(126, 215, 255, 0.46);
  background: rgba(126, 215, 255, 0.08);
}

.archive-card-code {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.archive-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
}

.archive-card-sub {
  font-size: 0.86rem;
  color: var(--muted);
}

body.route-variant-b {
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 235, 255, 0.7), transparent 30%),
    linear-gradient(180deg, #eef8ff 0%, #dceffc 100%);
  --text: #0f2233;
  --muted: #43586b;
  --line: rgba(104, 143, 170, 0.18);
  --line-strong: rgba(88, 125, 150, 0.34);
  --accent: #4ebaff;
  --accent-2: #8fd39a;
  --danger: #d85d7f;
  --shadow: 0 26px 70px rgba(87, 126, 153, 0.18);
}

body.route-variant-b .ambient-grid {
  opacity: 0.34;
}

body.route-variant-b .ambient-noise {
  opacity: 0.05;
}

body.route-variant-b .scene-transition {
  background:
    radial-gradient(circle at center, rgba(91, 188, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(229, 244, 255, 0.26), rgba(176, 202, 226, 0.56));
  backdrop-filter: blur(9px);
}

body.route-variant-b .scene-transition-ring {
  border-color: rgba(84, 160, 214, 0.2);
  box-shadow: 0 0 54px rgba(78, 186, 255, 0.12);
}

body.route-variant-b .scene-transition-ring-alt {
  border-color: rgba(139, 208, 160, 0.16);
}

body.route-variant-b .scene-transition-beam {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
}

body.route-variant-b .top-rail {
  color: var(--text);
}

body.route-variant-b .rail-kicker,
body.route-variant-b .eyebrow,
body.route-variant-b .meta-label,
body.route-variant-b .status-badge,
body.route-variant-b .future-label,
body.route-variant-b .detail-label,
body.route-variant-b .question-kicker,
body.route-variant-b .result-type,
body.route-variant-b .result-code,
body.route-variant-b .field-label,
body.route-variant-b .form-hint {
  color: rgba(43, 71, 94, 0.9);
}

body.route-variant-b .rail-ghost {
  border-color: rgba(98, 138, 165, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(120, 153, 175, 0.12);
}

body.route-variant-b .scene-panel {
  border-color: rgba(103, 144, 171, 0.18);
  box-shadow: 0 24px 60px rgba(99, 131, 156, 0.16);
}

body.route-variant-b .scene-panel::before {
  border-color: rgba(255, 255, 255, 0.82);
}

body.route-variant-b .scene-panel-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(241, 249, 255, 0.16)),
    linear-gradient(180deg, rgba(238, 247, 255, 0.92), rgba(221, 238, 250, 0.86));
}

body.route-variant-b .hero-title,
body.route-variant-b .panel-title,
body.route-variant-b .result-title,
body.route-variant-b .question-title,
body.route-variant-b .section-head h3,
body.route-variant-b .archive-card-title {
  color: #0f2233;
  text-shadow: none;
}

body.route-variant-b .hero-lead,
body.route-variant-b .panel-copy,
body.route-variant-b .question-copy,
body.route-variant-b .result-summary,
body.route-variant-b .future-slot p,
body.route-variant-b .detail-block p,
body.route-variant-b .hero-note,
body.route-variant-b .question-whisper,
body.route-variant-b .result-job,
body.route-variant-b .archive-card-sub {
  color: #43586b;
}

body.route-variant-b .coord-ring {
  border-color: rgba(87, 164, 214, 0.16);
}

body.route-variant-b .orb-core,
body.route-variant-b .loading-orb,
body.route-variant-b .question-orb,
body.route-variant-b .result-orb-hero {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.58) inset,
    0 0 42px rgba(78, 186, 255, 0.18),
    0 18px 30px rgba(116, 141, 161, 0.18);
}

body.route-variant-b .hero-cta {
  border-color: rgba(111, 158, 188, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 252, 0.92)),
    radial-gradient(circle at top right, rgba(98, 195, 255, 0.12), transparent 42%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 16px 28px rgba(124, 154, 177, 0.14);
}

body.route-variant-b .hero-cta::before {
  border-color: rgba(99, 147, 177, 0.12);
}

body.route-variant-b .hero-cta::after {
  background: linear-gradient(90deg, transparent, rgba(78, 186, 255, 0.42), transparent);
}

body.route-variant-b .hero-cta-label {
  color: rgba(39, 67, 89, 0.82);
}

body.route-variant-b .hero-cta-title {
  color: #0f2233;
}

body.route-variant-b .hero-cta-meta {
  color: rgba(49, 76, 97, 0.72);
}

body.route-variant-b .hero-cta-primary {
  background:
    linear-gradient(180deg, rgba(79, 189, 255, 0.96), rgba(34, 151, 228, 0.92)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.34), transparent 40%);
  border-color: rgba(67, 150, 207, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 18px 36px rgba(78, 186, 255, 0.22);
}

body.route-variant-b .hero-cta-primary .hero-cta-label,
body.route-variant-b .hero-cta-primary .hero-cta-meta,
body.route-variant-b .hero-cta-primary .hero-cta-title {
  color: #ffffff;
}

body.route-variant-b .hero-meta > div,
body.route-variant-b .status-badge,
body.route-variant-b .progress-shell,
body.route-variant-b .oracle-field,
body.route-variant-b .stepper-value-wrap,
body.route-variant-b .result-reasons,
body.route-variant-b .result-deep-dive,
body.route-variant-b .future-slot,
body.route-variant-b .archive-preview,
body.route-variant-b .archive-card,
body.route-variant-b .loading-step,
body.route-variant-b .modal-panel {
  border-color: rgba(103, 144, 171, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(122, 151, 176, 0.12);
}

body.route-variant-b .oracle-input-shell,
body.route-variant-b .stepper-value-wrap,
body.route-variant-b .blood-button,
body.route-variant-b .stepper-button,
body.route-variant-b .answer-button,
body.route-variant-b .result-card,
body.route-variant-b .question-card,
body.route-variant-b .video-device,
body.route-variant-b .video-shell {
  border-color: rgba(100, 144, 175, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 253, 0.92)),
    radial-gradient(circle at top, rgba(78, 186, 255, 0.1), transparent 40%);
  color: var(--text);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(121, 150, 174, 0.14);
}

body.route-variant-b .oracle-input-prefix,
body.route-variant-b .stepper-unit,
body.route-variant-b .name-seal-button-kicker {
  color: rgba(47, 74, 95, 0.82);
}

body.route-variant-b .oracle-input-shell input,
body.route-variant-b .stepper-value,
body.route-variant-b .answer-button,
body.route-variant-b .blood-button,
body.route-variant-b .stepper-button,
body.route-variant-b .result-type,
body.route-variant-b .result-job {
  color: #112739;
}

body.route-variant-b .oracle-input-shell input::placeholder {
  color: rgba(67, 89, 108, 0.52);
}

body.route-variant-b .name-seal-button {
  border-color: rgba(99, 144, 173, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 252, 0.92)),
    radial-gradient(circle at top, rgba(78, 186, 255, 0.08), transparent 44%);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(118, 149, 172, 0.12);
}

body.route-variant-b .name-seal-button.is-confirmed,
body.route-variant-b .blood-button:hover,
body.route-variant-b .blood-button:focus-visible,
body.route-variant-b .blood-button.is-selected,
body.route-variant-b .stepper-button:hover,
body.route-variant-b .stepper-button:focus-visible,
body.route-variant-b .oracle-field:focus-within,
body.route-variant-b .oracle-field.is-signed,
body.route-variant-b .oracle-field.is-shifted,
body.route-variant-b .answer-button:hover,
body.route-variant-b .answer-button:focus-visible,
body.route-variant-b .answer-button.is-active,
body.route-variant-b .archive-card.is-selected {
  border-color: rgba(78, 186, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(232, 245, 255, 0.98), rgba(221, 239, 252, 0.94)),
    radial-gradient(circle at top, rgba(78, 186, 255, 0.12), transparent 42%);
  box-shadow:
    inset 0 0 0 1px rgba(78, 186, 255, 0.08),
    0 16px 28px rgba(106, 144, 175, 0.16);
}

body.route-variant-b .answer-button::before,
body.route-variant-b .status-badge,
body.route-variant-b .result-chip,
body.route-variant-b .result-chip-risk {
  border-color: rgba(78, 186, 255, 0.22);
}

body.route-variant-b .question-card {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 24px 46px rgba(121, 150, 174, 0.16);
}

body.route-variant-b .question-orb,
body.route-variant-b .question-rails {
  opacity: 0.78;
}

body.route-variant-b .progress-fill {
  background: linear-gradient(90deg, #4ebaff, #b7efff);
}

body.route-variant-b .loading-step.is-active {
  border-color: rgba(78, 186, 255, 0.28);
  background: rgba(226, 242, 255, 0.88);
  color: #112739;
}

body.route-variant-b .result-card {
  background:
    radial-gradient(circle at 50% 18%, rgba(78, 186, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 252, 0.94));
}

body.route-variant-b .result-card::before {
  border-color: rgba(255, 255, 255, 0.84);
}

body.route-variant-b .result-card::after {
  background: linear-gradient(90deg, transparent, rgba(78, 186, 255, 0.44), transparent);
}

body.route-variant-b .reason-list li::before {
  background: linear-gradient(180deg, var(--accent), #ffffff);
  box-shadow: 0 0 14px rgba(78, 186, 255, 0.14);
}

body.route-variant-b .result-chip {
  background: rgba(78, 186, 255, 0.1);
}

body.route-variant-b .result-chip-risk {
  border-color: rgba(216, 93, 127, 0.24);
  background: rgba(216, 93, 127, 0.08);
}

body.route-variant-b .modal-backdrop {
  background: rgba(177, 198, 216, 0.34);
  backdrop-filter: blur(18px);
}

body.route-variant-b .modal-close {
  background: rgba(227, 241, 252, 0.92);
  color: #143146;
}

body.route-variant-b .video-panel-title,
body.route-variant-b .video-status {
  color: #173043;
}

body.route-variant-b .video-status {
  border-color: rgba(101, 147, 179, 0.14);
  background: rgba(243, 250, 255, 0.84);
}

body.route-variant-b .video-device-grid {
  opacity: 0.22;
}

body.route-variant-b .video-veil {
  background:
    linear-gradient(180deg, rgba(230, 242, 252, 0.84), rgba(214, 233, 248, 0.42)),
    radial-gradient(circle at center, rgba(78, 186, 255, 0.12), transparent 38%);
}

body.route-variant-b .scene-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.84)),
    linear-gradient(135deg, rgba(168, 222, 255, 0.16), transparent 46%);
}

body.route-variant-b .scene-panel::after {
  opacity: 0.76;
  filter: saturate(0.92) brightness(1.04);
}

body.route-variant-b .orb-core,
body.route-variant-b .loading-orb,
body.route-variant-b .question-orb,
body.route-variant-b .result-orb-hero {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.98), rgba(239, 249, 255, 0.94) 18%, rgba(135, 214, 255, 0.56) 48%, rgba(193, 235, 255, 0.26) 70%, rgba(241, 249, 255, 0.04) 100%);
}

body.route-variant-b .question-card,
body.route-variant-b .result-card,
body.route-variant-b .archive-preview,
body.route-variant-b .archive-card,
body.route-variant-b .modal-panel,
body.route-variant-b .result-reasons,
body.route-variant-b .result-deep-dive,
body.route-variant-b .detail-block,
body.route-variant-b .hero-meta > div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.9)),
    radial-gradient(circle at top, rgba(134, 212, 255, 0.08), transparent 42%);
}

body.route-variant-b .cta-secondary,
body.route-variant-b .cta-tertiary,
body.route-variant-b .hero-cta-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 254, 0.9)),
    radial-gradient(circle at top right, rgba(154, 224, 205, 0.12), transparent 40%);
  color: #163248;
}

body.route-variant-b .loading-stage {
  border-color: rgba(96, 141, 173, 0.16);
  background:
    radial-gradient(circle at center, rgba(160, 220, 255, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 255, 0.78));
}

body.route-variant-b .loading-rail,
body.route-variant-b .loading-rail::before,
body.route-variant-b .loading-rail::after,
body.route-variant-b .loading-orbit {
  border-color: rgba(88, 158, 206, 0.18);
}

body.route-variant-b .loading-beam {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
}

body.route-variant-b .result-banner,
body.route-variant-b .archive-header {
  color: #476173;
}

body.route-variant-b .result-chip,
body.route-variant-b .status-badge {
  background: rgba(96, 188, 244, 0.12);
  color: #14344c;
}

body.route-variant-b .result-chip-risk {
  color: #8c4858;
}

body.route-variant-b .archive-card.is-selected,
body.route-variant-b .answer-button.is-active {
  background:
    linear-gradient(180deg, rgba(232, 245, 255, 0.98), rgba(221, 239, 252, 0.94)),
    radial-gradient(circle at top, rgba(78, 186, 255, 0.16), transparent 42%);
}

body.route-variant-b .toast {
  background: rgba(248, 252, 255, 0.94);
  border-color: rgba(78, 186, 255, 0.18);
  color: #112739;
}

body.route-variant-b .goodbrother-voice,
body.route-variant-b #introTitle.goodbrother-voice,
body.route-variant-b #introLead.goodbrother-voice,
body.route-variant-b #questionKicker.goodbrother-voice,
body.route-variant-b #questionTitle.goodbrother-voice,
body.route-variant-b #questionCopy.goodbrother-voice,
body.route-variant-b #videoPanelTitle.goodbrother-voice,
body.route-variant-b #videoCloseButton.goodbrother-voice {
  color: var(--text);
}

body.route-variant-b #introLead.goodbrother-voice,
body.route-variant-b #questionCopy.goodbrother-voice,
body.route-variant-b .panel-copy,
body.route-variant-b .hero-lead,
body.route-variant-b .question-copy,
body.route-variant-b .result-summary,
body.route-variant-b .result-job,
body.route-variant-b .archive-card-sub,
body.route-variant-b .question-whisper,
body.route-variant-b .form-hint {
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 30;
  min-width: 220px;
  max-width: calc(100% - 28px);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(7, 16, 25, 0.96);
  border: 1px solid rgba(126, 215, 255, 0.24);
  text-align: center;
}

.noscript-message {
  position: fixed;
  inset: auto 16px 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 0, 0, 0.88);
  color: #fff1f1;
}

html,
body,
body.route-variant-b {
  background:
    radial-gradient(circle at 14% 10%, rgba(247, 211, 101, 0.2), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(171, 190, 224, 0.34), transparent 24%),
    linear-gradient(180deg, #f1f6fc 0%, #dbe7f7 48%, #d0e0f4 100%);
  color: #18314d;
}

body.route-variant-a,
body.route-variant-b {
  --route-panel-bg-size: cover;
  --route-panel-bg-position: center top;
}

.ambient-grid,
body.route-variant-b .ambient-grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(108, 147, 199, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 147, 199, 0.08) 1px, transparent 1px);
}

.ambient-noise,
body.route-variant-b .ambient-noise {
  opacity: 0.04;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 50%, rgba(171, 190, 224, 0.14), transparent 62%);
}

.scene-transition,
body.route-variant-b .scene-transition {
  background:
    radial-gradient(circle at center, rgba(171, 190, 224, 0.26), transparent 24%),
    linear-gradient(180deg, rgba(231, 240, 251, 0.4), rgba(180, 199, 228, 0.58));
  backdrop-filter: blur(10px);
}

.scene-transition-ring,
body.route-variant-b .scene-transition-ring {
  border-color: rgba(108, 147, 199, 0.24);
  box-shadow: 0 0 44px rgba(108, 147, 199, 0.1);
}

.scene-transition-ring-alt,
body.route-variant-b .scene-transition-ring-alt {
  border-color: rgba(247, 211, 101, 0.2);
}

.scene-transition-beam,
body.route-variant-b .scene-transition-beam {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.94), transparent);
}

.rail-kicker,
.eyebrow,
.meta-label,
.future-label,
.detail-label,
.result-code,
.field-label,
.form-hint,
body.route-variant-b .rail-kicker,
body.route-variant-b .eyebrow,
body.route-variant-b .meta-label,
body.route-variant-b .future-label,
body.route-variant-b .detail-label,
body.route-variant-b .result-code,
body.route-variant-b .field-label,
body.route-variant-b .form-hint {
  color: rgba(37, 91, 130, 0.86);
}

.rail-ghost,
body.route-variant-b .rail-ghost {
  border-color: rgba(108, 147, 199, 0.18);
  background: rgba(255, 255, 255, 0.54);
  color: #18314d;
  box-shadow: 0 10px 24px rgba(86, 114, 160, 0.08);
}

.scene-panel,
body.route-variant-b .scene-panel {
  border-color: rgba(171, 190, 224, 0.42);
  background:
    linear-gradient(180deg, rgba(245, 249, 254, 0.94), rgba(226, 236, 248, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(171, 190, 224, 0.26), transparent 38%);
  box-shadow: 0 28px 70px rgba(82, 109, 149, 0.12);
}

.scene-panel::before,
body.route-variant-b .scene-panel::before {
  border-color: rgba(255, 255, 255, 0.7);
}

body.route-variant-a .scene-panel::after,
body.route-variant-b .scene-panel::after {
  opacity: 0.42;
  mix-blend-mode: soft-light;
  filter: saturate(0.92) brightness(1.06);
}

.scene-panel-hero,
body.route-variant-b .scene-panel-hero {
  background:
    radial-gradient(circle at 50% 14%, rgba(171, 190, 224, 0.42), transparent 30%),
    linear-gradient(180deg, rgba(244, 248, 253, 0.98), rgba(222, 234, 248, 0.96));
}

.hero-title,
.panel-title,
.result-title,
.section-head h3,
body.route-variant-b .hero-title,
body.route-variant-b .panel-title,
body.route-variant-b .result-title,
body.route-variant-b .section-head h3,
body.route-variant-b .archive-card-title {
  color: #18314d;
  text-shadow: none;
}

.hero-lead,
.panel-copy,
.hero-note,
.result-summary,
.detail-block p,
.future-slot p,
.archive-card-sub,
.result-job,
body.route-variant-b .hero-lead,
body.route-variant-b .panel-copy,
body.route-variant-b .hero-note,
body.route-variant-b .result-summary,
body.route-variant-b .detail-block p,
body.route-variant-b .future-slot p,
body.route-variant-b .archive-card-sub,
body.route-variant-b .result-job {
  color: rgba(24, 49, 77, 0.76);
}

.hero-cta,
body.route-variant-b .hero-cta {
  border-color: rgba(171, 190, 224, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 252, 0.92)),
    radial-gradient(circle at top right, rgba(171, 190, 224, 0.24), transparent 42%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 14px 28px rgba(93, 118, 154, 0.12);
}

.hero-cta::before,
body.route-variant-b .hero-cta::before {
  border-color: rgba(108, 147, 199, 0.12);
}

.hero-cta::after,
body.route-variant-b .hero-cta::after {
  background: linear-gradient(90deg, transparent, rgba(108, 147, 199, 0.22), transparent);
}

.hero-cta-label,
body.route-variant-b .hero-cta-label {
  color: rgba(37, 91, 130, 0.72);
}

.hero-cta-title,
body.route-variant-b .hero-cta-title {
  color: #18314d;
}

.hero-cta-meta,
body.route-variant-b .hero-cta-meta {
  color: rgba(24, 49, 77, 0.52);
}

.hero-cta-primary,
body.route-variant-b .hero-cta-primary {
  background:
    linear-gradient(180deg, rgba(255, 234, 169, 0.98), rgba(247, 211, 101, 0.96)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.38), transparent 42%);
  border-color: rgba(247, 211, 101, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 18px 36px rgba(247, 211, 101, 0.18);
}

.hero-cta-primary .hero-cta-label,
.hero-cta-primary .hero-cta-meta,
.hero-cta-primary .hero-cta-title,
body.route-variant-b .hero-cta-primary .hero-cta-label,
body.route-variant-b .hero-cta-primary .hero-cta-meta,
body.route-variant-b .hero-cta-primary .hero-cta-title {
  color: #2a3442;
}

.hero-cta-secondary,
body.route-variant-b .hero-cta-secondary {
  background:
    linear-gradient(180deg, rgba(197, 213, 239, 0.98), rgba(171, 190, 224, 0.94)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 42%);
  border-color: rgba(171, 190, 224, 0.72);
}

.hero-meta > div,
body.route-variant-b .hero-meta > div {
  border-color: rgba(171, 190, 224, 0.34);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.oracle-field,
.stepper-value-wrap,
.result-reasons,
.result-deep-dive,
.future-slot,
.archive-preview,
.archive-card,
.loading-step,
.modal-panel,
body.route-variant-b .oracle-field,
body.route-variant-b .stepper-value-wrap,
body.route-variant-b .result-reasons,
body.route-variant-b .result-deep-dive,
body.route-variant-b .future-slot,
body.route-variant-b .archive-preview,
body.route-variant-b .archive-card,
body.route-variant-b .loading-step,
body.route-variant-b .modal-panel {
  border-color: rgba(171, 190, 224, 0.34);
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.96), rgba(235, 243, 251, 0.94)),
    radial-gradient(circle at top, rgba(171, 190, 224, 0.16), transparent 42%);
  box-shadow: 0 16px 34px rgba(91, 118, 154, 0.1);
}

.oracle-input-shell,
.blood-button,
.stepper-button,
.name-seal-button,
.video-device,
.video-shell,
body.route-variant-b .oracle-input-shell,
body.route-variant-b .blood-button,
body.route-variant-b .stepper-button,
body.route-variant-b .name-seal-button,
body.route-variant-b .video-device,
body.route-variant-b .video-shell {
  border-color: rgba(171, 190, 224, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 252, 0.94)),
    radial-gradient(circle at top, rgba(171, 190, 224, 0.16), transparent 40%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(91, 118, 154, 0.08);
}

.field-meta,
.oracle-input-prefix,
.stepper-unit,
.name-seal-button-kicker,
body.route-variant-b .field-meta,
body.route-variant-b .oracle-input-prefix,
body.route-variant-b .stepper-unit,
body.route-variant-b .name-seal-button-kicker {
  color: rgba(37, 91, 130, 0.68);
}

.oracle-input-shell input,
.stepper-value,
.blood-button,
.stepper-button,
.result-type,
.archive-card-title,
.name-seal-button-label,
body.route-variant-b .oracle-input-shell input,
body.route-variant-b .stepper-value,
body.route-variant-b .blood-button,
body.route-variant-b .stepper-button,
body.route-variant-b .result-type,
body.route-variant-b .archive-card-title,
body.route-variant-b .name-seal-button-label {
  color: #18314d;
}

.oracle-input-shell input::placeholder,
body.route-variant-b .oracle-input-shell input::placeholder {
  color: rgba(24, 49, 77, 0.38);
}

.name-seal-button.is-confirmed,
.blood-button:hover,
.blood-button:focus-visible,
.blood-button.is-selected,
.stepper-button:hover,
.stepper-button:focus-visible,
.oracle-field:focus-within,
.oracle-field.is-signed,
.oracle-field.is-shifted,
.archive-card.is-selected,
body.route-variant-b .name-seal-button.is-confirmed,
body.route-variant-b .blood-button:hover,
body.route-variant-b .blood-button:focus-visible,
body.route-variant-b .blood-button.is-selected,
body.route-variant-b .stepper-button:hover,
body.route-variant-b .stepper-button:focus-visible,
body.route-variant-b .oracle-field:focus-within,
body.route-variant-b .oracle-field.is-signed,
body.route-variant-b .oracle-field.is-shifted,
body.route-variant-b .archive-card.is-selected {
  border-color: rgba(247, 211, 101, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 247, 220, 0.98), rgba(249, 236, 182, 0.92)),
    radial-gradient(circle at top, rgba(247, 211, 101, 0.16), transparent 44%);
  box-shadow:
    inset 0 0 0 1px rgba(247, 211, 101, 0.18),
    0 14px 28px rgba(207, 174, 75, 0.14);
}

.scene-panel-question {
  gap: 16px;
}

.status-badge,
body.route-variant-b .status-badge {
  padding: 0;
  border: 0;
  background: none;
  color: #6b4d14;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: none;
}

#questionMeta,
body.route-variant-b #questionMeta {
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.04em;
}

.progress-shell,
body.route-variant-b .progress-shell {
  height: 14px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(108, 147, 199, 0.22);
  box-shadow: inset 0 2px 5px rgba(58, 91, 136, 0.08);
}

.progress-fill,
body.route-variant-b .progress-fill {
  position: relative;
  background: linear-gradient(90deg, #2e63de 0%, #5887f0 100%);
  box-shadow: 0 0 14px rgba(66, 118, 235, 0.22);
}

.progress-fill::after,
body.route-variant-b .progress-fill::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 35% 30%, #7ca7ff, #235bd8);
  box-shadow:
    0 0 0 4px rgba(108, 147, 199, 0.16),
    0 0 10px rgba(46, 99, 222, 0.26);
}

.question-card,
body.route-variant-b .question-card {
  min-height: 560px;
  padding: 22px 18px 192px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    radial-gradient(circle at 50% -16%, rgba(255, 255, 255, 0.52), transparent 38%),
    linear-gradient(180deg, #6f95ca 0%, #577dae 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 26px 58px rgba(61, 92, 136, 0.2);
}

.question-card::before,
body.route-variant-b .question-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 26%);
  pointer-events: none;
}

.question-kicker,
body.route-variant-b .question-kicker {
  color: #f7d365;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.question-title,
body.route-variant-b .question-title {
  max-width: 9ch;
  margin-top: 14px;
  font-size: clamp(2.28rem, 10vw, 3.56rem);
  line-height: 1.17;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 8px 22px rgba(46, 74, 116, 0.22);
}

.question-copy,
body.route-variant-b .question-copy {
  max-width: 18ch;
  min-height: 4.2em;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(245, 249, 255, 0.9);
}

.question-whisper,
body.route-variant-b .question-whisper {
  position: absolute;
  left: 18px;
  bottom: 174px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(225, 236, 251, 0.58);
}

.question-visual {
  inset: auto 18px 22px 18px;
  height: 190px;
  overflow: hidden;
}

.question-visual::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -92px;
  width: 228px;
  height: 228px;
  border-radius: 50%;
  border: 3px solid rgba(229, 239, 255, 0.72);
  box-shadow:
    0 0 0 22px rgba(220, 230, 248, 0.5),
    0 0 0 44px rgba(213, 225, 245, 0.4),
    0 0 0 66px rgba(205, 219, 242, 0.3);
}

.question-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M23 12c10 6 24 24 34 56' fill='none' stroke='%23ff6f5c' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M57 12C47 18 33 36 23 68' fill='none' stroke='%2374b5ff' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M29 20h20M25 30h24M22 40h27M24 50h24M28 60h20' fill='none' stroke='%23f7d365' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/62px 62px no-repeat,
    radial-gradient(circle at 34% 28%, #5d8cff, #2159d5 74%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 24px 36px rgba(35, 69, 129, 0.22);
}

.question-orb,
body.route-variant-b .question-orb {
  width: 126px;
  height: 126px;
  right: 18px;
  bottom: 10px;
  filter: saturate(0.7) brightness(1.02);
}

.question-rails,
body.route-variant-b .question-rails {
  width: 186px;
  height: 52px;
  right: -4px;
  bottom: 52px;
  border: 4px solid rgba(163, 177, 109, 0.38);
}

.question-rails::before,
.question-rails::after,
body.route-variant-b .question-rails::before,
body.route-variant-b .question-rails::after {
  border: 4px solid rgba(163, 177, 109, 0.32);
}

.question-rails::before,
body.route-variant-b .question-rails::before {
  inset: 9px;
}

.question-rails::after,
body.route-variant-b .question-rails::after {
  inset: 18px;
}

.answer-stack {
  gap: 14px;
}

.answer-stack.is-locked .answer-button {
  pointer-events: none;
}

.answer-button,
body.route-variant-b .answer-button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 18px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(234, 241, 251, 0.94));
  color: #18314d;
  border: 1px solid rgba(171, 190, 224, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 28px rgba(91, 118, 154, 0.12);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
}

.answer-button::before,
.answer-button::after,
body.route-variant-b .answer-button::before,
body.route-variant-b .answer-button::after {
  content: none;
}

.answer-button-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid rgba(83, 116, 164, 0.5);
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 0 1px rgba(108, 147, 199, 0.12);
}

.answer-button-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: transparent;
  transition: background 160ms var(--ease), box-shadow 160ms var(--ease);
}

.answer-button-text {
  display: block;
  min-width: 0;
}

.answer-button:hover,
.answer-button:focus-visible,
body.route-variant-b .answer-button:hover,
body.route-variant-b .answer-button:focus-visible {
  background: linear-gradient(180deg, rgba(252, 254, 255, 1), rgba(238, 245, 252, 0.96));
  border-color: rgba(108, 147, 199, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 28px rgba(91, 118, 154, 0.14);
}

.answer-button.is-active,
body.route-variant-b .answer-button.is-active {
  background: linear-gradient(180deg, rgba(255, 236, 182, 1), rgba(247, 211, 101, 0.98));
  color: #222d3c;
  border-color: rgba(240, 199, 75, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 18px 34px rgba(208, 174, 72, 0.18);
}

.answer-button.is-active .answer-button-mark,
body.route-variant-b .answer-button.is-active .answer-button-mark {
  border-color: rgba(88, 101, 119, 0.54);
  background: rgba(255, 255, 255, 0.78);
}

.answer-button.is-active .answer-button-mark::after,
body.route-variant-b .answer-button.is-active .answer-button-mark::after {
  background: #4c74a8;
  box-shadow: 0 0 0 4px rgba(108, 147, 199, 0.16);
}

.loading-stage,
body.route-variant-b .loading-stage {
  border-color: rgba(171, 190, 224, 0.32);
  background:
    linear-gradient(180deg, rgba(236, 244, 252, 0.96), rgba(220, 233, 248, 0.92)),
    radial-gradient(circle at center, rgba(171, 190, 224, 0.24), transparent 42%);
}

.loading-step.is-active,
body.route-variant-b .loading-step.is-active {
  color: #18314d;
  border-color: rgba(108, 147, 199, 0.34);
  background: rgba(171, 190, 224, 0.22);
}

.result-card,
body.route-variant-b .result-card {
  border-color: rgba(171, 190, 224, 0.34);
  background:
    radial-gradient(circle at 50% 12%, rgba(171, 190, 224, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(244, 249, 254, 0.98), rgba(226, 236, 248, 0.94));
}

.result-card::after,
body.route-variant-b .result-card::after {
  background: linear-gradient(90deg, transparent, rgba(108, 147, 199, 0.24), transparent);
}

.result-title,
body.route-variant-b .result-title,
.result-job,
body.route-variant-b .result-job,
.result-summary,
body.route-variant-b .result-summary {
  color: #18314d;
}

.result-chip,
body.route-variant-b .result-chip {
  background: rgba(108, 147, 199, 0.12);
  border-color: rgba(108, 147, 199, 0.28);
  color: #18314d;
}

.modal-backdrop,
body.route-variant-b .modal-backdrop {
  background: rgba(215, 227, 244, 0.42);
  backdrop-filter: blur(18px);
}

.modal-close,
body.route-variant-b .modal-close {
  background: rgba(255, 255, 255, 0.74);
  color: #18314d;
}

.video-panel-title,
.video-status,
body.route-variant-b .video-panel-title,
body.route-variant-b .video-status {
  color: #18314d;
}

.video-status,
body.route-variant-b .video-status {
  border-color: rgba(171, 190, 224, 0.24);
  background: rgba(244, 249, 254, 0.72);
}

.toast,
body.route-variant-b .toast {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(171, 190, 224, 0.4);
  color: #18314d;
}

body.route-variant-b {
  background:
    radial-gradient(circle at 14% 18%, rgba(108, 147, 199, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(171, 190, 224, 0.18), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(247, 211, 101, 0.08), transparent 36%),
    linear-gradient(180deg, #132540 0%, #0b1830 100%);
  --text: #f7fbff;
  --muted: rgba(171, 190, 224, 0.86);
  --line: rgba(171, 190, 224, 0.18);
  --line-strong: rgba(171, 190, 224, 0.34);
  --accent: var(--hope-blue);
  --accent-2: var(--hope-mist);
  --danger: #ff8a95;
  --shadow: 0 28px 84px rgba(3, 10, 22, 0.44);
}

.ambient-grid,
body.route-variant-b .ambient-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(171, 190, 224, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(171, 190, 224, 0.05) 1px, transparent 1px);
}

.ambient-noise,
body.route-variant-b .ambient-noise {
  opacity: 0.06;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 50%, rgba(171, 190, 224, 0.08), transparent 58%);
}

.scene-transition,
body.route-variant-b .scene-transition {
  background:
    radial-gradient(circle at center, rgba(108, 147, 199, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(8, 15, 29, 0.28), rgba(8, 15, 29, 0.84));
}

.scene-transition-ring,
body.route-variant-b .scene-transition-ring {
  border-color: rgba(108, 147, 199, 0.24);
  box-shadow: 0 0 64px rgba(108, 147, 199, 0.14);
}

.scene-transition-ring-alt,
body.route-variant-b .scene-transition-ring-alt {
  border-color: rgba(247, 211, 101, 0.18);
}

.scene-transition-beam,
body.route-variant-b .scene-transition-beam {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
}

.rail-kicker,
.eyebrow,
.meta-label,
.future-label,
.detail-label,
.result-code,
.field-label,
.form-hint,
#questionMeta,
body.route-variant-b .rail-kicker,
body.route-variant-b .eyebrow,
body.route-variant-b .meta-label,
body.route-variant-b .future-label,
body.route-variant-b .detail-label,
body.route-variant-b .result-code,
body.route-variant-b .field-label,
body.route-variant-b .form-hint,
body.route-variant-b #questionMeta {
  color: rgba(119, 165, 209, 0.95);
}

.rail-ghost,
body.route-variant-b .rail-ghost {
  border-color: rgba(171, 190, 224, 0.18);
  background: rgba(171, 190, 224, 0.08);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.scene-panel,
body.route-variant-b .scene-panel {
  border-color: rgba(171, 190, 224, 0.16);
  background:
    linear-gradient(180deg, rgba(15, 28, 48, 0.96), rgba(11, 21, 39, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(108, 147, 199, 0.18), transparent 42%);
  box-shadow: 0 30px 80px rgba(4, 10, 24, 0.48);
}

.scene-panel::before,
body.route-variant-b .scene-panel::before {
  border-color: rgba(255, 255, 255, 0.08);
}

.scene-panel-hero,
body.route-variant-b .scene-panel-hero {
  background:
    radial-gradient(circle at 50% 18%, rgba(108, 147, 199, 0.24), transparent 30%),
    radial-gradient(circle at 52% 72%, rgba(171, 190, 224, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(12, 23, 41, 0.98), rgba(9, 18, 34, 0.98));
}

.hero-title,
.panel-title,
.section-head h3,
body.route-variant-b .hero-title,
body.route-variant-b .panel-title,
body.route-variant-b .section-head h3 {
  color: #f7fbff;
  text-shadow: 0 12px 28px rgba(9, 16, 30, 0.28);
}

.hero-note,
.hero-lead,
.panel-copy,
body.route-variant-b .hero-note,
body.route-variant-b .hero-lead,
body.route-variant-b .panel-copy {
  color: rgba(225, 235, 248, 0.78);
}

.cta-primary,
body.route-variant-b .cta-primary {
  background: linear-gradient(180deg, var(--hope-gold-soft) 0%, var(--hope-gold) 100%);
  color: #1b2738;
  box-shadow: 0 20px 42px rgba(247, 211, 101, 0.22);
}

.cta-secondary,
.cta-tertiary,
body.route-variant-b .cta-secondary,
body.route-variant-b .cta-tertiary {
  background: rgba(171, 190, 224, 0.08);
  color: var(--text);
  border-color: rgba(171, 190, 224, 0.24);
}

.hero-cta,
body.route-variant-b .hero-cta {
  border-color: rgba(171, 190, 224, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 25, 44, 0.96), rgba(18, 31, 52, 0.92)),
    radial-gradient(circle at top right, rgba(108, 147, 199, 0.12), transparent 40%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 30px rgba(4, 10, 24, 0.26);
}

.hero-cta::before,
body.route-variant-b .hero-cta::before {
  border-color: rgba(255, 255, 255, 0.06);
}

.hero-cta::after,
body.route-variant-b .hero-cta::after {
  background: linear-gradient(90deg, transparent, rgba(171, 190, 224, 0.44), transparent);
}

.hero-cta-label,
body.route-variant-b .hero-cta-label {
  color: rgba(171, 190, 224, 0.82);
}

.hero-cta-title,
body.route-variant-b .hero-cta-title {
  color: #f7fbff;
}

.hero-cta-meta,
body.route-variant-b .hero-cta-meta {
  color: rgba(215, 226, 243, 0.54);
}

.hero-cta-primary,
body.route-variant-b .hero-cta-primary {
  background:
    linear-gradient(180deg, rgba(255, 233, 166, 0.98), rgba(247, 211, 101, 0.94)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.38), transparent 42%);
  border-color: rgba(255, 236, 182, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 20px 38px rgba(247, 211, 101, 0.18);
}

.hero-cta-primary .hero-cta-label,
.hero-cta-primary .hero-cta-meta,
.hero-cta-primary .hero-cta-title,
body.route-variant-b .hero-cta-primary .hero-cta-label,
body.route-variant-b .hero-cta-primary .hero-cta-meta,
body.route-variant-b .hero-cta-primary .hero-cta-title {
  color: #1b2738;
}

.hero-cta-secondary,
body.route-variant-b .hero-cta-secondary {
  background:
    linear-gradient(180deg, rgba(183, 205, 236, 0.96), rgba(148, 172, 209, 0.92)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 40%);
  border-color: rgba(171, 190, 224, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(12, 28, 49, 0.24);
}

.hero-cta-secondary .hero-cta-label,
body.route-variant-b .hero-cta-secondary .hero-cta-label {
  color: rgba(37, 91, 130, 0.84);
}

.hero-cta-secondary .hero-cta-title,
body.route-variant-b .hero-cta-secondary .hero-cta-title {
  color: #18314d;
}

.hero-cta-secondary .hero-cta-meta,
body.route-variant-b .hero-cta-secondary .hero-cta-meta {
  color: rgba(24, 49, 77, 0.68);
}

.hero-meta > div,
body.route-variant-b .hero-meta > div {
  border-color: rgba(171, 190, 224, 0.14);
  background: rgba(13, 24, 42, 0.54);
  backdrop-filter: blur(12px);
}

.coord-ring,
.loading-orbit,
.question-rails,
body.route-variant-b .coord-ring,
body.route-variant-b .loading-orbit,
body.route-variant-b .question-rails {
  border-color: rgba(108, 147, 199, 0.2);
}

.orb-core,
.loading-orb,
.question-orb,
.result-orb-hero,
body.route-variant-b .orb-core,
body.route-variant-b .loading-orb,
body.route-variant-b .question-orb,
body.route-variant-b .result-orb-hero {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.9) 18%, rgba(171, 190, 224, 0.76) 42%, rgba(108, 147, 199, 0.5) 66%, rgba(14, 29, 50, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 52px rgba(171, 190, 224, 0.24),
    0 20px 38px rgba(0, 0, 0, 0.42);
}

.rail-cluster,
body.route-variant-b .rail-cluster {
  border-color: rgba(171, 190, 224, 0.12);
  box-shadow: inset 0 0 0 1px rgba(108, 147, 199, 0.08);
}

.rail-cluster::before,
.rail-cluster::after,
body.route-variant-b .rail-cluster::before,
body.route-variant-b .rail-cluster::after,
.question-rails::before,
.question-rails::after,
body.route-variant-b .question-rails::before,
body.route-variant-b .question-rails::after {
  border-color: rgba(108, 147, 199, 0.18);
}

.hero-scanline,
.loading-flare,
body.route-variant-b .hero-scanline,
body.route-variant-b .loading-flare {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  box-shadow: 0 0 24px rgba(171, 190, 224, 0.18);
}

.oracle-field,
.stepper-value-wrap,
.result-reasons,
.result-deep-dive,
.future-slot,
.archive-preview,
.archive-card,
.loading-step,
.modal-panel,
body.route-variant-b .oracle-field,
body.route-variant-b .stepper-value-wrap,
body.route-variant-b .result-reasons,
body.route-variant-b .result-deep-dive,
body.route-variant-b .future-slot,
body.route-variant-b .archive-preview,
body.route-variant-b .archive-card,
body.route-variant-b .loading-step,
body.route-variant-b .modal-panel {
  border-color: rgba(171, 190, 224, 0.16);
  background:
    linear-gradient(180deg, rgba(18, 33, 56, 0.92), rgba(13, 25, 45, 0.9)),
    radial-gradient(circle at top, rgba(108, 147, 199, 0.08), transparent 42%);
  box-shadow: 0 18px 38px rgba(4, 10, 24, 0.22);
}

.oracle-input-shell,
.blood-button,
.stepper-button,
.name-seal-button,
.video-device,
.video-shell,
body.route-variant-b .oracle-input-shell,
body.route-variant-b .blood-button,
body.route-variant-b .stepper-button,
body.route-variant-b .name-seal-button,
body.route-variant-b .video-device,
body.route-variant-b .video-shell {
  border-color: rgba(171, 190, 224, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 22, 39, 0.98), rgba(17, 29, 49, 0.94)),
    radial-gradient(circle at top, rgba(108, 147, 199, 0.1), transparent 40%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 26px rgba(0, 0, 0, 0.18);
}

.field-meta,
.oracle-input-prefix,
.stepper-unit,
.name-seal-button-kicker,
body.route-variant-b .field-meta,
body.route-variant-b .oracle-input-prefix,
body.route-variant-b .stepper-unit,
body.route-variant-b .name-seal-button-kicker {
  color: rgba(171, 190, 224, 0.78);
}

.stepper-value,
.oracle-input-shell input,
.name-seal-button-label,
body.route-variant-b .stepper-value,
body.route-variant-b .oracle-input-shell input,
body.route-variant-b .name-seal-button-label {
  color: #f7fbff;
}

.oracle-input-shell input::placeholder,
body.route-variant-b .oracle-input-shell input::placeholder {
  color: rgba(217, 228, 243, 0.34);
}

.blood-button:hover,
.blood-button:focus-visible,
.stepper-button:hover,
.stepper-button:focus-visible,
.name-seal-button:hover,
.name-seal-button:focus-visible,
body.route-variant-b .blood-button:hover,
body.route-variant-b .blood-button:focus-visible,
body.route-variant-b .stepper-button:hover,
body.route-variant-b .stepper-button:focus-visible,
body.route-variant-b .name-seal-button:hover,
body.route-variant-b .name-seal-button:focus-visible {
  border-color: rgba(171, 190, 224, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(171, 190, 224, 0.08),
    0 14px 28px rgba(3, 10, 22, 0.24),
    0 0 24px rgba(108, 147, 199, 0.12);
}

.name-seal-button.is-confirmed,
.blood-button.is-selected,
.oracle-field.is-signed,
.oracle-field.is-shifted,
body.route-variant-b .name-seal-button.is-confirmed,
body.route-variant-b .blood-button.is-selected,
body.route-variant-b .oracle-field.is-signed,
body.route-variant-b .oracle-field.is-shifted {
  border-color: rgba(247, 211, 101, 0.48);
  box-shadow:
    0 0 0 1px rgba(247, 211, 101, 0.12),
    0 0 30px rgba(247, 211, 101, 0.08),
    inset 0 0 26px rgba(247, 211, 101, 0.06);
}

.name-seal-button.is-confirmed,
body.route-variant-b .name-seal-button.is-confirmed {
  background:
    linear-gradient(180deg, rgba(63, 53, 27, 0.98), rgba(33, 30, 21, 0.94)),
    radial-gradient(circle at top, rgba(247, 211, 101, 0.16), transparent 46%);
}

.name-seal-button.is-confirmed .name-seal-button-kicker,
body.route-variant-b .name-seal-button.is-confirmed .name-seal-button-kicker {
  color: rgba(255, 232, 166, 0.88);
}

.oracle-field:focus-within,
body.route-variant-b .oracle-field:focus-within {
  border-color: rgba(171, 190, 224, 0.42);
  box-shadow: 0 0 0 1px rgba(171, 190, 224, 0.16), 0 0 32px rgba(108, 147, 199, 0.08);
}

.status-badge,
body.route-variant-b .status-badge {
  background: rgba(108, 147, 199, 0.12);
  border-color: rgba(108, 147, 199, 0.26);
  color: rgba(226, 237, 248, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.progress-shell,
body.route-variant-b .progress-shell {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(171, 190, 224, 0.16);
}

.progress-fill,
body.route-variant-b .progress-fill {
  background: linear-gradient(90deg, #3f6c9e 0%, var(--hope-blue) 52%, var(--hope-mist) 100%);
}

.question-card,
body.route-variant-b .question-card {
  border-color: rgba(171, 190, 224, 0.28);
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.56), transparent 38%),
    linear-gradient(180deg, rgba(182, 202, 233, 0.98), rgba(157, 180, 217, 0.96) 48%, rgba(121, 151, 201, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 24px 54px rgba(0, 0, 0, 0.28);
}

.question-card::before,
body.route-variant-b .question-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 28%);
  pointer-events: none;
}

.question-kicker,
body.route-variant-b .question-kicker {
  color: rgba(36, 91, 130, 0.92);
}

.question-title,
body.route-variant-b .question-title {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(37, 68, 109, 0.28);
}

.question-copy,
body.route-variant-b .question-copy {
  color: rgba(245, 249, 255, 0.92);
}

.question-whisper,
body.route-variant-b .question-whisper {
  color: rgba(36, 91, 130, 0.72);
}

.question-orb,
body.route-variant-b .question-orb {
  filter: saturate(0.82) brightness(1.04);
}

.answer-button,
body.route-variant-b .answer-button {
  background: linear-gradient(180deg, rgba(174, 196, 228, 0.96), rgba(141, 164, 201, 0.94));
  color: #f8fbff;
  border-color: rgba(171, 190, 224, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(6, 14, 29, 0.18);
}

.answer-button::before,
body.route-variant-b .answer-button::before {
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(84, 118, 168, 0.14),
    0 0 0 1px rgba(84, 118, 168, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.answer-button:hover,
.answer-button:focus-visible,
body.route-variant-b .answer-button:hover,
body.route-variant-b .answer-button:focus-visible {
  background: linear-gradient(180deg, rgba(187, 208, 236, 0.98), rgba(155, 179, 213, 0.96));
  color: #ffffff;
  border-color: rgba(214, 228, 248, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 28px rgba(12, 28, 49, 0.22);
}

.answer-button.is-active,
body.route-variant-b .answer-button.is-active {
  background: linear-gradient(180deg, rgba(255, 233, 166, 0.99), rgba(247, 211, 101, 0.95));
  color: #1b2738;
  border-color: rgba(247, 211, 101, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 28px rgba(24, 37, 61, 0.26),
    0 0 28px rgba(247, 211, 101, 0.22);
}

.answer-button.is-active::before,
body.route-variant-b .answer-button.is-active::before {
  border-color: rgba(52, 82, 125, 0.42);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(52, 82, 125, 0.08),
    0 0 0 1px rgba(52, 82, 125, 0.08);
}

.answer-button.is-active::after,
body.route-variant-b .answer-button.is-active::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #4c79a8;
  box-shadow: 0 0 0 4px rgba(108, 147, 199, 0.16);
}

.loading-stage,
body.route-variant-b .loading-stage {
  border-color: rgba(171, 190, 224, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 26, 45, 0.98), rgba(11, 21, 37, 0.98)),
    radial-gradient(circle at center, rgba(108, 147, 199, 0.16), transparent 42%),
    radial-gradient(circle at 50% 30%, rgba(171, 190, 224, 0.08), transparent 28%);
}

.loading-stage::before,
body.route-variant-b .loading-stage::before {
  background:
    radial-gradient(circle at 30% 40%, rgba(108, 147, 199, 0.16), transparent 20%),
    radial-gradient(circle at 72% 52%, rgba(247, 211, 101, 0.12), transparent 16%),
    linear-gradient(180deg, transparent, rgba(171, 190, 224, 0.06), transparent);
}

.loading-step.is-active,
body.route-variant-b .loading-step.is-active {
  color: var(--text);
  border-color: rgba(108, 147, 199, 0.32);
  background: rgba(108, 147, 199, 0.12);
}

.result-card,
body.route-variant-b .result-card {
  border-color: rgba(171, 190, 224, 0.26);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(171, 191, 226, 0.98), rgba(132, 160, 208, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 24px 56px rgba(0, 0, 0, 0.28);
}

.result-card::before,
body.route-variant-b .result-card::before {
  border-color: rgba(255, 255, 255, 0.16);
}

.result-card::after,
body.route-variant-b .result-card::after {
  background: linear-gradient(90deg, transparent, rgba(247, 211, 101, 0.36), transparent);
}

.result-title,
body.route-variant-b .result-title {
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(37, 68, 109, 0.28);
}

.result-type,
body.route-variant-b .result-type {
  color: var(--hope-ink);
  border-color: rgba(37, 91, 130, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.result-job,
.result-summary,
body.route-variant-b .result-job,
body.route-variant-b .result-summary {
  color: rgba(245, 249, 255, 0.92);
}

.result-chip,
body.route-variant-b .result-chip {
  background: rgba(108, 147, 199, 0.14);
  border-color: rgba(108, 147, 199, 0.3);
  color: #eef5ff;
}

.result-chip-risk,
body.route-variant-b .result-chip-risk {
  background: rgba(255, 138, 149, 0.12);
  border-color: rgba(255, 138, 149, 0.26);
  color: #ffd8dd;
}

.reason-list li,
body.route-variant-b .reason-list li,
.archive-card-sub,
body.route-variant-b .archive-card-sub {
  color: rgba(225, 235, 248, 0.84);
}

.reason-list li::before,
body.route-variant-b .reason-list li::before {
  background: linear-gradient(180deg, var(--hope-gold), #fff0b8);
  box-shadow: 0 0 14px rgba(247, 211, 101, 0.24);
}

.modal-backdrop,
body.route-variant-b .modal-backdrop {
  background: rgba(7, 14, 28, 0.72);
  backdrop-filter: blur(20px);
}

.modal-close,
body.route-variant-b .modal-close {
  background: rgba(171, 190, 224, 0.1);
  color: var(--text);
}

.video-panel-title,
.video-status,
body.route-variant-b .video-panel-title,
body.route-variant-b .video-status {
  color: #f7fbff;
}

.video-status,
body.route-variant-b .video-status {
  border-color: rgba(171, 190, 224, 0.18);
  background: rgba(11, 19, 34, 0.58);
}

.toast,
body.route-variant-b .toast {
  background: rgba(10, 19, 34, 0.96);
  border-color: rgba(171, 190, 224, 0.24);
  color: #f7fbff;
}

/* Accessible Hope Refresh */
html,
body,
body.route-variant-a,
body.route-variant-b {
  background:
    radial-gradient(circle at 12% 14%, rgba(247, 211, 101, 0.2), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.36), transparent 18%),
    radial-gradient(circle at 52% 22%, rgba(171, 190, 224, 0.46), transparent 28%),
    linear-gradient(180deg, #dce6f5 0%, #c5d4ea 46%, #abc0df 100%);
}

.scene-panel,
body.route-variant-b .scene-panel {
  border-color: rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(230, 238, 250, 0.96), rgba(211, 224, 243, 0.94)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 48%);
  box-shadow:
    0 24px 64px rgba(77, 108, 150, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.scene-panel::before,
body.route-variant-b .scene-panel::before {
  border-color: rgba(255, 255, 255, 0.66);
}

body.route-variant-a .scene-panel::after,
body.route-variant-b .scene-panel::after {
  opacity: 0.26;
  filter: saturate(0.9) brightness(1.08);
}

.scene-panel-hero,
body.route-variant-b .scene-panel-hero {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.76), transparent 26%),
    linear-gradient(180deg, rgba(230, 238, 250, 0.98), rgba(199, 214, 236, 0.94));
}

.hero-title,
.panel-title,
.result-title,
.section-head h3,
.archive-card-title,
body.route-variant-b .hero-title,
body.route-variant-b .panel-title,
body.route-variant-b .result-title,
body.route-variant-b .section-head h3,
body.route-variant-b .archive-card-title {
  color: #20324a;
  text-shadow: none;
}

.hero-lead,
.hero-note,
.panel-copy,
.result-summary,
.future-slot p,
.detail-block p,
.archive-card-sub,
body.route-variant-b .hero-lead,
body.route-variant-b .hero-note,
body.route-variant-b .panel-copy,
body.route-variant-b .result-summary,
body.route-variant-b .future-slot p,
body.route-variant-b .detail-block p,
body.route-variant-b .archive-card-sub {
  color: rgba(46, 70, 98, 0.82);
}

.rail-kicker,
.eyebrow,
.meta-label,
.field-label,
.form-hint,
body.route-variant-b .rail-kicker,
body.route-variant-b .eyebrow,
body.route-variant-b .meta-label,
body.route-variant-b .field-label,
body.route-variant-b .form-hint {
  color: #5e779b;
}

.hero-cta,
.hero-meta > div,
.oracle-field,
.oracle-input-shell,
.blood-button,
.stepper-button,
.stepper-value-wrap,
.result-reasons,
.result-deep-dive,
.future-slot,
.archive-preview,
.archive-card,
.loading-step,
.loading-stage,
.modal-panel,
.video-device,
.video-shell,
body.route-variant-b .hero-cta,
body.route-variant-b .hero-meta > div,
body.route-variant-b .oracle-field,
body.route-variant-b .oracle-input-shell,
body.route-variant-b .blood-button,
body.route-variant-b .stepper-button,
body.route-variant-b .stepper-value-wrap,
body.route-variant-b .result-reasons,
body.route-variant-b .result-deep-dive,
body.route-variant-b .future-slot,
body.route-variant-b .archive-preview,
body.route-variant-b .archive-card,
body.route-variant-b .loading-step,
body.route-variant-b .loading-stage,
body.route-variant-b .modal-panel,
body.route-variant-b .video-device,
body.route-variant-b .video-shell {
  border-color: rgba(160, 181, 214, 0.42);
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(220, 231, 246, 0.94)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.78), transparent 44%);
  color: #20324a;
  box-shadow:
    0 18px 38px rgba(85, 115, 155, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-cta-label,
.hero-cta-meta,
.oracle-input-prefix,
.stepper-unit,
.name-seal-button-kicker,
.field-meta,
body.route-variant-b .hero-cta-label,
body.route-variant-b .hero-cta-meta,
body.route-variant-b .oracle-input-prefix,
body.route-variant-b .stepper-unit,
body.route-variant-b .name-seal-button-kicker,
body.route-variant-b .field-meta {
  color: #6d86aa;
}

.hero-cta-title,
.oracle-input-shell input,
.stepper-value,
.name-seal-button-label,
body.route-variant-b .hero-cta-title,
body.route-variant-b .oracle-input-shell input,
body.route-variant-b .stepper-value,
body.route-variant-b .name-seal-button-label {
  color: #20324a;
}

.hero-cta-primary,
.cta-primary,
body.route-variant-b .hero-cta-primary,
body.route-variant-b .cta-primary {
  background:
    linear-gradient(180deg, #ffe8ac 0%, #f7d365 100%);
  border-color: rgba(246, 204, 85, 0.84);
  color: #33280f;
  box-shadow:
    0 16px 34px rgba(247, 211, 101, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.hero-cta-primary .hero-cta-label,
.hero-cta-primary .hero-cta-meta,
.hero-cta-primary .hero-cta-title,
body.route-variant-b .hero-cta-primary .hero-cta-label,
body.route-variant-b .hero-cta-primary .hero-cta-meta,
body.route-variant-b .hero-cta-primary .hero-cta-title {
  color: #33280f;
}

.hero-cta-secondary,
body.route-variant-b .hero-cta-secondary {
  background:
    linear-gradient(180deg, rgba(223, 234, 250, 0.98), rgba(191, 208, 234, 0.95));
  border-color: rgba(160, 181, 214, 0.62);
  color: #20324a;
}

.app-frame {
  padding: 18px 14px 24px;
}

.top-rail,
body.route-variant-b .top-rail {
  margin-bottom: 16px;
  padding: 11px 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: linear-gradient(90deg, rgba(239, 245, 252, 0.94), rgba(214, 226, 244, 0.88));
  box-shadow: 0 14px 30px rgba(85, 115, 155, 0.14);
}

.rail-kicker,
body.route-variant-b .rail-kicker {
  color: #5f4c1b;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.rail-ghost,
body.route-variant-b .rail-ghost {
  border-color: rgba(160, 181, 214, 0.54);
  background: rgba(255, 255, 255, 0.76);
  color: #20324a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.scene-panel-question,
body.route-variant-b .scene-panel-question {
  gap: 16px;
  overflow: auto;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.84), transparent 24%),
    linear-gradient(180deg, #e8eff9 0%, #d4e1f1 16%, #b7cae4 46%, #a3bbdd 100%);
  border-color: rgba(255, 255, 255, 0.64);
  box-shadow:
    0 24px 54px rgba(85, 115, 155, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.scene-panel-question::after,
body.route-variant-b .scene-panel-question::after {
  opacity: 0;
  background-image: none;
}

.progress-head {
  gap: 12px;
  padding: 2px 4px 0;
}

.ai-status {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.status-badge,
body.route-variant-b .status-badge {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  color: #6b4f14;
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

#questionMeta,
body.route-variant-b #questionMeta {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(141, 167, 207, 0.44);
  background: rgba(245, 249, 255, 0.68);
  color: #4f6f9e;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.progress-shell,
body.route-variant-b .progress-shell {
  height: 14px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(226, 236, 248, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 4px 10px rgba(85, 118, 163, 0.12),
    0 8px 16px rgba(93, 123, 170, 0.08);
}

.progress-fill,
body.route-variant-b .progress-fill {
  position: relative;
  background: linear-gradient(90deg, #4778ea 0%, #6c93c7 64%, #aabfe2 100%);
  box-shadow: 0 0 18px rgba(71, 120, 234, 0.22);
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #396ae0;
  border: 2px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 5px rgba(57, 106, 224, 0.12);
}

.question-card,
body.route-variant-b .question-card {
  min-height: 520px;
  padding: 26px 20px 190px;
  border-radius: 34px;
  border-color: rgba(220, 233, 252, 0.42);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(122, 154, 201, 0.98), rgba(102, 136, 187, 0.97) 52%, rgba(86, 121, 171, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 26px 50px rgba(69, 96, 137, 0.22);
}

.question-card::before,
body.route-variant-b .question-card::before {
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%);
}

.question-card::after,
body.route-variant-b .question-card::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 22px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M18 14c18 0 10 36 28 36' fill='none' stroke='%23ff7043' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M46 14c-18 0-10 36-28 36' fill='none' stroke='%2346d36b' stroke-width='6' stroke-linecap='round'/%3E%3Cg stroke='%23ffd45c' stroke-width='4'%3E%3Cpath d='M24 20l16 8'/%3E%3Cpath d='M22 30l20 4'/%3E%3Cpath d='M20 40l18-2'/%3E%3Cpath d='M18 50l16-8'/%3E%3C/g%3E%3C/svg%3E") center / 60px 60px no-repeat,
    radial-gradient(circle at 30% 30%, #4d82ff, #2d5fd7 74%);
  box-shadow:
    0 16px 26px rgba(31, 66, 128, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.question-kicker,
body.route-variant-b .question-kicker {
  color: #f7d365;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.question-title,
body.route-variant-b .question-title {
  max-width: 9.2ch;
  font-size: clamp(1.56rem, 6vw, 2.44rem);
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 10px 26px rgba(33, 57, 92, 0.18);
}

.question-copy,
body.route-variant-b .question-copy {
  max-width: 24ch;
  font-size: 1.04rem;
  line-height: 1.58;
  color: rgba(244, 248, 255, 0.94);
}

.question-whisper,
body.route-variant-b .question-whisper {
  position: absolute;
  left: 20px;
  bottom: 152px;
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  color: rgba(229, 238, 251, 0.58);
}

.question-visual {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 180px;
}

.question-visual::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -82px;
  width: 212px;
  height: 212px;
  border-radius: 50%;
  border: 2px solid rgba(227, 239, 255, 0.44);
  box-shadow:
    0 0 0 20px rgba(227, 239, 255, 0.22),
    0 0 0 40px rgba(227, 239, 255, 0.14),
    0 0 0 60px rgba(227, 239, 255, 0.08),
    0 0 0 80px rgba(247, 211, 101, 0.1);
}

.question-orb,
body.route-variant-b .question-orb {
  width: 114px;
  height: 114px;
  right: 22px !important;
  bottom: 18px !important;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.96), rgba(236, 244, 255, 0.88) 22%, rgba(184, 204, 232, 0.56) 48%, rgba(109, 147, 199, 0.38) 70%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 34px rgba(40, 67, 105, 0.28);
  filter: saturate(0.88) brightness(1.02);
}

.question-rails,
body.route-variant-b .question-rails {
  width: 174px;
  height: 48px;
  right: 8px !important;
  bottom: 60px !important;
  border-color: rgba(191, 204, 112, 0.28);
}

.question-rails::before,
.question-rails::after,
body.route-variant-b .question-rails::before,
body.route-variant-b .question-rails::after {
  border-color: rgba(191, 204, 112, 0.28);
}

.answer-stack {
  gap: 16px;
  padding-bottom: 6px;
}

.answer-button,
body.route-variant-b .answer-button {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(223, 233, 247, 0.95));
  color: #172535;
  border-color: rgba(183, 199, 224, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 26px rgba(82, 110, 146, 0.16);
  text-align: left;
}

.answer-button::before,
.answer-button::after,
body.route-variant-b .answer-button::before,
body.route-variant-b .answer-button::after {
  content: none;
}

.answer-button-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid #6f8db7;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 0 0 1px rgba(111, 141, 183, 0.12);
}

.answer-button-text {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.answer-button:hover,
.answer-button:focus-visible,
body.route-variant-b .answer-button:hover,
body.route-variant-b .answer-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(124, 150, 194, 0.92);
  background: linear-gradient(180deg, rgba(252, 254, 255, 1), rgba(231, 239, 250, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 30px rgba(82, 110, 146, 0.18);
}

.answer-button.is-active,
body.route-variant-b .answer-button.is-active {
  background: linear-gradient(180deg, rgba(255, 236, 182, 0.98), rgba(247, 211, 101, 0.96));
  color: #1d2736;
  border-color: rgba(239, 190, 64, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 18px 32px rgba(174, 140, 40, 0.2);
}

.answer-button.is-active .answer-button-mark,
body.route-variant-b .answer-button.is-active .answer-button-mark {
  border-color: #6d5920;
  background: rgba(255, 248, 218, 0.9);
}

.answer-button.is-active .answer-button-mark::after,
body.route-variant-b .answer-button.is-active .answer-button-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #5c86c1;
}

.result-card,
body.route-variant-b .result-card {
  background:
    linear-gradient(180deg, rgba(240, 246, 255, 0.98), rgba(214, 227, 246, 0.94)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.78), transparent 42%);
  border-color: rgba(183, 199, 224, 0.72);
}

.result-title,
.result-job,
.result-summary,
.result-type,
.reason-list li,
body.route-variant-b .result-title,
body.route-variant-b .result-job,
body.route-variant-b .result-summary,
body.route-variant-b .result-type,
body.route-variant-b .reason-list li {
  color: #20324a;
}

.modal-panel,
body.route-variant-b .modal-panel {
  background:
    linear-gradient(180deg, rgba(240, 246, 255, 0.98), rgba(214, 227, 246, 0.95));
  color: #20324a;
}

.modal-close,
body.route-variant-b .modal-close {
  background: rgba(108, 147, 199, 0.12);
  color: #20324a;
}

body.route-variant-b .goodbrother-voice,
body.route-variant-b #introTitle.goodbrother-voice,
body.route-variant-b #introLead.goodbrother-voice,
body.route-variant-b #questionKicker.goodbrother-voice,
body.route-variant-b #questionTitle.goodbrother-voice,
body.route-variant-b #questionCopy.goodbrother-voice,
body.route-variant-b #videoPanelTitle.goodbrother-voice,
body.route-variant-b #videoCloseButton.goodbrother-voice {
  color: inherit;
}

/* Flat Palette Lock */
html,
body,
body.route-variant-a,
body.route-variant-b {
  background: linear-gradient(180deg, #abbee0 0%, #6c93c7 100%);
}

body::before,
body::after {
  content: none;
}

.ambient-grid,
body.route-variant-b .ambient-grid {
  background-image:
    linear-gradient(rgba(45, 99, 251, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 99, 251, 0.08) 1px, transparent 1px);
  opacity: 0.42;
  mask-image: none;
}

.ambient-noise,
body.route-variant-b .ambient-noise {
  opacity: 0;
}

.scene-transition,
body.route-variant-b .scene-transition {
  background: rgba(171, 190, 224, 0.72);
  backdrop-filter: none;
}

.scene-transition-ring,
.scene-transition-ring-alt,
body.route-variant-b .scene-transition-ring,
body.route-variant-b .scene-transition-ring-alt {
  border-color: #2d63fb;
  box-shadow: none;
}

.scene-transition-beam,
body.route-variant-b .scene-transition-beam {
  background: linear-gradient(90deg, transparent, #f3f3f3, transparent);
}

.scene-panel,
.scene-panel-hero,
.scene-panel-form,
.scene-panel-loading,
.scene-panel-result,
.modal-panel,
.video-device,
.video-shell,
body.route-variant-b .scene-panel,
body.route-variant-b .scene-panel-hero,
body.route-variant-b .scene-panel-form,
body.route-variant-b .scene-panel-loading,
body.route-variant-b .scene-panel-result,
body.route-variant-b .modal-panel,
body.route-variant-b .video-device,
body.route-variant-b .video-shell {
  background: #abbee0;
  border: 2px solid #f3f3f3;
  box-shadow: none;
}

.scene-panel::before,
body.route-variant-b .scene-panel::before {
  border: 0;
  background: none;
}

body.route-variant-a .scene-panel::after,
body.route-variant-b .scene-panel::after {
  opacity: 0;
  background-image: none;
}

.hero-title,
.panel-title,
.result-title,
.hero-lead,
.hero-note,
.panel-copy,
.result-summary,
.result-job,
.future-slot p,
.detail-block p,
.result-chip,
.video-panel-title,
.video-status,
.toast,
body.route-variant-b .hero-title,
body.route-variant-b .panel-title,
body.route-variant-b .result-title,
body.route-variant-b .hero-lead,
body.route-variant-b .hero-note,
body.route-variant-b .panel-copy,
body.route-variant-b .result-summary,
body.route-variant-b .result-job,
body.route-variant-b .future-slot p,
body.route-variant-b .detail-block p,
body.route-variant-b .result-chip,
body.route-variant-b .video-panel-title,
body.route-variant-b .video-status,
body.route-variant-b .toast {
  color: #000000;
  text-shadow: none;
}

.rail-kicker,
.eyebrow,
.meta-label,
.field-label,
.form-hint,
.status-badge,
body.route-variant-b .rail-kicker,
body.route-variant-b .eyebrow,
body.route-variant-b .meta-label,
body.route-variant-b .field-label,
body.route-variant-b .form-hint,
body.route-variant-b .status-badge {
  color: #000000;
}

.top-rail,
body.route-variant-b .top-rail {
  background: #f3f3f3;
  border: 2px solid #6c93c7;
  box-shadow: none;
}

.rail-ghost,
body.route-variant-b .rail-ghost {
  background: #abbee0;
  border: 2px solid #2d63fb;
  color: #000000;
  box-shadow: none;
}

.hero-cta,
.hero-meta > div,
.oracle-field,
.oracle-input-shell,
.blood-button,
.stepper-button,
.stepper-value-wrap,
.result-reasons,
.result-deep-dive,
.future-slot,
.archive-preview,
.archive-card,
.loading-step,
.loading-stage,
.modal-panel,
.video-device,
.video-shell,
.result-card,
body.route-variant-b .hero-cta,
body.route-variant-b .hero-meta > div,
body.route-variant-b .oracle-field,
body.route-variant-b .oracle-input-shell,
body.route-variant-b .blood-button,
body.route-variant-b .stepper-button,
body.route-variant-b .stepper-value-wrap,
body.route-variant-b .result-reasons,
body.route-variant-b .result-deep-dive,
body.route-variant-b .future-slot,
body.route-variant-b .archive-preview,
body.route-variant-b .archive-card,
body.route-variant-b .loading-step,
body.route-variant-b .loading-stage,
body.route-variant-b .modal-panel,
body.route-variant-b .video-device,
body.route-variant-b .video-shell,
body.route-variant-b .result-card {
  background: #f3f3f3;
  border: 2px solid #6c93c7;
  color: #000000;
  box-shadow: none;
}

.hero-cta-primary,
.cta-primary,
body.route-variant-b .hero-cta-primary,
body.route-variant-b .cta-primary {
  background: #f7d365;
  border: 2px solid #000000;
  color: #000000;
  box-shadow: none;
}

.hero-cta-secondary,
.cta-secondary,
body.route-variant-b .hero-cta-secondary,
body.route-variant-b .cta-secondary {
  background: #abbee0;
  border: 2px solid #2d63fb;
  color: #000000;
  box-shadow: none;
}

.hero-visual {
  opacity: 1;
}

.coord-ring,
body.route-variant-b .coord-ring {
  border: 2px solid rgba(108, 147, 199, 0.18);
  box-shadow: none;
  animation: none;
}

.orb-core,
body.route-variant-b .orb-core {
  background:
    linear-gradient(135deg, #2d63fb 0 34%, #6c93c7 34% 68%, #abbee0 68% 100%);
  border: 2px solid #000000;
  box-shadow: none;
  animation: none;
}

.orb-glow,
body.route-variant-b .orb-glow {
  display: none;
}

.orb-shell,
body.route-variant-b .orb-shell {
  border: 0;
}

.orb-inscription,
body.route-variant-b .orb-inscription {
  color: #f3f3f3;
}

.rail-cluster,
.rail-cluster::before,
.rail-cluster::after,
body.route-variant-b .rail-cluster,
body.route-variant-b .rail-cluster::before,
body.route-variant-b .rail-cluster::after {
  border-color: #94a465;
  box-shadow: none;
}

.hero-scanline,
body.route-variant-b .hero-scanline {
  background: linear-gradient(90deg, transparent, rgba(184, 65, 241, 0.72), transparent);
  filter: none;
}

.scene-panel-question,
body.route-variant-b .scene-panel-question {
  background:
    radial-gradient(circle at 12% 14%, #f7d365 0 26px, transparent 27px),
    radial-gradient(circle at 86% 16%, #b841f1 0 18px, transparent 19px),
    radial-gradient(circle at 14% 86%, #94a465 0 24px, transparent 25px),
    linear-gradient(135deg, transparent 0 72%, rgba(45, 99, 251, 0.18) 72% 76%, transparent 76%),
    #abbee0;
  border: 2px solid #f3f3f3;
  box-shadow: none;
}

.progress-shell,
body.route-variant-b .progress-shell {
  background: #f3f3f3;
  border: 2px solid #6c93c7;
  box-shadow: none;
}

.progress-fill,
body.route-variant-b .progress-fill {
  background: #2d63fb;
  box-shadow: none;
}

.progress-fill::after {
  background: #2d63fb;
  border: 2px solid #000000;
  box-shadow: none;
}

#questionMeta,
body.route-variant-b #questionMeta {
  background: #f3f3f3;
  border: 2px solid #6c93c7;
  color: #000000;
  box-shadow: none;
}

.question-card,
body.route-variant-b .question-card {
  isolation: isolate;
  background: #6c93c7;
  border: 2px solid #f3f3f3;
  box-shadow: none;
}

.question-card::before,
body.route-variant-b .question-card::before {
  background: none;
  border: 0;
}

.question-card::after,
body.route-variant-b .question-card::after {
  content: none;
}

.question-kicker,
body.route-variant-b .question-kicker {
  position: relative;
  z-index: 3;
  color: #f7d365;
}

.question-title,
body.route-variant-b .question-title {
  position: relative;
  z-index: 3;
  color: #f3f3f3;
  text-shadow: none;
}

.question-copy,
body.route-variant-b .question-copy {
  position: relative;
  z-index: 3;
  color: #000000;
}

.question-whisper,
body.route-variant-b .question-whisper {
  z-index: 3;
  color: rgba(243, 243, 243, 0.88);
}

.question-visual {
  z-index: 1;
}

.question-visual::before {
  right: -18px;
  bottom: -74px;
  width: 232px;
  height: 232px;
  border: 3px solid rgba(243, 243, 243, 0.62);
  box-shadow:
    0 0 0 22px rgba(243, 243, 243, 0.3),
    0 0 0 44px rgba(243, 243, 243, 0.18),
    0 0 0 66px rgba(243, 243, 243, 0.12),
    0 0 0 88px rgba(148, 164, 101, 0.24),
    0 0 0 110px rgba(148, 164, 101, 0.12);
}

.question-visual::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 28px;
  width: 198px;
  height: 62px;
  border-radius: 999px;
  background:
    linear-gradient(160deg, transparent 0 34%, rgba(243, 243, 243, 0.22) 34% 38%, transparent 38% 62%, rgba(243, 243, 243, 0.16) 62% 66%, transparent 66%),
    rgba(108, 147, 199, 0.08);
  transform: rotate(-17deg);
  pointer-events: none;
}

.question-orb,
body.route-variant-b .question-orb {
  width: 126px;
  height: 126px;
  right: 18px !important;
  bottom: 12px !important;
  background:
    radial-gradient(circle at 32% 28%, rgba(243, 243, 243, 0.94) 0 12%, rgba(243, 243, 243, 0.36) 12% 28%, transparent 28%),
    radial-gradient(circle at 70% 24%, rgba(243, 243, 243, 0.32) 0 10%, transparent 10%),
    linear-gradient(160deg, transparent 0 38%, rgba(243, 243, 243, 0.58) 38% 45%, transparent 45% 100%),
    radial-gradient(circle at 52% 54%, #f3f3f3 0 20%, #dce5f1 20% 42%, #abbee0 42% 72%, #7f9fcd 72% 100%);
  border: 2px solid rgba(243, 243, 243, 0.72);
  box-shadow: none;
  filter: none;
}

.question-orb::before,
.question-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.question-orb::before {
  top: 18px;
  left: 22px;
  width: 38px;
  height: 38px;
  background: rgba(243, 243, 243, 0.18);
}

.question-orb::after {
  top: 20px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: rgba(243, 243, 243, 0.2);
}

.question-rails,
.question-rails::before,
.question-rails::after,
body.route-variant-b .question-rails,
body.route-variant-b .question-rails::before,
body.route-variant-b .question-rails::after {
  border-color: #94a465;
}

.question-rails,
body.route-variant-b .question-rails {
  width: 206px;
  height: 64px;
  right: -4px !important;
  bottom: 58px !important;
  border-width: 3px;
  border-radius: 999px;
  transform: rotate(-17deg);
  background: none;
}

.question-rails::before,
body.route-variant-b .question-rails::before {
  inset: 12px;
  border-width: 3px;
}

.question-rails::after,
body.route-variant-b .question-rails::after {
  inset: 24px;
  border-width: 3px;
}

.answer-button,
body.route-variant-b .answer-button {
  background: #f3f3f3;
  color: #000000;
  border: 2px solid #6c93c7;
  box-shadow: none;
}

.answer-button:hover,
.answer-button:focus-visible,
body.route-variant-b .answer-button:hover,
body.route-variant-b .answer-button:focus-visible {
  background: #abbee0;
  border-color: #2d63fb;
  box-shadow: none;
  transform: none;
}

.answer-button-mark {
  border-color: #2d63fb;
  background: transparent;
  box-shadow: none;
}

.answer-button.is-active,
body.route-variant-b .answer-button.is-active {
  background: #f7d365;
  color: #000000;
  border-color: #000000;
  box-shadow: none;
}

.answer-button.is-active .answer-button-mark,
body.route-variant-b .answer-button.is-active .answer-button-mark {
  border-color: #000000;
  background: #f3f3f3;
}

.answer-button.is-active .answer-button-mark::after,
body.route-variant-b .answer-button.is-active .answer-button-mark::after {
  background: #2d63fb;
}

.result-card,
body.route-variant-b .result-card {
  background:
    linear-gradient(135deg, transparent 0 80%, rgba(184, 65, 241, 0.18) 80% 86%, transparent 86%),
    #abbee0;
}

.result-type,
.result-chip,
.result-chip-risk,
.video-status,
.toast,
body.route-variant-b .result-type,
body.route-variant-b .result-chip,
body.route-variant-b .result-chip-risk,
body.route-variant-b .video-status,
body.route-variant-b .toast {
  background: #f3f3f3;
  border: 2px solid #6c93c7;
  color: #000000;
  box-shadow: none;
}

.modal-backdrop,
body.route-variant-b .modal-backdrop {
  background: rgba(108, 147, 199, 0.32);
  backdrop-filter: none;
}

.modal-close,
body.route-variant-b .modal-close {
  background: #f3f3f3;
  border: 2px solid #000000;
  box-shadow: none;
}

@keyframes sceneFade {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    filter: blur(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scanDown {
  from {
    transform: translateY(-180px);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  to {
    transform: translateY(520px);
    opacity: 0;
  }
}

@keyframes blinkCursor {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes veilPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.22;
  }
  50% {
    transform: scale(1);
    opacity: 0.56;
  }
}

@keyframes veilScan {
  from {
    transform: translateY(-120px);
    opacity: 0;
  }
  25%,
  75% {
    opacity: 1;
  }
  to {
    transform: translateY(120px);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .app-frame {
    padding: 24px 14px 32px;
  }

  body.route-variant-a,
  body.route-variant-b {
    --route-panel-fit-width: calc(var(--shell-width) - 28px);
  }

  .scene-panel-hero {
    min-height: calc(100svh - 132px);
  }

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

  .result-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  body::before,
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  body::before {
    opacity: 0.88;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1200' fill='none'%3E%3Cpath d='M-80 160C110 40 120 280 290 160S520 80 560 260' stroke='%2394a465' stroke-width='28' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='150 230 280 110 430 255 575 128 735 278' stroke='%23b841f1' stroke-width='24' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1080 -20C980 120 1120 250 1300 190S1540 140 1660 280' stroke='%23abbee0' stroke-width='34' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1220 -80L1710 410' stroke='%232d63fb' stroke-width='36' stroke-linecap='round'/%3E%3Cpath d='M-40 980C140 860 310 1120 520 1010S780 910 940 1040' stroke='%2394a465' stroke-width='30' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1020 900C1160 820 1310 980 1520 900' stroke='%236c93c7' stroke-width='28' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  body::after {
    opacity: 0.72;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1200' fill='none'%3E%3Cpath d='M40 610C210 520 300 720 480 620' stroke='%23f3f3f3' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M920 120C1040 20 1200 20 1320 140' stroke='%23f3f3f3' stroke-width='18' stroke-linecap='round'/%3E%3Cpolyline points='1180 720 1280 650 1380 750 1490 690 1600 790' stroke='%23b841f1' stroke-width='18' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M140 60C220 20 330 40 430 110' stroke='%23f7d365' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M1180 1110C1300 1040 1440 1080 1570 1010' stroke='%2394a465' stroke-width='18' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  html,
  body,
  body.route-variant-a,
  body.route-variant-b {
    background:
      linear-gradient(135deg, rgba(243, 243, 243, 0.14) 0 34%, transparent 34% 66%, rgba(45, 99, 251, 0.08) 66% 100%),
      var(--desktop-bezel-bg) center center / cover no-repeat fixed,
      linear-gradient(180deg, #abbee0 0%, #6c93c7 100%);
  }

  .ambient-grid,
  body.route-variant-b .ambient-grid {
    opacity: 0.18;
  }
}

@media (max-width: 430px) {
  .scene-panel {
    padding: 10px 10px;
  }

  .scene-panel-hero {
    align-content: end;
    gap: 16px;
  }

  .hero-title {
    font-size: 2.24rem;
  }

  .hero-copy {
    width: min(100%, 300px);
  }

  .hero-note {
    font-size: 0.7rem;
    line-height: 1.42;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 16px;
  }

  .top-rail {
    margin-bottom: 10px;
  }

  .panel-title {
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
  }

  .scene-panel-form {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 18px;
  }

  .scene-panel-form .eyebrow {
    display: none;
  }

  .scene-panel-form .panel-head {
    margin-bottom: 2px;
  }

  .scene-panel-form .panel-title {
    max-width: none;
    font-size: clamp(1.28rem, 5vw, 1.66rem);
    line-height: 0.98;
  }

  .hero-lead,
  .panel-copy {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .cta {
    padding: 11px 10px;
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .form-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .issuance-form {
    justify-content: space-evenly;
    gap: 6px;
  }

  .oracle-field {
    padding: 7px;
    gap: 3px;
    border-radius: 18px;
  }

  .oracle-input-shell {
    gap: 7px;
    min-height: 40px;
    padding: 7px 9px;
    border-radius: 14px;
  }

  .oracle-input-prefix {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .oracle-input-shell input {
    font-size: 0.88rem;
  }

  .name-seal-button {
    min-width: 68px;
    padding: 7px 8px 6px;
    border-radius: 12px;
  }

  .name-seal-button-kicker {
    font-size: 0.48rem;
  }

  .name-seal-button-label {
    font-size: 0.74rem;
  }

  .blood-matrix {
    gap: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blood-button {
    min-height: 30px;
    border-radius: 12px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .stepper-shell {
    grid-template-columns: 34px 1fr 34px;
    gap: 5px;
  }

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

  .stepper-button,
  .stepper-value-wrap {
    min-height: 36px;
    border-radius: 12px;
  }

  .stepper-button {
    font-size: 0.96rem;
  }

  .field-label,
  .form-hint {
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .field-meta,
  .stepper-unit {
    font-size: 0.54rem;
  }

  .stepper-value {
    font-size: 0.84rem;
  }

  .stepper-unit {
    margin-top: 2px;
  }

  .panel-head {
    margin-bottom: 6px;
  }

  .form-hint {
    display: none;
  }

  .scene-panel-form .field-meta {
    display: none;
  }

  .form-footer {
    gap: 6px;
    padding-top: 2px;
  }

  .form-error {
    font-size: 0.66rem;
    line-height: 1.28;
  }

  .result-title {
    font-size: 2rem;
  }

  .result-card {
    padding-bottom: 188px;
  }

  .result-orb-hero {
    width: 168px;
    height: 168px;
  }

  .question-title {
    font-size: 1.32rem;
    line-height: 1.08;
  }

  .question-card {
    min-height: 454px;
    height: auto;
    padding-bottom: 150px;
  }

  .question-copy {
    min-height: 3.35em;
    font-size: 0.92rem;
  }

  .question-visual {
    height: 142px;
  }

  .question-orb {
    width: 108px;
    height: 108px;
    right: 12px;
    bottom: 10px;
  }

  .question-rails {
    width: 188px;
    height: 56px;
    right: -2px;
    bottom: 46px;
  }

  .question-whisper {
    bottom: 122px;
  }

  .answer-button {
    padding: 11px 13px 11px 40px;
    font-size: 0.86rem;
  }

  .answer-button::before {
    left: 13px;
    width: 16px;
    height: 16px;
  }

  .loading-stage {
    height: 214px;
  }

  .hero-cta {
    padding: 14px 16px 15px;
  }

  .hero-cta-title {
    font-size: 1rem;
  }

  .hero-meta > div {
    padding: 9px 11px;
  }

  .coord-ring-1 {
    width: 360px;
    height: 360px;
    right: 8px;
    top: 108px;
  }

  .coord-ring-2 {
    width: 224px;
    height: 224px;
    right: 56px;
    top: 186px;
  }

  .coord-ring-3 {
    width: 430px;
    height: 430px;
    right: -14px;
    top: 40px;
  }

  .orb-core {
    width: 178px;
    height: 178px;
    top: 246px;
    right: 64px;
  }

  .rail-cluster {
    width: 284px;
    height: 104px;
  }

  .rail-cluster-top {
    top: 170px;
  }

  .rail-cluster-bottom {
    top: 458px;
    right: 54px;
  }
}

@media (max-height: 860px) {
  .scene-panel-form .eyebrow {
    display: none;
  }

  .scene-panel {
    padding: 8px;
  }

  .scene-panel-form .panel-head {
    margin-bottom: 3px;
  }

  .scene-panel-form .panel-title {
    font-size: clamp(1.12rem, 4.2vw, 1.38rem);
    line-height: 0.98;
  }

  .scene-panel-form .panel-copy {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .scene-panel-form .issuance-form {
    gap: 8px;
  }

  .scene-panel-form .oracle-field {
    padding: 6px;
    gap: 2px;
    border-radius: 16px;
  }

  .scene-panel-form .oracle-input-shell {
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 12px;
  }

  .scene-panel-form .oracle-input-prefix {
    font-size: 0.6rem;
  }

  .scene-panel-form .oracle-input-shell input {
    font-size: 0.82rem;
  }

  .scene-panel-form .name-seal-button {
    min-width: 62px;
    padding: 6px 7px 5px;
  }

  .scene-panel-form .name-seal-button-kicker {
    font-size: 0.42rem;
  }

  .scene-panel-form .name-seal-button-label {
    font-size: 0.68rem;
  }

  .scene-panel-form .blood-matrix {
    gap: 5px;
  }

  .scene-panel-form .blood-button {
    min-height: 27px;
    font-size: 0.76rem;
  }

  .scene-panel-form .chrono-grid {
    gap: 5px;
  }

  .scene-panel-form .stepper-shell {
    grid-template-columns: 30px 1fr 30px;
    gap: 4px;
  }

  .scene-panel-form .stepper-button,
  .scene-panel-form .stepper-value-wrap {
    min-height: 32px;
    border-radius: 10px;
  }

  .scene-panel-form .stepper-button {
    font-size: 0.88rem;
  }

  .scene-panel-form .stepper-value {
    font-size: 0.78rem;
  }

  .scene-panel-form .stepper-unit {
    font-size: 0.5rem;
  }

  .scene-panel-form .field-label {
    font-size: 0.58rem;
  }

  .scene-panel-form .form-actions {
    gap: 6px;
  }

  .scene-panel-form .cta {
    padding: 9px 8px;
    font-size: 0.76rem;
  }

  .scene-panel-form .form-footer {
    padding-top: 0;
    gap: 5px;
  }

  .scene-panel-form .form-error {
    font-size: 0.62rem;
  }
}

@keyframes fieldScan {
  0% {
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(360%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes loadingNebula {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08) translate3d(8px, -6px, 0);
    opacity: 1;
  }
}

@keyframes loadingSweep {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

@keyframes nodeLift {
  0% {
    transform: translateY(10px) scale(0.985);
    filter: blur(8px);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes nodeSeal {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(212, 255, 117, 0);
  }
  50% {
    transform: scale(1.01);
    box-shadow: 0 0 24px rgba(212, 255, 117, 0.1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(212, 255, 117, 0);
  }
}

@keyframes modalBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalPanelIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    filter: blur(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes videoScan {
  from {
    transform: translateY(-120%);
    opacity: 0;
  }
  15%,
  85% {
    opacity: 1;
  }
  to {
    transform: translateY(340%);
    opacity: 0;
  }
}

@keyframes videoPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

@keyframes heroCtaWake {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    filter: blur(10px) saturate(0.5);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.02),
      0 0 0 rgba(126, 215, 255, 0);
  }
  42% {
    opacity: 1;
    transform: translateY(-3px) scale(1.015);
    filter: blur(0) saturate(1.05);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.06),
      0 0 30px rgba(126, 215, 255, 0.14);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes heroMetaWake {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    filter: blur(8px) saturate(0.55);
  }
  45% {
    opacity: 1;
    transform: translateY(-2px) scale(1.01);
    filter: blur(0) saturate(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes introEyebrowShatter {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    letter-spacing: 0.08em;
    text-shadow:
      0 0 10px rgba(126, 215, 255, 0.08),
      0 0 18px rgba(126, 215, 255, 0.04);
  }
  22% {
    opacity: 0.88;
    transform: translateY(-1px) scale(1.01);
    filter: blur(0.4px);
  }
  55% {
    opacity: 0.42;
    transform: translateY(-4px) scale(1.02);
    filter: blur(3px);
    letter-spacing: 0.22em;
    text-shadow:
      0 0 18px rgba(126, 215, 255, 0.16),
      0 0 28px rgba(212, 255, 117, 0.08);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    filter: blur(12px);
    letter-spacing: 0.34em;
    text-shadow:
      0 0 28px rgba(126, 215, 255, 0),
      0 0 42px rgba(212, 255, 117, 0);
  }
}

@keyframes introRailBreak {
  0% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  35% {
    opacity: 1;
    transform: translateY(-1px);
    filter: blur(0.4px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(12px);
  }
}

@keyframes introRailShard {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    letter-spacing: 0.08em;
  }
  30% {
    opacity: 0.88;
    transform: translateY(-1px) scale(1.01);
  }
  62% {
    opacity: 0.34;
    transform: translateY(-4px) scale(1.02);
    filter: blur(3px);
    letter-spacing: 0.18em;
  }
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    filter: blur(12px);
    letter-spacing: 0.28em;
  }
}

/* Intro Landing Refresh */
body.scene-intro-active .top-rail {
  display: none;
}

body.scene-intro-active .ambient-grid {
  opacity: 0.18;
}

#scene-intro .scene-panel-hero,
body.route-variant-b #scene-intro .scene-panel-hero {
  position: relative;
  display: flex;
  align-content: stretch;
  min-height: calc(100svh - 28px);
  padding: clamp(20px, 5vw, 34px) clamp(18px, 5vw, 30px) clamp(18px, 5vw, 26px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 243, 243, 0.82) 0 17%, rgba(243, 243, 243, 0) 17% 100%),
    linear-gradient(135deg, #d8e5f6 0 44%, #b9cdea 44% 44.8%, #c9daf2 44.8% 100%);
  border: 2px solid #f3f3f3;
}

#scene-intro .scene-panel-hero::before,
body.route-variant-b #scene-intro .scene-panel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 47.5%, rgba(243, 243, 243, 0.16) 47.5% 52.5%, transparent 52.5%),
    linear-gradient(180deg, rgba(243, 243, 243, 0.18), transparent 28%);
  pointer-events: none;
}

#scene-intro .scene-panel-hero::after,
body.route-variant-b #scene-intro .scene-panel-hero::after {
  content: "";
  position: absolute;
  inset: auto -14% -18% auto;
  width: 244px;
  height: 244px;
  border-radius: 50%;
  border: 2px solid rgba(243, 243, 243, 0.4);
  box-shadow:
    0 0 0 22px rgba(243, 243, 243, 0.18),
    0 0 0 44px rgba(243, 243, 243, 0.12),
    0 0 0 66px rgba(148, 164, 101, 0.1);
  pointer-events: none;
}

#scene-intro .hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: auto;
  margin: 0;
  gap: 12px;
  text-align: center;
}

#scene-intro .hero-header {
  display: grid;
  gap: 10px;
  justify-items: center;
}

#scene-intro #introEyebrow {
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: rgba(243, 243, 243, 0.62);
  color: #000000;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#scene-intro #introTitle.goodbrother-voice,
body.route-variant-b #scene-intro #introTitle.goodbrother-voice {
  max-width: none;
  color: #000000;
  font-size: clamp(2.08rem, 8.2vw, 2.92rem);
  line-height: 1.04;
  text-wrap: balance;
}

#scene-intro .hero-visual {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 238px;
  height: clamp(238px, 33svh, 318px);
  margin: 2px auto 0;
  overflow: hidden;
  border-radius: 32px;
  border: 2px solid #f3f3f3;
  background:
    linear-gradient(90deg, rgba(243, 243, 243, 0.34) 0 42%, rgba(171, 190, 224, 0.3) 42% 100%),
    linear-gradient(180deg, #d7e3f5 0%, #afc5e7 46%, #7f9fcd 100%);
  opacity: 1;
}

#scene-intro .hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 2px solid rgba(243, 243, 243, 0.54);
  pointer-events: none;
}

#scene-intro .hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 2px;
  background: rgba(243, 243, 243, 0.46);
  pointer-events: none;
}

#scene-intro .hero-visual-panel {
  position: absolute;
  top: 0;
  bottom: 0;
}

#scene-intro .hero-visual-panel-left {
  left: 0;
  width: 42%;
  background: rgba(243, 243, 243, 0.2);
}

#scene-intro .hero-visual-panel-right {
  right: 0;
  width: 58%;
  background: linear-gradient(180deg, rgba(243, 243, 243, 0.16), rgba(108, 147, 199, 0.16));
}

#scene-intro .hero-zigzag,
#scene-intro .hero-ribbon,
#scene-intro .hero-namu,
#scene-intro .hero-ground-line {
  position: absolute;
  pointer-events: none;
}

#scene-intro .hero-zigzag {
  width: 210px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.92;
  animation: introZigzagDrift 8.6s ease-in-out infinite;
}

#scene-intro .hero-zigzag-a {
  top: 10%;
  left: -4%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 92' fill='none'%3E%3Cpolyline points='0 66 34 30 80 72 120 22 170 70 214 16 260 54' stroke='%23b841f1' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#scene-intro .hero-zigzag-b {
  right: -10%;
  bottom: 20%;
  animation-delay: -3.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 92' fill='none'%3E%3Cpolyline points='0 32 46 74 92 28 138 72 184 24 228 62 260 40' stroke='%2394a465' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#scene-intro .hero-ribbon {
  --intro-ribbon-rotate: 0deg;
  border-radius: 999px;
  border-style: solid;
  background: none;
  opacity: 0.92;
  transform: rotate(var(--intro-ribbon-rotate));
  animation: introRibbonDrift 6.8s ease-in-out infinite;
}

#scene-intro .hero-ribbon-a {
  --intro-ribbon-rotate: 16deg;
  top: 12%;
  left: -18%;
  width: 84%;
  height: 86px;
  border-width: 10px;
  border-color: #94a465;
}

#scene-intro .hero-ribbon-b {
  --intro-ribbon-rotate: -12deg;
  top: 18%;
  right: -24%;
  width: 88%;
  height: 88px;
  border-width: 10px;
  border-color: #2d63fb;
  animation-delay: -2.8s;
}

#scene-intro .hero-ribbon-c {
  --intro-ribbon-rotate: -8deg;
  left: -10%;
  bottom: 18%;
  width: 76%;
  height: 72px;
  border-width: 10px;
  border-color: #94a465;
  animation-delay: -4.4s;
}

#scene-intro .hero-namu {
  --hero-namu-scale: 1;
  left: 50%;
  bottom: 40px;
  width: 148px;
  height: 248px;
  transform: translateX(-50%) scale(var(--hero-namu-scale));
  transform-origin: center bottom;
  animation: introFigureSway 6.4s ease-in-out infinite;
}

#scene-intro .hero-namu > span {
  position: absolute;
  display: block;
}

#scene-intro .hero-namu-crown {
  top: 0;
  left: 26px;
  width: 96px;
  height: 78px;
  background:
    radial-gradient(circle at 18% 74%, #b841f1 0 18px, transparent 19px),
    radial-gradient(circle at 50% 30%, #b841f1 0 30px, transparent 31px),
    radial-gradient(circle at 82% 72%, #b841f1 0 18px, transparent 19px),
    linear-gradient(180deg, #b841f1 0 72%, transparent 72%);
}

#scene-intro .hero-namu-trunk,
#scene-intro .hero-namu-limb {
  background: #f7d365;
  border-radius: 999px;
}

#scene-intro .hero-namu-trunk {
  top: 54px;
  left: 44px;
  width: 60px;
  height: 126px;
  border-radius: 40px 40px 30px 30px;
}

#scene-intro .hero-namu-arm-left {
  top: 84px;
  left: 24px;
  width: 16px;
  height: 82px;
  transform: rotate(24deg);
}

#scene-intro .hero-namu-arm-right {
  top: 84px;
  right: 24px;
  width: 16px;
  height: 82px;
  transform: rotate(-24deg);
}

#scene-intro .hero-namu-leg-left {
  top: 170px;
  left: 54px;
  width: 16px;
  height: 74px;
  transform: rotate(8deg);
}

#scene-intro .hero-namu-leg-right {
  top: 170px;
  right: 54px;
  width: 16px;
  height: 74px;
  transform: rotate(-8deg);
}

#scene-intro .hero-namu-coord {
  left: 50%;
  width: 44px;
  height: 12px;
  margin-left: -22px;
  border-radius: 999px;
  border: 3px solid;
  animation: introCoordPulse 2.8s ease-in-out infinite;
}

#scene-intro .hero-namu-coord-a {
  top: 92px;
  border-color: #2d63fb;
}

#scene-intro .hero-namu-coord-b {
  top: 118px;
  border-color: #abbee0;
  animation-delay: -0.9s;
}

#scene-intro .hero-namu-coord-c {
  top: 144px;
  border-color: #94a465;
  animation-delay: -1.8s;
}

#scene-intro .hero-ground-line {
  left: 22px;
  right: 22px;
  bottom: 20px;
  height: 10px;
  border-radius: 999px;
  background: rgba(243, 243, 243, 0.42);
}

#scene-intro .hero-support {
  display: grid;
  gap: 8px;
  justify-items: center;
}

#scene-intro #introLead.goodbrother-voice,
body.route-variant-b #scene-intro #introLead.goodbrother-voice {
  margin: 0;
  max-width: none;
  color: #10233e;
  font-size: 0.96rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

#scene-intro #heroNote,
body.route-variant-b #scene-intro #heroNote {
  margin: 0;
  max-width: none;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

#scene-intro .hero-actions {
  grid-template-columns: 1fr !important;
  gap: 10px;
  margin-top: 8px;
  padding-top: 0;
}

#scene-intro .hero-actions.is-hidden {
  opacity: 0;
  pointer-events: none;
}

#scene-intro .hero-actions.is-hidden .hero-cta {
  opacity: 0;
  transform: translateY(14px);
  filter: none;
}

#scene-intro .hero-cta,
body.route-variant-b #scene-intro .hero-cta {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 16px 18px 18px;
  border-radius: 24px;
  border-width: 2px;
  text-align: center;
  box-shadow: none;
  filter: none;
  opacity: 0;
  transform: translateY(14px);
}

#scene-intro .hero-cta::before,
#scene-intro .hero-cta::after {
  content: none;
}

#scene-intro .hero-cta.is-revealed {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

#scene-intro .hero-cta-label,
#scene-intro .hero-cta-meta {
  color: rgba(0, 0, 0, 0.72);
}

#scene-intro .hero-cta-label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

#scene-intro .hero-cta-title {
  color: #000000;
  font-size: 1.06rem;
}

#scene-intro .hero-cta-meta {
  font-size: 0.75rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

#scene-intro .hero-cta-primary,
body.route-variant-b #scene-intro .hero-cta-primary {
  background: #f7d365;
  border-color: #000000;
}

#scene-intro .hero-cta-secondary,
body.route-variant-b #scene-intro .hero-cta-secondary {
  background: #f3f3f3;
  border-color: #2d63fb;
}

#scene-intro .hero-cta:hover,
#scene-intro .hero-cta:focus-visible {
  transform: translateY(0);
}

#scene-intro .hero-cta-primary:hover,
#scene-intro .hero-cta-primary:focus-visible {
  background: #f4cc4b;
}

#scene-intro .hero-cta-secondary:hover,
#scene-intro .hero-cta-secondary:focus-visible {
  background: #dfe8f6;
}

#scene-intro .hero-meta[hidden] {
  display: none !important;
}

@media (max-width: 430px) {
  #scene-intro .scene-panel-hero {
    min-height: calc(100svh - 20px);
    padding: 18px 14px 14px;
  }

  #scene-intro .hero-copy {
    min-height: calc(100svh - 34px);
    gap: 10px;
  }

  #scene-intro #introTitle.goodbrother-voice {
    font-size: clamp(1.88rem, 9vw, 2.34rem);
  }

  #scene-intro .hero-visual {
    min-height: 212px;
    height: 212px;
    border-radius: 28px;
  }

  #scene-intro .hero-zigzag {
    width: 174px;
    height: 66px;
  }

  #scene-intro .hero-ribbon {
    border-width: 8px;
  }

  #scene-intro .hero-namu {
    --hero-namu-scale: 0.88;
    bottom: 28px;
  }

  #scene-intro #introLead.goodbrother-voice {
    font-size: 0.84rem;
  }

  #scene-intro #heroNote {
    font-size: 0.64rem;
  }

  #scene-intro .hero-cta {
    padding: 15px 15px 16px;
  }

  #scene-intro .hero-cta-title {
    font-size: 0.98rem;
  }

  #scene-intro .hero-cta-meta {
    font-size: 0.72rem;
  }
}

@media (max-height: 860px) {
  #scene-intro .scene-panel-hero {
    min-height: calc(100svh - 18px);
    padding-top: 14px;
    padding-bottom: 12px;
  }

  #scene-intro .hero-copy {
    min-height: calc(100svh - 32px);
    gap: 8px;
  }

  #scene-intro #introTitle.goodbrother-voice {
    font-size: clamp(1.7rem, 7.4vw, 2.08rem);
  }

  #scene-intro .hero-visual {
    min-height: 196px;
    height: 196px;
  }

  #scene-intro #introLead.goodbrother-voice {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  #scene-intro #heroNote {
    font-size: 0.62rem;
    line-height: 1.38;
  }

  #scene-intro .hero-actions {
    gap: 8px;
  }

  #scene-intro .hero-cta {
    padding: 12px 14px 13px;
  }
}

@keyframes introRibbonDrift {
  0%,
  100% {
    transform: translateY(0) rotate(var(--intro-ribbon-rotate, 0deg));
  }
  50% {
    transform: translateY(-8px) rotate(var(--intro-ribbon-rotate, 0deg));
  }
}

@keyframes introZigzagDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6px, -7px) scale(1.03);
  }
}

@keyframes introFigureSway {
  0%,
  100% {
    transform: translateX(-50%) rotate(-1.4deg) scale(var(--hero-namu-scale, 1));
  }
  50% {
    transform: translateX(-50%) translateY(-4px) rotate(1.4deg) scale(var(--hero-namu-scale, 1));
  }
}

@keyframes introCoordPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.18);
    opacity: 0.74;
  }
}

#scene-intro .hero-visual {
  background:
    linear-gradient(180deg, rgba(243, 243, 243, 0.26), rgba(108, 147, 199, 0.08)),
    linear-gradient(135deg, #d7e3f5 0%, #afc5e7 100%);
}

#scene-intro .hero-loop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #d7e3f5;
  filter: saturate(0.98) contrast(1.02);
}

#scene-intro .hero-visual-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 243, 243, 0.16), rgba(16, 35, 62, 0.04)),
    linear-gradient(90deg, rgba(243, 243, 243, 0.12) 0 34%, transparent 34% 68%, rgba(243, 243, 243, 0.08) 68% 100%);
  pointer-events: none;
}

#scene-intro .hero-visual-frame {
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 2px solid rgba(243, 243, 243, 0.54);
  pointer-events: none;
}

@media (max-width: 430px) {
  #scene-intro .hero-visual-frame {
    inset: 14px;
    border-radius: 24px;
  }
}

/* Intro cover-video rebuild */
#scene-intro .scene-panel-hero,
body.route-variant-b #scene-intro .scene-panel-hero {
  min-height: 100svh;
  padding: 0;
  border: 0;
  background: #06111f;
}

#scene-intro .scene-panel-hero::before,
#scene-intro .scene-panel-hero::after,
body.route-variant-b #scene-intro .scene-panel-hero::before,
body.route-variant-b #scene-intro .scene-panel-hero::after,
#scene-intro .hero-visual::before,
#scene-intro .hero-visual::after {
  content: none;
}

#scene-intro .hero-copy {
  min-height: 100svh;
  padding:
    max(24px, calc(env(safe-area-inset-top, 0px) + 16px))
    18px
    max(18px, calc(env(safe-area-inset-bottom, 0px) + 18px));
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

#scene-intro .hero-visual {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #06111f;
  z-index: 0;
}

#scene-intro .hero-loop-video {
  object-fit: cover;
  object-position: center center;
  background: #06111f;
  filter: saturate(0.98) contrast(1.01) brightness(1.03);
}

#scene-intro .hero-visual-scrim {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

#scene-intro .hero-visual-frame {
  display: none;
}

#scene-intro .hero-header,
#scene-intro .hero-logo-mark,
#scene-intro .hero-support,
#scene-intro .hero-actions,
#scene-intro .hero-meta {
  position: relative;
  z-index: 2;
}

#scene-intro .hero-header {
  justify-items: center;
  gap: 12px;
}

#scene-intro .hero-support {
  margin-top: auto;
  width: fit-content;
  max-width: min(100%, 25rem);
  margin-inline: auto;
  padding: 12px 16px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(243, 243, 243, 0.2), rgba(243, 243, 243, 0.1));
  backdrop-filter: blur(8px);
  gap: 10px;
  justify-items: center;
  text-align: center;
}

#scene-intro .hero-logo-mark {
  position: absolute;
  top: var(--hero-logo-center-y, 50%);
  left: 50%;
  width: min(58vw, 14rem);
  margin: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.5);
}

#scene-intro .hero-logo-image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.82;
  filter:
    drop-shadow(0 1px 0 rgba(243, 243, 243, 0.26))
    drop-shadow(0 8px 16px rgba(6, 17, 31, 0.1));
}

#scene-intro #introEyebrow,
body.route-variant-b #scene-intro #introEyebrow {
  padding: 7px 14px;
  border: 1px solid rgba(243, 243, 243, 0.42);
  background: rgba(6, 17, 31, 0.34);
  color: #f3f3f3;
  backdrop-filter: blur(10px);
}

#scene-intro #introTitle.goodbrother-voice,
body.route-variant-b #scene-intro #introTitle.goodbrother-voice {
  max-width: 7.5ch;
  color: #10233e;
  font-size: clamp(2.58rem, 10vw, 3.86rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-align: center;
  -webkit-text-stroke: 2.8px rgba(243, 243, 243, 0.99);
  paint-order: stroke fill;
  text-shadow: 0 1px 3px rgba(243, 243, 243, 0.24);
}

#scene-intro #introLead.goodbrother-voice,
body.route-variant-b #scene-intro #introLead.goodbrother-voice,
#scene-intro #heroNote,
body.route-variant-b #scene-intro #heroNote {
  white-space: nowrap;
  color: #10233e;
  text-align: center;
  text-wrap: nowrap;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1.3px rgba(243, 243, 243, 0.99);
  paint-order: stroke fill;
  text-shadow: 0 1px 3px rgba(243, 243, 243, 0.24);
}

#scene-intro #introLead.goodbrother-voice,
body.route-variant-b #scene-intro #introLead.goodbrother-voice {
  max-width: none;
  font-size: clamp(1.08rem, 3vw, 1.22rem);
  line-height: 1.34;
}

#scene-intro #heroNote,
body.route-variant-b #scene-intro #heroNote {
  max-width: none;
  color: #08111d;
  font-size: clamp(0.76rem, 2.1vw, 0.86rem);
  line-height: 1.28;
}

#scene-intro .hero-actions {
  width: min(100%, 23rem);
  gap: 10px;
  margin-top: 0;
  margin-inline: auto;
  justify-items: center;
}

#scene-intro .hero-cta,
body.route-variant-b #scene-intro .hero-cta {
  justify-items: center;
  text-align: center;
  padding: 16px 18px 17px;
  backdrop-filter: blur(12px);
}

#scene-intro .hero-cta > span,
body.route-variant-b #scene-intro .hero-cta > span {
  width: 100%;
  text-align: center;
}

#scene-intro .hero-cta-primary,
body.route-variant-b #scene-intro .hero-cta-primary {
  background: rgba(247, 211, 101, 0.94);
}

#scene-intro .hero-cta-secondary,
body.route-variant-b #scene-intro .hero-cta-secondary {
  background: rgba(243, 243, 243, 0.9);
}

@media (max-width: 430px) {
  #scene-intro .hero-copy {
    padding:
      max(22px, calc(env(safe-area-inset-top, 0px) + 14px))
      16px
      max(16px, calc(env(safe-area-inset-bottom, 0px) + 16px));
  }

  #scene-intro #introTitle.goodbrother-voice,
  body.route-variant-b #scene-intro #introTitle.goodbrother-voice {
    max-width: 7ch;
    font-size: clamp(2.28rem, 11vw, 3.16rem);
    -webkit-text-stroke: 2.45px rgba(243, 243, 243, 0.99);
  }

  #scene-intro .hero-logo-mark {
    width: min(60vw, 13.5rem);
  }

  #scene-intro #introLead.goodbrother-voice,
  body.route-variant-b #scene-intro #introLead.goodbrother-voice {
    font-size: clamp(1rem, 3.1vw, 1.12rem);
  }

  #scene-intro #heroNote,
  body.route-variant-b #scene-intro #heroNote {
    font-size: clamp(0.7rem, 2vw, 0.78rem);
  }
}

@media (max-height: 860px) {
  #scene-intro .hero-copy {
    gap: 14px;
    padding-top: max(18px, calc(env(safe-area-inset-top, 0px) + 10px));
    padding-bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 14px));
  }

  #scene-intro #introTitle.goodbrother-voice,
  body.route-variant-b #scene-intro #introTitle.goodbrother-voice {
    font-size: clamp(2.04rem, 9vw, 2.72rem);
  }

  #scene-intro #introLead.goodbrother-voice,
  body.route-variant-b #scene-intro #introLead.goodbrother-voice {
    font-size: clamp(0.94rem, 2.4vw, 1.02rem);
  }

  #scene-intro .hero-logo-mark {
    width: min(54vw, 12rem);
  }

  #scene-intro .hero-cta,
  body.route-variant-b #scene-intro .hero-cta {
    padding: 13px 16px 14px;
  }
}

.scene-panel-form .name-seal-button,
.scene-panel-form .name-seal-button .name-seal-button-kicker,
.scene-panel-form .name-seal-button .name-seal-button-label,
body.route-variant-b .scene-panel-form .name-seal-button,
body.route-variant-b .scene-panel-form .name-seal-button .name-seal-button-kicker,
body.route-variant-b .scene-panel-form .name-seal-button .name-seal-button-label {
  color: #f3f3f3;
}

.scene-panel-form .name-seal-button .name-seal-button-kicker,
.scene-panel-form .name-seal-button .name-seal-button-label,
body.route-variant-b .scene-panel-form .name-seal-button .name-seal-button-kicker,
body.route-variant-b .scene-panel-form .name-seal-button .name-seal-button-label {
  color: #f3f3f3;
}

.scene-panel-form .name-seal-button.is-confirmed .name-seal-button-kicker,
.scene-panel-form .name-seal-button.is-confirmed .name-seal-button-label,
body.route-variant-b .scene-panel-form .name-seal-button.is-confirmed .name-seal-button-kicker,
body.route-variant-b .scene-panel-form .name-seal-button.is-confirmed .name-seal-button-label {
  color: #f3f3f3;
}

#scene-intro #introTitle.goodbrother-voice,
body.route-variant-b #scene-intro #introTitle.goodbrother-voice {
  font-size: clamp(2.82rem, 10.8vw, 4.08rem);
}

.scene-panel-form .name-seal-button,
body.route-variant-b .scene-panel-form .name-seal-button {
  color: #f3f3f3;
}

.scene-panel-form .name-seal-button .name-seal-button-kicker,
.scene-panel-form .name-seal-button .name-seal-button-label,
body.route-variant-b .scene-panel-form .name-seal-button .name-seal-button-kicker,
body.route-variant-b .scene-panel-form .name-seal-button .name-seal-button-label {
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.28),
    0 0 10px rgba(243, 243, 243, 0.22);
}

@media (max-width: 430px) {
  #scene-intro #introTitle.goodbrother-voice,
  body.route-variant-b #scene-intro #introTitle.goodbrother-voice {
    font-size: clamp(2.46rem, 11.8vw, 3.34rem);
  }
}

@media (max-height: 860px) {
  #scene-intro #introTitle.goodbrother-voice,
  body.route-variant-b #scene-intro #introTitle.goodbrother-voice {
    font-size: clamp(2.16rem, 9.4vw, 2.88rem);
  }
}

/* Designer resource rollout: pastel intro and question scenes */
body:not(.route-variant-a) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    url("./designer/main/bg-portrait.webp") center / cover no-repeat fixed;
  --text: #7f6aa5;
  --muted: #7a7098;
}

body:not(.route-variant-a) .site-shell {
  background: transparent;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero,
body:not(.route-variant-a) #scene-question .scene-panel-question {
  background: transparent;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero {
  min-height: 100svh;
  padding: 0;
  border: 0;
  box-shadow: none;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  min-height: 100svh;
  justify-content: space-between;
  gap: 14px;
  padding:
    max(18px, calc(env(safe-area-inset-top, 0px) + 10px))
    18px
    max(16px, calc(env(safe-area-inset-bottom, 0px) + 16px));
  text-align: center;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  justify-items: center;
  gap: 10px;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  padding: 0;
  border: 0;
  background: none;
  color: #6f56a5;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: none;
  backdrop-filter: none;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  display: block;
  width: min(96%, 24rem);
  height: auto;
  margin: 0 auto;
}

body:not(.route-variant-a) #scene-intro #introTitle.goodbrother-voice,
body:not(.route-variant-a) #scene-intro #introLead.goodbrother-voice,
body:not(.route-variant-a) #scene-intro #heroNote {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

body:not(.route-variant-a) #scene-intro .hero-logo-mark {
  position: static;
  top: auto;
  left: auto;
  width: 100%;
  margin: 0;
  transform: none;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

body:not(.route-variant-a) #scene-intro .hero-logo-image-designer {
  display: none;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 0;
  height: auto;
  margin: -6px auto 0;
  overflow: visible;
  border: 0;
  background: none;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  display: block;
  width: min(100%, 26rem);
  height: auto;
  margin: 0 auto;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute;
  left: 50%;
  top: 57%;
  width: min(72%, 17rem);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 18px rgba(132, 111, 180, 0.14));
}

body:not(.route-variant-a) #scene-intro .hero-loop-video,
body:not(.route-variant-a) #scene-intro .hero-visual-scrim,
body:not(.route-variant-a) #scene-intro .hero-visual-frame {
  display: none;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  display: grid;
  gap: 0;
  justify-items: center;
  margin-top: -4px;
  background: none;
  padding: 0;
  width: 100%;
  max-width: none;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  display: block;
  width: min(100%, 26rem);
  height: auto;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 23rem);
  margin-inline: auto;
  gap: 12px;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 111px;
  padding: 18px 18px 20px;
  border: 0;
  border-radius: 0;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
}

body:not(.route-variant-a) #scene-intro .hero-cta::before,
body:not(.route-variant-a) #scene-intro .hero-cta::after,
body:not(.route-variant-a) #scene-intro .hero-cta-label {
  display: none;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title,
body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  width: 100%;
  text-align: center;
  font-family: var(--font-playful);
  color: #ffffff;
  -webkit-text-stroke: 1.6px #8773ad;
  paint-order: stroke fill;
  text-shadow: 0 2px 0 rgba(130, 109, 175, 0.32);
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.48rem, 6.4vw, 2.24rem);
  line-height: 1;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  margin-top: 6px;
  font-size: clamp(0.84rem, 3.5vw, 1.08rem);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

body:not(.route-variant-a) #scene-intro .hero-cta:hover,
body:not(.route-variant-a) #scene-intro .hero-cta:focus-visible {
  transform: translateY(-2px);
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative;
  min-height: 100svh;
  padding:
    max(16px, calc(env(safe-area-inset-top, 0px) + 12px))
    18px
    max(16px, calc(env(safe-area-inset-bottom, 0px) + 18px));
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  position: absolute;
  inset: 34px 0 auto;
  z-index: 0;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  display: block;
  width: min(100%, 24rem);
  height: auto;
}

body:not(.route-variant-a) #scene-question .question-scene-title {
  display: none;
}

body:not(.route-variant-a) #scene-question .progress-head,
body:not(.route-variant-a) #scene-question .question-card,
body:not(.route-variant-a) #scene-question .answer-stack {
  position: relative;
  z-index: 1;
}

body:not(.route-variant-a) #scene-question .progress-head {
  gap: 8px;
}

body:not(.route-variant-a) #scene-question .ai-status {
  justify-content: center;
  gap: 8px;
}

body:not(.route-variant-a) #scene-question .status-badge {
  border: 0;
  background: none;
  color: #6f56a5;
  font-family: var(--font-playful);
  font-size: 0.82rem;
  letter-spacing: 0;
}

body:not(.route-variant-a) #scene-question #questionMeta {
  color: #ffffff;
  font-family: var(--font-playful);
  font-size: 1.02rem;
  -webkit-text-stroke: 1.2px #8773ad;
  paint-order: stroke fill;
}

body:not(.route-variant-a) #scene-question .progress-shell {
  max-width: 15rem;
  margin-inline: auto;
  border-color: rgba(165, 143, 205, 0.42);
  background: rgba(255, 255, 255, 0.46);
}

body:not(.route-variant-a) #scene-question .progress-fill {
  background: linear-gradient(90deg, #f1b6ff 0%, #afeef4 100%);
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 22rem);
  margin: 132px auto 0;
  padding: 20px 22px 24px;
  border: 3px solid #9580bb;
  border-radius: 32px;
  background: rgba(165, 201, 245, 0.94);
  box-shadow:
    0 8px 0 rgba(149, 128, 187, 0.38),
    0 18px 40px rgba(170, 149, 205, 0.16);
}

body:not(.route-variant-a) #scene-question .question-kicker {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--font-playful);
  font-size: 1rem;
  -webkit-text-stroke: 1.2px #8a74b1;
  paint-order: stroke fill;
}

body:not(.route-variant-a) #scene-question .question-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-playful);
  font-size: clamp(1.8rem, 7vw, 2.44rem);
  line-height: 1.34;
  -webkit-text-stroke: 1.8px #8a74b1;
  paint-order: stroke fill;
}

body:not(.route-variant-a) #scene-question .question-copy,
body:not(.route-variant-a) #scene-question .question-whisper,
body:not(.route-variant-a) #scene-question .question-visual {
  display: none;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 23rem);
  margin: auto auto 0;
  gap: 14px;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 102px;
  padding: 18px 18px 20px;
  border: 0;
  border-radius: 0;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat;
  box-shadow: none;
  filter: none;
}

body:not(.route-variant-a) #scene-question .answer-button::before,
body:not(.route-variant-a) #scene-question .answer-button::after,
body:not(.route-variant-a) #scene-question .answer-button-mark {
  display: none;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  display: block;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: var(--font-playful);
  font-size: clamp(1.18rem, 4.8vw, 1.68rem);
  line-height: 1.28;
  -webkit-text-stroke: 1.5px #8773ad;
  paint-order: stroke fill;
  text-shadow: 0 2px 0 rgba(130, 109, 175, 0.28);
}

body:not(.route-variant-a) #scene-question .answer-button:hover,
body:not(.route-variant-a) #scene-question .answer-button:focus-visible,
body:not(.route-variant-a) #scene-question .answer-button.is-active {
  transform: translateY(-2px);
  background-size: 100% 100%;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-copy {
    padding-inline: 14px;
  }

  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 21.25rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-bg-art {
    width: min(100%, 21.5rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(73%, 15rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-desc-art {
    width: min(100%, 21.25rem);
  }

  body:not(.route-variant-a) #scene-question .question-card {
    margin-top: 118px;
    width: min(100%, 21rem);
    padding: 18px 18px 22px;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    font-size: clamp(1.56rem, 7.4vw, 2.08rem);
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 21.25rem);
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 96px;
  }
}

/* Designer asset application phase */
body:not(.route-variant-a) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("./designer/main/bg.webp") center / cover no-repeat fixed;
  color-scheme: light;
  --text: #6d5b87;
  --muted: #86759e;
  --line: rgba(130, 112, 167, 0.18);
  --line-strong: rgba(130, 112, 167, 0.32);
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --shadow: 0 18px 34px rgba(149, 118, 183, 0.18);
}

body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .top-rail {
  display: none;
}

body:not(.route-variant-a) .site-shell {
  background: transparent;
}

body:not(.route-variant-a) .app-frame {
  position: relative;
}

body:not(.route-variant-a) .scene-panel {
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("./designer/main/bg.webp") center / cover no-repeat;
}

body:not(.route-variant-a) .scene-panel::before {
  display: none;
}

body:not(.route-variant-a) .scene-panel::after {
  opacity: 0;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero {
  min-height: 100svh;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 240, 250, 0.06), rgba(255, 240, 250, 0.06)),
    url("./designer/main/bg.webp") center / cover no-repeat;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  min-height: 100svh;
  justify-content: flex-start;
  gap: 0;
  padding:
    max(16px, calc(env(safe-area-inset-top, 0px) + 10px))
    18px
    max(20px, calc(env(safe-area-inset-bottom, 0px) + 18px));
  text-align: center;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  position: relative;
  justify-items: center;
  gap: 8px;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  padding: 0;
  border: 0;
  background: transparent;
  color: #6f5595;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.route-variant-a) #scene-intro #introTitle.goodbrother-voice {
  width: min(100%, 21rem);
  height: clamp(126px, 28vw, 196px);
  margin: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  -webkit-text-stroke: 0;
  text-shadow: none;
  background: url("./designer/main/logo.webp") center / contain no-repeat;
}

body:not(.route-variant-a) #scene-intro .hero-logo-mark {
  display: none;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: relative;
  inset: auto;
  width: min(100%, 22rem);
  min-height: 0;
  height: clamp(320px, 47svh, 420px);
  margin: 8px auto 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
}

body:not(.route-variant-a) #scene-intro .hero-loop-video,
body:not(.route-variant-a) #scene-intro .hero-visual-scrim,
body:not(.route-variant-a) #scene-intro .hero-visual-frame {
  display: none;
}

body:not(.route-variant-a) #scene-intro .hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./designer/main/main-namu.webp") center bottom / contain no-repeat;
}

body:not(.route-variant-a) #scene-intro .hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 44%;
  width: min(72%, 18rem);
  aspect-ratio: 449 / 145;
  background: url("./designer/main/title-namu.webp") center / contain no-repeat;
  transform: translateX(-50%);
}

body:not(.route-variant-a) #scene-intro .hero-support {
  position: relative;
  width: min(100%, 22rem);
  min-height: clamp(58px, 11vw, 66px);
  margin: 2px auto 0;
  padding: 0;
  border-radius: 0;
  background: url("./designer/main/coord-desc.webp") center / 100% auto no-repeat;
  backdrop-filter: none;
  justify-items: stretch;
}

body:not(.route-variant-a) #scene-intro #introLead.goodbrother-voice,
body:not(.route-variant-a) #scene-intro #heroNote {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 22rem);
  margin: 12px auto 0;
  gap: 12px;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 92px;
  padding: 14px 24px 20px;
  border: 0;
  border-radius: 0;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(14px);
}

body:not(.route-variant-a) #scene-intro .hero-actions.is-hidden .hero-cta {
  opacity: 0 !important;
  transform: translateY(14px) !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions.is-visible .hero-cta.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto;
}

body:not(.route-variant-a) #scene-intro .hero-cta::before,
body:not(.route-variant-a) #scene-intro .hero-cta::after {
  display: none;
}

body:not(.route-variant-a) #scene-intro .hero-cta > span {
  font-family: var(--font-playful);
  color: #72608f;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86),
    1px 0 rgba(255, 255, 255, 0.86),
    -1px 0 rgba(255, 255, 255, 0.86),
    0 -1px rgba(255, 255, 255, 0.86);
}

body:not(.route-variant-a) #scene-intro .hero-cta-label {
  font-size: 0.88rem;
  letter-spacing: 0;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.12rem, 4.8vw, 1.56rem);
  line-height: 1.05;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  font-size: 0.84rem;
  letter-spacing: 0;
}

body:not(.route-variant-a) #scene-intro .hero-meta {
  display: none !important;
}

body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-loading,
body:not(.route-variant-a) .scene-panel-result,
body:not(.route-variant-a) .modal-panel {
  background:
    linear-gradient(180deg, rgba(255, 240, 250, 0.04), rgba(255, 240, 250, 0.04)),
    url("./designer/main/bg.webp") center / cover no-repeat;
}

body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-loading,
body:not(.route-variant-a) .scene-panel-result {
  min-height: 100svh;
}

body:not(.route-variant-a) .panel-head,
body:not(.route-variant-a) .progress-head,
body:not(.route-variant-a) .result-banner {
  position: relative;
  z-index: 3;
}

body:not(.route-variant-a) .panel-title,
body:not(.route-variant-a) .result-title,
body:not(.route-variant-a) .question-title,
body:not(.route-variant-a) .video-panel-title,
body:not(.route-variant-a) #archiveTitle {
  color: #6f5c8b;
  font-family: var(--font-playful);
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9),
    1px 0 rgba(255, 255, 255, 0.9),
    -1px 0 rgba(255, 255, 255, 0.9),
    0 -1px rgba(255, 255, 255, 0.9);
}

body:not(.route-variant-a) .eyebrow,
body:not(.route-variant-a) .status-badge,
body:not(.route-variant-a) #questionMeta,
body:not(.route-variant-a) .question-kicker,
body:not(.route-variant-a) .field-label,
body:not(.route-variant-a) .field-meta,
body:not(.route-variant-a) .meta-label,
body:not(.route-variant-a) .detail-label,
body:not(.route-variant-a) .future-label {
  color: #6f5c8b;
  font-family: var(--font-playful);
  letter-spacing: 0;
  text-transform: none;
}

body:not(.route-variant-a) .panel-copy,
body:not(.route-variant-a) .result-summary,
body:not(.route-variant-a) .result-job,
body:not(.route-variant-a) .question-whisper,
body:not(.route-variant-a) .future-slot p,
body:not(.route-variant-a) .detail-block p,
body:not(.route-variant-a) .video-status,
body:not(.route-variant-a) .archive-card-sub {
  color: #7d6d98;
}

body:not(.route-variant-a) .scene-panel-question {
  position: relative;
  overflow: hidden;
  padding: max(18px, calc(env(safe-area-inset-top, 0px) + 10px)) 18px max(18px, calc(env(safe-area-inset-bottom, 0px) + 16px));
}

body:not(.route-variant-a) .scene-panel-question::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 50%;
  width: min(90%, 22rem);
  height: min(52svh, 31rem);
  background: url("./designer/main/main-namu.webp") center top / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.98;
}

body:not(.route-variant-a) .scene-panel-question::after {
  content: "";
  position: absolute;
  top: 162px;
  left: 50%;
  width: min(64%, 15rem);
  aspect-ratio: 449 / 145;
  background: url("./designer/main/title-namu.webp") center / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

body:not(.route-variant-a) .progress-head {
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

body:not(.route-variant-a) .ai-status {
  width: 100%;
  justify-content: center;
  gap: 6px;
}

body:not(.route-variant-a) .status-badge {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  font-size: 0.88rem;
}

body:not(.route-variant-a) #questionMeta {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.82rem;
}

body:not(.route-variant-a) .progress-shell {
  height: 10px;
  background: rgba(255, 255, 255, 0.66);
  border: 2px solid rgba(142, 124, 183, 0.54);
  box-shadow: none;
}

body:not(.route-variant-a) .progress-fill {
  background: linear-gradient(90deg, #a6f2ff, #c7f7ff);
}

body:not(.route-variant-a) .question-card {
  position: relative;
  z-index: 2;
  width: min(100%, 31rem);
  min-height: 288px;
  margin: 124px auto 0;
  padding: 22px 24px 26px;
  border: 2px solid #927eb4;
  border-radius: 30px;
  background: #a8c6ef;
  box-shadow: none;
}

body:not(.route-variant-a) .question-card::before,
body:not(.route-variant-a) .question-card::after,
body:not(.route-variant-a) .question-visual {
  display: none;
}

body:not(.route-variant-a) .question-orb,
body:not(.route-variant-a) .question-rails,
body:not(.route-variant-a) .coord-ring {
  display: none !important;
}

body:not(.route-variant-a) .question-kicker {
  margin-top: 0;
  font-size: 1rem;
  text-align: center;
}

body:not(.route-variant-a) .question-title {
  margin-top: 18px;
  font-size: clamp(1.7rem, 6vw, 2.36rem);
  line-height: 1.42;
  text-align: center;
}

body:not(.route-variant-a) .question-copy {
  display: none;
}

body:not(.route-variant-a) .question-whisper {
  display: none;
}

body:not(.route-variant-a) .answer-stack {
  position: relative;
  z-index: 2;
  width: min(100%, 31rem);
  margin: 14px auto 0;
  gap: 12px;
}

body:not(.route-variant-a) .answer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 16px 34px 20px;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #7a6796;
  font-family: var(--font-playful);
  font-size: clamp(1rem, 3.8vw, 1.28rem);
  line-height: 1.2;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.92),
    1px 0 rgba(255, 255, 255, 0.92),
    -1px 0 rgba(255, 255, 255, 0.92),
    0 -1px rgba(255, 255, 255, 0.92);
}

body:not(.route-variant-a) .answer-button::before,
body:not(.route-variant-a) .answer-button::after,
body:not(.route-variant-a) .answer-button-mark {
  display: none;
}

body:not(.route-variant-a) .answer-button:hover,
body:not(.route-variant-a) .answer-button:focus-visible {
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat;
  transform: translateY(-1px) scale(1.01);
  filter: saturate(1.03) brightness(1.01);
}

body:not(.route-variant-a) .answer-button.is-active {
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat;
  transform: translateY(1px) scale(0.995);
  filter: saturate(1.05) brightness(0.98);
  color: #715d90;
}

body:not(.route-variant-a) .answer-button-text {
  display: block;
  width: 100%;
  max-width: none;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
  writing-mode: horizontal-tb;
}

body:not(.route-variant-a) .cta,
body:not(.route-variant-a) .blood-button,
body:not(.route-variant-a) .name-seal-button,
body:not(.route-variant-a) .stepper-button,
body:not(.route-variant-a) .cta-primary,
body:not(.route-variant-a) .cta-secondary,
body:not(.route-variant-a) .cta-tertiary {
  color: #75628f;
  font-family: var(--font-playful);
}

body:not(.route-variant-a) .cta-primary,
body:not(.route-variant-a) .cta-secondary,
body:not(.route-variant-a) .cta-tertiary,
body:not(.route-variant-a) .modal-cta {
  min-height: 88px;
  padding: 16px 26px 20px;
  border: 0;
  border-radius: 0;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat;
  box-shadow: none;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.92),
    1px 0 rgba(255, 255, 255, 0.92),
    -1px 0 rgba(255, 255, 255, 0.92),
    0 -1px rgba(255, 255, 255, 0.92);
}

body:not(.route-variant-a) .scene-panel-form .panel-head,
body:not(.route-variant-a) .scene-panel-loading .panel-head,
body:not(.route-variant-a) .scene-panel-result .result-banner {
  padding-top: 10px;
  text-align: center;
}

body:not(.route-variant-a) .video-device,
body:not(.route-variant-a) .video-shell,
body:not(.route-variant-a) .modal-panel,
body:not(.route-variant-a) .result-card,
body:not(.route-variant-a) .result-reasons,
body:not(.route-variant-a) .result-deep-dive,
body:not(.route-variant-a) .archive-preview,
body:not(.route-variant-a) .archive-card,
body:not(.route-variant-a) .future-slot,
body:not(.route-variant-a) .hero-meta > div,
body:not(.route-variant-a) .oracle-field,
body:not(.route-variant-a) .oracle-input-shell,
body:not(.route-variant-a) .stepper-value-wrap,
body:not(.route-variant-a) .loading-step {
  border-color: rgba(145, 126, 180, 0.32);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

body:not(.route-variant-a) .oracle-input-shell input,
body:not(.route-variant-a) .stepper-value,
body:not(.route-variant-a) .result-type,
body:not(.route-variant-a) .result-job,
body:not(.route-variant-a) .video-status,
body:not(.route-variant-a) .toast {
  color: #6f5c8b;
}

body:not(.route-variant-a) .modal-backdrop {
  background: rgba(228, 191, 226, 0.42);
  backdrop-filter: blur(10px);
}

body:not(.route-variant-a) .modal-close {
  background: rgba(255, 255, 255, 0.78);
  color: #6f5c8b;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-copy {
    padding:
      max(14px, calc(env(safe-area-inset-top, 0px) + 8px))
      14px
      max(16px, calc(env(safe-area-inset-bottom, 0px) + 14px));
  }

  body:not(.route-variant-a) #scene-intro #introTitle.goodbrother-voice {
    width: min(100%, 19rem);
    height: 138px;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 19.4rem);
    height: 300px;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual::after {
    bottom: 41%;
    width: min(72%, 13.4rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 19.4rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-cta,
  body:not(.route-variant-a) .answer-button,
  body:not(.route-variant-a) .cta-primary,
  body:not(.route-variant-a) .cta-secondary,
  body:not(.route-variant-a) .cta-tertiary,
  body:not(.route-variant-a) .modal-cta {
    min-height: 84px;
    padding: 14px 22px 18px;
  }

  body:not(.route-variant-a) .question-card {
    margin-top: 120px;
    min-height: 258px;
    padding: 18px 18px 22px;
  }

  body:not(.route-variant-a) .question-title {
    font-size: clamp(1.44rem, 7vw, 1.92rem);
    line-height: 1.5;
  }

  body:not(.route-variant-a) .answer-button {
    font-size: 1rem;
  }
}

/* Designer asset DOM slot alignment */
body:not(.route-variant-a) #scene-intro #introTitle.goodbrother-voice {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: none;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  display: block;
  width: min(100%, 22rem);
  height: auto;
}

body:not(.route-variant-a) #scene-intro .hero-visual::before,
body:not(.route-variant-a) #scene-intro .hero-visual::after,
body:not(.route-variant-a) .scene-panel-question::before,
body:not(.route-variant-a) .scene-panel-question::after {
  content: none;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute;
  left: 50%;
  bottom: 42%;
  width: min(76%, 18.5rem);
  transform: translateX(-50%);
  display: block;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  display: block;
  width: min(100%, 22rem);
  height: auto;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  position: absolute;
  top: 52px;
  left: 50%;
  width: min(92%, 22.75rem);
  height: min(52svh, 31rem);
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center top;
}

body:not(.route-variant-a) #scene-question .question-scene-title {
  position: absolute;
  top: 174px;
  left: 50%;
  width: min(68%, 15.5rem);
  transform: translateX(-50%);
  display: block;
  opacity: 0.96;
}

body:not(.route-variant-a) #scene-question .progress-head {
  min-height: 22px;
  margin-bottom: 0;
}

body:not(.route-variant-a) #scene-question .progress-shell {
  display: none;
}

body:not(.route-variant-a) #scene-question .status-badge {
  font-size: 0.72rem;
  line-height: 1;
}

body:not(.route-variant-a) #scene-question #questionMeta {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.12rem;
  line-height: 1;
  z-index: 4;
}

body:not(.route-variant-a) #scene-question .question-card {
  margin-top: 138px;
  padding-top: 54px;
}

body:not(.route-variant-a) #scene-question .question-kicker {
  display: none;
}

body:not(.route-variant-a) #scene-question .question-title {
  margin-top: 0;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  margin-top: 12px;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 20rem);
  }

  body:not(.route-variant-a) #scene-question .question-scene-title {
    width: min(74%, 13.8rem);
    top: 166px;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    margin-top: 128px;
    padding-top: 52px;
  }

  body:not(.route-variant-a) #scene-question #questionMeta {
    top: 18px;
    font-size: 1.04rem;
  }
}

/* Designer resource rollout: final layout */
body:not(.route-variant-a) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    url("./designer/main/bg-portrait.webp") center / cover no-repeat fixed;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) #scene-intro .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-loading,
body:not(.route-variant-a) .scene-panel-result,
body:not(.route-variant-a) .modal-panel {
  background:
    linear-gradient(180deg, rgba(255, 241, 249, 0.04), rgba(255, 241, 249, 0.04)),
    url("./designer/main/bg-portrait.webp") center / cover no-repeat;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  min-height: 100svh;
  justify-content: flex-start;
  gap: 0;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  justify-items: center;
  gap: 4px;
  padding-top: max(8px, env(safe-area-inset-top, 0px));
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 22rem);
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  width: min(100%, 22.2rem);
  height: clamp(340px, 49svh, 438px);
  margin-top: 2px;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  inset: auto auto 0 50%;
  width: auto;
  height: 100%;
  max-width: none;
  transform: translateX(-50%) scale(1.14);
  object-position: center top;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  bottom: 43%;
  width: min(76%, 18.6rem);
}

body:not(.route-variant-a) #scene-intro .hero-support {
  width: min(100%, 22.2rem);
  margin-top: -2px;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 22.2rem);
  margin-top: 10px;
  gap: 10px;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 94px;
  padding: 15px 22px 18px;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.24rem, 5vw, 1.68rem);
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  margin-top: 5px;
  font-size: 0.92rem;
}

body:not(.route-variant-a) #scene-question .progress-head {
  position: absolute;
  top: 98px;
  left: 50%;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

body:not(.route-variant-a) #scene-question .status-badge,
body:not(.route-variant-a) #scene-question .progress-shell,
body:not(.route-variant-a) #scene-question .question-kicker,
body:not(.route-variant-a) #scene-question .question-scene-title {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .ai-status {
  min-height: 20px;
  width: auto;
}

body:not(.route-variant-a) #scene-question #questionMeta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.9rem;
  padding: 0.14rem 0.52rem 0.18rem;
  border-radius: 999px;
  font-family: "Pretendard", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.14rem;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.04em;
  color: #6f56a5;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 2px 0 rgba(138, 116, 177, 0.2);
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  top: 34px;
  width: min(94%, 23rem);
  height: min(56svh, 33rem);
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 21.8rem);
  min-height: 246px;
  margin-top: 136px;
  padding: 22px 26px 26px;
  border: 0;
  border-radius: 0;
  background:
    url("./designer/question/question-frame.png") center / 100% 100% no-repeat;
  box-shadow: none;
}

body:not(.route-variant-a) #scene-question .question-title {
  margin-top: 8px;
  font-size: clamp(1.72rem, 6.4vw, 2.28rem);
  line-height: 1.5;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 22.2rem);
  margin-top: auto;
  padding-top: 8px;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 88px;
  padding: 14px 24px 18px;
  background:
    url("./designer/question/question-button.png") center / 100% 100% no-repeat;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  font-size: clamp(1.12rem, 4.2vw, 1.42rem);
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 19.8rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 19.8rem);
    height: 316px;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    bottom: 42%;
    width: min(78%, 14.4rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions,
  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 19.8rem);
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 19.8rem);
    margin-top: 128px;
    min-height: 232px;
    padding: 18px 24px 22px;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(94%, 20.8rem);
    top: 28px;
    height: min(54svh, 29rem);
  }

  body:not(.route-variant-a) #scene-question .progress-head {
    top: 90px;
  }
}

/* Final visual fit pass: full-page background, no stray shell chrome, no drag on decorative assets */
body:not(.route-variant-a) {
  min-height: 100svh;
  background:
    url("./designer/main/bg.webp") center / cover no-repeat fixed,
    linear-gradient(180deg, #e3b2cf 0%, #d9b0dc 100%) !important;
  overscroll-behavior-y: none;
}

body:not(.route-variant-a):not(.scene-result-active) {
  overflow: hidden;
}

body:not(.route-variant-a) .site-shell {
  min-height: 100svh;
  height: 100svh;
  padding: 0 !important;
  background: transparent !important;
  overflow: hidden;
}

body:not(.route-variant-a) .app-frame {
  width: min(100%, var(--shell-width));
  max-width: var(--shell-width);
  min-height: 100svh;
  height: 100svh;
  margin: 0 auto;
  padding: 0;
}

body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .top-rail {
  display: none !important;
}

body:not(.route-variant-a) .boot-overlay,
body:not(.route-variant-a) .boot-panel,
body:not(.route-variant-a) .boot-orbit,
body:not(.route-variant-a) .boot-ribbon {
  display: none !important;
}

body:not(.route-variant-a) .scene {
  min-height: 100svh;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero,
body:not(.route-variant-a) #scene-form .scene-panel-form,
body:not(.route-variant-a) #scene-question .scene-panel-question,
body:not(.route-variant-a) #scene-loading .scene-panel-loading {
  min-height: 100svh;
  height: 100svh;
  max-height: 100svh;
  margin: 0 auto;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  background: transparent !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy,
body:not(.route-variant-a) #scene-form .scene-panel-form,
body:not(.route-variant-a) #scene-question .scene-panel-question,
body:not(.route-variant-a) #scene-loading .scene-panel-loading {
  padding-top: max(10px, env(safe-area-inset-top, 0px));
  padding-bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 12px));
}

body:not(.route-variant-a) #scene-intro .hero-header,
body:not(.route-variant-a) #scene-intro .hero-visual,
body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-title-art,
body:not(.route-variant-a) #scene-intro .hero-bg-art,
body:not(.route-variant-a) #scene-intro .hero-wordmark-art,
body:not(.route-variant-a) #scene-intro .hero-desc-art {
  filter: none !important;
  backdrop-filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-header,
body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-actions {
  position: relative;
  z-index: 2;
}

body:not(.route-variant-a) #scene-intro .hero-visual,
body:not(.route-variant-a) #scene-question .question-scene-art {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

body:not(.route-variant-a) .hero-title-art,
body:not(.route-variant-a) .hero-logo-image,
body:not(.route-variant-a) .hero-bg-art,
body:not(.route-variant-a) .hero-wordmark-art,
body:not(.route-variant-a) .hero-desc-art,
body:not(.route-variant-a) .question-scene-main,
body:not(.route-variant-a) .question-scene-title {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  justify-content: flex-start;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 22.15rem);
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  width: min(100%, 22rem);
  height: clamp(336px, 47svh, 430px);
  margin-top: -2px;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  inset: auto auto 0 50%;
  width: auto;
  height: 100%;
  transform: translateX(-50%) scale(1.08);
  object-position: center top;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  bottom: 43.5%;
  width: min(74%, 17.9rem);
}

body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 21.9rem);
}

body:not(.route-variant-a) #scene-intro .hero-support {
  margin-top: -4px;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  margin-top: 8px;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  justify-content: flex-start;
}

body:not(.route-variant-a) #scene-question .progress-head {
  top: 132px;
  z-index: 3;
}

body:not(.route-variant-a) #scene-question #questionMeta {
  font-size: 1rem;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  top: 32px;
  width: min(94%, 21rem);
  height: min(48svh, 27rem);
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 21.25rem);
  min-height: 0;
  margin-top: 162px;
  padding: 22px 26px 24px;
}

body:not(.route-variant-a) #scene-question .question-title {
  margin-top: 14px;
  font-size: clamp(1.66rem, 6.1vw, 2.12rem);
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 21.6rem);
  margin-top: auto;
  padding-top: 12px;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 86px;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) .app-frame {
    width: 100%;
    max-width: none;
  }

  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 20rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 20rem);
    height: 312px;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(76%, 14.4rem);
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions,
  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 20rem);
  }

  body:not(.route-variant-a) #scene-question .progress-head {
    top: 122px;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(94%, 19.4rem);
    height: min(43svh, 23rem);
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 19.6rem);
    margin-top: 148px;
    padding: 20px 22px 22px;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    font-size: clamp(1.48rem, 6.8vw, 1.92rem);
  }
}

/* Light theme final fit: global background, no page scroll, no draggable decor */
body:not(.route-variant-a) {
  overflow: hidden;
  background: url("./designer/main/bg.webp") center / cover no-repeat fixed !important;
}

body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .top-rail,
body:not(.route-variant-a) .hero-meta {
  display: none !important;
}

body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame,
body:not(.route-variant-a) .scene,
body:not(.route-variant-a) .scene-active {
  min-height: 100svh !important;
  height: 100svh !important;
}

body:not(.route-variant-a) .scene-active {
  animation: none !important;
}

body:not(.route-variant-a) .site-shell {
  padding: 0 !important;
}

body:not(.route-variant-a) .app-frame {
  width: min(100%, var(--shell-width));
  margin: 0 auto;
  padding: 0 !important;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-loading {
  min-height: 100svh !important;
  height: 100svh !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

body:not(.route-variant-a) .scene-panel::before,
body:not(.route-variant-a) .scene-panel::after {
  display: none !important;
}

img[draggable="false"],
body:not(.route-variant-a) .hero-title-art,
body:not(.route-variant-a) .hero-bg-art,
body:not(.route-variant-a) .hero-wordmark-art,
body:not(.route-variant-a) .hero-desc-art,
body:not(.route-variant-a) .hero-logo-image,
body:not(.route-variant-a) .question-scene-main,
body:not(.route-variant-a) .question-scene-title {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  width: min(100%, 22.4rem);
  min-height: 100svh !important;
  margin: 0 auto;
  padding: max(12px, env(safe-area-inset-top, 0px)) 0 max(12px, env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  justify-items: center;
  gap: 8px;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  gap: 4px;
  padding-top: 0;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame {
  width: 100% !important;
  max-width: none !important;
}

@media (min-width: 431px) {
  body:not(.route-variant-a) .app-frame {
    width: var(--shell-width) !important;
    max-width: var(--shell-width) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 430px) {
  body:not(.route-variant-a) .site-shell,
  body:not(.route-variant-a) .app-frame {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
  }
}

body:not(.route-variant-a) .app-frame {
  max-width: var(--shell-width) !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 22rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: relative;
  width: min(100%, 22rem) !important;
  height: clamp(348px, 43svh, 418px) !important;
  margin: -4px auto 0 !important;
  overflow: visible !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  left: 50%;
  bottom: 0;
  inset: auto auto 0 50% !important;
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
  transform: translateX(-50%) scale(1.14) !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  top: 62% !important;
  bottom: auto !important;
  width: min(91%, 20rem) !important;
  transform: translate(-50%, -50%) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  width: min(100%, 22rem) !important;
  margin-top: -10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 22rem) !important;
  margin: 8px auto 0 !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 92px !important;
  padding: 14px 22px 18px !important;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat !important;
  border-radius: 0 !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.22rem, 4.9vw, 1.62rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  font-size: 0.9rem !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative;
  padding: max(12px, env(safe-area-inset-top, 0px)) 16px max(14px, env(safe-area-inset-bottom, 0px)) !important;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 0;
  overflow: hidden !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

body:not(.route-variant-a) #scene-question .question-scene-title {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .progress-head,
body:not(.route-variant-a) #scene-question .question-card,
body:not(.route-variant-a) #scene-question .answer-stack {
  position: relative;
  z-index: 2;
}

body:not(.route-variant-a) #scene-question .progress-head {
  position: absolute;
  inset: max(10px, env(safe-area-inset-top, 0px)) 0 auto;
  justify-items: center;
  align-self: start;
  min-height: 20px;
  margin: 0 !important;
}

body:not(.route-variant-a) #scene-question .status-badge {
  display: inline-flex !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #6f56a5 !important;
  font-family: var(--font-playful) !important;
  font-size: 0.74rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body:not(.route-variant-a) #scene-question #questionMeta {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 22rem) !important;
  min-height: 310px !important;
  margin: 94px auto 0 !important;
  padding: 26px 18px 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-frame.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-family: var(--font-playful);
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0;
  -webkit-text-stroke: 1.35px #8a74b1;
  paint-order: stroke fill;
  text-shadow: none;
}

body:not(.route-variant-a) #scene-question .question-kicker {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  margin-top: 54px !important;
  font-size: clamp(1.72rem, 6.6vw, 2.18rem) !important;
  line-height: 1.48 !important;
  text-align: center;
  color: #ffffff !important;
  -webkit-text-stroke: 1.7px #8a74b1;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 22rem) !important;
  margin: auto auto 0 !important;
  gap: 10px !important;
  padding-top: 8px;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 88px !important;
  padding: 12px 22px 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-button.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: clamp(1.08rem, 4.2vw, 1.34rem) !important;
  line-height: 1.34 !important;
  -webkit-text-stroke: 1.4px #8a74b1;
  text-shadow: none !important;
}

body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-loading,
body:not(.route-variant-a) .scene-panel-result {
  overflow-y: auto !important;
  overscroll-behavior: contain;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-copy,
  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions,
  body:not(.route-variant-a) #scene-question .question-card,
  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 19.9rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 19.9rem) !important;
    height: 330px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(90%, 18rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    min-height: 292px !important;
    margin-top: 90px !important;
    padding: 24px 16px 20px !important;
  }

  body:not(.route-variant-a) #scene-question .question-card::before {
    top: 18px;
    font-size: 1rem;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    margin-top: 50px !important;
    font-size: clamp(1.56rem, 7vw, 1.98rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 82px !important;
  }
}

/* Final viewport-fit and designer-asset pass */
body:not(.route-variant-a) {
  background: url("./designer/main/bg-portrait.webp") center / cover no-repeat fixed !important;
}

body.scene-intro-active:not(.route-variant-a),
body.scene-form-active:not(.route-variant-a),
body.scene-question-active:not(.route-variant-a),
body.scene-loading-active:not(.route-variant-a) {
  overflow: hidden;
}

body.scene-result-active:not(.route-variant-a) {
  overflow-x: hidden;
  overflow-y: auto;
}

body:not(.route-variant-a) .site-shell {
  min-height: 100svh;
  padding: 0 !important;
  background: transparent !important;
}

body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .top-rail {
  display: none !important;
}

body:not(.route-variant-a) .app-frame {
  width: min(100%, var(--shell-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 !important;
}

body:not(.route-variant-a) .scene {
  min-height: 100svh !important;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-loading,
body:not(.route-variant-a) .scene-panel-result,
body:not(.route-variant-a) .modal-panel {
  min-height: 100svh !important;
  height: 100svh !important;
  padding: 10px 18px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

body:not(.route-variant-a) .scene-panel::before,
body:not(.route-variant-a) .scene-panel::after {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a) .hero-title-art,
body:not(.route-variant-a) .hero-logo-image,
body:not(.route-variant-a) .hero-bg-art,
body:not(.route-variant-a) .hero-wordmark-art,
body:not(.route-variant-a) .hero-desc-art,
body:not(.route-variant-a) .question-scene-main,
body:not(.route-variant-a) .question-scene-title {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  width: min(100%, 390px);
  min-height: 100svh;
  margin: 0 auto;
  padding: max(10px, env(safe-area-inset-top, 0px)) 18px max(14px, env(safe-area-inset-bottom, 0px));
  justify-content: flex-start;
  gap: 0;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  gap: 0;
  padding-top: 4px;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 23rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  width: min(100%, 22.5rem) !important;
  height: clamp(352px, 49svh, 430px) !important;
  margin-top: -12px !important;
  overflow: visible !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  inset: auto auto 0 50% !important;
  width: auto !important;
  height: 100% !important;
  transform: translateX(-50%) scale(1.16) !important;
  object-fit: contain !important;
  object-position: center top !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  top: 61% !important;
  bottom: auto !important;
  width: min(84%, 20rem) !important;
  transform: translate(-50%, -50%) !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  width: min(100%, 22.3rem) !important;
  margin-top: -18px !important;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 22.3rem) !important;
  margin-top: 10px !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 92px !important;
  padding: 16px 22px 18px !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.2rem, 4.9vw, 1.68rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  font-size: 0.92rem !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding-top: max(8px, env(safe-area-inset-top, 0px)) !important;
}

body:not(.route-variant-a) #scene-question .progress-head {
  display: grid;
  justify-items: center;
  gap: 0;
  min-height: 18px;
  margin: 0 !important;
}

body:not(.route-variant-a) #scene-question .status-badge,
body:not(.route-variant-a) #scene-question .progress-shell,
body:not(.route-variant-a) #scene-question .question-kicker,
body:not(.route-variant-a) #scene-question .question-scene-title {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  inset: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  top: 18px !important;
  left: 50% !important;
  width: min(92%, 22.8rem) !important;
  height: min(58svh, 36rem) !important;
  transform: translateX(-50%) !important;
  object-fit: contain !important;
  object-position: center top !important;
}

body:not(.route-variant-a) #scene-question #questionMeta {
  position: static !important;
  transform: none !important;
  font-family: var(--font-playful);
  font-size: 1rem !important;
  line-height: 1 !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1.35px #8a74b1;
  paint-order: stroke fill;
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 20rem) !important;
  min-height: 300px !important;
  height: 300px !important;
  margin: 150px auto 0 !important;
  padding: 18px 26px 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-frame.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .question-card::before,
body:not(.route-variant-a) #scene-question .question-card::after,
body:not(.route-variant-a) #scene-question .question-visual {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  margin-top: 52px !important;
  font-size: clamp(1.82rem, 6.7vw, 2.34rem) !important;
  line-height: 1.42 !important;
  text-align: center !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1.6px #8a74b1;
  text-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 22.2rem) !important;
  margin: auto auto 0 !important;
  padding-top: 10px !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 90px !important;
  padding: 16px 22px 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-button.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button::before,
body:not(.route-variant-a) #scene-question .answer-button::after,
body:not(.route-variant-a) #scene-question .answer-button-mark {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  color: #ffffff !important;
  font-family: var(--font-playful);
  font-size: clamp(1.08rem, 4.35vw, 1.38rem) !important;
  line-height: 1.36 !important;
  text-align: center !important;
  -webkit-text-stroke: 1.35px #8a74b1;
  paint-order: stroke fill;
  text-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button:hover,
body:not(.route-variant-a) #scene-question .answer-button:focus-visible,
body:not(.route-variant-a) #scene-question .answer-button.is-active {
  transform: translateY(-1px) !important;
  filter: none !important;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 20.6rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 20.3rem) !important;
    height: 342px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(82%, 18rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 20.3rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(92%, 20.7rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 18.8rem) !important;
    height: 286px !important;
    min-height: 286px !important;
    margin-top: 144px !important;
    padding: 16px 22px 22px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    margin-top: 46px !important;
    font-size: clamp(1.66rem, 7.1vw, 2.08rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 19.8rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 86px !important;
  }
}

/* Terminal light-theme viewport fit */
html,
body {
  min-height: 100%;
  background-color: #dbafd6;
}

body:not(.route-variant-a) {
  background: transparent !important;
}

body:not(.route-variant-a)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("./designer/main/bg-portrait.webp") center / cover no-repeat;
}

body:not(.route-variant-a)::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(245, 213, 236, 0.08), rgba(225, 188, 221, 0.18));
}

body.scene-intro-active:not(.route-variant-a),
body.scene-form-active:not(.route-variant-a),
body.scene-question-active:not(.route-variant-a),
body.scene-loading-active:not(.route-variant-a) {
  overflow: hidden !important;
}

body.scene-result-active:not(.route-variant-a) {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .top-rail,
body:not(.route-variant-a) .hero-meta,
body:not(.route-variant-a) .boot-overlay,
body:not(.route-variant-a) .boot-panel,
body:not(.route-variant-a) .boot-orbit,
body:not(.route-variant-a) .boot-ribbon {
  display: none !important;
}

body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame,
body:not(.route-variant-a) .scene,
body:not(.route-variant-a) .scene-active {
  min-height: 100dvh !important;
  height: 100dvh !important;
}

body:not(.route-variant-a) .site-shell {
  padding: 0 !important;
  background: transparent !important;
}

body:not(.route-variant-a) .app-frame {
  width: 100vw !important;
  max-width: var(--shell-width) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-loading {
  min-height: 100dvh !important;
  height: 100% !important;
  padding: 10px 18px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) .scene-panel-result {
  min-height: 100dvh !important;
  height: auto !important;
  padding: 10px 18px 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

body:not(.route-variant-a) .scene-panel::before,
body:not(.route-variant-a) .scene-panel::after {
  content: none !important;
  display: none !important;
}

img[draggable="false"] {
  -webkit-user-drag: none;
  user-select: none;
}

body:not(.route-variant-a) [aria-hidden="true"] img,
body:not(.route-variant-a) .hero-visual img,
body:not(.route-variant-a) .question-scene-art img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  width: min(100%, 392px) !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: max(12px, env(safe-area-inset-top, 0px)) 16px max(16px, env(safe-area-inset-bottom, 0px)) !important;
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-content: start !important;
  justify-items: center !important;
  gap: 8px !important;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  gap: 4px !important;
  padding-top: 0 !important;
}

body:not(.route-variant-a) #scene-intro #introEyebrow,
body:not(.route-variant-a) #scene-intro .hero-title {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 20.9rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-logo-mark {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  width: min(100%, 20.5rem) !important;
  height: clamp(250px, 32svh, 322px) !important;
  margin: 0 auto !important;
  overflow: visible !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  inset: auto auto 0 50% !important;
  width: auto !important;
  height: 100% !important;
  transform: translateX(-50%) scale(1.06) !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  top: 61% !important;
  bottom: auto !important;
  width: min(79%, 18.2rem) !important;
  transform: translate(-50%, -50%) !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  width: min(100%, 20.5rem) !important;
  margin-top: 0 !important;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-lead,
body:not(.route-variant-a) #scene-intro .hero-note {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 20.5rem) !important;
  margin: 0 auto !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-label {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 78px !important;
  padding: 12px 18px 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.12rem, 4.6vw, 1.52rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  font-size: 0.84rem !important;
  line-height: 1.06 !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  align-items: start !important;
  gap: 12px !important;
  padding-top: max(10px, env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question::before {
  content: "AI GOOD brother" !important;
  position: absolute !important;
  top: max(8px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  color: #6f56a5 !important;
  font-family: var(--font-ui) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: min(100%, 21.8rem) !important;
  height: 100% !important;
  transform: translateX(-50%) !important;
  object-fit: contain !important;
  object-position: center top !important;
}

body:not(.route-variant-a) #scene-question .question-scene-title,
body:not(.route-variant-a) #scene-question .progress-head,
body:not(.route-variant-a) #scene-question #questionMeta,
body:not(.route-variant-a) #scene-question .progress-shell,
body:not(.route-variant-a) #scene-question .question-kicker,
body:not(.route-variant-a) #scene-question .question-visual,
body:not(.route-variant-a) #scene-question .question-copy,
body:not(.route-variant-a) #scene-question .question-whisper {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .progress-head,
body:not(.route-variant-a) #scene-question .question-card,
body:not(.route-variant-a) #scene-question .answer-stack {
  position: relative !important;
  z-index: 1 !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 19.4rem) !important;
  min-height: 248px !important;
  height: auto !important;
  margin: 0 auto !important;
  align-self: center !important;
  padding: 18px 24px 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-frame.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress) !important;
  position: absolute !important;
  top: 18px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: 0.98rem !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.25px #8a74b1 !important;
  paint-order: stroke fill !important;
  text-shadow: none !important;
}

/* Final light-theme visual pass for example fidelity */
body:not(.route-variant-a) {
  background: #d7a7cf url("./designer/main/bg.webp") center center / cover no-repeat fixed !important;
}

@media (orientation: portrait) {
  body:not(.route-variant-a) {
    background-image: url("./designer/main/bg-portrait.webp") !important;
  }
}

body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .scene-transition-ring,
body:not(.route-variant-a) .scene-transition-ring-alt,
body:not(.route-variant-a) .scene-transition-beam,
body:not(.route-variant-a) .hero-meta,
body:not(.route-variant-a) .hero-logo-mark,
body:not(.route-variant-a) .hero-loop-video,
body:not(.route-variant-a) .hero-visual-frame,
body:not(.route-variant-a) .hero-visual-scrim,
body:not(.route-variant-a) .question-scene-title,
body:not(.route-variant-a) .question-kicker,
body:not(.route-variant-a) .question-copy,
body:not(.route-variant-a) .question-whisper,
body:not(.route-variant-a) .question-visual,
body:not(.route-variant-a) .question-orb,
body:not(.route-variant-a) .question-rails,
body:not(.route-variant-a) .progress-head,
body:not(.route-variant-a) .top-rail {
  display: none !important;
}

body:not(.route-variant-a)::before,
body:not(.route-variant-a)::after,
body:not(.route-variant-a) .scene-panel::before,
body:not(.route-variant-a) .scene-panel::after,
body:not(.route-variant-a) .scene-panel-question::before,
body:not(.route-variant-a) .scene-panel-question::after {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a),
body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame,
body:not(.route-variant-a) .scene,
body:not(.route-variant-a) .scene-active {
  min-height: 100dvh !important;
  height: 100dvh !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame {
  padding: 0 !important;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-loading,
body:not(.route-variant-a) .scene-panel-question {
  min-height: 100dvh !important;
  height: 100dvh !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) .hero-bg-art,
body:not(.route-variant-a) .hero-wordmark-art,
body:not(.route-variant-a) .hero-title-art,
body:not(.route-variant-a) .hero-desc-art,
body:not(.route-variant-a) .question-scene-main,
body:not(.route-variant-a) .question-scene-title,
body:not(.route-variant-a) .question-orb,
body:not(.route-variant-a) .question-rails {
  -webkit-user-drag: none !important;
  user-select: none !important;
  pointer-events: none !important;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero {
  position: relative !important;
  isolation: isolate !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  position: relative !important;
  width: 100% !important;
  min-height: 100% !important;
  height: 100% !important;
  padding: max(10px, env(safe-area-inset-top, 0px)) 16px max(14px, env(safe-area-inset-bottom, 0px)) !important;
  display: block !important;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  position: absolute !important;
  inset: max(8px, env(safe-area-inset-top, 0px)) 16px auto !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: block !important;
  margin: 0 !important;
  font-size: 0.8rem !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  color: #65568a !important;
  text-transform: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(84vw, 18rem) !important;
  max-width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute !important;
  left: 50% !important;
  top: 47.5% !important;
  width: min(80vw, 18rem) !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(184px + env(safe-area-inset-bottom, 0px)) !important;
  width: min(88%, 20.4rem) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  z-index: 3 !important;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  width: 100% !important;
  display: block !important;
}

body:not(.route-variant-a) #scene-intro .hero-lead,
body:not(.route-variant-a) #scene-intro .hero-note {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  position: absolute !important;
  left: 50% !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(88%, 20.4rem) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  display: grid !important;
  gap: 12px !important;
  z-index: 3 !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 74px !important;
  padding: 0 !important;
  background: url("./designer/main/main-button.webp") center center / 100% 100% no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  gap: 2px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1rem, 4.5vw, 1.35rem) !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1px #7f6e9a !important;
  text-shadow: 0 2px 0 rgba(127, 110, 154, 0.25) !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  font-size: 0.78rem !important;
  line-height: 1 !important;
  color: #ffffff !important;
  -webkit-text-stroke: 0.6px #7f6e9a !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-label {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative !important;
  isolation: isolate !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question::before {
  content: "AI GOOD brother" !important;
  position: absolute !important;
  top: max(12px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 3 !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: #635683 !important;
  letter-spacing: 0.01em !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  position: absolute !important;
  inset: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  position: absolute !important;
  top: max(72px, calc(env(safe-area-inset-top, 0px) + 60px)) !important;
  left: 50% !important;
  width: min(84%, 19.5rem) !important;
  min-height: 252px !important;
  margin: 0 !important;
  padding: 48px 20px 22px !important;
  transform: translateX(-50%) !important;
  background: url("./designer/question/question-frame.png") center center / 100% 100% no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  z-index: 3 !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress) !important;
  position: absolute !important;
  top: 18px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: block !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: 0.98rem !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.2px #8a74b1 !important;
  paint-order: stroke fill !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  min-height: 0 !important;
  margin: 0 auto !important;
  max-width: 10ch !important;
  font-size: clamp(1.34rem, 6vw, 1.84rem) !important;
  line-height: 1.42 !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1.2px #8a74b1 !important;
  text-shadow: 0 2px 0 rgba(127, 110, 154, 0.2) !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  position: absolute !important;
  left: 50% !important;
  bottom: max(16px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(84%, 19.5rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
  display: grid !important;
  gap: 12px !important;
  z-index: 3 !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 72px !important;
  padding: 0 18px !important;
  background: url("./designer/question/question-button.png") center center / 100% 100% no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  color: #ffffff !important;
  font-size: clamp(1rem, 4.2vw, 1.26rem) !important;
  line-height: 1.18 !important;
  -webkit-text-stroke: 0.9px #8a74b1 !important;
}

body:not(.route-variant-a) #scene-question .answer-button::before,
body:not(.route-variant-a) #scene-question .answer-button::after,
body:not(.route-variant-a) #scene-question .answer-button-mark {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button.is-active {
  filter: brightness(0.98) saturate(1.05) !important;
  transform: scale(0.992) !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(82vw, 16.8rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 46.2% !important;
    width: min(78vw, 16.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    width: min(90%, 18.8rem) !important;
    bottom: calc(164px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(90%, 18.8rem) !important;
    gap: 10px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 66px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-title {
    font-size: clamp(0.95rem, 4.4vw, 1.16rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-meta {
    font-size: 0.72rem !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: max(62px, calc(env(safe-area-inset-top, 0px) + 50px)) !important;
    width: min(83%, 18.1rem) !important;
    min-height: 214px !important;
    padding: 42px 16px 18px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    font-size: clamp(1.18rem, 5.8vw, 1.58rem) !important;
    max-width: 9.8ch !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(83%, 18.1rem) !important;
    gap: 10px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 60px !important;
    font-size: clamp(0.94rem, 4vw, 1.08rem) !important;
  }
}

@media (min-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 48.2% !important;
    width: min(74vw, 18.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(188px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: max(84px, calc(env(safe-area-inset-top, 0px) + 72px)) !important;
    width: min(82%, 20rem) !important;
    min-height: 266px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(82%, 20rem) !important;
  }
}

/* Final fit correction after rendered review */
body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero::before {
  content: "AI GOOD brother" !important;
  position: absolute !important;
  top: max(10px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: #65568a !important;
  letter-spacing: 0.01em !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(calc(100vw - 86px), 16.6rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  top: 48.6% !important;
  width: min(calc(100vw - 104px), 17rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  bottom: calc(154px + env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100vw - 42px), 19.4rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100vw - 42px), 19.4rem) !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 68px !important;
}

body:not(.route-variant-a) #scene-question .question-copy,
body:not(.route-variant-a) #scene-question .question-kicker,
body:not(.route-variant-a) #scene-question .question-whisper {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  top: max(78px, calc(env(safe-area-inset-top, 0px) + 64px)) !important;
  width: min(calc(100vw - 42px), 19rem) !important;
  min-height: 232px !important;
  padding: 42px 18px 18px !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  display: block !important;
  width: 100% !important;
  max-width: 10.5ch !important;
  min-height: 0 !important;
  font-size: clamp(1.28rem, 5.6vw, 1.72rem) !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100vw - 42px), 19rem) !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 58px !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  place-items: center !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  display: block !important;
  width: 100% !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  word-break: keep-all !important;
  text-wrap: balance !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100vw - 96px), 15.5rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 47.2% !important;
    width: min(calc(100vw - 112px), 15.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(144px + env(safe-area-inset-bottom, 0px)) !important;
    width: min(calc(100vw - 34px), 18.6rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(calc(100vw - 34px), 18.6rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: max(64px, calc(env(safe-area-inset-top, 0px) + 50px)) !important;
    width: min(calc(100vw - 34px), 17.6rem) !important;
    min-height: 192px !important;
    padding: 36px 14px 14px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    font-size: clamp(1.12rem, 5.3vw, 1.46rem) !important;
    max-width: 10ch !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100vw - 34px), 17.6rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 52px !important;
    padding: 0 14px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button-text {
    font-size: clamp(0.9rem, 3.9vw, 1rem) !important;
  }
}

@media (min-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100vw - 96px), 17rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(calc(100vw - 116px), 17.5rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(162px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: max(88px, calc(env(safe-area-inset-top, 0px) + 74px)) !important;
    width: min(calc(100vw - 46px), 19.6rem) !important;
    min-height: 248px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100vw - 46px), 19.6rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 64px !important;
  }
}

/* Panel-relative correction after mobile viewport review */
body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(calc(100% - 76px), 16.4rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  width: min(calc(100% - 98px), 16.8rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  width: min(calc(100% - 30px), 19.1rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(calc(100% - 30px), 19.1rem) !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  top: max(72px, calc(env(safe-area-inset-top, 0px) + 58px)) !important;
  width: min(calc(100% - 30px), 18.8rem) !important;
  min-height: 214px !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(calc(100% - 30px), 18.8rem) !important;
  gap: 8px !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 54px !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100% - 88px), 15.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(calc(100% - 110px), 15rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    width: min(calc(100% - 26px), 18.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(calc(100% - 26px), 18.2rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: max(60px, calc(env(safe-area-inset-top, 0px) + 46px)) !important;
    width: min(calc(100% - 24px), 17.2rem) !important;
    min-height: 180px !important;
    padding: 34px 14px 12px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    font-size: clamp(1.06rem, 5.1vw, 1.38rem) !important;
    line-height: 1.34 !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100% - 24px), 17.2rem) !important;
    bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
    gap: 8px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 48px !important;
  }
}

/* Final device-fit pass: pastel main/question */
body:not(.route-variant-a) {
  background: url("./designer/main/global-bg.webp") center center / cover no-repeat !important;
}

body:not(.route-variant-a)::before,
body:not(.route-variant-a)::after,
body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame,
body:not(.route-variant-a) .scene,
body:not(.route-variant-a) .scene-active,
body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-loading {
  min-height: 100dvh !important;
  height: 100dvh !important;
}

body:not(.route-variant-a) .site-shell {
  padding: 0 !important;
}

body:not(.route-variant-a) .app-frame {
  width: min(100%, var(--shell-width)) !important;
  margin: 0 auto !important;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-loading {
  padding: max(8px, env(safe-area-inset-top, 0px)) 14px max(10px, env(safe-area-inset-bottom, 0px)) !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) .hero-title-art,
body:not(.route-variant-a) .hero-bg-art,
body:not(.route-variant-a) .hero-wordmark-art,
body:not(.route-variant-a) .hero-desc-art,
body:not(.route-variant-a) .question-scene-main,
body:not(.route-variant-a) .question-scene-title {
  -webkit-user-drag: none !important;
  user-select: none !important;
  pointer-events: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-loop-video,
body:not(.route-variant-a) #scene-intro .hero-visual-scrim,
body:not(.route-variant-a) #scene-intro .hero-visual-frame,
body:not(.route-variant-a) #scene-intro .hero-logo-mark {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  width: min(100%, 390px) !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: max(8px, env(safe-area-inset-top, 0px)) 14px max(10px, env(safe-area-inset-bottom, 0px)) !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto auto !important;
  align-items: start !important;
  justify-items: center !important;
  gap: 8px !important;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  gap: 4px !important;
  justify-items: center !important;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 296px) !important;
  max-width: 84vw !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute !important;
  left: 50% !important;
  top: 66% !important;
  z-index: 1 !important;
  width: min(74%, 272px) !important;
  transform: translate(-50%, -50%) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 334px) !important;
  margin: 0 auto !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  margin-top: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-lead,
body:not(.route-variant-a) #scene-intro .hero-note {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 74px !important;
  padding: 11px 18px 14px !important;
  background: url("./designer/main/main-button.png") center / 100% 100% no-repeat !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.06rem, 4.2vw, 1.44rem) !important;
  line-height: 1.08 !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  font-size: 0.8rem !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  padding-top: max(10px, env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question::before {
  top: max(8px, env(safe-area-inset-top, 0px)) !important;
  font-size: 0.82rem !important;
  letter-spacing: -0.01em !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  inset: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  width: min(100%, 348px) !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center top !important;
}

body:not(.route-variant-a) #scene-question .progress-head,
body:not(.route-variant-a) #scene-question .status-badge,
body:not(.route-variant-a) #scene-question #questionMeta {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 322px) !important;
  min-height: 214px !important;
  height: 214px !important;
  margin: clamp(52px, 8svh, 82px) auto 10px !important;
  padding: 18px 24px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: url("./designer/question/question-frame.png") center / 100% 100% no-repeat !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  top: 16px !important;
  font-size: 0.96rem !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  max-width: 84% !important;
  min-height: 0 !important;
  margin: 16px auto 0 !important;
  font-size: clamp(1.1rem, 4.8vw, 1.62rem) !important;
  line-height: 1.34 !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 334px) !important;
  margin: 0 auto !important;
  gap: 8px !important;
  padding-bottom: 0 !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 64px !important;
  background: url("./designer/question/question-button.png") center / 100% 100% no-repeat !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  max-width: 82% !important;
  margin: 0 auto !important;
  font-size: clamp(0.88rem, 3.5vw, 1.06rem) !important;
  line-height: 1.28 !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) .app-frame {
    max-width: none !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 274px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 318px) !important;
    height: clamp(224px, 37svh, 300px) !important;
    margin-bottom: -18px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(72%, 248px) !important;
    top: 65.2% !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 304px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 68px !important;
    padding: 10px 16px 13px !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(100%, 314px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 290px) !important;
    min-height: 196px !important;
    height: 196px !important;
    margin-top: clamp(40px, 6.8svh, 64px) !important;
    padding: 16px 18px 14px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    max-width: 86% !important;
    font-size: clamp(1rem, 4.7vw, 1.38rem) !important;
    line-height: 1.28 !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 304px) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 58px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button-text {
    max-width: 84% !important;
    font-size: clamp(0.82rem, 3.4vw, 0.94rem) !important;
  }
}

@media (max-width: 390px) and (max-height: 700px) {
  body:not(.route-variant-a) .scene-panel,
  body:not(.route-variant-a) .scene-panel-hero,
  body:not(.route-variant-a) .scene-panel-question {
    padding-top: max(6px, env(safe-area-inset-top, 0px)) !important;
    padding-bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-copy {
    gap: 6px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 258px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 300px) !important;
    height: 214px !important;
    margin-bottom: -12px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 64.8% !important;
    width: min(70%, 224px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 292px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 60px !important;
    padding: 8px 14px 11px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-title {
    font-size: clamp(0.96rem, 4.1vw, 1.16rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-meta {
    font-size: 0.72rem !important;
  }

  body:not(.route-variant-a) #scene-question .scene-panel-question::before {
    top: max(6px, env(safe-area-inset-top, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(100%, 300px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 276px) !important;
    min-height: 184px !important;
    height: 184px !important;
    margin-top: 34px !important;
    margin-bottom: 8px !important;
    padding: 14px 16px 12px !important;
  }

  body:not(.route-variant-a) #scene-question .question-card::before {
    top: 14px !important;
    font-size: 0.9rem !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    max-width: 88% !important;
    margin-top: 12px !important;
    font-size: clamp(0.95rem, 4.8vw, 1.22rem) !important;
    line-height: 1.24 !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 292px) !important;
    gap: 8px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 54px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button-text {
    font-size: clamp(0.78rem, 3.3vw, 0.9rem) !important;
  }
}

/* EOF overrides: keep mobile shell full-width and center pastel scenes */
body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame {
  width: 100% !important;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) .site-shell,
  body:not(.route-variant-a) .app-frame {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
  }
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-card,
body:not(.route-variant-a) #scene-question .answer-stack,
body:not(.route-variant-a) #scene-question .answer-button {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  margin: 0 auto !important;
  align-items: center !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

/* EOF final tune based on device review */
body:not(.route-variant-a) #scene-intro .hero-copy {
  width: min(100%, 22rem) !important;
  min-height: 100svh !important;
  padding: max(12px, env(safe-area-inset-top, 0px)) 16px max(14px, env(safe-area-inset-bottom, 0px)) !important;
  grid-template-rows: auto minmax(0, 1fr) auto auto !important;
  gap: 0 !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: relative !important;
  width: calc(100% + 32px) !important;
  height: clamp(360px, 48svh, 440px) !important;
  margin: 0 -16px -20px !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center 18% !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  left: 50% !important;
  top: 58% !important;
  width: min(78%, 17rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 20rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  margin-top: -8px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 74px !important;
  padding: 12px 18px 14px !important;
  background: url("./designer/main/main-button.png") center / 100% 100% no-repeat !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  padding: max(12px, env(safe-area-inset-top, 0px)) 16px max(14px, env(safe-area-inset-bottom, 0px)) !important;
  gap: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  position: absolute !important;
  inset: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 19.25rem) !important;
  min-height: 232px !important;
  height: auto !important;
  margin: 0 auto !important;
  margin-top: clamp(118px, 16svh, 148px) !important;
  padding: 16px 22px 20px !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  min-height: 188px !important;
  margin-top: 12px !important;
  font-size: clamp(1.46rem, 6.6vw, 1.92rem) !important;
  line-height: 1.48 !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 19.5rem) !important;
  gap: 10px !important;
  margin: 0 auto !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 72px !important;
  padding: 12px 18px 14px !important;
  background: url("./designer/question/question-button.png") center / 100% 100% no-repeat !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  font-size: clamp(1rem, 4.1vw, 1.24rem) !important;
  line-height: 1.28 !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-visual {
    height: 208px !important;
    margin-bottom: -18px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(90%, 17.2rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 16.9rem) !important;
    min-height: 198px !important;
    margin-top: 70px !important;
    padding: 12px 16px 16px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 150px !important;
    font-size: clamp(1.12rem, 5.8vw, 1.42rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 16.9rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 56px !important;
  }
}

/* EOF final override: light-theme intro/question fidelity */
body:not(.route-variant-a) {
  background: #d7a7cf url("./designer/main/bg.webp") center center / cover no-repeat fixed !important;
}

@media (orientation: portrait) {
  body:not(.route-variant-a) {
    background-image: url("./designer/main/bg-portrait.webp") !important;
  }
}

body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .scene-transition-ring,
body:not(.route-variant-a) .scene-transition-ring-alt,
body:not(.route-variant-a) .scene-transition-beam,
body:not(.route-variant-a) .top-rail,
body:not(.route-variant-a) .hero-meta,
body:not(.route-variant-a) .hero-logo-mark,
body:not(.route-variant-a) .hero-loop-video,
body:not(.route-variant-a) .hero-visual-frame,
body:not(.route-variant-a) .hero-visual-scrim,
body:not(.route-variant-a) .question-scene-title,
body:not(.route-variant-a) .question-kicker,
body:not(.route-variant-a) .question-copy,
body:not(.route-variant-a) .question-whisper,
body:not(.route-variant-a) .question-visual,
body:not(.route-variant-a) .question-orb,
body:not(.route-variant-a) .question-rails,
body:not(.route-variant-a) .progress-head {
  display: none !important;
}

body:not(.route-variant-a)::before,
body:not(.route-variant-a)::after,
body:not(.route-variant-a) .scene-panel::before,
body:not(.route-variant-a) .scene-panel::after,
body:not(.route-variant-a) .scene-panel-question::after {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a),
body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame,
body:not(.route-variant-a) .scene,
body:not(.route-variant-a) .scene-active,
body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-question {
  min-height: 100dvh !important;
  height: 100dvh !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame,
body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-question {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) .hero-bg-art,
body:not(.route-variant-a) .hero-wordmark-art,
body:not(.route-variant-a) .hero-title-art,
body:not(.route-variant-a) .hero-desc-art,
body:not(.route-variant-a) .question-scene-main,
body:not(.route-variant-a) .question-scene-title {
  -webkit-user-drag: none !important;
  user-select: none !important;
  pointer-events: none !important;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero {
  position: relative !important;
  isolation: isolate !important;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero::before {
  content: "AI GOOD brother" !important;
  position: absolute !important;
  top: max(10px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
  color: #65568a !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: max(10px, env(safe-area-inset-top, 0px)) 15px max(10px, env(safe-area-inset-bottom, 0px)) !important;
  display: block !important;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  position: absolute !important;
  top: max(28px, calc(env(safe-area-inset-top, 0px) + 18px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;
  width: calc(100% - 30px) !important;
  display: flex !important;
  justify-content: center !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(calc(100% - 92px), 16.1rem) !important;
  max-width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute !important;
  left: 50% !important;
  top: 48% !important;
  width: min(calc(100% - 110px), 16.4rem) !important;
  transform: translateX(-50%) !important;
  z-index: 3 !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(148px + env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100% - 26px), 18.8rem) !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  z-index: 4 !important;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  display: block !important;
  width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-lead,
body:not(.route-variant-a) #scene-intro .hero-note {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  position: absolute !important;
  left: 50% !important;
  bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100% - 26px), 18.8rem) !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  display: grid !important;
  gap: 10px !important;
  z-index: 4 !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 64px !important;
  padding: 0 !important;
  background: url("./designer/main/main-button.webp") center center / 100% 100% no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-content: center !important;
  gap: 1px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-label {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  color: #ffffff !important;
  font-size: clamp(0.98rem, 4.2vw, 1.22rem) !important;
  -webkit-text-stroke: 1px #7f6e9a !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  color: #ffffff !important;
  font-size: 0.74rem !important;
  -webkit-text-stroke: 0.6px #7f6e9a !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative !important;
  isolation: isolate !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question::before {
  content: "AI GOOD brother" !important;
  position: absolute !important;
  top: max(12px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;
  color: #635683 !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  position: absolute !important;
  inset: 0 !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-question .question-copy,
body:not(.route-variant-a) #scene-question .question-kicker,
body:not(.route-variant-a) #scene-question .question-whisper {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  position: absolute !important;
  top: max(66px, calc(env(safe-area-inset-top, 0px) + 52px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(calc(100% - 24px), 17.8rem) !important;
  min-height: 188px !important;
  margin: 0 !important;
  padding: 34px 14px 12px !important;
  background: url("./designer/question/question-frame.png") center center / 100% 100% no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 4 !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress) !important;
  position: absolute !important;
  top: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: 0.94rem !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.1px #8a74b1 !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  display: block !important;
  width: 100% !important;
  max-width: 10ch !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  color: #ffffff !important;
  font-size: clamp(1.06rem, 5.2vw, 1.42rem) !important;
  line-height: 1.34 !important;
  text-align: center !important;
  -webkit-text-stroke: 1.05px #8a74b1 !important;
  text-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  position: absolute !important;
  left: 50% !important;
  bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(calc(100% - 24px), 17.8rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 8px !important;
  z-index: 4 !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 48px !important;
  padding: 0 14px !important;
  background: url("./designer/question/question-button.png") center center / 100% 100% no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
}

body:not(.route-variant-a) #scene-question .answer-button::before,
body:not(.route-variant-a) #scene-question .answer-button::after,
body:not(.route-variant-a) #scene-question .answer-button-mark {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  display: block !important;
  width: 100% !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: clamp(0.9rem, 3.8vw, 1rem) !important;
  line-height: 1.2 !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: keep-all !important;
  writing-mode: horizontal-tb !important;
  -webkit-text-stroke: 0.9px #8a74b1 !important;
}

@media (min-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100% - 80px), 17rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(calc(100% - 102px), 17.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(156px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(calc(100% - 34px), 19.4rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: max(84px, calc(env(safe-area-inset-top, 0px) + 68px)) !important;
    width: min(calc(100% - 34px), 19.4rem) !important;
    min-height: 232px !important;
    padding: 40px 18px 14px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    font-size: clamp(1.2rem, 4.6vw, 1.56rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100% - 34px), 19.4rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 56px !important;
  }
}

/* EOF correction v2: intro title fit + question flow layout */
body:not(.route-variant-a) #scene-intro .hero-header {
  top: max(24px, calc(env(safe-area-inset-top, 0px) + 14px)) !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(calc(100% - 110px), 15.6rem) !important;
  transform: translateX(-4px) !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  width: min(calc(100% - 122px), 15.9rem) !important;
  top: 47.4% !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  bottom: calc(144px + env(safe-area-inset-bottom, 0px)) !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  display: grid !important;
  grid-template-rows: auto auto 1fr auto !important;
  justify-items: center !important;
  align-content: start !important;
  padding-top: max(12px, env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: min(calc(100% - 24px), 17.8rem) !important;
  min-height: 186px !important;
  margin: 56px auto 10px !important;
  padding: 34px 14px 12px !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  max-width: 10ch !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  align-self: end !important;
  width: min(calc(100% - 24px), 17.8rem) !important;
  margin: auto auto 6px !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 46px !important;
}

@media (min-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100% - 100px), 16.3rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(calc(100% - 118px), 16.6rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(150px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(calc(100% - 34px), 19rem) !important;
    min-height: 224px !important;
    margin-top: 74px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100% - 34px), 19rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 52px !important;
  }
}

/* 2026-04-14 terminal override: pastel intro/question fit */
@media (max-width: 767px) {
  body:not(.route-variant-a) .app-frame {
    width: 100% !important;
    max-width: none !important;
  }
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero {
  background: url("./designer/main/main-namu.webp") center center / cover no-repeat !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  padding: max(10px, env(safe-area-inset-top, 0px)) 14px max(12px, env(safe-area-inset-bottom, 0px)) !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  display: block !important;
  width: min(calc(100% - 56px), 17.2rem) !important;
  margin: 0 auto !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute !important;
  left: 50% !important;
  top: 47% !important;
  width: min(calc(100% - 88px), 16.4rem) !important;
  transform: translate(-50%, -50%) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(166px + env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100% - 28px), 20.2rem) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  position: absolute !important;
  left: 50% !important;
  bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100% - 28px), 20.2rem) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: max(54px, env(safe-area-inset-top, 0px) + 40px) 0 max(12px, env(safe-area-inset-bottom, 0px)) !important;
  background: url("./designer/question/bg.webp") center center / cover no-repeat !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  position: relative !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: min(calc(100% - 28px), 19rem) !important;
  min-height: 206px !important;
  height: auto !important;
  margin: 0 auto 10px !important;
  padding: 38px 18px 16px !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  max-width: 92% !important;
  min-height: 144px !important;
  margin: 0 auto !important;
  font-size: clamp(1.18rem, 5.2vw, 1.6rem) !important;
  line-height: 1.32 !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  transform: none !important;
  width: min(calc(100% - 28px), 19rem) !important;
  margin: 0 auto !important;
  gap: 8px !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 58px !important;
  display: grid !important;
  place-items: center !important;
  padding: 8px 18px 10px !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  white-space: normal !important;
  font-size: clamp(0.84rem, 3.8vw, 1rem) !important;
  line-height: 1.28 !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100% - 96px), 15rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 45.7% !important;
    width: min(calc(100% - 110px), 14.8rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(148px + env(safe-area-inset-bottom, 0px)) !important;
    width: min(calc(100% - 28px), 18.8rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(calc(100% - 28px), 18.8rem) !important;
  }

  body:not(.route-variant-a) #scene-question .scene-panel-question {
    padding-top: max(42px, env(safe-area-inset-top, 0px) + 30px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(calc(100% - 24px), 17.8rem) !important;
    min-height: 184px !important;
    padding: 34px 16px 14px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 126px !important;
    font-size: clamp(1.04rem, 5.2vw, 1.42rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100% - 24px), 17.8rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 52px !important;
  }
}

@media (min-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100% - 68px), 18rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 48% !important;
    width: min(calc(100% - 100px), 17.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(176px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-question .scene-panel-question {
    padding-top: max(64px, env(safe-area-inset-top, 0px) + 48px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(calc(100% - 34px), 19.8rem) !important;
    min-height: 224px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 154px !important;
    font-size: clamp(1.28rem, 4.8vw, 1.7rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100% - 34px), 19.8rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 62px !important;
  }
}

body:not(.route-variant-a) #scene-question .question-card,
body:not(.route-variant-a) #scene-question .answer-stack,
body:not(.route-variant-a) #scene-question .answer-button {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  justify-self: stretch !important;
  align-self: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  white-space: normal !important;
}

body:not(.route-variant-a) #scene-question .question-card::after {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  margin: 0 !important;
  display: grid;
  align-content: center;
  min-height: 206px;
  font-size: clamp(1.58rem, 6.5vw, 2.08rem) !important;
  line-height: 1.5 !important;
  text-align: center !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1.55px #8a74b1;
  text-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 21rem) !important;
  margin: 0 auto !important;
  align-self: end !important;
  gap: 10px !important;
  padding: 0 !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 76px !important;
  padding: 12px 20px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-button.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button::before,
body:not(.route-variant-a) #scene-question .answer-button::after,
body:not(.route-variant-a) #scene-question .answer-button-mark {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: clamp(1rem, 4.2vw, 1.28rem) !important;
  line-height: 1.34 !important;
  text-align: center !important;
  -webkit-text-stroke: 1.25px #8a74b1;
  paint-order: stroke fill;
  text-shadow: none !important;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-copy,
  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 19.6rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 20rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 19.6rem) !important;
    height: clamp(238px, 31svh, 300px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(79%, 17.3rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 74px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-title {
    font-size: clamp(1.04rem, 4.4vw, 1.4rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 18.2rem) !important;
    min-height: 232px !important;
    padding: 14px 20px 20px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 188px !important;
    font-size: clamp(1.44rem, 6.8vw, 1.9rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 19.2rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 72px !important;
  }
}

/* Final review pass: device-fit intro/question */
body:not(.route-variant-a) {
  background: url("./designer/main/bg-portrait.webp") center / cover no-repeat fixed !important;
}

body:not(.route-variant-a)::before,
body:not(.route-variant-a)::after {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  gap: 6px !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  width: min(100%, 21rem) !important;
  height: clamp(332px, 46svh, 426px) !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  width: 100% !important;
  height: 100% !important;
  transform: translateX(-50%) !important;
  object-fit: cover !important;
  object-position: center top !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  top: 59% !important;
  width: min(80%, 17.8rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 20.8rem) !important;
}

body:not(.route-variant-a) #scene-question .progress-head {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: min(100%, 21rem) !important;
  height: 100% !important;
  transform: translateX(-50%) !important;
  object-fit: contain !important;
  object-position: center top !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 18.8rem) !important;
  min-height: 240px !important;
  padding: 18px 22px 18px !important;
  margin: 0 auto !important;
  align-self: center !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress) !important;
  position: absolute !important;
  top: 17px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.2px #8a74b1 !important;
  paint-order: stroke fill !important;
  text-shadow: none !important;
  display: block !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  min-height: 192px !important;
  margin-top: 18px !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 19.8rem) !important;
  margin: 0 auto 2px !important;
  gap: 8px !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 70px !important;
}

@media (max-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 19.8rem) !important;
    height: clamp(312px, 43svh, 384px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(80%, 17.2rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(100%, 19.8rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 18.1rem) !important;
    min-height: 228px !important;
    padding: 16px 20px 16px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 182px !important;
    margin-top: 14px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 19rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 68px !important;
  }
}

@media (max-width: 375px) {
  body:not(.route-variant-a) #scene-intro .hero-copy,
  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 18.7rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 18.9rem) !important;
    height: clamp(290px, 41svh, 350px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(100%, 18.9rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 17.3rem) !important;
    min-height: 214px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 168px !important;
    font-size: clamp(1.34rem, 6.5vw, 1.72rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 18rem) !important;
  }
}

/* Agent-reviewed device fit */
body:not(.route-variant-a)::after {
  background: linear-gradient(180deg, rgba(245, 213, 236, 0.03), rgba(225, 188, 221, 0.08)) !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  width: min(100%, 392px) !important;
  min-height: 100% !important;
  padding: max(8px, env(safe-area-inset-top, 0px)) 16px max(10px, env(safe-area-inset-bottom, 0px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 19.6rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  width: min(100%, 21.1rem) !important;
  height: clamp(304px, 41svh, 408px) !important;
  margin: 0 auto -54px !important;
  overflow: visible !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  height: 100% !important;
  transform: translateX(-50%) scale(1.12) !important;
  object-fit: contain !important;
  object-position: center top !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  top: 57.5% !important;
  width: min(84%, 18.6rem) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  width: min(100%, 20.9rem) !important;
  margin-top: auto !important;
  transform: translateY(-10px) !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  width: min(100%, 20.9rem) !important;
  margin: -6px auto 0 !important;
  gap: 12px !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  padding-top: max(10px, env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
}

body:not(.route-variant-a) #scene-question .progress-head {
  display: block !important;
  width: 100% !important;
  min-height: 22px !important;
  margin: 0 0 8px !important;
}

body:not(.route-variant-a) #scene-question .status-badge {
  display: none !important;
}

body:not(.route-variant-a) #scene-question #questionMeta {
  position: static !important;
  display: block !important;
  width: max-content !important;
  margin: 0 auto !important;
  transform: none !important;
  font-size: 0.98rem !important;
  line-height: 1 !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1.2px #8a74b1 !important;
  paint-order: stroke fill !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  width: min(100%, 19.9rem) !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  width: min(100%, 20.4rem) !important;
  min-height: 272px !important;
  margin: clamp(92px, 14svh, 136px) auto 16px !important;
  padding: 18px 24px 22px !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  min-height: 214px !important;
  margin: 0 !important;
  font-size: clamp(1.46rem, 6vw, 1.96rem) !important;
  line-height: 1.42 !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 20.4rem) !important;
  margin: 0 auto !important;
  align-self: auto !important;
  gap: 12px !important;
  padding: 0 !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 78px !important;
  padding: 12px 20px 14px !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 17.9rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 19.7rem) !important;
    height: 282px !important;
    margin-bottom: -46px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 19.4rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 70px !important;
    padding: 10px 18px 14px !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 18.9rem) !important;
    min-height: 244px !important;
    margin-top: 84px !important;
    margin-bottom: 12px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 190px !important;
    font-size: clamp(1.34rem, 6.5vw, 1.78rem) !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(100%, 18.7rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 19.1rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 72px !important;
  }
}

@media (max-width: 390px) and (max-height: 700px) {
  body:not(.route-variant-a) #scene-intro .hero-copy {
    padding-top: 6px !important;
    padding-bottom: 8px !important;
    gap: 4px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 16.9rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 18.3rem) !important;
    height: 238px !important;
    margin-bottom: -34px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(78%, 15.8rem) !important;
    top: 56.5% !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 18.2rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    transform: translateY(-6px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 62px !important;
    padding: 8px 16px 12px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-title {
    font-size: clamp(0.98rem, 4.2vw, 1.22rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-meta {
    font-size: 0.76rem !important;
  }
}

/* Question progress final choice */
body:not(.route-variant-a) #scene-question .progress-head,
body:not(.route-variant-a) #scene-question .status-badge,
body:not(.route-variant-a) #scene-question #questionMeta {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress) !important;
  position: absolute !important;
  top: 18px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: block !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: 0.98rem !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.2px #8a74b1 !important;
  paint-order: stroke fill !important;
  text-shadow: none !important;
}

/* 2026-04-14 final viewport-fit pastel pass */
body:not(.route-variant-a) {
  background: url("./designer/main/bg.webp") center center / cover no-repeat fixed !important;
}

body:not(.route-variant-a)::before,
body:not(.route-variant-a)::after,
body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .scene-transition,
body:not(.route-variant-a) .top-rail,
body:not(.route-variant-a) .hero-meta,
body:not(.route-variant-a) .hero-logo-mark,
body:not(.route-variant-a) .hero-visual-scrim,
body:not(.route-variant-a) .hero-visual-frame,
body:not(.route-variant-a) #scene-question .question-scene-title,
body:not(.route-variant-a) #scene-question .question-kicker,
body:not(.route-variant-a) #scene-question .question-copy,
body:not(.route-variant-a) #scene-question .question-whisper,
body:not(.route-variant-a) #scene-question .question-visual,
body:not(.route-variant-a) #scene-question .progress-head {
  display: none !important;
  content: none !important;
}

body:not(.route-variant-a) .site-shell,
body:not(.route-variant-a) .app-frame,
body:not(.route-variant-a) .scene,
body:not(.route-variant-a) .scene-active {
  min-height: 100dvh !important;
  height: 100dvh !important;
}

body:not(.route-variant-a) .site-shell {
  padding: 0 !important;
  background: transparent !important;
}

body:not(.route-variant-a) .app-frame {
  width: min(100%, var(--shell-width)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}

body.scene-intro-active:not(.route-variant-a),
body.scene-form-active:not(.route-variant-a),
body.scene-question-active:not(.route-variant-a),
body.scene-loading-active:not(.route-variant-a) {
  overflow: hidden !important;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-loading {
  min-height: 100dvh !important;
  height: 100dvh !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) .scene-panel-result {
  min-height: 100dvh !important;
  padding-top: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) .hero-bg-art,
body:not(.route-variant-a) .hero-wordmark-art,
body:not(.route-variant-a) .hero-desc-art,
body:not(.route-variant-a) .question-scene-main,
body:not(.route-variant-a) .question-orb,
body:not(.route-variant-a) .question-rails,
body:not(.route-variant-a) .question-scene-title {
  -webkit-user-drag: none !important;
  user-select: none !important;
  pointer-events: none !important;
}

body:not(.route-variant-a) #scene-intro .scene-panel-hero {
  position: relative !important;
  background: url("./designer/main/main-namu.webp") center center / cover no-repeat !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: max(8px, env(safe-area-inset-top, 0px)) 14px max(12px, env(safe-area-inset-bottom, 0px)) !important;
  display: block !important;
}

body:not(.route-variant-a) #scene-intro .hero-header,
body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-actions {
  position: relative !important;
  z-index: 2 !important;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  display: grid !important;
  justify-items: center !important;
  gap: 4px !important;
  padding-top: 8px !important;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: block !important;
  margin: 0 !important;
  font-size: 0.78rem !important;
  color: #6f56a5 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-title {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(calc(100vw - 38px), 17.8rem) !important;
  max-width: 100% !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-loop-video {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute !important;
  left: 50% !important;
  top: 46% !important;
  bottom: auto !important;
  width: min(calc(100vw - 78px), 16.9rem) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2 !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(170px + env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100% - 28px), 20.4rem) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
}

body:not(.route-variant-a) #scene-intro .hero-desc-art {
  width: 100% !important;
  height: auto !important;
}

body:not(.route-variant-a) #scene-intro .hero-lead,
body:not(.route-variant-a) #scene-intro .hero-note {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-actions {
  position: absolute !important;
  left: 50% !important;
  bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100% - 28px), 20.4rem) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  display: grid !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 74px !important;
  padding: 12px 18px 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/main/main-button.webp") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-label {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.06rem, 4.6vw, 1.46rem) !important;
  line-height: 1.04 !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-meta {
  margin-top: 4px !important;
  font-size: 0.82rem !important;
  line-height: 1.1 !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  position: relative !important;
  padding: 0 !important;
  background: url("./designer/question/bg.webp") center center / cover no-repeat !important;
}

body:not(.route-variant-a) #scene-question .question-scene-art {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body:not(.route-variant-a) #scene-question .question-card,
body:not(.route-variant-a) #scene-question .answer-stack {
  position: absolute !important;
  left: 50% !important;
  z-index: 2 !important;
  transform: translateX(-50%) !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  top: clamp(92px, 15svh, 126px) !important;
  width: min(calc(100vw - 34px), 19.4rem) !important;
  min-height: 226px !important;
  margin: 0 !important;
  padding: 42px 18px 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-frame.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress) !important;
  position: absolute !important;
  top: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: block !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: 0.96rem !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.2px #8a74b1 !important;
  paint-order: stroke fill !important;
  text-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 160px !important;
  max-width: 9ch !important;
  margin: 0 auto !important;
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: clamp(1.4rem, 6vw, 1.86rem) !important;
  line-height: 1.42 !important;
  text-align: center !important;
  -webkit-text-stroke: 1.35px #8a74b1 !important;
  text-shadow: none !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
  width: min(calc(100vw - 34px), 19.4rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 60px !important;
  padding: 10px 16px 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("./designer/question/question-button.png") center / 100% 100% no-repeat !important;
  box-shadow: none !important;
  filter: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button::before,
body:not(.route-variant-a) #scene-question .answer-button::after,
body:not(.route-variant-a) #scene-question .answer-button-mark {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  color: #ffffff !important;
  font-family: var(--font-playful) !important;
  font-size: clamp(0.98rem, 4vw, 1.24rem) !important;
  line-height: 1.28 !important;
  text-align: center !important;
  -webkit-text-stroke: 1.12px #8a74b1 !important;
  text-shadow: none !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(calc(100vw - 42px), 15.9rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 45.5% !important;
    width: min(calc(100vw - 88px), 14.9rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(154px + env(safe-area-inset-bottom, 0px)) !important;
    width: min(calc(100% - 30px), 19rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(calc(100% - 30px), 19rem) !important;
    gap: 8px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 66px !important;
    padding: 10px 16px 14px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-title {
    font-size: clamp(0.98rem, 4.2vw, 1.28rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta-meta {
    font-size: 0.76rem !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: 74px !important;
    width: min(calc(100vw - 30px), 18rem) !important;
    min-height: 196px !important;
    padding: 36px 16px 14px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 132px !important;
    font-size: clamp(1.18rem, 5.8vw, 1.52rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100vw - 30px), 18rem) !important;
    gap: 8px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 54px !important;
  }
}

@media (min-width: 430px) {
  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    top: 47.5% !important;
    width: min(calc(100vw - 88px), 17.6rem) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support {
    bottom: calc(180px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    top: 108px !important;
    width: min(calc(100vw - 40px), 20rem) !important;
    min-height: 252px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    min-height: 188px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(calc(100vw - 40px), 20rem) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 68px !important;
  }
}

/* Absolute final overrides for pastel implementation */
body:not(.route-variant-a) {
  background: url("./designer/main/global-bg.webp") center center / cover no-repeat !important;
}

body:not(.route-variant-a)::before,
body:not(.route-variant-a)::after,
body:not(.route-variant-a) .ambient-grid,
body:not(.route-variant-a) .ambient-noise,
body:not(.route-variant-a) .top-rail {
  content: none !important;
  display: none !important;
}

body:not(.route-variant-a) .scene-panel,
body:not(.route-variant-a) .scene-panel-hero,
body:not(.route-variant-a) .scene-panel-question,
body:not(.route-variant-a) .scene-panel-form,
body:not(.route-variant-a) .scene-panel-loading {
  padding: max(8px, env(safe-area-inset-top, 0px)) 14px max(10px, env(safe-area-inset-bottom, 0px)) !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) #scene-intro #introEyebrow {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-header {
  padding-top: 0 !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art,
body:not(.route-variant-a) #scene-intro .hero-bg-art,
body:not(.route-variant-a) #scene-intro .hero-wordmark-art,
body:not(.route-variant-a) #scene-intro .hero-desc-art,
body:not(.route-variant-a) #scene-question .question-scene-main,
body:not(.route-variant-a) #scene-question .question-scene-title {
  -webkit-user-drag: none !important;
  user-select: none !important;
  pointer-events: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual-scrim,
body:not(.route-variant-a) #scene-intro .hero-visual-frame,
body:not(.route-variant-a) #scene-intro .hero-visual-frame {
  display: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-copy {
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto auto !important;
  width: min(100%, 390px) !important;
  height: 100% !important;
  gap: 8px !important;
  padding: max(8px, env(safe-area-inset-top, 0px)) 14px max(10px, env(safe-area-inset-bottom, 0px)) !important;
}

body:not(.route-variant-a) #scene-intro .hero-title-art {
  width: min(100%, 296px) !important;
  max-width: 84vw !important;
}

body:not(.route-variant-a) #scene-intro .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
}

body:not(.route-variant-a) #scene-intro .hero-bg-art {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
  position: absolute !important;
  left: 50% !important;
  top: 66% !important;
  width: min(74%, 272px) !important;
  z-index: 1 !important;
  transform: translate(-50%, -50%) !important;
}

body:not(.route-variant-a) #scene-intro .hero-support,
body:not(.route-variant-a) #scene-intro .hero-actions {
  position: relative !important;
  inset: auto !important;
  width: min(100%, 334px) !important;
  margin: 0 auto !important;
  transform: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-support {
  margin-top: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: none !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta {
  min-height: 74px !important;
  padding: 11px 18px 14px !important;
  background: url("./designer/main/main-button.png") center / 100% 100% no-repeat !important;
}

body:not(.route-variant-a) #scene-intro .hero-cta-title {
  font-size: clamp(1.06rem, 4.2vw, 1.44rem) !important;
}

body:not(.route-variant-a) #scene-question .scene-panel-question {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
}

body:not(.route-variant-a) #scene-question .progress-head,
body:not(.route-variant-a) #scene-question .status-badge,
body:not(.route-variant-a) #scene-question #questionMeta {
  display: none !important;
}

body:not(.route-variant-a) #scene-question .question-scene-main {
  width: min(100%, 348px) !important;
}

body:not(.route-variant-a) #scene-question .question-card {
  top: auto !important;
  position: relative !important;
  width: min(100%, 322px) !important;
  min-height: 214px !important;
  height: 214px !important;
  margin: clamp(52px, 8svh, 82px) auto 10px !important;
  padding: 18px 24px 16px !important;
}

body:not(.route-variant-a) #scene-question .question-card::before {
  content: attr(data-progress) !important;
  display: block !important;
  top: 16px !important;
}

body:not(.route-variant-a) #scene-question .question-title {
  max-width: 84% !important;
  min-height: 0 !important;
  margin: 16px auto 0 !important;
  font-size: clamp(1.1rem, 4.8vw, 1.62rem) !important;
  line-height: 1.34 !important;
}

body:not(.route-variant-a) #scene-question .answer-stack {
  width: min(100%, 334px) !important;
  margin: 0 auto !important;
  gap: 8px !important;
}

body:not(.route-variant-a) #scene-question .answer-button {
  min-height: 64px !important;
}

body:not(.route-variant-a) #scene-question .answer-button-text {
  max-width: 82% !important;
  font-size: clamp(0.88rem, 3.5vw, 1.06rem) !important;
}

@media (max-width: 390px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 274px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 318px) !important;
    height: clamp(224px, 37svh, 300px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(72%, 248px) !important;
    top: 65.2% !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 304px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 68px !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(100%, 314px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 290px) !important;
    min-height: 196px !important;
    height: 196px !important;
    margin-top: clamp(40px, 6.8svh, 64px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    max-width: 86% !important;
    font-size: clamp(1rem, 4.7vw, 1.38rem) !important;
    line-height: 1.28 !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 304px) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 58px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button-text {
    max-width: 84% !important;
    font-size: clamp(0.82rem, 3.4vw, 0.94rem) !important;
  }
}

@media (max-width: 390px) and (max-height: 700px) {
  body:not(.route-variant-a) #scene-intro .hero-title-art {
    width: min(100%, 258px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-visual {
    width: min(100%, 300px) !important;
    height: 214px !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-wordmark-art {
    width: min(70%, 224px) !important;
    top: 64.8% !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-support,
  body:not(.route-variant-a) #scene-intro .hero-actions {
    width: min(100%, 292px) !important;
  }

  body:not(.route-variant-a) #scene-intro .hero-cta {
    min-height: 60px !important;
    padding: 8px 14px 11px !important;
  }

  body:not(.route-variant-a) #scene-question .question-scene-main {
    width: min(100%, 300px) !important;
  }

  body:not(.route-variant-a) #scene-question .question-card {
    width: min(100%, 276px) !important;
    min-height: 184px !important;
    height: 184px !important;
    margin-top: 34px !important;
  }

  body:not(.route-variant-a) #scene-question .question-title {
    max-width: 88% !important;
    font-size: clamp(0.95rem, 4.8vw, 1.22rem) !important;
    line-height: 1.24 !important;
  }

  body:not(.route-variant-a) #scene-question .answer-stack {
    width: min(100%, 292px) !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button {
    min-height: 54px !important;
  }

  body:not(.route-variant-a) #scene-question .answer-button-text {
    font-size: clamp(0.78rem, 3.3vw, 0.9rem) !important;
  }
}
