
:root {
  --bg: #060a14;
  --surface: #0c1425;
  --ink: #f4f1e7;
  --muted: #98a1b6;
  --gold: #e8c468;
  --gold-hi: #f5d98b;
  --teal: #6fd9ce;
  --line: rgba(232, 196, 104, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(111, 217, 206, 0.10), transparent 28rem),
    radial-gradient(circle at 12% 44%, rgba(232, 196, 104, 0.08), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, a { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.topbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brandButton { min-height: 44px; border: 0; padding: 7px 0; background: transparent; }
.brandWord { font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; font-weight: 500; letter-spacing: .35em; }
.brandRay { width: 42px; height: 1px; background: linear-gradient(90deg, var(--gold), var(--teal), transparent); transform: skewY(-13deg); transform-origin: left center; }
.freeTag { color: var(--gold-hi); border: 1px solid var(--line); background: rgba(232,196,104,.06); padding: 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; }

.heroStage {
  width: min(1280px, calc(100% - 32px));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 32px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(440px, 1.04fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  position: relative;
}
.heroStage::before {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  left: -26rem;
  top: 4%;
  border: 1px solid rgba(232,196,104,.08);
  border-radius: 50%;
  pointer-events: none;
}
.heroCopy { position: relative; z-index: 3; max-width: 650px; }
.heroCopy h1 {
  margin: 22px 0 24px;
  max-width: 680px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(3.55rem, 6.5vw, 7.25rem);
  line-height: .88;
  letter-spacing: -.058em;
  font-weight: 400;
  text-wrap: balance;
}
.heroCopy .lead { margin: 0; max-width: 600px; text-align: left; font-size: clamp(1rem, 1.35vw, 1.16rem); }
.heroActions { margin-top: 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.heroActions .primaryButton { min-width: 260px; }
.timePromise { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 650; font-size: .88rem; }
.timePromise i { width: 23px; height: 23px; border: 1.5px solid var(--teal); border-radius: 50%; position: relative; }
.timePromise i::before, .timePromise i::after { content: ""; position: absolute; left: 10px; top: 5px; width: 1.5px; height: 6px; border-radius: 2px; background: var(--teal); transform-origin: bottom; }
.timePromise i::after { transform: rotate(115deg); height: 5px; }
.privacyPromise { margin: 14px 0 0; color: #7f899e; font-size: .78rem; line-height: 1.5; }

.signalStage {
  min-height: 570px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .95fr) minmax(210px, .8fr);
  align-items: center;
  gap: 18px;
  padding: 58px 24px 58px 56px;
  overflow: hidden;
  border: 1px solid rgba(232,196,104,.13);
  border-radius: 30px 2px 30px 2px;
  background:
    linear-gradient(115deg, rgba(232,196,104,.035), transparent 34%),
    linear-gradient(160deg, rgba(12,20,37,.96), rgba(6,10,20,.72));
  box-shadow: 0 38px 100px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
  isolation: isolate;
}
.signalStage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
  pointer-events: none;
}
.signalStage::after {
  content: "DIAGNÓSTICO / 01";
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(244,241,231,.3);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.lightBeam {
  position: absolute;
  z-index: -1;
  width: 112%;
  height: 78%;
  left: -42%;
  top: 11%;
  clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 55%);
  background: linear-gradient(90deg, rgba(232,196,104,0), rgba(232,196,104,.08) 32%, rgba(232,196,104,.24) 72%, rgba(232,196,104,.07));
  filter: blur(.2px);
}
.diagnosticDial {
  width: min(100%, 290px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from -18deg, var(--gold) 0 57%, rgba(232,196,104,.14) 57% 74%, var(--teal) 74% 82%, rgba(111,217,206,.12) 82% 100%);
  box-shadow: 0 0 0 1px rgba(232,196,104,.12), 0 0 80px rgba(232,196,104,.16);
}
.diagnosticDial::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #09111f;
  box-shadow: inset 0 0 0 1px rgba(232,196,104,.18);
}
.dialOrbit { position: absolute; border-radius: 50%; border: 1px solid rgba(232,196,104,.18); }
.dialOrbitOne { inset: -18px; }
.dialOrbitTwo { inset: -36px; border-style: dashed; opacity: .42; }
.dialCore { position: relative; z-index: 2; display: grid; justify-items: center; align-content: center; }
.dialCore strong { margin-top: 13px; font-family: Georgia, serif; font-size: 4.4rem; line-height: .76; font-weight: 400; color: var(--ink); }
.dialCore small { margin-top: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; font-weight: 800; }
.lighthouseIcon { width: 50px; height: 69px; position: relative; display: block; }
.lighthouseIcon i { position: absolute; display: block; left: 50%; transform: translateX(-50%); }
.lightRoof { top: 0; width: 32px; height: 15px; border: 2px solid var(--gold); border-bottom: 0; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.lightRoom { top: 14px; width: 26px; height: 18px; border: 2px solid var(--gold); }
.lightRoom::after { content: ""; position: absolute; width: 4px; height: 4px; border: 1px solid var(--teal); border-radius: 50%; left: 9px; top: 5px; }
.lightTower { top: 31px; width: 30px; height: 33px; border: 2px solid var(--gold); border-top: 0; clip-path: polygon(24% 0, 76% 0, 100% 100%, 0 100%); }
.lightBase { bottom: 0; width: 42px; height: 2px; background: var(--teal); box-shadow: -7px 4px 0 -1px rgba(111,217,206,.7), 7px 4px 0 -1px rgba(111,217,206,.7); }
.signalList { position: relative; z-index: 2; display: grid; gap: 18px; }
.signalList > div { display: grid; grid-template-columns: 26px 1fr; gap: 3px 10px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.signalList > div:last-child { border-bottom: 0; }
.signalList span { grid-row: 1 / span 2; width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid rgba(232,196,104,.35); border-radius: 50%; color: var(--gold); font-size: .56rem; font-weight: 800; }
.signalList p { margin: 0; color: var(--ink); font-size: .72rem; font-weight: 700; }
.signalList i { height: 3px; align-self: end; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.07); }
.signalList i b { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--teal)); }

.heroEvidence {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.012);
}
.heroEvidence div { min-height: 76px; padding: 18px clamp(16px, 3vw, 34px); display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; align-content: center; }
.heroEvidence div + div { border-left: 1px solid rgba(255,255,255,.08); }
.heroEvidence small { grid-row: 1 / span 2; align-self: center; color: var(--gold); font-size: .62rem; letter-spacing: .12em; }
.heroEvidence strong { font-family: Georgia, serif; font-size: 1rem; font-weight: 500; }
.heroEvidence span { color: #7f899e; font-size: .72rem; }

.hero { width: min(850px, calc(100% - 32px)); margin: 0 auto; padding: clamp(64px, 10vw, 116px) 0 72px; text-align: center; }
.eyebrow { display: inline-flex; gap: 9px; align-items: center; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800; }
.eyebrow span { display: block; width: 26px; height: 1px; background: var(--gold); }
h1 { max-width: 820px; margin: 20px auto 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 8.4vw, 5.6rem); line-height: .96; letter-spacing: -.045em; font-weight: 500; text-wrap: balance; }
.lead { max-width: 670px; margin: 0 auto; color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.22rem); line-height: 1.65; text-wrap: balance; }

