:root {
  --ink: #07130f;
  --ink-soft: #12241c;
  --forest: #123a2b;
  --lime: #b7f34a;
  --lime-soft: #dbff91;
  --paper: #f5f3ec;
  --white: #fffefa;
  --muted: #66736c;
  --line: #d9ddd5;
  --danger: #bc4b35;
  --warning: #b4771f;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 24px 80px rgba(7, 19, 15, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.is-hidden { display: none !important; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.site-header {
  width: min(100% - 48px, 1280px);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(7, 19, 15, .14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .5;
}

.brand-mark::before { inset: 7px; }
.brand-mark::after { inset: 13px; background: currentColor; opacity: 1; }
.brand-mark span::before { width: 15px; border-radius: 0; border-width: 1px 0 0; transform: rotate(-43deg); top: 9px; left: 16px; }

.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 14px; letter-spacing: .17em; }
.brand-copy small { margin-top: 5px; font-size: 8px; font-weight: 700; letter-spacing: .22em; color: var(--muted); }

.header-meta { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #63a92d; box-shadow: 0 0 0 4px rgba(99, 169, 45, .12); }

.landing {
  width: min(100% - 48px, 1280px);
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span { color: #8e9a92; margin-right: 10px; }

.hero-copy h1 {
  max-width: 730px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 6.1vw, 90px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}

.hero-copy h1 em { color: var(--forest); font-weight: 400; }
.hero-lede { max-width: 650px; margin: 32px 0 0; color: #4c5a53; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 38px; }

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .icon-button:focus-visible, .text-button:focus-visible, .option-button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(95, 138, 44, .42); outline-offset: 3px; }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px rgba(7, 19, 15, .2); }
.button-primary:hover { background: var(--forest); box-shadow: 0 15px 35px rgba(18, 58, 43, .25); }
.button-primary span { color: var(--lime); font-size: 18px; }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.button-light { background: var(--lime); color: var(--ink); }
.button-full { width: 100%; margin-top: 8px; }
.button:disabled { opacity: .62; cursor: wait; transform: none; }

.time-note { color: var(--muted); font-size: 13px; }
.time-note strong { color: var(--ink); }
.hero-proof { margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; gap: 48px; }
.hero-proof div { display: flex; align-items: baseline; gap: 9px; }
.hero-proof strong { font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.hero-proof span { max-width: 70px; color: var(--muted); font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .08em; }

.radar-visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(183, 243, 74, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 243, 74, .035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, #194b37, #07130f 66%);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
}

.radar-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(130deg, transparent 40%, rgba(183, 243, 74, .08)); }
.radar-grid { position: relative; width: 390px; height: 390px; border: 1px solid rgba(183, 243, 74, .12); border-radius: 50%; }
.radar-grid::before, .radar-grid::after { content: ""; position: absolute; background: rgba(183, 243, 74, .12); }
.radar-grid::before { width: 1px; height: 100%; left: 50%; }
.radar-grid::after { height: 1px; width: 100%; top: 50%; }
.orbit { position: absolute; border: 1px solid rgba(183, 243, 74, .2); border-radius: 50%; }
.orbit-one { inset: 49px; }
.orbit-two { inset: 99px; }
.orbit-three { inset: 149px; }
.radar-sweep { position: absolute; inset: 0; overflow: hidden; border-radius: 50%; animation: spin 7s linear infinite; }
.radar-sweep::before { content: ""; position: absolute; top: 50%; left: 50%; width: 50%; height: 50%; transform-origin: 0 0; background: conic-gradient(from -90deg, rgba(183,243,74,.25), transparent 32%); }
.radar-point { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(183, 243, 74, .1), 0 0 20px var(--lime); animation: pulse 2.5s ease infinite; }
.point-one { top: 72px; right: 78px; }
.point-two { bottom: 85px; left: 62px; animation-delay: .8s; }
.point-three { top: 180px; right: 30px; animation-delay: 1.4s; }
.radar-center { position: absolute; inset: 150px; border-radius: 50%; background: var(--lime); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink); box-shadow: 0 0 45px rgba(183,243,74,.24); z-index: 2; }
.radar-center span { font-family: Georgia, serif; font-size: 27px; line-height: 1; }
.radar-center small { margin-top: 4px; font-size: 6px; font-weight: 900; letter-spacing: .2em; }
.signal-card { position: absolute; z-index: 3; display: flex; gap: 12px; align-items: center; min-width: 145px; padding: 13px 15px; color: var(--white); background: rgba(12, 31, 24, .84); border: 1px solid rgba(183, 243, 74, .25); border-radius: 12px; backdrop-filter: blur(10px); }
.signal-card > span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--lime); background: rgba(183,243,74,.1); border-radius: 50%; }
.signal-card div { display: flex; flex-direction: column; }
.signal-card small { font-size: 7px; letter-spacing: .16em; color: #a5b6ad; }
.signal-card strong { margin-top: 3px; font-family: Georgia, serif; font-size: 15px; font-weight: 400; }
.signal-top { top: 85px; right: 28px; }
.signal-bottom { bottom: 70px; left: 25px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .45; transform: scale(.75); } }
@keyframes enter { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: enter .7s ease both; }
.reveal-delay { animation-delay: .14s; }

