:root {
  --navy: #100761;
  --navy-2: #1b1376;
  --violet: #731cf4;
  --violet-2: #8a3cff;
  --ink: #171625;
  --muted: #696979;
  --line: #e7e6ef;
  --soft: #f7f6fb;
  --white: #ffffff;
  --danger: #b52238;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 60px rgba(28, 17, 82, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--white); }
body { margin: 0; min-width: 320px; min-height: 100vh; min-height: 100svh; overflow-x: hidden; background: var(--white); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }

.app-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(115, 28, 244, .055), transparent 24%),
    radial-gradient(circle at 7% 92%, rgba(16, 7, 97, .035), transparent 28%),
    #fff;
}

.experience-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 2px 1fr;
  padding: max(12px, env(safe-area-inset-top)) 20px max(18px, env(safe-area-inset-bottom));
}

.brand-header {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-logo { display: block; width: 118px; height: auto; max-height: 52px; object-fit: contain; }
.back-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  min-height: 44px;
  padding: 0 2px 0 16px;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}
.back-button:hover { color: var(--navy); }
.back-button:active { transform: scale(.96); }
.back-placeholder { width: 52px; }

.progress-track { height: 2px; width: 100%; overflow: hidden; background: #eeedf4; border-radius: 999px; }
.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--violet));
  transition: width .38s cubic-bezier(.2,.8,.2,1);
}

.screen-stage {
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.screen-content {
  width: min(100%, 660px);
  min-height: 0;
  padding: clamp(28px, 6vh, 64px) 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vh, 30px);
}
.is-compact .screen-content { padding-top: clamp(18px, 3.6vh, 38px); gap: clamp(14px, 2.2vh, 22px); }
.screen-enter { animation: screen-in .36s cubic-bezier(.2,.8,.2,1) both; }
.screen-enter-back { animation: screen-in-back .3s cubic-bezier(.2,.8,.2,1) both; }