.startCard { margin: 38px auto 0; }
.primaryButton { border: 0; border-radius: 12px; background: var(--gold); color: #1a1509; padding: 17px 24px; min-width: min(100%, 310px); font-weight: 850; box-shadow: 0 12px 36px rgba(232,196,104,.16); transition: transform .2s ease, background .2s ease; }
.primaryButton { display: inline-flex; align-items: center; justify-content: center; gap: 14px; text-decoration: none; }
.primaryButton:hover { transform: translateY(-2px); background: var(--gold-hi); }
.primaryButton:focus-visible, .choiceGrid button:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.startCard p { margin: 13px 0 0; color: #8891a6; font-size: .82rem; }

.questionCard { max-width: 700px; margin: 22px auto 0; padding: clamp(24px, 6vw, 44px); text-align: left; border: 1px solid rgba(255,255,255,.09); background: linear-gradient(145deg, rgba(12,20,37,.98), rgba(10,17,32,.96)); border-radius: 20px; box-shadow: 0 28px 80px rgba(0,0,0,.28); outline: none; }
.progressRow { display: flex; justify-content: space-between; color: #8891a6; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.progress { height: 5px; margin: 11px 0 28px; border-radius: 99px; background: rgba(255,255,255,.07); overflow: hidden; }
.progress span { display: block; width: 16.667%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--teal)); }
.questionCard h2 { margin: 8px 0 10px; font-family: Georgia, serif; font-size: clamp(1.75rem, 5vw, 2.65rem); line-height: 1.1; font-weight: 500; text-wrap: balance; }
.questionCard > p { margin: 0 0 24px; color: var(--muted); line-height: 1.55; }
.choiceGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choiceGrid button { min-height: 62px; border: 1px solid rgba(255,255,255,.11); border-radius: 11px; color: var(--ink); background: rgba(255,255,255,.035); text-align: left; padding: 12px 46px 12px 16px; font-weight: 700; transition: border-color .2s ease, background .2s ease, transform .2s ease; position: relative; }
.choiceGrid button span, .choiceGrid button small { display: block; }
.choiceGrid button small { margin-top: 3px; color: var(--teal); font-weight: 650; }
.choiceGrid button b { position: absolute; top: 50%; right: 17px; transform: translateY(-50%); color: var(--gold); }
.choiceGrid button:hover { border-color: var(--gold); background: rgba(232,196,104,.07); }
.choiceGrid button:hover { transform: translateY(-1px); }

.trustRow { margin: 40px auto 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: center; gap: clamp(18px, 7vw, 54px); color: #8891a6; font-size: .79rem; }
.trustRow b { color: var(--ink); }

.valueStrip { margin: 60px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.025); text-align: left; }
.valueStrip div { padding: 22px 24px; display: grid; gap: 4px; position: relative; }
.valueStrip div + div { border-left: 1px solid rgba(255,255,255,.08); }
.valueStrip small { color: var(--gold); font-size: .68rem; letter-spacing: .12em; }
.valueStrip strong { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.valueStrip span { color: #8891a6; font-size: .78rem; }

.quizShell { width: min(760px, calc(100% - 32px)); min-height: calc(100vh - 150px); margin: 0 auto; padding: clamp(44px, 8vw, 82px) 0 70px; }
.quizTopline { display: flex; align-items: center; justify-content: space-between; color: #8891a6; font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.backButton { border: 0; color: var(--muted); background: transparent; padding: 8px 0; }
.backButton:hover { color: var(--ink); }
.quizShell > .progress { margin: 10px 0 0; }
.quizShell > .progress span { transition: width .32s ease; }
.questionKicker { color: var(--gold) !important; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 800; }
.questionHelper { color: var(--muted); }
.privacyNote { text-align: center; color: #747e94; font-size: .74rem; margin: 18px 0 0; }

.resultShell { width: min(1040px, calc(100% - 32px)); margin: 0 auto; padding: clamp(34px, 6vw, 70px) 0 80px; outline: none; }
.reportCard { overflow: hidden; border: 1px solid #283248; border-radius: 28px; background: #09111f; box-shadow: 0 38px 120px rgba(0,0,0,.38); }
.reportMasthead { min-height: 92px; padding: 0 clamp(24px, 5vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 22px; border-bottom: 1px solid #283248; background: #0a1221; }
.reportWordmark, .reportFooter > span { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; letter-spacing: .38em; color: var(--ink); }
.reportEdition { padding: 9px 13px; border: 1px solid rgba(232,196,104,.28); border-radius: 999px; background: #17180f; color: var(--gold); font-size: .6rem; font-weight: 800; letter-spacing: .18em; white-space: nowrap; }
.reportHero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px 40px; overflow: hidden; padding: clamp(48px, 7vw, 78px) clamp(24px, 6vw, 64px) clamp(44px, 7vw, 72px); background: radial-gradient(circle at 86% 28%, rgba(232,196,104,.15), transparent 260px), linear-gradient(145deg,#0b1526,#080e1a); }
.reportHero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -310px; top: -195px; border: 1px solid rgba(232,196,104,.16); border-radius: 50%; box-shadow: 0 0 0 34px rgba(232,196,104,.025), 0 0 0 68px rgba(111,217,206,.025); }
.reportTitleBlock, .reportScore, .reportThesis { position: relative; z-index: 1; }
.reportStatus { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--teal); font-size: .68rem; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.reportStatus i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 14px rgba(111,217,206,.72); animation: reportPulse .8s ease-out 1; }
@keyframes reportPulse { 0%, 100% { opacity:.55; transform:scale(.86); } 50% { opacity:1; transform:scale(1); } }
.reportTitleBlock h1 { margin: 0; max-width: 680px; font-size: clamp(3rem, 7vw, 6.35rem); line-height: .92; text-align: left; }
.reportScore { align-self: center; min-width: 160px; text-align: right; }
.reportScore strong { display: block; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.7rem, 10vw, 7.8rem); line-height: .72; font-weight: 400; letter-spacing: -.06em; }
.reportScore span { display: block; margin-top: 17px; color: #8f9aaf; font-size: .66rem; font-weight: 850; letter-spacing: .18em; }
.reportBeam { grid-column: 1 / -1; height: 1px; background: linear-gradient(90deg,var(--gold),var(--teal),transparent); }
.reportThesis { grid-column: 1 / -1; max-width: 760px; margin: 0; color: #b1bacb; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.7vw, 2.05rem); line-height: 1.35; }

.reportSignals, .reportNextMoves { padding: clamp(38px, 6vw, 60px) clamp(24px, 6vw, 64px); }
.reportSignals { background: #f2ede2; color: #111622; }
.reportSectionHead { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.reportSectionHead span, .reportValue span, .reportMove > span, .reportCta span { color: #8b6f24; font-size: .64rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.reportSectionHead h2, .reportValue h2, .reportMove h2, .reportCta h2 { margin: 9px 0 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.025em; }
.reportSectionHead h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.reportSectionHead > b { padding: 9px 13px; border-radius: 10px; background: #0a1323; color: var(--gold); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; white-space: nowrap; }
.dimensionList { display: grid; gap: 18px; }
.dimension > div:first-child { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: .86rem; }
.dimension b { color: var(--gold-hi); }
.dimensionBar { height: 6px; border-radius: 99px; overflow: hidden; background: rgba(255,255,255,.07); }
.dimensionBar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--teal)); }
.reportDimensionList { grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid #d6cebf; border-bottom: 1px solid #d6cebf; }
.reportDimension { min-width: 0; padding: 22px 14px; }
.reportDimension + .reportDimension { border-left: 1px solid #d6cebf; }
.reportDimension > div:first-child { align-items: flex-start; gap: 9px; min-height: 44px; color: #20242c; }
.reportDimension > div:first-child > span { display: grid; gap: 7px; }
.reportDimension small { color: #8b6f24; font-size: .58rem; letter-spacing: .12em; }
.reportDimension b { color: #20242c; font-size: .75rem; }
.reportDimension .dimensionBar { background: #ddd6c9; }

.reportValue { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 30px; padding: clamp(38px, 6vw, 58px) clamp(24px, 6vw, 64px); background: #fcf8ef; color: #141823; border-top: 1px solid #d6cebf; }
.reportValue h2 { max-width: 580px; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
.reportValue p { max-width: 650px; margin: 14px 0 0; color: #5b5b58; font-size: .9rem; line-height: 1.65; }
.reportValue > strong { justify-self: end; font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 5.7rem); font-weight: 400; letter-spacing: -.055em; color: #0a1323; }

.reportMove { padding: clamp(42px, 7vw, 68px) clamp(24px, 6vw, 64px); background: var(--gold); color: #111622; }
.reportMove > span { color: #4f3c09; }
.reportMove h2 { max-width: 760px; font-size: clamp(2.55rem, 6vw, 5rem); line-height: .95; }
.reportMove p { max-width: 790px; margin: 19px 0 0; color: #3f3824; font-size: 1rem; line-height: 1.65; }

.reportNextMoves { background: #0d1729; }
.reportNextMoves .reportSectionHead span { color: var(--teal); }
.reportNextMoves .reportSectionHead h2 { color: var(--ink); }
.priorityList { display: grid; gap: 12px; }
.priorityList article { display: grid; grid-template-columns: 70px 1fr; gap: 16px; padding: 25px 28px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.025); }
.priorityNumber { color: var(--gold); font-family: Georgia, serif; font-size: 1.45rem; }
.priorityList h3 { margin: 0 0 7px; font-size: 1rem; }
.priorityList p { margin: 0; max-width: 780px; color: var(--muted); line-height: 1.55; }

.compactPriorities { grid-template-columns: repeat(2, 1fr); }
.compactPriorities article { grid-template-columns: 44px 1fr; padding: 24px; }
.reportCta { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; padding: clamp(40px, 6vw, 60px) clamp(24px, 6vw, 64px); background: #f2ede2; color: #111622; }
.reportCta h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.reportCta p { max-width: 620px; margin: 14px 0 0; color: #595a59; line-height: 1.6; }
.ctaActions { display: grid; gap: 10px; }
.ctaActions .primaryButton { min-width: 0; background: #10182a; color: var(--ink); box-shadow: none; }
.ctaActions .primaryButton:hover { background: #060a14; }
.secondaryButton { display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border: 1px solid rgba(26,21,9,.3); border-radius: 11px; color: #1a1509; text-decoration: none; font-weight: 800; }
.reportFooter { width: 100%; min-height: 96px; padding: 24px clamp(24px, 6vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #283248; background: #060a13; }
.reportFooter p { margin: 0; color: #7f899c; font-size: .73rem; line-height: 1.55; text-align: right; }
.reportFooter b { color: var(--gold); font-weight: 600; }
.resultFooterActions { display: flex; justify-content: center; gap: 18px; margin-top: 28px; }
.resultFooterActions button { min-height: 44px; border: 0; padding: 10px 8px; background: transparent; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; font-size: .82rem; }
.resultFooterActions button:hover { color: var(--ink); }

footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto; min-height: 78px; border-top: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #747e94; font-size: .75rem; }
footer > a { display: inline-flex; min-height: 44px; align-items: center; }
footer a:hover { color: var(--ink); }

@media (max-width: 1040px) {
  .heroStage {
    max-width: 760px;
    min-height: auto;
    padding-top: 72px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .heroCopy { max-width: 710px; }
  .heroCopy h1 { max-width: 710px; font-size: clamp(4rem, 10.5vw, 6.5rem); }
  .signalStage { min-height: 500px; padding-left: clamp(32px, 8vw, 70px); }
  .heroEvidence { grid-column: 1; }
}

@media (max-width: 560px) {
  .topbar { min-height: 66px; }
  .hero { padding-top: 56px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.25rem); }
  .heroStage { width: min(100% - 24px, 760px); padding: 48px 0 24px; gap: 32px; }
  .heroCopy h1 { margin: 17px 0 20px; font-size: clamp(3.25rem, 15.6vw, 4.45rem); line-height: .9; letter-spacing: -.055em; }
  .heroCopy .lead { font-size: .98rem; line-height: 1.58; }
  .heroActions { margin-top: 28px; gap: 17px; align-items: flex-start; flex-direction: column; }
  .heroActions .primaryButton { width: 100%; min-width: 0; }
  .privacyPromise { margin-top: 11px; }
  .signalStage {
    min-height: 410px;
    grid-template-columns: minmax(150px, 1.12fr) minmax(120px, .88fr);
    gap: 12px;
    padding: 58px 14px 30px 24px;
    border-radius: 22px 2px 22px 2px;
  }
  .signalStage::after { right: 14px; top: 17px; }
  .diagnosticDial { width: min(100%, 185px); }
  .diagnosticDial::before { inset: 8px; }
  .dialOrbitOne { inset: -11px; }
  .dialOrbitTwo { inset: -22px; }
  .dialCore strong { margin-top: 8px; font-size: 3.15rem; }
  .dialCore small { margin-top: 6px; }
  .lighthouseIcon { width: 38px; height: 54px; transform: scale(.82); }
  .signalList { gap: 0; }
  .signalList > div { grid-template-columns: 22px 1fr; gap: 2px 7px; padding: 8px 0; }
  .signalList span { width: 22px; height: 22px; font-size: .5rem; }
  .signalList p { font-size: .64rem; }
  .heroEvidence { grid-template-columns: 1fr; }
  .heroEvidence div { min-height: 67px; padding: 14px 18px; }
  .heroEvidence div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .choiceGrid { grid-template-columns: 1fr; }
  .trustRow { gap: 12px; justify-content: space-between; }
  .trustRow span { max-width: 84px; }
  .valueStrip { grid-template-columns: 1fr; }
  .valueStrip div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .questionCard { border-radius: 16px; }
  .resultShell { width: min(100% - 20px, 1040px); }
  .reportCard { border-radius: 20px; }
  .reportMasthead { min-height: 78px; }
  .reportWordmark { font-size: 1.2rem; }
  .reportEdition { padding: 8px 10px; font-size: .52rem; }
  .reportHero { grid-template-columns: 1fr; gap: 26px; }
  .reportScore { justify-self: start; text-align: left; }
  .reportScore strong { font-size: 5.8rem; }
  .reportBeam, .reportThesis { grid-column: 1; }
  .reportDimensionList { grid-template-columns: repeat(2, 1fr); border-bottom: 0; }
  .reportDimension { border-bottom: 1px solid #d6cebf; }
  .reportDimension:nth-child(odd) { border-left: 0; }
  .reportDimension:last-child { grid-column: 1 / -1; }
  .reportValue, .reportCta { grid-template-columns: 1fr; }
  .reportValue > strong { justify-self: start; }
  .compactPriorities { grid-template-columns: 1fr; }
  .priorityList article { grid-template-columns: 44px 1fr; padding: 22px 18px; gap: 8px; }
  .reportFooter { min-height: 112px; }
  .resultFooterActions { flex-direction: column; align-items: center; }
  footer { min-height: 96px; flex-direction: column; justify-content: center; text-align: center; }
}

@media (min-width: 561px) and (max-width: 840px) {
  .reportValue, .reportCta { grid-template-columns: 1fr; }
  .reportValue > strong { justify-self: start; }
  .reportDimensionList { grid-template-columns: repeat(3, 1fr); }
  .compactPriorities { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