.dimensions-section { padding: 110px max(24px, calc((100vw - 1280px) / 2)); background: var(--white); }
.section-heading { display: grid; grid-template-columns: .7fr 1.1fr 1fr; align-items: end; gap: 50px; margin-bottom: 58px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 4vw, 56px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.section-heading > p:last-child { margin: 0; color: var(--muted); line-height: 1.6; }
.dimension-grid { display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dimension-grid article { min-height: 190px; padding: 25px 18px; border-right: 1px solid var(--line); transition: background .2s ease; }
.dimension-grid article:last-child { border-right: 0; }
.dimension-grid article:hover { background: #f2f6eb; }
.dimension-grid article > span { color: #8c9991; font: 11px/1 ui-monospace, monospace; }
.dimension-grid h3 { margin: 52px 0 9px; font-size: 16px; }
.dimension-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.assessment-shell { min-height: calc(100vh - 92px); background: var(--ink); color: var(--white); }
.assessment-topbar { width: min(100% - 48px, 1120px); margin: 0 auto; padding: 30px 0; display: grid; grid-template-columns: 50px 1fr; gap: 18px 28px; align-items: center; }
.icon-button { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: white; background: transparent; cursor: pointer; font-size: 24px; }
.progress-copy { display: flex; justify-content: space-between; color: #a8b5ae; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.progress-copy strong { color: var(--lime); }
.progress-track { grid-column: 2; width: 100%; height: 3px; border: 0; border-radius: 10px; overflow: hidden; appearance: none; background: rgba(255,255,255,.1); }
.progress-track::-webkit-progress-bar { background: rgba(255,255,255,.1); }
.progress-track::-webkit-progress-value { background: var(--lime); transition: width .35s ease; }
.progress-track::-moz-progress-bar { background: var(--lime); }
.interview-error { width: min(100% - 48px, 890px); margin: 0 auto 8px; padding: 12px 15px; border: 1px solid rgba(255, 152, 126, .35); border-radius: 10px; color: #ffd7cd; background: rgba(146, 42, 25, .28); font-size: 12px; line-height: 1.5; }
.assessment-panel { width: min(100% - 48px, 890px); margin: 0 auto; padding: 55px 0 100px; animation: enter .35s ease both; }
.agent-intro { display: flex; align-items: center; gap: 12px; margin-bottom: 55px; }
.compact-agent { margin-bottom: 35px; }
.agent-avatar { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(183,243,74,.5); border-radius: 50%; }
.agent-avatar::before { content: ""; width: 17px; height: 17px; border: 1px solid var(--lime); border-radius: 50%; }
.agent-avatar span { position: absolute; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
.agent-intro div { display: flex; flex-direction: column; }
.agent-intro strong { font-size: 13px; }
.agent-intro small { margin-top: 4px; color: #899a91; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.dimension-label { margin: 0 0 18px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.context-chip-list { display: flex; flex-wrap: wrap; gap: 7px; margin: -34px 0 32px 54px; }
.context-chip-list span { padding: 6px 9px; border: 1px solid rgba(183,243,74,.22); border-radius: 100px; color: #b9c8c0; background: rgba(183,243,74,.045); font-size: 9px; font-weight: 750; letter-spacing: .035em; }
.text-button { padding: 8px 0; color: inherit; background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 700; text-decoration: none; }
.text-button:disabled { opacity: .25; cursor: default; }

/* Conversational assessment */
.conversation-consent h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.consent-lede { max-width: 740px; margin: 22px 0 0; color: #a8b6ae; font-size: 15px; line-height: 1.7; }
.conversation-privacy-note { max-width: 760px; margin-top: 28px; padding: 20px 22px; display: flex; flex-direction: column; gap: 7px; border: 1px solid rgba(183,243,74,.22); border-left: 3px solid var(--lime); border-radius: 0 14px 14px 0; color: #c8d3cd; background: rgba(183,243,74,.055); }
.conversation-privacy-note strong { color: var(--white); font-size: 13px; }
.conversation-privacy-note span { color: #a6b5ad; font-size: 12px; line-height: 1.6; }
#conversation-consent-form { max-width: 760px; margin-top: 26px; }
.conversation-consent .conversation-acknowledgement { color: #c5d0ca; }
.conversation-consent .conversation-acknowledgement.has-error { color: #ffd0c5; }
.conversation-consent .conversation-acknowledgement input { accent-color: var(--lime); }
.conversation-consent .field-error { color: #ffb9a8; }
.consent-actions { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 26px; }
.consent-actions > span { max-width: 330px; color: #82938a; font-size: 10px; line-height: 1.5; text-align: right; }

.interview-workspace {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 14px 0 85px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 22px;
  align-items: start;
  animation: enter .35s ease both;
}
.conversation-card { min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: #0a1a14; box-shadow: 0 28px 75px rgba(0,0,0,.2); }
.conversation-header { min-height: 78px; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.018); }
.conversation-header .agent-intro { margin: 0; }
.bedrock-agent-badge { display: inline-flex; align-items: center; gap: 8px; color: #8fa098; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.bedrock-agent-badge i { width: 7px; height: 7px; border-radius: 50%; background: #77877f; box-shadow: 0 0 0 4px rgba(119,135,127,.1); }
.bedrock-agent-badge.is-bedrock { color: #bfd0c6; }
.bedrock-agent-badge.is-bedrock i { background: var(--lime); box-shadow: 0 0 0 4px rgba(183,243,74,.12), 0 0 14px rgba(183,243,74,.35); }
.transcript { min-height: 430px; max-height: min(58vh, 680px); padding: 30px 24px 16px; overflow-y: auto; overscroll-behavior: contain; scrollbar-color: rgba(183,243,74,.25) transparent; }
.message-bubble { width: min(82%, 680px); margin-bottom: 22px; animation: message-in .25s ease both; }
.message-bubble p { margin: 7px 0 0; padding: 15px 17px; border-radius: 4px 16px 16px 16px; color: #dde6e1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); font-size: 14px; line-height: 1.65; white-space: pre-wrap; overflow-wrap: anywhere; }
.message-user { margin-left: auto; }
.message-user .message-meta { justify-content: flex-end; }
.message-user p { border-color: rgba(183,243,74,.22); border-radius: 16px 4px 16px 16px; color: #efffd6; background: rgba(183,243,74,.09); }
.message-bubble.is-optimistic { opacity: .72; }
.message-meta { display: flex; align-items: baseline; gap: 8px; padding: 0 4px; }
.message-meta strong { color: #dbe5df; font-size: 11px; }
.message-meta span { color: #75867d; font-size: 8px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
@keyframes message-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.agent-thinking { margin: 0 24px 18px; display: flex; align-items: center; gap: 12px; color: #aebcb4; }
.thinking-avatar { width: 32px; height: 32px; flex: 0 0 auto; }
.thinking-avatar::before { width: 12px; height: 12px; }
.agent-thinking > div { display: flex; align-items: center; gap: 10px; }
.agent-thinking strong { font-size: 10px; font-weight: 650; }
.thinking-dots { display: inline-flex; gap: 4px; }
.thinking-dots i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); animation: thinking-dot 1.1s ease-in-out infinite; }
.thinking-dots i:nth-child(2) { animation-delay: .16s; }
.thinking-dots i:nth-child(3) { animation-delay: .32s; }
@keyframes thinking-dot { 0%, 75%, 100% { opacity: .25; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-3px); } }

.quick-reply-region { padding: 0 24px 18px; }
.quick-reply-region > p { margin: 0 0 9px; color: #7f9087; font-size: 9px; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 7px; }
.quick-reply { padding: 8px 11px; border: 1px solid rgba(183,243,74,.2); border-radius: 100px; color: #c5d3ca; background: rgba(183,243,74,.035); cursor: pointer; font-size: 10px; line-height: 1.35; text-align: left; transition: border-color .2s, background .2s, color .2s; }
.quick-reply:hover { border-color: rgba(183,243,74,.55); color: var(--white); background: rgba(183,243,74,.08); }
.quick-reply:focus-visible { outline: 3px solid rgba(183,243,74,.3); outline-offset: 2px; }
.quick-reply:disabled { opacity: .38; cursor: wait; }

.conversation-complete-actions { margin: 0 22px 20px; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid rgba(183,243,74,.2); border-radius: 14px; background: rgba(183,243,74,.065); }
.conversation-complete-actions > div { display: flex; flex-direction: column; gap: 5px; }
.conversation-complete-actions strong { color: var(--white); font-size: 12px; }
.conversation-complete-actions div span { color: #93a49b; font-size: 10px; line-height: 1.45; }
.button-conversation-report { min-height: 42px; flex: 0 0 auto; padding: 0 16px; font-size: 9px; }

.composer { padding: 18px 22px 20px; border-top: 1px solid rgba(255,255,255,.09); background: #0d2119; }
.composer > label { display: block; margin-bottom: 8px; color: #9cad9f; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.composer-box { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 10px; padding: 11px 11px 11px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(255,255,255,.035); transition: border-color .2s, box-shadow .2s; }
.composer-box:focus-within { border-color: rgba(183,243,74,.62); box-shadow: 0 0 0 3px rgba(183,243,74,.08); }
.composer textarea { width: 100%; min-height: 64px; max-height: 190px; padding: 4px 0; resize: vertical; border: 0; outline: 0; color: var(--white); background: transparent; font-size: 14px; line-height: 1.5; }
.composer textarea::placeholder { color: #697a71; }
.composer textarea[aria-invalid="true"] { color: #ffd8ce; }
.composer-send { min-width: 92px; min-height: 42px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 10px; color: var(--ink); background: var(--lime); cursor: pointer; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.composer-send b { font-size: 15px; }
.composer-send:disabled { opacity: .42; cursor: wait; }
.composer-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; color: #71827a; }
.composer-meta small { font-size: 9px; }
.composer-error { margin: 10px 0 0; padding: 9px 11px; border-radius: 8px; color: #ffd4ca; background: rgba(183,61,42,.22); font-size: 11px; line-height: 1.45; }

.evidence-map { position: sticky; top: 20px; max-height: calc(100vh - 40px); padding: 22px; overflow-y: auto; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.028); scrollbar-color: rgba(183,243,74,.25) transparent; }
.evidence-map-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.evidence-map-heading .dimension-label { margin-bottom: 6px; }
.evidence-map-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.evidence-map-heading .text-button { color: #809188; font-size: 9px; white-space: nowrap; }
.evidence-map-heading .text-button:hover { color: var(--lime); }
.interview-stage-card { margin-top: 18px; padding: 15px; display: flex; flex-direction: column; gap: 6px; border-radius: 13px; color: #dce6e0; background: rgba(183,243,74,.07); border: 1px solid rgba(183,243,74,.14); }
.interview-stage-card > span { color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.interview-stage-card strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.interview-stage-card small { color: #94a69c; font-size: 10px; line-height: 1.5; }
.evidence-section { margin-top: 25px; }
.evidence-section h3 { margin: 0 0 11px; color: #aab9b1; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.evidence-chips { margin: 0; }
.evidence-chips span { color: #d1dcd6; }
.evidence-empty { margin: 0; color: #71827a; font-size: 10px; line-height: 1.55; }
.hypothesis-list { display: grid; gap: 8px; }
.hypothesis-card { position: relative; padding: 13px 13px 13px 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 11px; background: rgba(255,255,255,.025); }
.hypothesis-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: #6e8277; }
.hypothesis-card.severity-medium::before { background: #e5b24d; }
.hypothesis-card.severity-high::before { background: #ff8f73; }
.hypothesis-card > span { display: block; margin-bottom: 5px; color: #81938a; font-size: 7px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hypothesis-card.severity-medium > span { color: #e7bd68; }
.hypothesis-card.severity-high > span { color: #ffa48d; }
.hypothesis-card strong { color: #dae4de; font-size: 11px; line-height: 1.35; }
.hypothesis-card p { margin: 6px 0 0; color: #8fa097; font-size: 10px; line-height: 1.5; }
.evidence-disclaimer { margin: 26px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); color: #687971; font-size: 8px; line-height: 1.5; }

.lead-panel { width: min(100% - 48px, 1120px); margin: 0 auto; padding: 65px 0 110px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; animation: enter .45s ease both; }
.result-ready { padding-top: 35px; }
.ready-mark { width: 54px; height: 54px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 22px; }
.result-ready h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(45px, 5vw, 68px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.result-ready > p:not(.eyebrow) { color: #9cad9f; line-height: 1.7; }
.report-includes { margin-top: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.report-includes span { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.13); color: #ccd5d0; font-size: 11px; }
.report-includes span::before { content: "✓"; margin-right: 8px; color: var(--lime); }
.review-button { margin-top: 22px; color: #b9c5be; }
.review-button:hover { color: var(--lime); }
.lead-context-chips { margin: 24px 0 0; }
.lead-form { padding: 35px; border-radius: 20px; color: var(--ink); background: var(--white); box-shadow: 0 25px 70px rgba(0,0,0,.25); }
.form-heading { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; }
.form-heading > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: 10px; }
.form-heading div { display: flex; flex-direction: column; }
.form-heading strong { font-family: Georgia, serif; font-size: 21px; font-weight: 400; }
.form-heading small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-grid label { display: flex; flex-direction: column; gap: 7px; }
.field-grid label > span { color: #526057; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field-grid input, .field-grid select { width: 100%; min-height: 46px; padding: 0 12px; border: 1px solid #d9ded7; border-radius: 8px; color: var(--ink); background: #fbfcf9; font-size: 13px; }
.field-grid input:focus, .field-grid select:focus { border-color: #6d9f36; }
.field-grid .form-field.has-error input,
.field-grid .form-field.has-error select { border-color: #b83d2a; background: #fff8f6; }
.field-hint { margin-top: -2px; color: #59665f; font-size: 11px; font-weight: 500; line-height: 1.4; text-transform: none; letter-spacing: 0; }
.field-error { color: #a93524; font-size: 12px; font-weight: 650; line-height: 1.4; text-transform: none; letter-spacing: 0; }
.field-error:empty { display: none; }
.checkbox-error { display: block; margin: 7px 0 0 27px; }
.check-row.has-error { color: #8f3123; }
.check-row.has-error input { outline: 2px solid rgba(184, 61, 42, .28); outline-offset: 2px; }
.field-wide { grid-column: 1 / -1; }
.honeypot { position: absolute !important; left: -9999px !important; }
.check-row { margin-top: 18px; display: grid; grid-template-columns: 17px 1fr; gap: 10px; align-items: start; color: #5b675f; font-size: 12px; line-height: 1.5; cursor: pointer; }
.check-row input { width: 15px; height: 15px; margin: 0; accent-color: var(--forest); }
.check-row a { color: var(--forest); font-weight: 800; }
.check-row em { color: #849088; }
.secure-note { margin: 13px 0 0; color: #5f6d65; font-size: 10px; text-align: center; }
.secure-note span { color: var(--forest); }
.form-error { padding: 10px 12px; border-radius: 7px; color: #8b2d1d; background: #fff0ec; font-size: 11px; }

.loading-screen { min-height: calc(100vh - 92px); padding: 40px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); background: var(--ink); text-align: center; }
.loading-orbit { position: relative; width: 115px; height: 115px; margin-bottom: 38px; border: 1px solid rgba(183,243,74,.25); border-radius: 50%; }
.loading-orbit::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(183,243,74,.4); border-radius: 50%; }
.loading-orbit span { position: absolute; inset: 0; border-radius: 50%; animation: spin 1.5s linear infinite; }
.loading-orbit span::before { content: ""; position: absolute; width: 10px; height: 10px; top: 8px; left: 50%; border-radius: 50%; background: var(--lime); box-shadow: 0 0 20px var(--lime); }
.loading-screen .eyebrow { color: var(--lime); }
.loading-screen h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 58px); font-weight: 400; }
.loading-screen > p:not(.eyebrow) { color: #91a198; }
.loading-track { width: min(380px, 80vw); height: 3px; margin-top: 28px; overflow: hidden; background: rgba(255,255,255,.1); }
.loading-track span { display: block; width: 40%; height: 100%; background: var(--lime); animation: loading 1.4s ease-in-out infinite alternate; }
@keyframes loading { from { transform: translateX(-100%); } to { transform: translateX(250%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.site-footer { min-height: 150px; padding: 35px max(24px, calc((100vw - 1280px) / 2)); display: flex; align-items: center; justify-content: space-between; color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); }
.site-footer > p { color: #829087; font-size: 12px; }
.site-footer > a { color: #aab6af; font-size: 11px; }
.brand-footer .brand-copy small { color: #718078; }

/* Report */
.report-page { background: #dde2dc; }
.report-toolbar { position: sticky; top: 0; z-index: 10; height: 76px; padding: 0 max(24px, calc((100vw - 1200px) / 2)); display: flex; align-items: center; justify-content: space-between; background: rgba(245,243,236,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.report-toolbar > div { display: flex; align-items: center; gap: 20px; }
.bedrock-status { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; }
.bedrock-status i { width: 7px; height: 7px; border-radius: 50%; background: #64a934; }
.report-document { width: min(100% - 32px, 1120px); margin: 30px auto 80px; overflow: hidden; background: var(--white); box-shadow: 0 25px 80px rgba(7,19,15,.16); }
.report-cover { min-height: 735px; padding: 48px 60px 38px; display: flex; flex-direction: column; color: var(--white); background: radial-gradient(circle at 86% 85%, #1b503a, var(--ink) 53%); }
.report-kicker { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); color: #92a39a; font-size: 9px; letter-spacing: .14em; }
.report-title-block { margin-top: 70px; }
.report-title-block > p { margin: 0 0 12px; color: var(--lime); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.report-title-block h1 { max-width: 850px; margin: 0; font-family: Georgia, serif; font-size: clamp(56px, 8vw, 96px); font-weight: 400; line-height: .98; letter-spacing: -.05em; }
.report-title-block > div { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.report-title-block > div span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.17); border-radius: 100px; color: #b5c1bb; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.score-hero { margin-top: auto; display: grid; grid-template-columns: 180px 1fr; gap: 35px; align-items: center; }
.score-ring { position: relative; width: 170px; height: 170px; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring circle { fill: none; stroke-width: 1.9; }
.score-bg { stroke: rgba(255,255,255,.1); }
.score-value { stroke: var(--lime); stroke-linecap: round; }
.score-ring > div { position: absolute; inset: 0; display: flex; align-items: baseline; justify-content: center; }
.score-ring > div strong { align-self: center; font-family: Georgia, serif; font-size: 58px; font-weight: 400; }
.score-ring > div span { color: #8fa098; font-size: 12px; }
.score-level { max-width: 470px; }
.score-level small { color: #83958b; font-size: 8px; letter-spacing: .14em; }
.score-level h2 { margin: 8px 0 12px; color: var(--lime); font-family: Georgia, serif; font-size: 35px; font-weight: 400; }
.score-level p { margin: 0; color: #b4c0ba; font-size: 13px; line-height: 1.6; }
.cover-footer { margin-top: 35px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); color: #7f9188; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.report-section { padding: 82px 60px; display: grid; grid-template-columns: 65px 1fr; gap: 25px; border-bottom: 1px solid var(--line); }
.section-number { color: #9aa49e; font: 11px/1 ui-monospace, monospace; }
.report-section-content > h2 { max-width: 720px; margin: 0 0 40px; font-family: Georgia, serif; font-size: clamp(38px, 4.5vw, 56px); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.executive-summary { margin: 0; font-family: Georgia, serif; font-size: 22px; line-height: 1.55; color: #223229; }
.interpretation-card { margin-top: 40px; padding: 26px 28px; border-left: 3px solid var(--lime); background: #f2f5ed; }
.interpretation-card span { color: #718078; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.interpretation-card p { margin: 10px 0 0; color: #45534b; line-height: 1.65; }
.role-lens-card { margin-top: 16px; padding: 24px 28px; border: 1px solid #cbd7ca; background: #fbfcf8; }
.role-lens-card span { color: var(--forest); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.role-lens-card p { margin: 10px 0 0; color: #45534b; line-height: 1.65; }
.adjustment-note { margin-top: 16px; padding: 20px 24px; border: 1px solid #e7d3b6; background: #fff8ec; }
.adjustment-note strong { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.adjustment-note p { margin: 8px 0 0; color: #695b44; font-size: 13px; line-height: 1.55; }
.personalization-context { display: flex; flex-wrap: wrap; gap: 8px; margin: -16px 0 28px; }
.personalization-context span { padding: 8px 11px; border: 1px solid #d5ddd2; border-radius: 100px; color: #425148; background: #fafbf7; font-size: 9px; font-weight: 750; letter-spacing: .035em; }
.archetype-card { padding: 28px 30px; border-radius: var(--radius-md); color: var(--white); background: var(--forest); }
.archetype-card small { color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.archetype-card h3 { margin: 14px 0 9px; font-family: Georgia, serif; font-size: 31px; font-weight: 400; }
.archetype-card p { max-width: 720px; margin: 0; color: #c6d2cb; font-size: 13px; line-height: 1.65; }
.personalized-signals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.personalized-signals article { min-height: 270px; padding: 23px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fafbf8; }
.personalized-signals h3 { margin: 18px 0 8px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; line-height: 1.15; }
.personalized-signals article > p { margin: 0; color: #657169; font-size: 12px; line-height: 1.58; }
.personalized-signals article > div { margin-top: auto; padding-top: 17px; }
.personalized-signals article > div small { color: #819088; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.personalized-signals article > div p { margin: 7px 0 0; font-size: 11px; line-height: 1.5; }
.evidence-ids { display: block; margin-top: 15px; padding-top: 12px; border-top: 1px solid var(--line); color: #95a099; font: 7px/1.5 ui-monospace, monospace; overflow-wrap: anywhere; }
.probe-evidence { margin-top: 20px; padding: 24px 28px; border: 1px solid var(--line); background: var(--white); }
.probe-evidence > h3 { margin: 0 0 18px; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.probe-evidence > div { padding: 14px 0; display: grid; grid-template-columns: minmax(220px, .9fr) 1fr; gap: 22px; border-top: 1px solid var(--line); }
.probe-evidence span { color: #748078; font-size: 10px; font-weight: 650; line-height: 1.5; }
.probe-evidence p { margin: 0; color: #46544c; font-size: 12px; line-height: 1.5; }
.dimension-scores { display: grid; gap: 22px; }
.dimension-score-row { display: grid; grid-template-columns: 250px 1fr 35px; gap: 18px; align-items: center; }
.dimension-score-row > div { display: flex; align-items: center; gap: 12px; }
.dimension-score-row > div span { color: #99a39d; font: 9px/1 ui-monospace, monospace; }
.dimension-score-row strong { font-size: 12px; }
.dimension-score-row progress { width: 100%; height: 6px; border: 0; border-radius: 8px; overflow: hidden; appearance: none; }
.dimension-score-row progress::-webkit-progress-bar { background: #e5e9e3; }
.dimension-score-row progress::-webkit-progress-value { background: var(--forest); border-radius: 8px; }
.dimension-score-row progress::-moz-progress-bar { background: var(--forest); border-radius: 8px; }
.dimension-score-row b { font-family: Georgia, serif; font-size: 20px; font-weight: 400; text-align: right; }
.method-note { margin: 32px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #7c8981; font-size: 9px; line-height: 1.5; }
.finding-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.finding-card { min-height: 325px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fafbf8; }
.severity { align-self: flex-start; padding: 5px 8px; border-radius: 100px; color: #774b17; background: #fff0d8; font-size: 7px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.severity-crítica { color: #872c1e; background: #ffebe7; }
.finding-card h3 { margin: 21px 0 10px; font-family: Georgia, serif; font-size: 23px; font-weight: 400; line-height: 1.15; }
.finding-card > p { margin: 0; color: #657169; font-size: 12px; line-height: 1.55; }
.finding-card > div { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.finding-card > div small { color: #8c9891; font-size: 7px; letter-spacing: .12em; }
.finding-card > div p { margin: 7px 0 0; font-size: 11px; line-height: 1.5; }
.quick-win-list { border-top: 1px solid var(--line); }
.quick-win-list article { padding: 24px 0; display: grid; grid-template-columns: 50px 1fr; gap: 12px; border-bottom: 1px solid var(--line); }
.quick-win-list article > span { color: #96a19a; font: 10px/1 ui-monospace, monospace; }
.quick-win-list h3 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.quick-win-list p { margin: 0; color: #4f5d55; line-height: 1.5; }
.quick-win-list small { display: block; margin-top: 10px; color: #89958e; font-size: 9px; }
.decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.decision-grid article { padding: 24px; border: 1px solid var(--line); background: #fafbf8; }
.decision-grid small, .validation-questions > small { color: var(--forest); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.decision-grid ul { margin: 18px 0 0; padding-left: 18px; }
.decision-grid li { margin-top: 10px; color: #4f5d55; font-size: 12px; line-height: 1.55; }
.opportunity-list { margin-top: 20px; border-top: 1px solid var(--line); }
.opportunity-list article { padding: 24px 0; display: grid; grid-template-columns: 50px 1fr; gap: 12px; border-bottom: 1px solid var(--line); }
.opportunity-list article > span { color: #96a19a; font: 10px/1 ui-monospace, monospace; }
.opportunity-list h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.opportunity-list p { margin: 0 0 12px; color: #4f5d55; font-size: 12px; line-height: 1.55; }
.opportunity-list small { color: #89958e; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.validation-questions { margin-top: 24px; padding: 24px 28px; border-left: 3px solid var(--lime); background: #f2f5ed; }
.validation-questions ol { margin: 16px 0 0; padding-left: 20px; }
.validation-questions li { margin-top: 10px; color: #45534b; font-size: 12px; line-height: 1.55; }
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.roadmap article { padding: 28px 24px; border-right: 1px solid var(--line); }
.roadmap article:last-child { border-right: 0; }
.roadmap-period { display: inline-flex; padding: 6px 9px; border-radius: 100px; color: var(--forest); background: #e9f5d8; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.roadmap h3 { margin: 22px 0 10px; font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.roadmap article > p { min-height: 48px; color: #748078; font-size: 11px; line-height: 1.5; }
.roadmap ul { margin: 25px 0 0; padding: 0; list-style: none; }
.roadmap li { position: relative; margin-top: 15px; padding-left: 16px; font-size: 11px; line-height: 1.45; }
.roadmap li::before { content: ""; position: absolute; width: 5px; height: 5px; top: 6px; left: 0; border-radius: 50%; background: var(--forest); }
.roadmap-owner { display: block; margin-top: 22px; padding-top: 15px; border-top: 1px solid var(--line); color: #68766e; font-size: 9px; line-height: 1.5; }
.success-signal { margin-top: 14px; padding: 13px 14px; background: #f1f6e9; }
.success-signal small { color: var(--forest); font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.success-signal p { margin: 6px 0 0; color: #4f5d55; font-size: 10px; line-height: 1.5; }
.report-cta { padding: 65px 85px; display: flex; align-items: center; justify-content: space-between; gap: 40px; color: var(--white); background: var(--forest); }
.report-cta > div { max-width: 670px; }
.report-cta .eyebrow { color: var(--lime); }
.report-cta h2 { margin: 0; font-family: Georgia, serif; font-size: 44px; font-weight: 400; line-height: 1; }
.report-cta p:not(.eyebrow) { color: #bdcbc3; font-size: 13px; line-height: 1.6; }
.report-cta .button { flex: 0 0 auto; }
.report-footer { min-height: 150px; padding: 35px 60px; display: grid; grid-template-columns: 180px 1fr 100px; gap: 40px; align-items: center; color: #8c9b93; background: var(--ink); }
.report-footer p { margin: 0; font-size: 8px; line-height: 1.6; }
.report-footer > span { font: 8px/1 ui-monospace, monospace; text-align: right; }

/* Legal */
.legal-page { background: var(--white); }
.legal-content { width: min(100% - 48px, 780px); margin: 75px auto 120px; }
.legal-content h1 { margin: 0 0 45px; font-family: Georgia, serif; font-size: clamp(48px, 7vw, 72px); font-weight: 400; line-height: 1; }
.legal-content h2 { margin: 38px 0 9px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.legal-content p { color: #56635b; line-height: 1.7; }
.legal-callout { padding: 20px 24px; border-left: 3px solid var(--warning); background: #fff7e9; }
.legal-version { margin-top: 55px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 980px) {
  .landing { grid-template-columns: 1fr; padding-top: 60px; }
  .radar-visual { min-height: 500px; }
  .section-heading { grid-template-columns: 1fr 1fr; }
  .section-heading .eyebrow { grid-column: 1 / -1; }
  .dimension-grid { grid-template-columns: repeat(4, 1fr); }
  .dimension-grid article { border-bottom: 1px solid var(--line); }
  .lead-panel { grid-template-columns: 1fr; gap: 45px; }
  .interview-workspace { grid-template-columns: 1fr; }
  .evidence-map { position: static; max-height: none; }
  .result-ready { max-width: 650px; }
  .finding-grid, .roadmap, .personalized-signals { grid-template-columns: 1fr; }
  .finding-card { min-height: 260px; }
  .roadmap article { border-right: 0; border-bottom: 1px solid var(--line); }
  .roadmap article:last-child { border-bottom: 0; }
  .roadmap article > p { min-height: auto; }
  .report-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .site-header { width: min(100% - 30px, 1280px); height: 76px; }
  .header-meta { display: none; }
  .landing { width: min(100% - 30px, 1280px); min-height: auto; gap: 55px; padding: 58px 0 70px; }
  .hero-copy h1 { font-size: 54px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .hero-proof { gap: 20px; justify-content: space-between; }
  .hero-proof div { flex-direction: column; gap: 3px; }
  .radar-visual { min-height: 380px; }
  .radar-grid { width: 300px; height: 300px; }
  .orbit-one { inset: 38px; }
  .orbit-two { inset: 76px; }
  .orbit-three { inset: 114px; }
  .radar-center { inset: 114px; }
  .signal-top { top: 35px; right: 12px; }
  .signal-bottom { bottom: 35px; left: 12px; }
  .point-one { top: 55px; right: 60px; }
  .point-two { bottom: 65px; left: 48px; }
  .dimensions-section { padding-top: 75px; padding-bottom: 75px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .dimension-grid { grid-template-columns: 1fr 1fr; }
  .dimension-grid article { min-height: 150px; }
  .dimension-grid h3 { margin-top: 34px; }
  .assessment-topbar { width: calc(100% - 30px); grid-template-columns: 42px 1fr; }
  .assessment-panel { width: calc(100% - 30px); padding-top: 35px; }
  .conversation-consent h2 { font-size: 42px; }
  .consent-actions { align-items: stretch; flex-direction: column; }
  .consent-actions .button { width: 100%; }
  .consent-actions > span { max-width: none; text-align: left; }
  .interview-workspace { width: calc(100% - 20px); padding-top: 2px; gap: 14px; }
  .conversation-card { border-radius: 18px; }
  .conversation-header { min-height: 68px; padding: 13px 15px; }
  .conversation-header .agent-avatar { width: 36px; height: 36px; }
  .bedrock-agent-badge { max-width: 105px; justify-content: flex-end; font-size: 7px; line-height: 1.35; text-align: right; }
  .transcript { min-height: 390px; max-height: 56vh; padding: 24px 14px 10px; }
  .message-bubble { width: 94%; margin-bottom: 19px; }
  .message-bubble p { padding: 13px 14px; font-size: 13px; }
  .agent-thinking { margin-right: 15px; margin-left: 15px; }
  .quick-reply-region { padding-right: 14px; padding-left: 14px; }
  .quick-replies { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .quick-reply { flex: 0 0 auto; max-width: 260px; }
  .conversation-complete-actions { margin-right: 14px; margin-left: 14px; align-items: stretch; flex-direction: column; }
  .button-conversation-report { width: 100%; }
  .composer { padding: 14px; }
  .composer-box { grid-template-columns: 1fr; }
  .composer textarea { min-height: 72px; }
  .composer-send { width: 100%; }
  .composer-meta small:first-child { max-width: 210px; }
  .evidence-map { padding: 18px 16px; border-radius: 18px; }
  .evidence-map-heading { flex-direction: column; }
  .evidence-map-heading .text-button { align-self: flex-start; }
  .interview-error { width: calc(100% - 30px); }
  .context-chip-list { margin: -30px 0 28px; }
  .context-chip-list span { font-size: 8px; }
  .lead-panel { width: calc(100% - 30px); padding-top: 35px; }
  .result-ready h2 { font-size: 50px; }
  .lead-context-chips { margin-top: 22px; }
  .lead-form { padding: 24px 18px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 18px; }
  .site-footer > p { margin: 0; }
  .report-toolbar { height: auto; min-height: 72px; }
  .report-toolbar .bedrock-status { display: none; }
  .report-toolbar .button { min-height: 43px; padding: 0 15px; gap: 8px; font-size: 10px; }
  .report-document { width: 100%; margin: 0; }
  .report-cover { min-height: 690px; padding: 34px 24px 25px; }
  .report-title-block { margin-top: 55px; }
  .report-title-block h1 { font-size: 54px; }
  .score-hero { grid-template-columns: 115px 1fr; gap: 18px; }
  .score-ring { width: 110px; height: 110px; }
  .score-ring > div strong { font-size: 40px; }
  .score-level h2 { font-size: 27px; }
  .score-level p { font-size: 11px; }
  .cover-footer { align-items: flex-start; flex-direction: column; gap: 7px; }
  .report-section { padding: 65px 24px; grid-template-columns: 1fr; }
  .section-number { margin-bottom: 10px; }
  .personalization-context { margin-top: -8px; }
  .archetype-card, .role-lens-card, .probe-evidence, .validation-questions { padding: 22px 18px; }
  .probe-evidence > div { grid-template-columns: 1fr; gap: 5px; }
  .decision-grid { grid-template-columns: 1fr; }
  .dimension-score-row { grid-template-columns: 1fr 28px; gap: 10px; }
  .dimension-score-row progress { grid-column: 1 / -1; grid-row: 2; }
  .dimension-score-row b { grid-column: 2; grid-row: 1; }
  .report-cta { padding: 55px 24px; }
  .report-cta h2 { font-size: 38px; }
  .report-footer { padding: 35px 24px; grid-template-columns: 1fr; gap: 20px; }
  .report-footer > span { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  @page { size: A4; margin: 0; }
  body, .report-page { background: white; }
  .no-print { display: none !important; }
  .report-document { width: 100%; margin: 0; box-shadow: none; }
  .report-cover { min-height: 100vh; page-break-after: always; }
  .report-section { padding: 50px 42px; break-inside: avoid; }
  .finding-card, .personalized-signals article, .probe-evidence, .decision-grid article, .opportunity-list article, .quick-win-list article, .roadmap article { break-inside: avoid; }
  .report-cta { break-inside: avoid; }
  .report-footer { break-inside: avoid; }
}