.copy-stack { display: grid; gap: 10px; }
.centered-stack { text-align: center; justify-items: center; }
.opening-copy { max-width: 580px; }
.eyebrow {
  margin: 0;
  color: var(--violet);
  font-size: clamp(15px, 3.9vw, 17px);
  font-weight: 760;
  letter-spacing: -.01em;
}
h1, h2, p, blockquote { margin: 0; }
h1 {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 790;
  text-wrap: balance;
}
h2 {
  color: var(--navy);
  font-size: clamp(25px, 6.7vw, 34px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 760;
}
.helper {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(16px, 4.2vw, 18px);
  line-height: 1.45;
  letter-spacing: -.01em;
}
.strong-helper { color: var(--ink); font-weight: 650; }

.input-stack { display: grid; gap: 8px; }
.text-input, .text-area {
  width: 100%;
  border: 1.5px solid #dedde7;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  outline: none;
  box-shadow: 0 7px 28px rgba(19, 8, 97, .035);
  font-size: 17px;
  line-height: 1.4;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.text-input { min-height: 58px; padding: 0 17px; }
.text-area { min-height: 132px; resize: none; padding: 16px 17px; }
.text-input::placeholder, .text-area::placeholder { color: #9795a5; opacity: 1; }
.text-input:focus, .text-area:focus {
  border-color: rgba(115, 28, 244, .8);
  box-shadow: 0 0 0 4px rgba(115, 28, 244, .085), 0 12px 35px rgba(19, 8, 97, .06);
}

.action-area { margin-top: auto; padding-top: 4px; }
.btn {
  width: 100%;
  min-height: 56px;
  border-radius: 17px;
  border: 0;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:focus-visible, .choice-card:focus-visible, .back-button:focus-visible, .privacy-link:focus-visible {
  outline: 3px solid rgba(115, 28, 244, .32);
  outline-offset: 3px;
}
.btn-primary {
  color: white;
  background: linear-gradient(115deg, var(--navy), var(--violet));
  box-shadow: 0 13px 34px rgba(64, 18, 157, .2);
}
.btn-primary:hover { filter: brightness(1.035); box-shadow: 0 16px 40px rgba(64, 18, 157, .24); }
.btn:active { transform: scale(.985); }

.choice-grid { display: grid; gap: 10px; }
.choice-card {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid #e2e1ea;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(22, 11, 85, .03);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.choice-card:hover { border-color: #c9c5dc; box-shadow: 0 10px 26px rgba(22, 11, 85, .06); }
.choice-card.is-pressed, .choice-card:active, .choice-card.is-selected { transform: scale(1.018); border-color: rgba(115,28,244,.55); background: #fbf9ff; box-shadow: 0 11px 28px rgba(86,27,185,.11); }
.choice-copy { min-width: 0; display: grid; gap: 3px; }
.choice-copy strong { font-size: 16.5px; line-height: 1.22; letter-spacing: -.012em; }
.choice-copy small { color: var(--muted); font-size: 14px; line-height: 1.35; }
.choice-dot { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid #d4d1df; background: #fff; transition: all .2s ease; }
.choice-card.is-selected .choice-dot, .choice-card.is-pressed .choice-dot { border: 6px solid var(--violet); }
.compact-choices .choice-card { min-height: 62px; }
.role-choices { grid-template-columns: 1fr 1fr; }
.role-choices .choice-card { min-height: 60px; }
.result-choices .choice-card { min-height: 64px; }
.intent-choices .choice-card { min-height: 76px; padding: 15px 16px; }

.field-error { color: var(--danger); font-size: 14px; line-height: 1.35; font-weight: 650; }

/* Opening */
.scene-opening .experience-frame { grid-template-rows: auto 2px 1fr; }
.scene-opening .screen-content { width: min(100%, 690px); padding-top: clamp(14px, 3vh, 30px); padding-bottom: 10px; }
.opening-layout {
  --opening-ease: cubic-bezier(.2,.8,.2,1);
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.4vh, 24px);
}
.opening-radar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: 92px;
}
.brand-orbit { position: relative; width: 104px; height: 104px; margin: 0 auto; }
.brand-orbit span { position: absolute; border-radius: 50%; border: 2px solid rgba(115,28,244,.13); animation: orbit-pulse 3.8s ease-in-out infinite; }
.brand-orbit span:nth-child(1) { inset: 4px; border-color: rgba(16,7,97,.12); }
.brand-orbit span:nth-child(2) { inset: 18px; animation-delay: -.7s; }
.brand-orbit span:nth-child(3) { inset: 33px; animation-delay: -1.4s; }
.brand-orbit b {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet);
  top: 20px;
  right: 13px;
  box-shadow: 0 0 0 7px rgba(115,28,244,.065);
  animation: beacon 2s ease-in-out infinite;
}
.opening-story {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(310px, 46vh, 410px);
  display: grid;
  place-items: center;
  text-align: center;
}
.opening-moment {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  width: 100%;
  pointer-events: none;
}
.opening-curiosity {
  max-width: 560px;
  color: var(--navy);
  font-size: clamp(19px, 5.3vw, 25px);
  line-height: 1.24;
  font-weight: 720;
  letter-spacing: -.025em;
  text-wrap: balance;
  opacity: 0;
  animation: opening-curiosity 1.55s .10s var(--opening-ease) both;
}
.opening-search {
  color: var(--ink);
  font-size: clamp(23px, 6.4vw, 31px);
  line-height: 1.14;
  font-weight: 680;
  letter-spacing: -.035em;
  opacity: 0;
  animation: opening-search 1.45s 1.75s var(--opening-ease) both;
}
.opening-search strong {
  color: var(--navy);
  font-weight: 830;
  background: linear-gradient(110deg, var(--navy), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.opening-moment-channels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(7px, 1.2vh, 11px);
}
.opening-channel {
  display: block;
  color: var(--navy);
  font-size: clamp(20px, 5.6vw, 27px);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: -.03em;
  opacity: 0;
  transform: translateY(7px);
}
.opening-channel-google { animation: opening-channel .38s 3.30s var(--opening-ease) both; }
.opening-channel-chatgpt { animation: opening-channel .38s 3.68s var(--opening-ease) both; }
.opening-channel-gemini { color: var(--violet); animation: opening-channel .38s 4.06s var(--opening-ease) both; }
.opening-moment-channels { animation: opening-channels-out .30s 4.95s var(--opening-ease) both; }
.opening-moment-hook { animation: opening-hook-stage .42s 5.12s var(--opening-ease) both; }
.opening-hook {
  display: grid;
  justify-items: center;
  gap: 0;
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(36px, 10.6vw, 44px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 820;
  text-wrap: balance;
}
.opening-hook-line {
  display: block;
  opacity: 0;
  transform: translateY(10px);
}
.opening-hook-lead { animation: opening-word .38s 5.14s var(--opening-ease) both; }
.opening-hook-middle { animation: opening-word .38s 5.42s var(--opening-ease) both; }
.opening-hook-you {
  margin-top: 4px;
  color: var(--violet);
  font-size: 1.08em;
  animation: opening-you .46s 5.69s cubic-bezier(.16,.9,.24,1.08) both;
}
.opening-payoff {
  color: var(--ink);
  font-size: clamp(18px, 5vw, 21px);
  line-height: 1.3;
  font-weight: 690;
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateY(7px);
  animation: opening-payoff .36s 6.10s var(--opening-ease) both;
}
.opening-moment-payoff { align-content: end; padding-bottom: 6px; }
.opening-action {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding-top: 0;
}
.opening-cta {
  min-height: 62px;
  border-radius: 19px;
  font-size: clamp(18px, 4.8vw, 20px);
  box-shadow: 0 14px 36px rgba(64,18,157,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  animation: opening-cta-in .40s 6.22s var(--opening-ease) forwards;
}
.opening-cta:active { transform: scale(.978); box-shadow: 0 9px 24px rgba(64,18,157,.18); }

/* A single touch on the narrative fast-forwards to the final state without navigating. */
.opening-layout.is-revealed .opening-moment-curiosity,
.opening-layout.is-revealed .opening-moment-search,
.opening-layout.is-revealed .opening-moment-channels { display: none; }
.opening-layout.is-revealed .opening-moment-hook,
.opening-layout.is-revealed .opening-hook-line,
.opening-layout.is-revealed .opening-payoff,
.opening-layout.is-revealed .opening-cta {
  animation: none !important;
  opacity: 1;
  transform: none;
}
.opening-layout.is-revealed .opening-cta { visibility: visible; pointer-events: auto; }
.opening-layout.is-revealed .opening-moment-payoff { opacity: 1; }
.scene-opening .ambient-sweep { opacity: .66; animation-duration: 13s; }
.scene-opening .ring-1 { border-color: rgba(115,28,244,.075); }
.scene-opening .ring-2 { border-color: rgba(16,7,97,.055); }
.scene-opening .screen-content::before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  left: 50%;
  top: 48%;
  border-radius: 50%;
  border: 1px solid rgba(115,28,244,.05);
  transform: translate(-50%,-50%) scale(.82);
  opacity: 0;
  pointer-events: none;
  animation: opening-radar-react .78s 4.98s var(--opening-ease) both;
}
.scene-opening .screen-content { position: relative; }
.scene-opening .screen-content.opening-exit {
  animation: opening-exit .18s ease both !important;
  pointer-events: none;
}

/* Contrast */
.search-contrast { width: 100%; max-width: 540px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 18px 10px; }
.contrast-item { display: grid; gap: 7px; text-align: center; }
.contrast-item span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.contrast-item strong { color: var(--navy); font-size: clamp(22px, 6vw, 29px); letter-spacing: -.035em; }
.contrast-divider { width: 1px; height: 52px; background: var(--line); }
.reveal-title { margin-top: 4px; }
.reveal-line { color: var(--navy); font-size: clamp(18px, 5vw, 22px); line-height: 1.3; font-weight: 720; letter-spacing: -.02em; }
.delay-1 { animation: reveal-up .5s .45s both; }

/* GEO */
.three-beats { display: grid; gap: 8px; margin-top: 5px; }
.three-beats strong { font-size: clamp(21px, 5.6vw, 27px); color: var(--navy); letter-spacing: -.025em; }
.geo-tag { margin-top: 8px; color: var(--muted); font-size: 17px; }
.geo-tag strong { color: var(--violet); }
.beat { animation: reveal-up .42s both; }
.beat-1 { animation-delay: .08s; }
.beat-2 { animation-delay: .28s; }
.beat-3 { animation-delay: .48s; }
.beat-4 { animation-delay: .68s; }

/* Perspective */
.perspective-stage { display: grid; gap: 12px; }
.perspective-row { display: grid; gap: 8px; }
.perspective-row p { color: var(--muted); font-size: 16px; font-weight: 650; }
.perspective-row blockquote {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 15px 16px;
  color: var(--navy);
  font-size: clamp(17px, 4.6vw, 20px);
  line-height: 1.35;
  font-weight: 680;
  box-shadow: var(--shadow-soft);
}
.perspective-first { opacity: .7; }
.perspective-second blockquote { border-color: rgba(115,28,244,.22); background: linear-gradient(135deg, #fff, #fbf8ff); }
.perspective-arrow { text-align: center; color: var(--violet); font-size: 20px; line-height: 1; }
.perspective-payoff { color: var(--ink); font-size: clamp(19px, 5vw, 23px); line-height: 1.25; font-weight: 760; letter-spacing: -.025em; text-align: center; margin-top: 5px; }

/* Strategy */
.goon-entry { gap: 15px; }
.strategy-lines { width: 100%; display: grid; gap: 9px; }
.strategy-line { padding: 13px 14px; border-radius: 16px; background: var(--soft); color: var(--muted); font-size: 16px; line-height: 1.4; }
.strategy-line strong { color: var(--violet); }
.strategy-equation { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-top: 2px; color: var(--navy); font-size: 15px; font-weight: 760; }
.strategy-equation b { color: var(--violet); font-size: 23px; }
.strategy-payoff { color: var(--ink); font-size: 19px; font-weight: 780; letter-spacing: -.02em; }

/* Contact */
.contact-copy { gap: 8px; }
.contact-fields { display: grid; grid-template-columns: 1fr; gap: 10px; }
.consent-row { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 9px; color: var(--muted); font-size: 12.5px; line-height: 1.42; cursor: pointer; }
.consent-row input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--violet); }
.privacy-link { width: fit-content; color: var(--navy); font-size: 13px; font-weight: 720; text-underline-offset: 3px; }

/* Ready */
.ready-stage { min-height: 290px; display: grid; place-items: center; align-content: center; gap: 13px; text-align: center; }
.radar-loader { position: relative; width: 124px; height: 124px; margin-bottom: 4px; }
.radar-loader i { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(115,28,244,.22); }
.radar-loader i:nth-child(2) { inset: 23px; border-color: rgba(16,7,97,.2); }
.radar-loader b { position: absolute; inset: 7px; border-radius: 50%; background: conic-gradient(from 0deg, rgba(115,28,244,0), rgba(115,28,244,.25), rgba(115,28,244,0) 32%); animation: sweep 1.7s linear infinite; }
.ready-line { opacity: 0; animation: ready-sequence .45s forwards; }
.ready-1 { color: var(--muted); font-size: 16px; animation-delay: .1s; }
.ready-2 { color: var(--violet); font-size: 18px; font-weight: 760; animation-delay: .85s; }
.ready-3 { animation-delay: 1.35s; }

/* Test */
.query-card { padding: 17px 18px; border-radius: 20px; background: linear-gradient(135deg, #f9f7ff, #fff); border: 1px solid rgba(115,28,244,.18); color: var(--navy); font-size: clamp(18px, 5vw, 22px); line-height: 1.4; font-weight: 700; letter-spacing: -.02em; box-shadow: 0 12px 40px rgba(74,25,162,.08); }
.test-instruction h1 { font-size: clamp(27px, 7vw, 34px); }
.test-button { min-height: 62px; font-size: 18px; }
.copy-confirm { min-height: 20px; color: var(--violet); font-size: 14px; font-weight: 760; text-align: center; transition: opacity .2s ease; }
.placeholder-confirm { opacity: 0; }
.return-eyebrow { font-size: 19px; }
.returned-from-chatgpt .screen-content { animation: return-pop .55s cubic-bezier(.2,.8,.2,1); }

/* Revelation / value / final */
.revelation-stack { gap: 19px; }
.question-reveal { display: grid; gap: 7px; max-width: 560px; padding: 16px 18px; border-radius: 20px; background: var(--soft); }
.question-reveal span { color: var(--muted); font-size: 14px; font-weight: 700; }
.question-reveal strong { color: var(--navy); font-size: clamp(20px, 5.5vw, 25px); line-height: 1.25; letter-spacing: -.025em; }
.brand-signature { color: var(--violet); font-size: 14px; font-weight: 800; letter-spacing: .02em; }
.value-stack h1 { font-size: clamp(28px, 7vw, 36px); }
.status-line { text-align: center; color: var(--muted); font-size: 14px; font-weight: 650; }
.completion-card { display: grid; gap: 5px; padding: 15px 16px; border-radius: 18px; background: #f8f7fb; border: 1px solid var(--line); }
.completion-card strong { color: var(--navy); font-size: 17px; }
.completion-card span { color: var(--ink); font-size: 15px; }
.completion-card small { color: var(--muted); font-size: 13px; line-height: 1.4; }

/* Background radar language */
.ambient-radar { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.ambient-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(115,28,244,.055); }
.ring-1 { width: 420px; height: 420px; right: -280px; top: 12%; }
.ring-2 { width: 280px; height: 280px; right: -190px; top: calc(12% + 70px); border-color: rgba(16,7,97,.045); }
.ring-3 { width: 310px; height: 310px; left: -235px; bottom: -110px; border-color: rgba(16,7,97,.045); }
.ambient-sweep { position: absolute; width: 370px; height: 370px; right: -245px; top: 15%; border-radius: 50%; background: conic-gradient(from 120deg, transparent 0 82%, rgba(115,28,244,.045) 90%, transparent 100%); animation: slow-sweep 16s linear infinite; }
.scene-test .ring-1, .scene-ready .ring-1 { border-color: rgba(115,28,244,.09); }
.scene-opening .ambient-sweep { opacity: .66; }

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

@media (min-width: 700px) {
  .experience-frame { padding-left: 32px; padding-right: 32px; }
  .brand-logo { width: 140px; }
  .scene-opening .screen-content { padding-top: 18px; }
  .opening-story { min-height: 390px; }
  .action-area { max-width: 440px; width: 100%; }
  .centered-stack + .action-area, .ready-stage + .action-area { align-self: center; }
  .contact-fields { grid-template-columns: 1fr 1fr; }
  .intent-choices { grid-template-columns: 1fr 1fr; }
  .compact-choices { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .experience-frame { padding-left: 18px; padding-right: 18px; }
  .screen-content { padding-top: clamp(22px, 4.8vh, 40px); gap: clamp(17px, 2.6vh, 24px); }
  .scene-opening .screen-content { padding-top: 10px; gap: 10px; }
  .opening-layout { gap: clamp(10px, 1.8vh, 16px); }
  .opening-radar { min-height: 78px; }
  .brand-orbit { width: 86px; height: 86px; }
  .brand-orbit span:nth-child(2) { inset: 15px; }
  .brand-orbit span:nth-child(3) { inset: 27px; }
  .brand-orbit b { width: 9px; height: 9px; top: 17px; right: 11px; }
  .opening-story { min-height: clamp(288px, 43vh, 360px); }
  .opening-hook { max-width: 390px; }
  .opening-action { max-width: 440px; }
  .is-compact .screen-content { padding-top: 16px; gap: 12px; }
  .brand-header { min-height: 58px; }
  .brand-logo { width: 108px; }
  .role-choices { grid-template-columns: 1fr; gap: 8px; }
  .role-choices .choice-card { min-height: 52px; padding-top: 11px; padding-bottom: 11px; }
  .intent-choices { gap: 8px; }
  .intent-choices .choice-card { min-height: 68px; padding: 12px 14px; }
  .choice-copy small { font-size: 13px; }
  .query-card { max-height: 170px; overflow: auto; }
}

@media (max-height: 720px) and (max-width: 520px) {
  .screen-content { padding-top: 15px; gap: 13px; }
  .is-compact .screen-content { gap: 9px; }
  h1 { font-size: clamp(28px, 7.5vw, 34px); }
  .scene-opening .screen-content { padding-top: 4px; padding-bottom: 4px; }
  .opening-layout { gap: 7px; }
  .opening-radar { min-height: 66px; }
  .scene-opening .brand-orbit { width: 68px; height: 68px; }
  .scene-opening .brand-orbit span:nth-child(2) { inset: 12px; }
  .scene-opening .brand-orbit span:nth-child(3) { inset: 22px; }
  .scene-opening .brand-orbit b { width: 8px; height: 8px; top: 13px; right: 8px; box-shadow: 0 0 0 5px rgba(115,28,244,.06); }
  .opening-story { min-height: clamp(250px, 39vh, 300px); }
  .opening-curiosity { font-size: clamp(18px, 5vw, 21px); }
  .opening-search { font-size: clamp(21px, 6vw, 26px); }
  .opening-channel { font-size: clamp(18px, 5.2vw, 23px); }
  .opening-hook { font-size: clamp(36px, 10vw, 39px); }
  .opening-payoff { font-size: 18px; }
  .opening-cta { min-height: 56px; font-size: 18px; }
  .text-area { min-height: 108px; }
  .choice-card { min-height: 52px; padding-top: 10px; padding-bottom: 10px; }
  .brand-orbit { width: 88px; height: 88px; }
  .brand-orbit span:nth-child(3) { inset: 29px; }
  .ready-stage { min-height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .scene-opening .opening-moment-curiosity,
  .scene-opening .opening-moment-search,
  .scene-opening .opening-moment-channels { display: none; }
  .scene-opening .opening-moment-hook,
  .scene-opening .opening-hook-line,
  .scene-opening .opening-payoff,
  .scene-opening .opening-cta { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: none !important; }
}

@keyframes opening-curiosity {
  0% { opacity: 0; transform: translateY(8px); }
  18%, 78% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}
@keyframes opening-search {
  0% { opacity: 0; transform: translateY(8px); }
  18%, 78% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px) scale(.985); }
}
@keyframes opening-channel { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes opening-channels-out { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(.985); } }
@keyframes opening-hook-stage { from { opacity: 0; } to { opacity: 1; } }
@keyframes opening-word { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes opening-you {
  0% { opacity: 0; transform: translateY(13px) scale(.965); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes opening-payoff { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes opening-cta-in {
  from { opacity: 0; visibility: visible; pointer-events: auto; transform: translateY(8px); }
  to { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
}

@keyframes opening-radar-react {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.78); }
  45% { opacity: .85; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.24); }
}
@keyframes opening-exit { to { opacity: 0; transform: translate3d(0,-7px,0) scale(.995); } }

@keyframes screen-in { from { opacity: 0; transform: translate3d(13px, 7px, 0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes screen-in-back { from { opacity: 0; transform: translate3d(-13px, 7px, 0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbit-pulse { 0%,100% { transform: scale(.97); opacity: .72; } 50% { transform: scale(1.035); opacity: 1; } }
@keyframes beacon { 0%,100% { transform: scale(.85); opacity: .75; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes slow-sweep { to { transform: rotate(360deg); } }
@keyframes ready-sequence { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes return-pop { 0% { transform: scale(.99); opacity: .65; } 100% { transform: scale(1); opacity: 1; } }

/* Stage 3 — Typography, legibility and mobile usability (steps 2–20 only) */
.app-shell:not(.scene-opening) .screen-content {
  width: min(100%, 700px);
  padding-top: clamp(24px, 5.2vh, 56px);
  gap: clamp(20px, 2.8vh, 28px);
}

.app-shell:not(.scene-opening) .copy-stack {
  gap: 12px;
}

.app-shell:not(.scene-opening) h1 {
  max-width: 680px;
  font-size: clamp(31px, 8.2vw, 38px);
  line-height: 1.085;
  letter-spacing: -.042em;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.app-shell:not(.scene-opening) .centered-stack h1 {
  text-wrap: balance;
}

.app-shell:not(.scene-opening) .eyebrow {
  font-size: clamp(17px, 4.5vw, 19px);
  line-height: 1.3;
}

.app-shell:not(.scene-opening) .helper {
  max-width: 620px;
  font-size: clamp(18px, 4.8vw, 20px);
  line-height: 1.5;
}

.app-shell:not(.scene-opening) .input-stack {
  gap: 10px;
}

.app-shell:not(.scene-opening) .text-input,
.app-shell:not(.scene-opening) .text-area {
  font-size: 18px;
  line-height: 1.45;
  border-radius: 19px;
}

.app-shell:not(.scene-opening) .text-input {
  min-height: 62px;
  padding: 0 18px;
}

.app-shell:not(.scene-opening) .text-area {
  min-height: 142px;
  padding: 17px 18px;
}

.app-shell:not(.scene-opening) .action-area {
  padding-top: 6px;
}

.app-shell:not(.scene-opening) .btn {
  min-height: 60px;
  padding: 15px 21px;
  font-size: clamp(18px, 4.6vw, 19px);
  line-height: 1.2;
  border-radius: 18px;
}

.app-shell:not(.scene-opening) .choice-grid {
  gap: 12px;
}

.app-shell:not(.scene-opening) .choice-card {
  min-height: 64px;
  gap: 15px;
  padding: 15px 17px;
  border-radius: 19px;
}

.app-shell:not(.scene-opening) .choice-copy {
  gap: 4px;
}

.app-shell:not(.scene-opening) .choice-copy strong {
  font-size: clamp(17.5px, 4.55vw, 18.5px);
  line-height: 1.28;
}

.app-shell:not(.scene-opening) .choice-copy small {
  font-size: 16px;
  line-height: 1.42;
}

.app-shell:not(.scene-opening) .choice-dot {
  width: 24px;
  height: 24px;
}

.app-shell:not(.scene-opening) .compact-choices .choice-card,
.app-shell:not(.scene-opening) .role-choices .choice-card {
  min-height: 64px;
}

.app-shell:not(.scene-opening) .result-choices .choice-card {
  min-height: 68px;
}

.app-shell:not(.scene-opening) .intent-choices .choice-card {
  min-height: 82px;
  padding: 16px 17px;
}

.app-shell:not(.scene-opening) .field-error {
  font-size: 16px;
  line-height: 1.42;
}

/* Long prompts get room without losing hierarchy. */
.scene-google h1,
.scene-ai h1,
.scene-expectation h1,
.scene-positioning h1,
.scene-value h1 {
  font-size: clamp(29px, 7.7vw, 35px);
  line-height: 1.1;
}

.scene-company h1,
.scene-person h1,
.scene-role h1,
.scene-result h1,
.scene-final h1 {
  font-size: clamp(32px, 8.7vw, 38px);
}

/* Comparison */
.app-shell:not(.scene-opening) .search-contrast {
  max-width: 590px;
  gap: 16px;
  padding: 20px 8px;
}

.app-shell:not(.scene-opening) .contrast-item {
  gap: 8px;
}

.app-shell:not(.scene-opening) .contrast-item span {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .09em;
}

.app-shell:not(.scene-opening) .contrast-item strong {
  font-size: clamp(24px, 6.5vw, 30px);
  line-height: 1.12;
}

.app-shell:not(.scene-opening) .reveal-line {
  font-size: clamp(19px, 5.1vw, 23px);
  line-height: 1.4;
}

/* GEO */
.app-shell:not(.scene-opening) .three-beats {
  gap: 10px;
  margin-top: 7px;
}

.app-shell:not(.scene-opening) .three-beats strong {
  font-size: clamp(22px, 5.9vw, 28px);
  line-height: 1.22;
}

.app-shell:not(.scene-opening) .geo-tag {
  margin-top: 9px;
  font-size: 18px;
  line-height: 1.45;
}

/* Perspective */
.app-shell:not(.scene-opening) .perspective-stage {
  gap: 14px;
}

.app-shell:not(.scene-opening) .perspective-row {
  gap: 9px;
}

.app-shell:not(.scene-opening) .perspective-row p {
  font-size: 17px;
  line-height: 1.4;
}

.app-shell:not(.scene-opening) .perspective-row blockquote {
  padding: 16px 18px;
  font-size: clamp(18px, 4.8vw, 21px);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.app-shell:not(.scene-opening) .perspective-payoff {
  font-size: clamp(20px, 5.3vw, 24px);
  line-height: 1.32;
}

/* Strategy */
.app-shell:not(.scene-opening) .goon-entry {
  gap: 17px;
}

.app-shell:not(.scene-opening) .strategy-lines {
  gap: 11px;
}

.app-shell:not(.scene-opening) .strategy-line {
  padding: 15px 16px;
  font-size: 18px;
  line-height: 1.48;
}

.app-shell:not(.scene-opening) .strategy-equation {
  gap: 11px;
  font-size: 17px;
  line-height: 1.3;
}

.app-shell:not(.scene-opening) .strategy-equation b {
  font-size: 25px;
}

.app-shell:not(.scene-opening) .strategy-payoff {
  font-size: 20px;
  line-height: 1.35;
}

/* Contact */
.app-shell:not(.scene-opening) .contact-copy {
  gap: 10px;
}

.app-shell:not(.scene-opening) .contact-fields {
  gap: 12px;
}

.app-shell:not(.scene-opening) .consent-row {
  grid-template-columns: 24px 1fr;
  gap: 11px;
  font-size: 16px;
  line-height: 1.48;
}

.app-shell:not(.scene-opening) .consent-row input {
  width: 22px;
  height: 22px;
}

.app-shell:not(.scene-opening) .privacy-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.35;
}

/* Ready */
.app-shell:not(.scene-opening) .ready-stage {
  gap: 15px;
}

.app-shell:not(.scene-opening) .ready-1 {
  font-size: 18px;
}

.app-shell:not(.scene-opening) .ready-2 {
  font-size: 20px;
}

/* Test */
.app-shell:not(.scene-opening) .query-card {
  padding: 18px 19px;
  font-size: clamp(18px, 4.9vw, 22px);
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.app-shell:not(.scene-opening) .test-instruction h1 {
  font-size: clamp(29px, 7.6vw, 35px);
  line-height: 1.1;
}

.app-shell:not(.scene-opening) .test-button {
  min-height: 64px;
  font-size: 19px;
}

.app-shell:not(.scene-opening) .copy-confirm {
  min-height: 22px;
  font-size: 16px;
}

.app-shell:not(.scene-opening) .return-eyebrow {
  font-size: 20px;
}

/* Revelation / value / final */
.app-shell:not(.scene-opening) .revelation-stack {
  gap: 21px;
}

.app-shell:not(.scene-opening) .question-reveal {
  gap: 8px;
  padding: 17px 19px;
}

.app-shell:not(.scene-opening) .question-reveal span {
  font-size: 16px;
  line-height: 1.35;
}

.app-shell:not(.scene-opening) .question-reveal strong {
  font-size: clamp(21px, 5.6vw, 26px);
  line-height: 1.3;
}

.app-shell:not(.scene-opening) .brand-signature {
  font-size: 16px;
}

.app-shell:not(.scene-opening) .value-stack h1 {
  font-size: clamp(29px, 7.6vw, 35px);
}

.app-shell:not(.scene-opening) .status-line {
  font-size: 16px;
  line-height: 1.4;
}

.app-shell:not(.scene-opening) .completion-card {
  gap: 7px;
  padding: 16px 17px;
}

.app-shell:not(.scene-opening) .completion-card strong {
  font-size: 18px;
}

.app-shell:not(.scene-opening) .completion-card span {
  font-size: 17px;
  line-height: 1.4;
}

.app-shell:not(.scene-opening) .completion-card small {
  font-size: 16px;
  line-height: 1.48;
}

@media (min-width: 700px) {
  .app-shell:not(.scene-opening) .screen-content {
    width: min(100%, 700px);
    padding-top: clamp(32px, 5.5vh, 60px);
    gap: 28px;
  }

  .app-shell:not(.scene-opening) h1 {
    font-size: clamp(34px, 4.1vw, 40px);
    max-width: 700px;
  }

  .scene-google h1,
  .scene-ai h1,
  .scene-expectation h1,
  .scene-positioning h1,
  .scene-value h1,
  .app-shell:not(.scene-opening) .test-instruction h1 {
    font-size: clamp(32px, 3.7vw, 37px);
  }

  .app-shell:not(.scene-opening) .helper {
    font-size: 19px;
  }
}

@media (max-width: 520px) {
  .app-shell:not(.scene-opening) .experience-frame {
    padding-left: 16px;
    padding-right: 16px;
  }

  .app-shell:not(.scene-opening) .screen-content {
    padding-top: clamp(20px, 4.2vh, 34px);
    gap: clamp(18px, 2.5vh, 24px);
  }

  .app-shell:not(.scene-opening).scene-role .screen-content,
  .app-shell:not(.scene-opening).scene-contact .screen-content,
  .app-shell:not(.scene-opening).scene-test .screen-content,
  .app-shell:not(.scene-opening).scene-final .screen-content {
    gap: 16px;
  }

  .app-shell:not(.scene-opening) .role-choices {
    gap: 10px;
  }

  .app-shell:not(.scene-opening) .role-choices .choice-card {
    min-height: 58px;
    padding: 13px 15px;
  }

  .app-shell:not(.scene-opening) .intent-choices {
    gap: 10px;
  }

  .app-shell:not(.scene-opening) .intent-choices .choice-card {
    min-height: 76px;
    padding: 14px 15px;
  }

  .app-shell:not(.scene-opening) .query-card {
    max-height: 190px;
  }
}

@media (max-width: 340px) {
  .app-shell:not(.scene-opening) .experience-frame {
    padding-left: 14px;
    padding-right: 14px;
  }

  .app-shell:not(.scene-opening) h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .scene-google h1,
  .scene-ai h1,
  .scene-expectation h1,
  .scene-positioning h1,
  .scene-value h1,
  .app-shell:not(.scene-opening) .test-instruction h1 {
    font-size: 28px;
    line-height: 1.11;
  }

  .app-shell:not(.scene-opening) .helper {
    font-size: 18px;
  }

  .app-shell:not(.scene-opening) .btn {
    min-height: 58px;
    font-size: 18px;
  }
}

@media (max-height: 720px) and (max-width: 520px) {
  .app-shell:not(.scene-opening) .brand-header {
    min-height: 54px;
  }

  .app-shell:not(.scene-opening) .brand-logo {
    width: 102px;
  }

  .app-shell:not(.scene-opening) .screen-content,
  .app-shell:not(.scene-opening) .is-compact .screen-content {
    padding-top: 12px;
    gap: 12px;
  }

  .app-shell:not(.scene-opening) .copy-stack {
    gap: 8px;
  }

  .app-shell:not(.scene-opening) h1 {
    font-size: clamp(29px, 7.8vw, 33px);
    line-height: 1.09;
  }

  .scene-google h1,
  .scene-ai h1,
  .scene-expectation h1,
  .scene-positioning h1,
  .scene-value h1,
  .app-shell:not(.scene-opening) .test-instruction h1 {
    font-size: clamp(27px, 7.2vw, 31px);
    line-height: 1.1;
  }

  .app-shell:not(.scene-opening) .helper {
    font-size: 18px;
    line-height: 1.42;
  }

  .app-shell:not(.scene-opening) .text-area {
    min-height: 116px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .app-shell:not(.scene-opening) .choice-grid {
    gap: 8px;
  }

  .app-shell:not(.scene-opening) .choice-card,
  .app-shell:not(.scene-opening) .compact-choices .choice-card,
  .app-shell:not(.scene-opening) .result-choices .choice-card {
    min-height: 56px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .app-shell:not(.scene-opening) .role-choices {
    gap: 6px;
  }

  .app-shell:not(.scene-opening) .role-choices .choice-card {
    min-height: 52px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .app-shell:not(.scene-opening) .intent-choices {
    gap: 7px;
  }

  .app-shell:not(.scene-opening) .intent-choices .choice-card {
    min-height: 64px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .app-shell:not(.scene-opening) .choice-copy strong {
    font-size: 17px;
  }

  .app-shell:not(.scene-opening) .choice-copy small {
    font-size: 16px;
    line-height: 1.34;
  }

  .app-shell:not(.scene-opening) .action-area {
    padding-top: 2px;
  }

  .app-shell:not(.scene-opening) .btn {
    min-height: 56px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .app-shell:not(.scene-opening) .perspective-stage {
    gap: 9px;
  }

  .app-shell:not(.scene-opening) .perspective-row {
    gap: 6px;
  }

  .app-shell:not(.scene-opening) .perspective-row blockquote {
    padding: 12px 15px;
  }

  .app-shell:not(.scene-opening) .perspective-payoff {
    font-size: 20px;
    margin-top: 1px;
  }

  .app-shell:not(.scene-opening) .goon-entry {
    gap: 11px;
  }

  .app-shell:not(.scene-opening) .strategy-lines {
    gap: 7px;
  }

  .app-shell:not(.scene-opening) .strategy-line {
    padding: 11px 13px;
    font-size: 17px;
    line-height: 1.4;
  }

  .app-shell:not(.scene-opening) .strategy-equation {
    margin-top: 0;
  }

  .app-shell:not(.scene-opening) .consent-row {
    font-size: 16px;
    line-height: 1.4;
  }

  .app-shell:not(.scene-opening) .privacy-link {
    min-height: 38px;
  }

  .app-shell:not(.scene-opening) .ready-stage {
    min-height: 226px;
    gap: 10px;
  }

  .app-shell:not(.scene-opening) .radar-loader {
    width: 110px;
    height: 110px;
  }

  .app-shell:not(.scene-opening) .query-card {
    max-height: 156px;
    padding: 14px 16px;
  }

  .app-shell:not(.scene-opening) .copy-confirm {
    min-height: 18px;
  }

  .app-shell:not(.scene-opening) .revelation-stack {
    gap: 14px;
  }

  .app-shell:not(.scene-opening) .question-reveal {
    padding: 13px 16px;
  }
}

/* Small navigation control remains readable without competing with the screen question. */
.app-shell:not(.scene-opening) .back-button {
  font-size: 16px;
  line-height: 1.2;
}

@media (max-height: 720px) and (max-width: 520px) {
  .app-shell:not(.scene-opening) .privacy-link {
    min-height: 44px;
  }
}

/* Stage 4 — Memory, humanization and curiosity (steps 7–15 only) */
.scene-company .memory-company-intro {
  margin-bottom: -2px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: none;
}

.scene-company .company-memory {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(115,28,244,.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(115,28,244,.055), rgba(16,7,97,.025));
  box-shadow: 0 8px 24px rgba(74,25,162,.045);
}

.scene-company .company-memory span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
}

.scene-company .company-memory strong {
  min-width: 0;
  color: var(--violet);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}

.scene-perspective .memory-expectation-reaction {
  color: var(--violet);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.scene-perspective .perspective-concept-card {
  display: grid;
  gap: 5px;
  padding: 15px 17px;
  border: 1px solid rgba(115,28,244,.15);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(115,28,244,.045), rgba(255,255,255,.96));
  box-shadow: var(--shadow-soft);
}

.scene-perspective .perspective-concept-card strong {
  color: var(--navy);
  font-size: clamp(18px, 4.8vw, 21px);
  line-height: 1.3;
  letter-spacing: -.02em;
}

.scene-perspective .perspective-concept-card span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.scene-strategy .memory-plant {
  color: var(--violet);
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.scene-ready .memory-ready-stage {
  min-height: 0;
  width: 100%;
  max-width: 620px;
  gap: 10px;
  align-content: center;
}

.scene-ready .memory-radar-loader {
  width: 82px;
  height: 82px;
  margin-bottom: 1px;
}

.scene-ready .memory-radar-loader i:nth-child(2) {
  inset: 15px;
}

.scene-ready .memory-radar-loader b {
  inset: 5px;
}

.scene-ready .memory-ready-intro,
.scene-ready .memory-ready-label,
.scene-ready .memory-positioning-quote,
.scene-ready .memory-ready-question,
.scene-ready .memory-ready-final {
  opacity: 0;
  animation: ready-sequence .42s forwards;
}

.scene-ready .memory-ready-intro {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
  animation-delay: .12s;
}

.scene-ready .memory-ready-intro strong {
  color: var(--navy);
  font-weight: 800;
}

.scene-ready .memory-ready-label {
  color: var(--navy);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.38;
  animation-delay: .58s;
}

.scene-ready .memory-positioning-quote {
  width: min(100%, 570px);
  max-height: 138px;
  overflow: auto;
  padding: 14px 17px;
  border: 1px solid rgba(115,28,244,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #faf8ff, #fff);
  color: var(--navy);
  font-size: clamp(20px, 5.4vw, 24px);
  font-weight: 760;
  line-height: 1.36;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  box-shadow: 0 10px 32px rgba(74,25,162,.07);
  scrollbar-width: thin;
  animation-delay: 1.02s;
}

.scene-ready .memory-ready-question {
  max-width: 560px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.42;
  letter-spacing: -.01em;
  animation-delay: 1.72s;
}

.scene-ready .memory-ready-final {
  margin-top: 2px;
  color: var(--navy);
  font-size: clamp(30px, 8vw, 36px);
  line-height: 1.08;
  animation-delay: 2.42s;
}

@media (max-width: 520px) {
  .scene-company .memory-company-intro,
  .scene-perspective .memory-expectation-reaction,
  .scene-strategy .memory-plant {
    font-size: 16px;
  }

  .scene-company .company-memory {
    gap: 8px;
    padding: 8px 11px;
  }

  .scene-company .company-memory span {
    font-size: 14px;
  }

  .scene-company .company-memory strong {
    font-size: 17px;
  }

  .scene-ready .memory-ready-stage {
    gap: 9px;
  }

  .scene-ready .memory-radar-loader {
    width: 72px;
    height: 72px;
  }

  .scene-ready .memory-radar-loader i:nth-child(2) {
    inset: 13px;
  }

  .scene-ready .memory-ready-intro,
  .scene-ready .memory-ready-question {
    font-size: 17px;
  }

  .scene-ready .memory-ready-label {
    font-size: 16px;
  }

  .scene-ready .memory-positioning-quote {
    max-height: 126px;
    padding: 13px 15px;
    font-size: clamp(19px, 5.4vw, 22px);
  }
}

@media (max-width: 340px) {
  .scene-ready .memory-radar-loader {
    width: 64px;
    height: 64px;
  }

  .scene-ready .memory-positioning-quote {
    font-size: 19px;
  }
}

@media (max-height: 720px) and (max-width: 520px) {
  .scene-company .copy-stack {
    gap: 7px;
  }

  .scene-company .memory-company-intro {
    font-size: 16px;
    line-height: 1.34;
  }

  .scene-company .company-memory {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .scene-perspective .perspective-concept-card {
    padding: 11px 14px;
  }

  .scene-perspective .perspective-concept-card span {
    font-size: 16px;
    line-height: 1.35;
  }

  .scene-ready .memory-ready-stage {
    gap: 6px;
  }

  .scene-ready .memory-radar-loader {
    width: 58px;
    height: 58px;
    margin-bottom: 0;
  }

  .scene-ready .memory-radar-loader i:nth-child(2) {
    inset: 11px;
  }

  .scene-ready .memory-ready-intro {
    font-size: 16px;
    line-height: 1.32;
  }

  .scene-ready .memory-ready-label {
    font-size: 16px;
    line-height: 1.3;
  }

  .scene-ready .memory-positioning-quote {
    max-height: 104px;
    padding: 10px 13px;
    border-radius: 16px;
    font-size: 18px;
    line-height: 1.3;
  }

  .scene-ready .memory-ready-question {
    font-size: 16px;
    line-height: 1.34;
  }

  .scene-ready .memory-ready-final {
    font-size: clamp(28px, 7.6vw, 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-ready .memory-ready-intro,
  .scene-ready .memory-ready-label,
  .scene-ready .memory-positioning-quote,
  .scene-ready .memory-ready-question,
  .scene-ready .memory-ready-final {
    opacity: 1 !important;
    transform: none !important;
    animation-delay: 0s !important;
  }
}

/* Stage 5 — ChatGPT climax (step 16 only) */
.scene-test .screen-content {
  padding-top: clamp(16px, 3.2vh, 34px);
}

.scene-test .chatgpt-climax {
  width: 100%;
  display: grid;
  gap: clamp(15px, 2.2vh, 22px);
}

.scene-test .climax-story {
  display: grid;
  gap: clamp(13px, 1.9vh, 19px);
}

.scene-test .climax-memory,
.scene-test .climax-turn,
.scene-test .climax-explanation {
  display: grid;
  gap: 9px;
}

.scene-test .climax-beat,
.scene-test .climax-action,
.scene-test .climax-departure {
  opacity: 0;
  transform: translateY(7px);
  animation: climax-reveal .4s ease forwards;
}

.scene-test .climax-opening {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(19px, 5vw, 22px);
  font-weight: 680;
  line-height: 1.38;
  letter-spacing: -.018em;
  animation-delay: .08s;
}

.scene-test .climax-opening strong {
  color: var(--navy);
  font-weight: 820;
}

.scene-test .climax-memory-label {
  color: var(--muted);
  font-size: clamp(17px, 4.5vw, 19px);
  font-weight: 680;
  line-height: 1.4;
  animation-delay: .62s;
}

.scene-test .climax-query {
  position: relative;
  max-height: 172px;
  margin: 0;
  overflow: auto;
  padding: 18px 20px 18px 23px;
  border: 1px solid rgba(115,28,244,.21);
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(115,28,244,.07), rgba(255,255,255,.98) 72%);
  color: var(--navy);
  font-size: clamp(19px, 5vw, 23px);
  font-weight: 760;
  line-height: 1.42;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  box-shadow: 0 15px 42px rgba(74,25,162,.085);
  scrollbar-width: thin;
  animation-delay: 1.02s;
}

.scene-test .climax-not-mentioned {
  color: var(--ink);
  font-size: clamp(18px, 4.8vw, 20px);
  font-weight: 680;
  line-height: 1.38;
  animation-delay: 1.78s;
}

.scene-test .climax-not-mentioned strong {
  color: var(--violet);
  font-weight: 820;
}

.scene-test .climax-point {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 7.8vw, 37px);
  line-height: 1.08;
  letter-spacing: -.042em;
  animation: climax-point-in .48s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 2.28s;
}

.scene-test .climax-explain-one,
.scene-test .climax-explain-two {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 4.55vw, 19px);
  line-height: 1.48;
}

.scene-test .climax-explain-one { animation-delay: 2.86s; }
.scene-test .climax-explain-two { animation-delay: 3.18s; }

.scene-test .climax-no-break {
  white-space: nowrap;
}

.scene-test .climax-invitation {
  color: var(--navy);
  font-size: clamp(19px, 5vw, 22px);
  font-weight: 780;
  line-height: 1.36;
  letter-spacing: -.02em;
  animation-delay: 3.54s;
}

.scene-test .climax-action {
  display: grid;
  gap: 8px;
  animation-delay: 3.82s;
}

.scene-test .climax-action .action-area {
  padding-top: 0;
}

.scene-test .climax-cta {
  min-height: 64px;
  font-size: clamp(18px, 4.8vw, 20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  animation: climax-cta-in .4s ease 3.86s forwards;
}

.scene-test .climax-feedback,
.scene-test .popup-feedback {
  min-height: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.38;
  text-align: center;
}

.scene-test .climax-feedback.is-success {
  color: var(--violet);
}

.scene-test .climax-feedback.is-error,
.scene-test .popup-feedback.is-error {
  color: #9b2841;
}

.scene-test .climax-feedback.placeholder-confirm,
.scene-test .popup-feedback.placeholder-confirm {
  display: none;
}

.scene-test .climax-departure {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  animation-delay: 4.06s;
}

.scene-test .chatgpt-climax.is-revealed .climax-beat,
.scene-test .chatgpt-climax.is-revealed .climax-action,
.scene-test .chatgpt-climax.is-revealed .climax-departure,
.scene-test .chatgpt-climax.is-revealed .climax-point,
.scene-test .chatgpt-climax.is-revealed .climax-cta {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  animation: none !important;
}

@keyframes climax-reveal {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes climax-point-in {
  from { opacity: 0; transform: translateY(9px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes climax-cta-in {
  from { opacity: 0; visibility: visible; pointer-events: auto; transform: translateY(6px); }
  to { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
}

@media (min-width: 700px) {
  .scene-test .chatgpt-climax {
    max-width: 680px;
    margin-inline: auto;
  }

  .scene-test .climax-point {
    font-size: clamp(34px, 3.8vw, 40px);
  }

  .scene-test .climax-query {
    max-height: 190px;
  }
}

@media (max-width: 520px) {
  .scene-test .screen-content {
    gap: 12px;
    padding-top: clamp(12px, 2.5vh, 22px);
  }

  .scene-test .chatgpt-climax {
    gap: 13px;
  }

  .scene-test .climax-story {
    gap: 12px;
  }

  .scene-test .climax-memory,
  .scene-test .climax-turn,
  .scene-test .climax-explanation {
    gap: 7px;
  }

  .scene-test .climax-query {
    max-height: 154px;
    padding: 15px 16px 15px 18px;
    border-radius: 18px;
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.4;
  }

  .scene-test .climax-point {
    font-size: clamp(29px, 8vw, 35px);
  }

  .scene-test .climax-departure {
    font-size: 16px;
  }
}

@media (max-width: 340px) {
  .scene-test .climax-opening,
  .scene-test .climax-invitation {
    font-size: 18px;
  }

  .scene-test .climax-memory-label,
  .scene-test .climax-not-mentioned,
  .scene-test .climax-explain-one,
  .scene-test .climax-explain-two {
    font-size: 16px;
  }

  .scene-test .climax-point {
    font-size: 28px;
  }

  .scene-test .climax-query {
    max-height: 140px;
    font-size: 18px;
  }
}

@media (max-height: 720px) and (max-width: 520px) {
  .scene-test .screen-content {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .scene-test .chatgpt-climax {
    gap: 10px;
  }

  .scene-test .climax-story {
    gap: 9px;
  }

  .scene-test .climax-memory,
  .scene-test .climax-turn,
  .scene-test .climax-explanation {
    gap: 5px;
  }

  .scene-test .climax-opening,
  .scene-test .climax-invitation {
    font-size: 17px;
    line-height: 1.34;
  }

  .scene-test .climax-memory-label,
  .scene-test .climax-not-mentioned,
  .scene-test .climax-explain-one,
  .scene-test .climax-explain-two {
    font-size: 16px;
    line-height: 1.36;
  }

  .scene-test .climax-query {
    max-height: 120px;
    padding: 12px 14px 12px 16px;
    font-size: 17px;
    line-height: 1.34;
  }

  .scene-test .climax-point {
    font-size: clamp(27px, 7.4vw, 32px);
  }

  .scene-test .climax-cta {
    min-height: 58px;
    font-size: 18px;
  }

  .scene-test .climax-departure,
  .scene-test .climax-feedback,
  .scene-test .popup-feedback {
    font-size: 15.5px;
    line-height: 1.32;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-test .climax-beat,
  .scene-test .climax-action,
  .scene-test .climax-departure,
  .scene-test .climax-point,
  .scene-test .climax-cta {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Keep the participant's own question fully readable at typical lengths; scroll only when it is genuinely long. */
.app-shell.scene-test .climax-query {
  max-height: 170px;
}

@media (max-width: 340px) and (max-height: 720px) {
  .scene-test .chatgpt-climax {
    gap: 6px;
  }

  .scene-test .climax-story {
    gap: 5px;
  }

  .scene-test .climax-memory,
  .scene-test .climax-turn,
  .scene-test .climax-explanation {
    gap: 3px;
  }

  .app-shell.scene-test .climax-query {
    max-height: 145px;
  }

  .scene-test .climax-opening,
  .scene-test .climax-invitation,
  .scene-test .climax-memory-label,
  .scene-test .climax-not-mentioned,
  .scene-test .climax-explain-one,
  .scene-test .climax-explain-two {
    line-height: 1.3;
  }

  .scene-test .climax-point {
    line-height: 1.02;
  }
}

/* ========================================================================== 
   Final stage — ChatGPT return, expectation vs reality, Gemini and conversion
   ========================================================================== */

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: wait;
  opacity: .72;
  transform: none;
  filter: none;
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,.96);
  border: 1.5px solid #dedde7;
  box-shadow: 0 7px 24px rgba(19, 8, 97, .04);
}
.btn-secondary:hover { border-color: #c9c5dc; box-shadow: 0 10px 28px rgba(22, 11, 85, .07); }

.privacy-link-unavailable {
  color: var(--muted);
  text-decoration: none;
  cursor: default;
}

.returned-from-gemini .screen-content { animation: return-pop .55s cubic-bezier(.2,.8,.2,1); }

/* Expectation × reality */
.scene-reflection .screen-content { gap: 18px; }
.reflection-stage {
  display: grid;
  gap: clamp(16px, 2.6vh, 23px);
  width: 100%;
}
.reflection-lines { display: grid; gap: 9px; }
.reflection-line {
  color: var(--muted);
  font-size: clamp(18px, 4.8vw, 21px);
  line-height: 1.48;
  letter-spacing: -.012em;
}
.reflection-result {
  color: var(--ink);
  font-weight: 760;
}
.reflection-takeaway {
  max-width: 650px;
  font-size: clamp(29px, 7.7vw, 36px);
  line-height: 1.1;
}
.reflection-memory {
  display: grid;
  gap: 10px;
  padding: 17px 18px;
  border: 1px solid rgba(115,28,244,.15);
  border-radius: 20px;
  background: linear-gradient(135deg, #fbf9ff, #fff);
  box-shadow: 0 10px 32px rgba(64,18,157,.05);
}
.reflection-memory p,
.reflection-memory strong {
  font-size: 17px;
  line-height: 1.45;
}
.reflection-memory p { color: var(--muted); }
.reflection-memory strong { color: var(--navy); }
.reflection-memory blockquote {
  max-height: 150px;
  overflow: auto;
  overscroll-behavior: contain;
  color: var(--violet);
  font-size: clamp(19px, 5vw, 22px);
  line-height: 1.42;
  font-weight: 750;
  overflow-wrap: anywhere;
}

/* Gemini optional comparison */
.scene-gemini .screen-content,
.scene-gemini-result .screen-content { gap: 18px; }
.gemini-choice-copy { gap: 13px; }
.gemini-choice-copy h1 { font-size: clamp(29px, 7.6vw, 35px); }
.gemini-action-stack { display: grid; gap: 11px; width: 100%; }
.gemini-action-stack .btn { min-height: 58px; font-size: 18px; }
.gemini-feedback,
.gemini-popup-feedback {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  font-weight: 720;
}
.gemini-feedback.is-success { color: var(--violet); }
.gemini-feedback.is-error,
.gemini-popup-feedback.is-error { color: #9b2841; }
.gemini-query-manual {
  max-height: 170px;
  overflow: auto;
  overscroll-behavior: contain;
  user-select: text;
  -webkit-user-select: text;
}

/* Practical conclusion */
.scene-conclusion .screen-content { gap: 22px; }
.final-insight-stack { gap: 18px; }
.final-insight-lines {
  width: 100%;
  display: grid;
  gap: 10px;
}
.final-insight-lines p {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--ink);
  font-size: clamp(18px, 4.8vw, 20px);
  line-height: 1.42;
  font-weight: 650;
}
.scene-conclusion h1 {
  max-width: 650px;
  font-size: clamp(30px, 7.8vw, 37px);
  line-height: 1.08;
}

/* Final conversion */
.scene-final .intent-choices.is-submitting { pointer-events: none; opacity: .58; }
.scene-final .completion-card {
  padding: 20px;
  gap: 9px;
  border-radius: 20px;
  text-align: left;
}
.scene-final .completion-card strong { font-size: clamp(20px, 5.2vw, 23px); }
.scene-final .completion-card span,
.scene-final .completion-card small { font-size: 17px; }
.final-submit-error { display: grid; gap: 10px; }
.final-submit-error .field-error { text-align: center; }
.final-submit-error .btn { min-height: 54px; }

@media (min-width: 700px) {
  .scene-reflection .reflection-memory,
  .scene-gemini .gemini-action-stack,
  .scene-conclusion .final-insight-lines { max-width: 650px; margin-inline: auto; }
  .scene-reflection .reflection-stage { max-width: 680px; margin-inline: auto; }
  .scene-gemini .gemini-choice-copy { max-width: 660px; margin-inline: auto; }
}

@media (max-width: 520px) {
  .scene-reflection .screen-content,
  .scene-gemini .screen-content,
  .scene-gemini-result .screen-content,
  .scene-conclusion .screen-content,
  .scene-final .screen-content { gap: 16px; }

  .reflection-stage { gap: 14px; }
  .reflection-memory { padding: 15px 16px; gap: 8px; }
  .reflection-memory blockquote { max-height: 130px; }
  .gemini-query-manual { max-height: 145px; }
  .final-insight-stack { gap: 15px; }
  .final-insight-lines { gap: 8px; }
  .final-insight-lines p { padding: 10px 12px; }
}

@media (max-height: 720px) and (max-width: 520px) {
  .scene-reflection .screen-content,
  .scene-gemini .screen-content,
  .scene-gemini-result .screen-content,
  .scene-conclusion .screen-content,
  .scene-final .screen-content {
    padding-top: 9px;
    padding-bottom: 9px;
    gap: 12px;
  }

  .reflection-stage { gap: 10px; }
  .reflection-line { font-size: 17px; line-height: 1.38; }
  .reflection-takeaway { font-size: clamp(27px, 7.2vw, 32px); }
  .reflection-memory { padding: 12px 14px; gap: 6px; }
  .reflection-memory p,
  .reflection-memory strong { font-size: 16px; line-height: 1.36; }
  .reflection-memory blockquote { max-height: 95px; font-size: 18px; }

  .gemini-choice-copy { gap: 9px; }
  .gemini-choice-copy h1 { font-size: clamp(27px, 7.2vw, 32px); }
  .gemini-action-stack { gap: 8px; }
  .gemini-action-stack .btn { min-height: 54px; }
  .gemini-query-manual { max-height: 110px; }

  .final-insight-stack { gap: 10px; }
  .final-insight-lines { gap: 6px; }
  .final-insight-lines p { padding: 8px 10px; font-size: 17px; line-height: 1.34; }
  .scene-conclusion h1 { font-size: clamp(27px, 7.2vw, 32px); }
}

@media (prefers-reduced-motion: reduce) {
  .returned-from-gemini .screen-content { animation: none !important; }
}

/* ========================================================================== 
   Reading rhythm refinement — conversational pacing and high legibility
   ========================================================================== */

/* Opening: same visual language, but with a quicker, more human reading cadence. */
.opening-curiosity {
  animation-duration: 1.45s;
  animation-delay: .10s;
}
.opening-moment-hook { animation-delay: 1.50s; }
.opening-hook-lead { animation-delay: 1.54s; }
.opening-hook-middle { animation-delay: 1.88s; }
.opening-cta { animation-delay: 2.48s; }
.scene-opening .screen-content::before { animation-delay: 1.43s; }

/* The first line should be easy to read, not a small caption. */
.opening-curiosity {
  font-size: clamp(22px, 5.9vw, 28px);
  line-height: 1.22;
}
.opening-curiosity strong,
.opening-hook strong {
  font-weight: 850;
}
.opening-hook {
  line-height: 1.02;
}

/* New pause between the opening and the first question. */
.scene-prime .screen-content {
  text-align: center;
  align-items: stretch;
  justify-content: center;
}
.prime-stage {
  min-height: min(46vh, 390px);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
}
.prime-now {
  color: var(--violet);
  font-size: clamp(23px, 6vw, 29px);
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: -.025em;
  opacity: 0;
  animation: human-read-in .48s .12s cubic-bezier(.2,.8,.2,1) both;
}
.prime-message {
  max-width: 620px;
  font-size: clamp(38px, 10.2vw, 48px) !important;
  line-height: 1.01 !important;
  text-wrap: balance !important;
  opacity: 0;
  animation: human-read-in .56s .64s cubic-bezier(.2,.8,.2,1) both;
}
.prime-message strong {
  color: var(--violet);
  font-weight: 860;
}
.scene-prime .action-area {
  opacity: 0;
  animation: human-read-in .42s 1.20s cubic-bezier(.2,.8,.2,1) both;
}
.scene-prime .btn {
  max-width: 440px;
  margin-inline: auto;
}

/* Key narrative screens: reveal one thought at a time instead of dumping text. */
.scene-contrast .copy-stack h1,
.scene-geo .copy-stack h1,
.scene-geo .copy-stack .helper,
.scene-geo .copy-stack .geo-tag,
.scene-perspective .copy-stack h1,
.scene-perspective .copy-stack .helper,
.scene-strategy .goon-entry > h1,
.scene-strategy .strategy-line,
.scene-contrast .action-area,
.scene-geo .action-area,
.scene-perspective .action-area,
.scene-strategy .action-area {
  opacity: 0;
  transform: translateY(9px);
  animation: human-read-in .46s cubic-bezier(.2,.8,.2,1) both;
}
.scene-contrast .copy-stack h1 { animation-delay: .10s; }
.scene-contrast .action-area { animation-delay: .72s; }
.scene-geo .copy-stack h1 { animation-delay: .08s; }
.scene-geo .copy-stack .helper { animation-delay: .52s; }
.scene-geo .copy-stack .geo-tag { animation-delay: .88s; }
.scene-geo .action-area { animation-delay: 1.16s; }
.scene-perspective .copy-stack h1 { animation-delay: .08s; }
.scene-perspective .copy-stack .helper { animation-delay: .62s; }
.scene-perspective .action-area { animation-delay: .92s; }
.scene-strategy .goon-entry > h1 { animation-delay: .08s; }
.scene-strategy .strategy-line:nth-child(1) { animation-delay: .50s; }
.scene-strategy .strategy-line:nth-child(2) { animation-delay: .86s; }
.scene-strategy .action-area { animation-delay: 1.18s; }

/* Make semantic emphasis visually helpful without turning whole paragraphs bold. */
.app-shell:not(.scene-opening) h1 strong,
.app-shell:not(.scene-opening) .helper strong,
.app-shell:not(.scene-opening) .strategy-line strong {
  font-weight: 850;
}
.app-shell:not(.scene-opening) h1 strong {
  color: var(--navy);
}
.scene-strategy .strategy-line strong,
.scene-geo .geo-tag strong {
  color: var(--violet);
}

/* Keep primary questions and supporting copy generous on small screens. */
@media (max-width: 520px) {
  .app-shell:not(.scene-opening) .screen-content {
    gap: clamp(18px, 2.6vh, 24px);
  }
  .app-shell:not(.scene-opening) h1 {
    line-height: 1.08;
  }
  .app-shell:not(.scene-opening) .helper {
    line-height: 1.48;
  }
  .scene-prime .screen-content {
    padding-top: 14px;
    padding-bottom: 12px;
  }
  .prime-stage {
    min-height: min(43vh, 335px);
  }
}

@media (max-width: 340px), (max-height: 700px) and (max-width: 520px) {
  .prime-message {
    font-size: clamp(34px, 9.7vw, 40px) !important;
  }
  .prime-now {
    font-size: clamp(21px, 5.7vw, 25px);
  }
  .prime-stage {
    min-height: min(38vh, 275px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-curiosity,
  .opening-moment-hook,
  .opening-hook-line,
  .opening-cta,
  .prime-now,
  .prime-message,
  .scene-prime .action-area,
  .scene-contrast .copy-stack h1,
  .scene-geo .copy-stack h1,
  .scene-geo .copy-stack .helper,
  .scene-geo .copy-stack .geo-tag,
  .scene-perspective .copy-stack h1,
  .scene-perspective .copy-stack .helper,
  .scene-strategy .goon-entry > h1,
  .scene-strategy .strategy-line,
  .scene-contrast .action-area,
  .scene-geo .action-area,
  .scene-perspective .action-area,
  .scene-strategy .action-area {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

@keyframes human-read-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================================================== 
   External IA return flow — keep Radar visible and easy to resume
   ========================================================================== */
.scene-ia-return-wait .screen-content {
  min-height: min(72vh, 620px);
  align-content: center;
  justify-content: center;
  gap: clamp(22px, 4vh, 34px);
  text-align: center;
}

.ia-return-wait {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.4vh, 22px);
}

.ia-return-wait .eyebrow {
  margin: 0;
  font-size: clamp(17px, 4.3vw, 20px);
}

.ia-return-wait h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(38px, 10vw, 58px);
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.ia-return-wait h1 strong {
  color: var(--navy);
}

.return-big-line {
  max-width: 590px;
  color: var(--ink);
  font-size: clamp(20px, 5.4vw, 26px);
  line-height: 1.28;
  font-weight: 720;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.return-human-line {
  color: var(--violet);
  font-size: clamp(18px, 4.8vw, 22px);
  line-height: 1.3;
  font-weight: 760;
}

.ia-return-cta {
  min-height: 62px;
  font-size: clamp(18px, 4.8vw, 20px);
}

.returned-from-chatgpt .scene-ia-return-wait .ia-return-wait,
.returned-from-gemini .scene-ia-return-wait .ia-return-wait {
  animation: return-pop .55s cubic-bezier(.2,.8,.2,1);
}

@media (max-width: 520px) {
  .scene-ia-return-wait .screen-content {
    min-height: calc(100svh - 150px);
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .ia-return-wait h1 {
    font-size: clamp(36px, 11vw, 48px);
  }
  .return-big-line {
    font-size: clamp(19px, 5.4vw, 23px);
  }
}

@media (max-height: 720px) and (max-width: 520px) {
  .scene-ia-return-wait .screen-content {
    min-height: calc(100svh - 120px);
    gap: 16px;
  }
  .ia-return-wait { gap: 12px; }
  .ia-return-wait h1 { font-size: clamp(34px, 10vw, 42px); }
  .return-big-line { font-size: 18px; line-height: 1.25; }
  .return-human-line { font-size: 18px; }
  .ia-return-cta { min-height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .returned-from-chatgpt .scene-ia-return-wait .ia-return-wait,
  .returned-from-gemini .scene-ia-return-wait .ia-return-wait {
    animation: none !important;
  }
}

/* ========================================================================== 
   Final refinement — simplified ChatGPT climax and post-test reactions
   ========================================================================== */
.climax-story-simple {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: clamp(16px, 2.8vh, 24px);
}

.climax-opening-simple {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 5.7vw, 30px);
  line-height: 1.22;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.climax-query-simple {
  margin: 0;
  font-size: clamp(20px, 5.1vw, 28px);
  line-height: 1.34;
  font-weight: 720;
  letter-spacing: -.018em;
}

.climax-invitation-simple {
  margin: 0;
  font-size: clamp(32px, 8.7vw, 46px);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.climax-action-simple {
  gap: clamp(10px, 1.8vh, 16px);
}

.climax-return-note {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 4.4vw, 19px);
  line-height: 1.4;
  font-weight: 620;
  text-align: center;
}

.result-reaction {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: clamp(14px, 2.5vh, 20px);
  text-align: center;
}

.result-reaction h1 {
  margin: 0;
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.result-reaction .helper {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(19px, 5vw, 23px);
  line-height: 1.35;
}

.scene-conclusion .final-insight-stack {
  max-width: 700px;
  margin-inline: auto;
}

.scene-conclusion .final-insight-stack h1 {
  font-size: clamp(34px, 8.8vw, 48px);
  line-height: 1.04;
  text-wrap: balance;
}

.scene-conclusion .final-insight-stack .helper {
  font-size: clamp(18px, 4.8vw, 21px);
}

@media (max-height: 720px) and (max-width: 520px) {
  .climax-story-simple { gap: 12px; }
  .climax-opening-simple { font-size: 19px; }
  .climax-query-simple { font-size: 18px; line-height: 1.28; }
  .climax-invitation-simple { font-size: clamp(30px, 8.6vw, 38px); }
  .climax-return-note { font-size: 16px; }
  .result-reaction h1 { font-size: clamp(31px, 8.8vw, 40px); }
  .result-reaction .helper { font-size: 18px; }
}

/* 2026-08-10 — abertura em uma única tela: primeira frase permanece e a segunda entra abaixo */
.scene-opening .opening-story {
  min-height: clamp(340px, 49vh, 430px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vh, 34px);
  padding-inline: 8px;
}
.scene-opening .opening-moment {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  pointer-events: none;
}
.scene-opening .opening-moment-curiosity {
  display: block !important;
}
.scene-opening .opening-curiosity {
  margin: 0 auto;
  max-width: 590px;
  font-size: clamp(23px, 6.1vw, 31px);
  line-height: 1.18;
  font-weight: 760;
  opacity: 0;
  transform: translateY(10px);
  animation: opening-line-stay .58s .30s var(--opening-ease) forwards;
}
.scene-opening .opening-moment-hook {
  display: block;
  opacity: 1;
  animation: none;
}
.scene-opening .opening-hook {
  margin: 0 auto;
  max-width: 650px;
  font-size: clamp(34px, 9.2vw, 43px);
  line-height: 1.02;
}
.scene-opening .opening-hook-line {
  opacity: 0;
  transform: translateY(12px);
}
.scene-opening .opening-hook-lead {
  animation: opening-line-stay .50s 1.55s var(--opening-ease) forwards;
}
.scene-opening .opening-hook-middle {
  margin-top: 5px;
  animation: opening-line-stay .50s 1.78s var(--opening-ease) forwards;
}
.scene-opening .opening-cta {
  animation: opening-cta-in .40s 2.75s var(--opening-ease) forwards;
}
.scene-opening .screen-content::before {
  animation: opening-radar-react .78s 1.90s var(--opening-ease) both;
}

/* fast-forward: manter as duas frases juntas, sem esconder a primeira */
.scene-opening .opening-layout.is-revealed .opening-moment-curiosity,
.scene-opening .opening-layout.is-revealed .opening-moment-hook {
  display: block !important;
  opacity: 1 !important;
}
.scene-opening .opening-layout.is-revealed .opening-curiosity,
.scene-opening .opening-layout.is-revealed .opening-hook-line,
.scene-opening .opening-layout.is-revealed .opening-cta {
  animation: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

@keyframes opening-line-stay {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 430px) {
  .scene-opening .opening-story {
    min-height: min(53vh, 430px);
    gap: clamp(20px, 3vh, 28px);
  }
  .scene-opening .opening-curiosity {
    font-size: clamp(22px, 6.3vw, 28px);
    max-width: 330px;
  }
  .scene-opening .opening-hook {
    font-size: clamp(34px, 9.6vw, 41px);
    max-width: 365px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-opening .opening-moment-curiosity,
  .scene-opening .opening-moment-hook {
    display: block !important;
    opacity: 1 !important;
  }
  .scene-opening .opening-curiosity,
  .scene-opening .opening-hook-line,
  .scene-opening .opening-cta {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}


/* ========================================================================== 
   Bônus antes do clímax — material GoOn com download automático
   ========================================================================== */
.scene-material-gift .screen-content {
  justify-content: center;
}

.material-gift-stage {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: clamp(16px, 2.7vh, 24px);
  text-align: center;
}

.material-gift-kicker {
  margin: 0;
  font-size: clamp(18px, 4.8vw, 21px);
  font-weight: 760;
}

.material-gift-stage h1 {
  margin: 0;
  font-size: clamp(34px, 8.9vw, 48px);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.material-gift-stage .helper {
  margin: 0 auto;
  max-width: 560px;
  font-size: clamp(19px, 5vw, 22px);
  line-height: 1.35;
  text-wrap: balance;
}

.material-download-status {
  margin: 2px 0 0;
  font-size: clamp(16px, 4.2vw, 18px);
  line-height: 1.35;
  font-weight: 760;
  color: var(--muted);
}

.material-download-fallback {
  width: fit-content;
  margin: -6px auto 0;
  padding: 8px 4px;
  color: var(--purple, #6f4cff);
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.material-gift-cta {
  min-height: 60px;
  font-size: clamp(18px, 4.8vw, 20px);
}

@media (max-height: 700px) and (max-width: 520px) {
  .material-gift-stage { gap: 12px; }
  .material-gift-stage h1 { font-size: clamp(31px, 8.4vw, 39px); }
  .material-gift-stage .helper { font-size: 18px; }
  .material-download-status,
  .material-download-fallback { font-size: 16px; }
}
