: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 {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  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 { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg, canvas { max-width: 100%; }

@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}

.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, .connection-retry:focus-visible, input:focus-visible, select:focus-visible, textarea: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: 44px; height: 44px; 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-avatar.mascot-avatar {
  overflow: hidden;
  border-color: rgba(56, 213, 255, .58);
  background: #071328;
  box-shadow: 0 0 0 3px rgba(56, 213, 255, .07), 0 0 20px rgba(36, 76, 255, .2);
}
.agent-avatar.mascot-avatar::before,
.agent-avatar.mascot-avatar > span { display: none; }
.mascot-avatar img,
.message-meta-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.5);
}
.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 { min-height: 44px; padding: 8px 0; display: inline-flex; align-items: center; color: inherit; background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 700; text-decoration: none; }
.text-button:disabled { opacity: .25; cursor: default; }
.connection-notice { width: min(100% - 48px, 1280px); min-height: 44px; margin: 12px auto 2px; padding: 8px 10px 8px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; color: #dce7e0; background: rgba(255,255,255,.055); font-size: 11px; line-height: 1.45; }
.connection-notice.is-offline { border-color: rgba(255,185,119,.35); color: #ffe0c0; background: rgba(180,94,27,.14); }
.connection-notice.is-restored { border-color: rgba(183,243,74,.3); color: #e6ffbc; background: rgba(183,243,74,.08); }
.connection-notice-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
.connection-notice-message { flex: 1; }
.connection-retry { min-height: 44px; padding: 0 15px; border: 1px solid currentColor; border-radius: 100px; color: inherit; background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; }
.connection-retry:disabled { opacity: .45; cursor: wait; }

/* 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: center; gap: 8px; padding: 0 4px; }
.message-meta-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(56, 213, 255, .42);
  border-radius: 50%;
  background: #071328;
  box-shadow: 0 0 12px rgba(56, 213, 255, .14);
}
.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; }
.thinking-avatar img { animation: mascot-thinking 1.8s ease-in-out infinite; }
.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); } }
@keyframes mascot-thinking {
  0%, 100% { opacity: .78; transform: scale(1.46); }
  50% { opacity: 1; transform: scale(1.56); }
}

.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 { min-height: 44px; padding: 8px 13px; 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: 44px; 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: 44px; 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; }
.form-required-note { margin: -14px 0 20px; color: #59665f; font-size: 11px; line-height: 1.45; }
.form-required-note b,
.field-grid label > span b,
.required-mark { color: #a93524; font-style: normal; }
.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-grid .form-field.is-valid input,
.field-grid .form-field.is-valid select { border-color: #4f8b3b; background: #fbfff9; }
.field-grid .form-field.is-prefilled input { background: #f4f9ff; }
.field-grid input[aria-invalid="true"]:focus,
.field-grid select[aria-invalid="true"]:focus { border-color: #b83d2a; box-shadow: 0 0 0 3px rgba(184, 61, 42, .14); }
.form-field,
.check-row { scroll-margin-block: 24px; }
.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; }
.check-row.is-valid input { outline: 2px solid rgba(79, 139, 59, .22); outline-offset: 2px; }
.field-wide { grid-column: 1 / -1; }
.honeypot { position: absolute !important; left: -9999px !important; }
.check-row { min-height: 44px; margin-top: 18px; display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 10px; align-items: start; color: #5b675f; font-size: 12px; line-height: 1.5; cursor: pointer; }
.check-row input { width: 22px; height: 22px; 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-screen > p.loading-elapsed { margin: 18px 0 0; color: #d7e1db; font-size: 12px; font-variant-numeric: tabular-nums; }
.loading-screen > p.loading-recovery { max-width: 560px; margin: 10px 0 0; color: #83958b; font-size: 11px; line-height: 1.55; }
.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: 44px 1fr; }
  .connection-notice { width: calc(100% - 30px); align-items: flex-start; flex-wrap: wrap; }
  .connection-notice-message { min-width: calc(100% - 30px); }
  .connection-retry { width: 100%; }
  .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; }
}

/* MAXI TECH visual alignment for the public diagnostic experience */
.radar-site {
  --ink: #05070d;
  --ink-soft: #07111f;
  --forest: #2856ff;
  --lime: #38d5ff;
  --lime-soft: #3be28b;
  --paper: #05070d;
  --white: #f7f9fc;
  --muted: #9aa7b8;
  --line: rgba(148, 163, 184, .22);
  --danger: #ff5d6c;
  --warning: #f5b942;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow: 0 32px 100px rgba(0, 0, 0, .38);
  min-height: 100vh;
  min-height: 100svh;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(36, 76, 255, .24), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(56, 213, 255, .16), transparent 30%),
    linear-gradient(180deg, #060b14 0%, #05070d 46%, #07111f 100%);
  font-family: Inter, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.radar-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(148, 163, 184, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.radar-site .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 76px;
  margin: 0;
  padding: env(safe-area-inset-top, 0) max(24px, calc((100% - 1400px) / 2), env(safe-area-inset-right, 0px)) 0 max(24px, calc((100% - 1400px) / 2), env(safe-area-inset-left, 0px));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 8, 15, .74);
  backdrop-filter: blur(18px);
}

.radar-site .brand {
  min-width: 0;
  min-height: 44px;
  gap: 16px;
  color: var(--white);
}

.radar-site .brand-logo {
  width: 134px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(56, 213, 255, .18));
}

.radar-site .brand-copy {
  min-height: 32px;
  padding-left: 14px;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.radar-site .brand-copy strong {
  color: #38d5ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
}

.radar-site .brand-copy small {
  margin-top: 6px;
  color: rgba(247, 249, 252, .58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.radar-site .header-meta {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(247, 249, 252, .72);
  background: rgba(255, 255, 255, .045);
  font-size: 10px;
  font-weight: 800;
}

.radar-site .status-dot {
  background: #3be28b;
  box-shadow: 0 0 0 4px rgba(59, 226, 139, .12), 0 0 22px rgba(59, 226, 139, .48);
}

.radar-site main {
  position: relative;
  z-index: 1;
}

.radar-site .landing {
  width: min(100% - 48px, 1400px);
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .82fr);
  gap: 76px;
  padding: 86px 0 104px;
}

.radar-site .eyebrow,
.radar-site .dimension-label {
  color: #38d5ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.radar-site .eyebrow span {
  color: rgba(56, 213, 255, .48);
}

.radar-site .hero-copy h1,
.radar-site .section-heading h2,
.radar-site .conversation-consent h2,
.radar-site .result-ready h2,
.radar-site .loading-screen h2 {
  font-family: Inter, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 850;
  letter-spacing: 0;
}

.radar-site .hero-copy h1 {
  max-width: 840px;
  color: var(--white);
  font-size: 84px;
  line-height: .98;
}

.radar-site .hero-copy h1 em {
  color: #38d5ff;
  font-style: normal;
  font-weight: 850;
  text-shadow: 0 0 28px rgba(56, 213, 255, .18);
}

.radar-site .hero-lede {
  max-width: 720px;
  color: rgba(225, 232, 244, .74);
  font-size: 18px;
  line-height: 1.72;
}

.radar-site .button {
  min-height: 52px;
  border-radius: 8px;
  gap: 18px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .01em;
}

.radar-site .button:focus-visible,
.radar-site .icon-button:focus-visible,
.radar-site .text-button:focus-visible,
.radar-site .option-button:focus-visible,
.radar-site .connection-retry:focus-visible,
.radar-site input:focus-visible,
.radar-site select:focus-visible,
.radar-site textarea:focus-visible {
  outline: 3px solid rgba(56, 213, 255, .36);
  outline-offset: 3px;
}

.radar-site .button-primary,
.radar-site .button-light {
  color: #ffffff;
  background: linear-gradient(135deg, #244cff 0%, #2f80ff 62%, #22d3ee 100%);
  box-shadow: 0 18px 44px rgba(36, 76, 255, .28);
}

.radar-site .button-primary:hover,
.radar-site .button-light:hover {
  background: linear-gradient(135deg, #315dff 0%, #38a0ff 62%, #38d5ff 100%);
  box-shadow: 0 22px 56px rgba(36, 76, 255, .36);
}

.radar-site .button-primary span,
.radar-site .button-light span {
  color: #ffffff;
}

.radar-site .time-note {
  color: rgba(225, 232, 244, .58);
}

.radar-site .time-note strong {
  color: #ffffff;
}

.radar-site .hero-proof {
  width: min(100%, 700px);
  border-top-color: rgba(255, 255, 255, .14);
}

.radar-site .hero-proof strong {
  color: #ffffff;
  font-family: Inter, "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
  font-weight: 850;
}

.radar-site .hero-proof span {
  color: rgba(225, 232, 244, .6);
}

.radar-site .radar-visual {
  min-height: 570px;
  border: 1px solid rgba(56, 213, 255, .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(56, 213, 255, .22), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(59, 226, 139, .12), transparent 28%),
    linear-gradient(rgba(56, 213, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 213, 255, .07) 1px, transparent 1px),
    linear-gradient(145deg, rgba(13, 27, 49, .94), rgba(5, 7, 13, .98));
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.radar-site .radar-visual::before {
  background:
    linear-gradient(135deg, rgba(56, 213, 255, .1), transparent 35%),
    linear-gradient(320deg, transparent 55%, rgba(36, 76, 255, .2));
}

.radar-site .radar-visual::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(56, 213, 255, .08);
  transform: rotate(-8deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 55%);
  clip-path: polygon(12% 0, 100% 18%, 88% 100%, 0 78%);
}

.radar-site .radar-grid {
  z-index: 1;
  border-color: rgba(56, 213, 255, .2);
  box-shadow: 0 0 0 1px rgba(36, 76, 255, .1), 0 0 80px rgba(56, 213, 255, .12);
}

.radar-site .radar-grid::before,
.radar-site .radar-grid::after {
  background: rgba(56, 213, 255, .16);
}

.radar-site .orbit {
  border-color: rgba(56, 213, 255, .22);
}

.radar-site .radar-sweep::before {
  background: conic-gradient(from -90deg, rgba(56, 213, 255, .34), transparent 34%);
}

.radar-site .radar-point {
  background: #3be28b;
  box-shadow: 0 0 0 5px rgba(59, 226, 139, .11), 0 0 24px rgba(59, 226, 139, .9);
}

.radar-site .radar-center {
  color: #ffffff;
  background: radial-gradient(circle at 50% 40%, rgba(56, 213, 255, .42), rgba(36, 76, 255, .18) 48%, #05070d 78%);
  border: 1px solid rgba(56, 213, 255, .38);
  box-shadow: 0 0 65px rgba(56, 213, 255, .24), inset 0 0 35px rgba(56, 213, 255, .12);
}

.radar-site .radar-center span {
  font-family: Inter, "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
}

.radar-site .radar-center small {
  color: rgba(247, 249, 252, .7);
}

.radar-site .signal-card {
  border-color: rgba(56, 213, 255, .22);
  border-radius: 8px;
  background: rgba(8, 16, 30, .78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.radar-site .signal-card > span {
  color: #38d5ff;
  background: rgba(56, 213, 255, .1);
}

.radar-site .signal-card small {
  color: rgba(225, 232, 244, .54);
}

.radar-site .signal-card strong {
  color: #ffffff;
  font-family: Inter, "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.radar-site .dimensions-section {
  color: #07111f;
  background:
    radial-gradient(circle at 8% 0%, rgba(36, 76, 255, .09), transparent 30%),
    linear-gradient(rgba(36, 76, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 76, 255, .045) 1px, transparent 1px),
    #f7f9fc;
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.radar-site .section-heading h2 {
  max-width: 620px;
  font-size: 54px;
  line-height: 1.02;
}

.radar-site .section-heading > p:last-child,
.radar-site .dimension-grid p {
  color: #526174;
}

.radar-site .dimension-grid {
  border-top-color: rgba(36, 76, 255, .16);
  border-bottom-color: rgba(36, 76, 255, .16);
}

.radar-site .dimension-grid article {
  border-right-color: rgba(36, 76, 255, .16);
  background: rgba(255, 255, 255, .55);
}

.radar-site .dimension-grid article:hover {
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.radar-site .dimension-grid article > span {
  color: #244cff;
  font-weight: 850;
}

.radar-site .dimension-grid h3 {
  color: #07111f;
  font-size: 17px;
}

.radar-site .assessment-shell,
.radar-site .loading-screen {
  background:
    radial-gradient(circle at 18% 8%, rgba(36, 76, 255, .24), transparent 32%),
    linear-gradient(rgba(56, 213, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 213, 255, .05) 1px, transparent 1px),
    #05070d;
  background-size: auto, 56px 56px, 56px 56px, auto;
}

.radar-site .assessment-topbar {
  width: min(100% - 48px, 1180px);
}

.radar-site .icon-button {
  border-color: rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.radar-site .progress-copy {
  color: rgba(225, 232, 244, .62);
}

.radar-site .progress-copy strong {
  color: #38d5ff;
}

.radar-site .progress-track::-webkit-progress-value {
  background: linear-gradient(90deg, #244cff, #38d5ff, #3be28b);
}

.radar-site .progress-track::-moz-progress-bar {
  background: linear-gradient(90deg, #244cff, #38d5ff, #3be28b);
}

.radar-site .assessment-panel,
.radar-site .interview-workspace,
.radar-site .lead-panel {
  width: min(100% - 48px, 1180px);
}

.radar-site .agent-avatar {
  border-color: rgba(56, 213, 255, .45);
}

.radar-site .mascot-avatar {
  border-color: rgba(56, 213, 255, .62);
  box-shadow: 0 0 0 3px rgba(56, 213, 255, .07), 0 0 22px rgba(36, 76, 255, .24);
}

.radar-site .agent-avatar::before {
  border-color: #38d5ff;
}

.radar-site .agent-avatar span {
  background: #3be28b;
}

.radar-site .agent-intro small,
.radar-site .consent-lede,
.radar-site .conversation-privacy-note span,
.radar-site .consent-actions > span {
  color: rgba(225, 232, 244, .62);
}

.radar-site .conversation-consent h2 {
  max-width: 850px;
  color: #ffffff;
  font-size: 62px;
}

.radar-site .conversation-privacy-note,
.radar-site .conversation-complete-actions,
.radar-site .interview-stage-card {
  border-color: rgba(56, 213, 255, .2);
  border-left-color: #38d5ff;
  border-radius: 8px;
  background: rgba(56, 213, 255, .07);
}

.radar-site .conversation-acknowledgement input,
.radar-site .check-row input {
  accent-color: #38d5ff;
}

.radar-site .conversation-card,
.radar-site .evidence-map {
  border-color: rgba(56, 213, 255, .18);
  border-radius: 8px;
  background: rgba(8, 16, 30, .82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.radar-site .conversation-header,
.radar-site .composer,
.radar-site .evidence-map-heading {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
}

.radar-site .bedrock-agent-badge.is-bedrock i,
.radar-site .thinking-dots i,
.radar-site .loading-orbit span::before {
  background: #38d5ff;
  box-shadow: 0 0 0 4px rgba(56, 213, 255, .1), 0 0 18px rgba(56, 213, 255, .7);
}

.radar-site .message-bubble p {
  border-color: rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: rgba(247, 249, 252, .86);
  background: rgba(255, 255, 255, .055);
}

.radar-site .message-user p {
  border-color: rgba(56, 213, 255, .22);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 76, 255, .2), rgba(56, 213, 255, .1));
}

.radar-site .quick-reply {
  border-color: rgba(56, 213, 255, .22);
  border-radius: 8px;
  color: rgba(247, 249, 252, .78);
  background: rgba(56, 213, 255, .06);
}

.radar-site .quick-reply:hover {
  border-color: rgba(56, 213, 255, .58);
  background: rgba(56, 213, 255, .12);
}

.radar-site .composer-box {
  border-color: rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.radar-site .composer-box:focus-within {
  border-color: rgba(56, 213, 255, .58);
  box-shadow: 0 0 0 3px rgba(56, 213, 255, .1);
}

.radar-site .composer-send {
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, #244cff, #38d5ff);
}

.radar-site .evidence-map-heading h2,
.radar-site .interview-stage-card strong,
.radar-site .form-heading strong {
  font-family: Inter, "Plus Jakarta Sans", sans-serif;
  font-weight: 850;
}

.radar-site .lead-form {
  border: 1px solid rgba(36, 76, 255, .14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

.radar-site .form-heading > span,
.radar-site .ready-mark {
  color: #ffffff;
  background: linear-gradient(135deg, #244cff, #38d5ff);
}

.radar-site .field-grid input,
.radar-site .field-grid select {
  border-color: #dbe4f0;
  border-radius: 6px;
  background: #f8fbff;
}

.radar-site .field-grid input:focus,
.radar-site .field-grid select:focus {
  border-color: #38d5ff;
  box-shadow: 0 0 0 3px rgba(56, 213, 255, .12);
}

.radar-site .field-grid input[aria-invalid="true"]:focus,
.radar-site .field-grid select[aria-invalid="true"]:focus {
  border-color: #b83d2a;
  box-shadow: 0 0 0 3px rgba(184, 61, 42, .14);
}

.radar-site .check-row a,
.radar-site .secure-note span {
  color: #244cff;
}

.radar-site .loading-orbit {
  border-color: rgba(56, 213, 255, .28);
}

.radar-site .loading-orbit::before {
  border-color: rgba(56, 213, 255, .38);
}

.radar-site .loading-track span {
  background: linear-gradient(90deg, #244cff, #38d5ff, #3be28b);
}

.radar-site .site-footer {
  min-height: 132px;
  padding: 34px max(24px, calc((100% - 1400px) / 2));
  border-top-color: rgba(56, 213, 255, .14);
  background: #05070d;
}

.radar-site .site-footer > p,
.radar-site .site-footer > a {
  color: rgba(225, 232, 244, .62);
}

.radar-site .site-footer > a:hover {
  color: #38d5ff;
}

@media (max-width: 980px) {
  .radar-site .site-header {
    height: 72px;
  }

  .radar-site .landing {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0 86px;
  }

  .radar-site .hero-copy h1 {
    font-size: 64px;
  }

  .radar-site .radar-visual {
    min-height: 480px;
  }

  .radar-site .section-heading h2 {
    font-size: 46px;
  }

  .radar-site .interview-workspace,
  .radar-site .lead-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .radar-site::before {
    background-size: 38px 38px;
  }

  .radar-site .site-header {
    width: 100%;
    height: 68px;
    padding: 0 16px;
  }

  .radar-site .brand {
    gap: 10px;
  }

  .radar-site .brand-logo {
    width: 108px;
  }

  .radar-site .brand-copy {
    min-height: 28px;
    padding-left: 10px;
  }

  .radar-site .brand-copy strong {
    font-size: 9px;
  }

  .radar-site .brand-copy small {
    display: none;
  }

  .radar-site .landing {
    width: min(100% - 32px, 1400px);
    gap: 44px;
    padding: 48px 0 68px;
  }

  .radar-site .hero-copy h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: 1.04;
  }

  .radar-site .hero-lede {
    font-size: 15px;
    line-height: 1.68;
  }

  .radar-site .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .radar-site .hero-proof strong {
    font-size: 24px;
  }

  .radar-site .hero-proof span {
    max-width: none;
    font-size: 8px;
  }

  .radar-site .radar-visual {
    min-height: 360px;
  }

  .radar-site .radar-grid {
    width: 280px;
    height: 280px;
  }

  .radar-site .radar-center {
    inset: 104px;
  }

  .radar-site .signal-card {
    min-width: 132px;
    padding: 10px 11px;
  }

  .radar-site .section-heading h2 {
    font-size: 36px;
  }

  .radar-site .dimension-grid {
    grid-template-columns: 1fr;
    border: 0;
    gap: 10px;
  }

  .radar-site .dimension-grid article {
    min-height: auto;
    padding: 20px;
    border: 1px solid rgba(36, 76, 255, .14);
    border-radius: 8px;
  }

  .radar-site .dimension-grid h3 {
    margin-top: 22px;
  }

  .radar-site .assessment-panel,
  .radar-site .assessment-topbar,
  .radar-site .interview-workspace,
  .radar-site .lead-panel {
    width: calc(100% - 32px);
  }

  .radar-site .conversation-consent h2,
  .radar-site .result-ready h2 {
    font-size: 38px;
  }

  .radar-site .site-footer {
    padding: 28px 16px;
  }
}

/* Assessment workspace: compact command view */
.radar-site .assessment-shell {
  min-height: 100vh;
  min-height: 100svh;
  padding-right: env(safe-area-inset-right, 0px);
  padding-left: env(safe-area-inset-left, 0px);
}

.radar-site .assessment-topbar {
  width: min(calc(100% - 32px), 1560px);
  padding: 14px 0 10px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 16px;
}

.radar-site .assessment-topbar .icon-button {
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.radar-site .progress-copy {
  min-width: 0;
  align-items: flex-end;
  gap: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.radar-site .progress-context {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.radar-site .progress-context small {
  color: rgba(56, 213, 255, .78);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.radar-site .progress-context b {
  overflow: hidden;
  color: rgba(225, 232, 244, .72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.radar-site .progress-copy > strong {
  flex: 0 0 auto;
  font-size: 13px;
  letter-spacing: .08em;
}

.radar-site .progress-track {
  height: 2px;
}

.radar-site .interview-workspace {
  width: min(calc(100% - 32px), 1560px);
  height: calc(100vh - 76px);
  height: calc(100svh - 76px);
  height: var(--assessment-content-height, calc(var(--app-viewport-height, 100dvh) - 76px));
  min-height: 0;
  padding: 0 0 max(14px, env(safe-area-inset-bottom, 0px));
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: 14px;
  align-items: stretch;
  animation: none;
}

.radar-site .conversation-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto auto;
  border-color: rgba(56, 213, 255, .2);
  border-radius: 8px;
  background: rgba(7, 13, 24, .94);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.radar-site .conversation-header {
  min-height: 64px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, .025);
}

.radar-site .conversation-header .agent-avatar {
  width: 44px;
  height: 44px;
}

.radar-site .conversation-header .agent-intro {
  min-width: 0;
  flex: 1 1 auto;
  gap: 10px;
}

.radar-site .conversation-header .agent-intro > div,
.radar-site .conversation-header-actions,
.radar-site .evidence-map-heading > div,
.radar-site .result-ready,
.radar-site .form-heading > div {
  min-width: 0;
}

.radar-site .conversation-header .agent-intro strong {
  font-size: 12px;
}

.radar-site .conversation-header .agent-intro small {
  margin-top: 3px;
  font-size: 8px;
}

.radar-site .conversation-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.radar-site .bedrock-agent-badge {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  background: rgba(255, 255, 255, .025);
  color: rgba(225, 232, 244, .62);
  font-size: 11px;
}

.radar-site .bedrock-agent-badge.is-bedrock {
  color: rgba(225, 232, 244, .78);
}

.radar-site .transcript {
  min-height: 0;
  max-height: none;
  padding: 22px 20px 12px;
  scroll-padding-block: 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 213, 255, .32) transparent;
}

.radar-site .transcript::-webkit-scrollbar,
.radar-site .evidence-map::-webkit-scrollbar {
  width: 7px;
}

.radar-site .transcript::-webkit-scrollbar-thumb,
.radar-site .evidence-map::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  background: rgba(56, 213, 255, .32);
  background-clip: padding-box;
}

.radar-site .message-bubble {
  width: min(80%, 760px);
  margin-bottom: 18px;
}

.radar-site .message-meta {
  gap: 7px;
  padding: 0 3px;
}

.radar-site .message-meta strong {
  font-size: 11px;
}

.radar-site .message-meta span {
  max-width: min(42vw, 260px);
  overflow: hidden;
  color: rgba(225, 232, 244, .7);
  font-size: 11px;
  letter-spacing: .12em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radar-site .message-bubble p {
  margin-top: 6px;
  padding: 13px 15px;
  border-radius: 7px;
  color: rgba(244, 247, 252, .82);
  background: rgba(255, 255, 255, .048);
  font-size: 14px;
  line-height: 1.6;
}

.radar-site .message-user {
  width: min(74%, 720px);
}

.radar-site .message-user p {
  border-color: rgba(56, 213, 255, .28);
  background: linear-gradient(135deg, rgba(36, 76, 255, .22), rgba(22, 111, 157, .14));
}

.radar-site .message-assistant:last-child p {
  border-color: rgba(56, 213, 255, .22);
  box-shadow: inset 2px 0 0 rgba(56, 213, 255, .72);
}

.radar-site .agent-thinking {
  margin: 0 20px 12px;
}

.radar-site .quick-reply-region {
  padding: 0 18px 12px;
}

.radar-site .quick-reply-region > p {
  margin-bottom: 7px;
  color: rgba(225, 232, 244, .7);
  font-size: 11px;
}

.radar-site .quick-replies {
  gap: 6px;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px 28px;
  scrollbar-width: thin;
}

.radar-site .quick-reply {
  min-height: 44px;
  padding: 7px 11px;
  border-radius: 6px;
  font-size: 11px;
  overflow-wrap: anywhere;
  scroll-snap-align: start;
}

.radar-site .composer {
  padding: 11px 16px 12px;
  background: rgba(12, 21, 35, .98);
}

.radar-site .composer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 7px;
}

.radar-site .composer-heading label {
  color: rgba(225, 232, 244, .7);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.radar-site .composer-heading span {
  max-width: min(58vw, 420px);
  overflow: hidden;
  color: rgba(59, 226, 139, .86);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.radar-site .composer-heading span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #3be28b;
  box-shadow: 0 0 10px rgba(59, 226, 139, .55);
  vertical-align: 1px;
}

.radar-site .composer-box {
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
  padding: 7px 7px 7px 13px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .04);
}

.radar-site .composer textarea {
  min-height: 48px;
  max-height: 144px;
  padding: 7px 0;
  resize: none;
  font-size: 14px;
  line-height: 1.45;
}

.radar-site .composer-send {
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 6px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.radar-site .composer-send:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(36, 76, 255, .3);
}

.radar-site .composer-send span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.radar-site .composer-send b {
  font-size: 19px;
  line-height: 1;
}

.radar-site .composer-meta {
  margin-top: 6px;
  color: rgba(225, 232, 244, .7);
}

.radar-site .composer-meta small {
  font-size: 11px;
}

.radar-site .evidence-map {
  position: relative;
  top: auto;
  height: 100%;
  max-height: none;
  padding: 17px;
  border-color: rgba(56, 213, 255, .18);
  border-radius: 8px;
  background: rgba(7, 13, 24, .9);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 213, 255, .32) transparent;
}

.radar-site .evidence-map:focus-visible {
  outline: 3px solid rgba(56, 213, 255, .58);
  outline-offset: 3px;
}

.radar-site .evidence-map-heading {
  padding-bottom: 14px;
  background: transparent;
}

.radar-site .evidence-map-heading .dimension-label {
  margin-bottom: 4px;
  font-size: 8px;
}

.radar-site .evidence-map-heading h2 {
  font-size: 22px;
  line-height: 1.05;
}

.radar-site .evidence-map-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radar-site .evidence-map-heading .text-button {
  min-height: 44px;
  color: rgba(225, 232, 244, .7);
  font-size: 11px;
}

.radar-site .evidence-map-heading .text-button:hover {
  color: #38d5ff;
}

.radar-site .interview-stage-card {
  margin-top: 13px;
  padding: 12px 13px;
  gap: 4px;
  border-left-width: 2px;
  border-radius: 6px;
  background: rgba(56, 213, 255, .055);
}

.radar-site .interview-stage-card > span {
  color: #38d5ff;
  font-size: 11px;
}

.radar-site .interview-stage-card strong {
  font-size: 17px;
  line-height: 1.2;
}

.radar-site .interview-stage-card small {
  font-size: 9px;
}

.radar-site .evidence-section {
  margin-top: 18px;
}

.radar-site .evidence-section h3 {
  margin-bottom: 9px;
  color: rgba(225, 232, 244, .72);
  font-size: 11px;
  letter-spacing: .14em;
}

.radar-site .evidence-chips {
  margin: 0;
  display: grid;
  gap: 5px;
}

.radar-site .evidence-chips span {
  min-width: 0;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(56, 213, 255, .13);
  border-radius: 5px;
  color: rgba(238, 243, 250, .76);
  background: rgba(255, 255, 255, .025);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}

.radar-site .evidence-chips span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #3be28b;
  box-shadow: 0 0 9px rgba(59, 226, 139, .45);
}

.radar-site .hypothesis-list {
  gap: 6px;
}

.radar-site .hypothesis-card {
  padding: 11px 11px 11px 14px;
  border-radius: 6px;
}

.radar-site .evidence-empty {
  min-height: 76px;
  margin: 0;
  padding: 13px 13px 13px 38px;
  display: flex;
  align-items: center;
  border: 1px dashed rgba(56, 213, 255, .14);
  border-radius: 6px;
  color: rgba(225, 232, 244, .7);
  background:
    radial-gradient(circle at 19px 50%, rgba(56, 213, 255, .85) 0 2px, transparent 3px),
    rgba(56, 213, 255, .025);
  font-size: 11px;
  line-height: 1.55;
}

.radar-site .evidence-disclaimer {
  margin-top: 18px;
  padding-top: 13px;
  color: rgba(225, 232, 244, .7);
  font-size: 11px;
  line-height: 1.55;
}

.radar-site .hypothesis-card strong,
.radar-site .hypothesis-card p,
.radar-site .interview-stage-card strong,
.radar-site .context-chip-list span,
.radar-site .result-ready h2,
.radar-site .result-ready > p,
.radar-site .form-heading strong,
.radar-site .form-heading small {
  overflow-wrap: anywhere;
}

.radar-site .evidence-mobile-toggle,
.radar-site .evidence-map-close,
.radar-site .evidence-backdrop {
  display: none;
}

@media (max-width: 1180px) {
  .radar-site .interview-workspace {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .radar-site .bedrock-agent-badge {
    padding-inline: 8px;
  }
}

@media (max-width: 980px) {
  .radar-site .interview-workspace {
    height: calc(100dvh - 76px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .radar-site .evidence-map {
    height: auto;
  }

  .js .radar-site .evidence-mobile-toggle {
    min-height: 44px;
    padding: 0 6px 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(56, 213, 255, .2);
    border-radius: 6px;
    color: rgba(238, 243, 250, .78);
    background: rgba(56, 213, 255, .06);
    cursor: pointer;
    font-size: 11px;
    font-weight: 750;
  }

  .js .radar-site .evidence-mobile-toggle b {
    min-width: 24px;
    height: 24px;
    padding-inline: 5px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    color: #07111f;
    background: #38d5ff;
    font-size: 11px;
  }

  .js .radar-site .evidence-map {
    position: fixed;
    z-index: 80;
    inset: 0 0 0 auto;
    width: min(92vw, 420px);
    height: 100vh;
    height: 100dvh;
    height: var(--app-viewport-height, 100dvh);
    padding: max(20px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px)) max(20px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
    border-width: 0 0 0 1px;
    border-radius: 0;
    overflow-y: auto;
    background: #080e19;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: clip-path .28s ease, opacity .2s ease, visibility 0s linear .28s;
    will-change: clip-path;
  }

  .js .radar-site .evidence-map.is-mobile-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .js .radar-site .evidence-map-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    color: #ffffff;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    font-size: 21px;
  }

  .js .radar-site .evidence-backdrop {
    position: fixed;
    z-index: 70;
    inset: 0;
    width: 100%;
    height: var(--app-viewport-height, 100dvh);
    padding: 0;
    display: block;
    border: 0;
    background: rgba(2, 5, 10, .66);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }

  .js .radar-site .evidence-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  body.evidence-panel-open {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .radar-site .assessment-topbar {
    width: calc(100% - 20px);
    padding: 9px 0 8px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 6px 10px;
  }

  .radar-site .assessment-topbar .icon-button {
    width: 44px;
    height: 44px;
  }

  .radar-site .progress-context small {
    display: none;
  }

  .radar-site .progress-context b {
    font-size: 9px;
  }

  .radar-site .interview-workspace {
    width: calc(100% - 12px);
    height: calc(100vh - 69px);
    height: calc(100dvh - 69px);
    height: var(--assessment-content-height, calc(var(--app-viewport-height, 100dvh) - 69px));
    min-height: 0;
    padding-bottom: max(6px, env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }

  .radar-site .conversation-card {
    border-radius: 6px;
  }

  .radar-site .conversation-header {
    min-height: 58px;
    padding: 9px 10px;
  }

  .radar-site .conversation-header .agent-avatar {
    width: 38px;
    height: 38px;
  }

  .radar-site .message-meta-avatar {
    width: 24px;
    height: 24px;
  }

  .radar-site .conversation-header .agent-intro small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .radar-site .bedrock-agent-badge {
    display: none;
  }

  .radar-site .transcript {
    padding: 17px 11px 9px;
  }

  .radar-site .message-bubble,
  .radar-site .message-user {
    width: 94%;
    margin-bottom: 15px;
  }

  .radar-site .message-bubble p {
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  .radar-site .message-meta span {
    display: none;
  }

  .radar-site .message-meta .message-meta-avatar {
    display: block;
  }

  .radar-site .quick-reply-region {
    padding: 0 11px 9px;
  }

  .radar-site .quick-replies {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scroll-snap-type: inline proximity;
  }

  .radar-site .quick-reply {
    flex: 0 0 auto;
    max-width: 250px;
  }

  .radar-site .composer {
    padding: 9px 10px 10px;
  }

  .radar-site .composer-heading {
    margin-bottom: 6px;
  }

  .radar-site .composer-heading span {
    font-size: 11px;
  }

  .radar-site .composer-box {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 6px;
    padding: 5px 5px 5px 10px;
  }

  .radar-site .composer textarea {
    min-height: 44px;
    padding: 6px 0;
    font-size: 16px;
  }

  .radar-site .composer-send {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .radar-site .composer-meta small:first-child {
    max-width: 74%;
  }

  .js .radar-site .evidence-map {
    width: min(94vw, 390px);
    padding: max(17px, env(safe-area-inset-top, 0px)) max(17px, env(safe-area-inset-right, 0px)) max(17px, env(safe-area-inset-bottom, 0px)) max(17px, env(safe-area-inset-left, 0px));
  }
}

@media (max-width: 980px) {
  .radar-site .field-grid input,
  .radar-site .field-grid select { font-size: 16px; }

  .radar-site .site-footer > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 680px) {
  .radar-site .site-header {
    min-height: calc(68px + env(safe-area-inset-top, 0px));
    height: auto;
    padding: env(safe-area-inset-top, 0px) max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
  }

  .radar-site .assessment-topbar {
    padding-top: calc(9px + env(safe-area-inset-top, 0px));
  }

  .legal-content {
    width: calc(100% - 32px);
    margin-top: 52px;
    margin-bottom: 76px;
  }

  .radar-site .legal-content h1,
  .legal-content h1 { font-size: clamp(36px, 12vw, 42px); }
}

@media (max-width: 360px) {
  .radar-site .hero-copy h1 { font-size: 39px; }
  .radar-site .brand-logo { width: 100px; }
  .radar-site .brand-copy { padding-left: 8px; }
  .radar-site .conversation-header-actions { flex: 0 0 auto; }
  .radar-site .evidence-mobile-toggle {
    width: 44px;
    padding: 0;
    justify-content: center;
  }
  .radar-site .evidence-mobile-toggle > span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .radar-site .conversation-header .agent-intro small { max-width: 112px; }
  .radar-site .composer-heading > label { display: none; }
  .radar-site .composer-heading span { max-width: 100%; }
}

@media (max-height: 560px) and (orientation: landscape) {
  .radar-site .assessment-topbar { padding-top: 6px; padding-bottom: 5px; }
  .radar-site .conversation-header { min-height: 52px; padding-top: 6px; padding-bottom: 6px; }
  .radar-site .conversation-header .agent-avatar { width: 36px; height: 36px; }
  .radar-site .transcript { padding-top: 11px; }
  .radar-site .quick-reply-region { padding-bottom: 6px; }
  .radar-site .composer { padding-top: 6px; padding-bottom: 6px; }
  .radar-site .composer-meta small:first-child { display: none; }
  .radar-site .composer textarea { min-height: 42px; }
}

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