:root {
  color-scheme: light;
  --ae-blue: #155eef;
  --cyan: #06b6d4;
  --teal: #0891b2;
  --navy: #0b1324;
  --slate: #334155;
  --muted: #64748b;
  --line: #dbe4f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --danger: #b42318;
  --success: #067647;
  --trust-green: #10b981;
  --fresh: #52bd8a;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(21, 94, 239, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 5px clamp(16px, 3.8vw, 34px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 82px;
  height: auto;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.55vw, 22px);
  color: #0b1324;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a {
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out, background 0.18s ease-in-out;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-4px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ae-blue), #0046d7);
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.24);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(21, 94, 239, 0.18);
}

.button-light {
  color: var(--ae-blue);
  background: var(--white);
}

.button-link {
  color: var(--ae-blue);
  background: transparent;
  padding-inline: 12px;
  box-shadow: none;
}

.button-link::after {
  content: "→";
  margin-left: 10px;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px clamp(18px, 3.6vw, 32px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.54fr);
  gap: clamp(16px, 2.1vw, 26px);
  align-items: center;
  min-height: auto;
  max-height: none;
  padding-top: clamp(10px, 1.45vw, 18px);
  padding-bottom: clamp(12px, 1.6vw, 20px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ae-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(1.64rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.48rem, 2.15vw, 1.92rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: #1e293b;
  font-size: clamp(0.88rem, 0.94vw, 0.95rem);
  line-height: 1.34;
}

.hero-warning {
  max-width: 640px;
  margin: 7px 0 0;
  padding: 7px 10px;
  border-left: 4px solid var(--ae-blue);
  border-radius: 8px;
  color: #0f172a;
  background: #eef4ff;
  font-weight: 750;
  line-height: 1.34;
}

.hero-mini-form {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(21, 94, 239, 0.08);
}

.hero-mini-form span {
  color: #0f172a;
  font-weight: 800;
}

.inline-domain-form {
  min-width: 0;
}

.inline-domain-row,
.cta-domain-form,
.header-domain-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  align-items: center;
}

.inline-domain-form input {
  height: 42px;
  min-height: 42px;
  padding-top: 0;
  padding-bottom: 0;
  border-right: 0;
  border-radius: 999px 0 0 999px;
}

.header-domain-form {
  width: min(420px, 100%);
  justify-self: end;
}

.header-domain-form input {
  height: 38px;
  min-height: 38px;
  padding: 0 12px;
}

.header-domain-form .button {
  min-height: 38px;
  padding: 8px 14px;
}

.inline-domain-form .button {
  min-height: 42px;
  border-radius: 0 999px 999px 0;
}

.header-domain-form .button {
  min-height: 38px;
  height: 38px;
  border-radius: 0 999px 999px 0;
}

.cta-domain-form {
  width: min(560px, 100%);
}

.center-domain-form {
  margin: 22px auto 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 8px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 650;
}

.trust-row span,
.safe-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before,
.safe-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--trust-green);
  border-radius: 999px;
  color: var(--trust-green);
  font-size: 0.72rem;
}

.hero-card {
  color: var(--white);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 76% 20%, rgba(6, 182, 212, 0.2), transparent 18rem),
    linear-gradient(135deg, #061120, #0b1324 58%, #061120);
  box-shadow: 0 22px 56px rgba(3, 7, 18, 0.3);
}

.hero-diagnostic-card {
  width: min(100%, 520px);
  justify-self: end;
  overflow: hidden;
  padding: 0;
  border-color: rgba(148, 163, 184, 0.28);
  background: #03090d;
}

.hero-diagnostic-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card-title {
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 780;
}

.card-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 16px;
}

.score-orbit,
.model-bars {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.ring {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 8px auto 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0b1324 0 52%, transparent 53%),
    conic-gradient(var(--cyan) 0 44%, var(--ae-blue) 44% 78%, rgba(255,255,255,0.11) 78% 100%);
}

.ring strong {
  margin-top: 18px;
  font-size: 3rem;
  line-height: 1;
}

.ring span {
  margin-top: -22px;
  color: #9ddcf0;
}

.score-orbit small,
.score-orbit em {
  display: block;
  text-align: center;
}

.score-orbit small {
  color: #dbeafe;
  font-weight: 700;
}

.score-orbit em {
  margin-top: 8px;
  color: #20e790;
  font-size: 0.8rem;
  font-style: normal;
}

.model-bars p {
  margin-bottom: 16px;
  color: #e2e8f0;
  font-weight: 800;
}

.model-bars div {
  display: grid;
  grid-template-columns: 92px 1fr 38px;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  color: #cbd5e1;
  font-size: 0.84rem;
}

.model-bars b {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.model-bars b::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ae-blue), var(--cyan));
}

.model-bars strong {
  color: var(--white);
  font-size: 0.84rem;
}

.hero-tags {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.hero-tags b {
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
}

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

.ai-logo-pill {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  padding: 6px 8px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-size: 0.74rem;
  font-weight: 820;
  line-height: 1;
}

.ai-logo-pill:last-child {
  grid-column: 1 / -1;
}

.ai-logo-pill img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
}

.ai-logo-pill span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.decision-path {
  position: relative;
  display: grid;
  gap: 2px;
  margin-bottom: 7px;
}

.decision-path::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  border-left: 1px dotted rgba(226, 232, 240, 0.34);
  transform: translateX(-50%);
  pointer-events: none;
}

.decision-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: #dbeafe;
  background: #101d2d;
}

.decision-step strong {
  color: #ffffff;
  font-size: 0.78rem;
}

.decision-step small {
  color: #bdd6f0;
  font-size: 0.66rem;
  line-height: 1.22;
}

.decision-step-final {
  border-color: rgba(239, 68, 68, 0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.14), transparent 11rem),
    #161d2b;
  box-shadow: 0 0 22px rgba(239, 68, 68, 0.1);
}

.decision-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 20px;
  height: 10px;
  margin: -1px auto;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1;
  background: #0b1324;
}

.risk-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 10px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 84% 0%, rgba(239, 68, 68, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.04);
}

.risk-card p,
.risk-card small {
  margin: 0;
  color: #dbeafe;
}

.risk-card p,
.risk-card em,
.risk-card small {
  grid-column: 2;
}

.risk-card small {
  max-width: 30rem;
  line-height: 1.25;
  font-size: 0.68rem;
}

.risk-card strong {
  grid-row: 1 / 4;
  color: #ffffff;
  font-size: 1.88rem;
  line-height: 1;
}

.risk-card strong span {
  color: #9ddcf0;
  font-size: 0.9rem;
}

.risk-card em {
  color: #fecaca;
  font-style: normal;
  font-weight: 850;
  font-size: 0.76rem;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 12px;
  text-align: center;
}

.section-heading h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(1.34rem, 1.7vw, 1.64rem);
  line-height: 1.08;
}

.section-heading p {
  max-width: 780px;
  margin-inline: auto;
  color: #334155;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.42;
}

.trust-strip {
  display: block;
  max-width: 820px;
  margin-top: 4px;
  padding: 15px 24px;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.trust-strip h2 {
  margin-bottom: 6px;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
}

.trust-strip p {
  margin: 0;
  color: #334155;
  line-height: 1.45;
}

.buyer-moment {
  max-width: 820px;
  margin: 0 auto 12px;
  padding: 12px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #ffffff;
}

.buyer-moment p {
  color: #334155;
  line-height: 1.38;
}

.buyer-moment p:last-child {
  margin-bottom: 0;
}

.buyer-moment blockquote {
  margin: 8px 0;
  padding: 10px 13px;
  border-left: 4px solid var(--ae-blue);
  border-radius: 8px;
  color: #0f172a;
  background: #eef4ff;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.38;
}

.problem-section h2 {
  text-align: center;
}

.psychology-section {
  padding-top: 14px;
}

.section-kicker {
  color: var(--ae-blue);
  font-weight: 850;
  text-transform: uppercase;
}

.psychology-section h2 {
  max-width: 850px;
}

.question-demo {
  margin: 12px 0;
  padding: 13px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #f8fbff;
}

.question-demo p {
  margin-bottom: 8px;
  color: #334155;
  font-weight: 800;
}

.question-demo blockquote {
  margin: 0 0 10px;
  padding: 10px 13px;
  border-left: 4px solid var(--ae-blue);
  border-radius: 8px;
  color: #0f172a;
  background: #ffffff;
  font-size: 0.96rem;
  line-height: 1.38;
}

.question-demo blockquote:last-child {
  margin-bottom: 0;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 12px;
}

.insight-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.insight-grid p {
  color: #334155;
  line-height: 1.42;
}

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

.problem-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-section,
.security-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: start;
}

.sample-audit {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(320px, 360px) minmax(300px, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  max-width: 1280px;
}

.text-stack {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.05);
}

.text-stack p {
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.45;
}

.text-stack p:last-of-type {
  margin-bottom: 16px;
}

.solution-section {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1220px;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.solution-section > div:first-child {
  max-width: 980px;
  margin: 0 auto;
}

.solution-section h2 {
  margin-bottom: 4px;
  font-size: clamp(1.14rem, 1.35vw, 1.34rem);
  line-height: 1.12;
}

.solution-copy {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.solution-copy p {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(0.9rem, 1vw, 0.96rem);
  line-height: 1.36;
}

.solution-copy p:last-child {
  max-width: 720px;
  margin-top: 8px;
  color: #0f172a;
  font-size: clamp(0.94rem, 1.06vw, 1rem);
  font-weight: 850;
}

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

.scope-grid article {
  min-height: 106px;
  padding: 12px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.scope-grid h3 {
  color: #0f172a;
  font-size: 0.88rem;
  line-height: 1.35;
}

.scope-grid article:last-child {
  border-color: var(--ae-blue);
  color: #ffffff;
  background: linear-gradient(135deg, #3463ea, var(--ae-blue));
  box-shadow: 0 22px 48px rgba(21, 94, 239, 0.22);
}

.scope-grid article:last-child h3,
.scope-grid article:last-child p {
  color: #ffffff;
}

.scope-grid p,
.sample-copy p,
.security-list li,
.closing-cta p {
  color: #334155;
  line-height: 1.43;
}

.sample-form-label {
  margin: 22px 0 0;
  color: #0f172a;
  font-weight: 850;
  line-height: 1.35;
}

.sample-audit-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  max-width: 440px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sample-audit-form input {
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  color: #1f2937;
  background: #ffffff;
  font-size: 0.875rem;
  outline: none;
}

.sample-audit-form .button {
  height: 48px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: none;
}

.sample-score {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  padding: 40px 25px 45px;
  border: 1px solid #131a30;
  border-radius: 12px;
  color: #ffffff;
  background-color: #050814;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
  text-align: center;
  justify-self: center;
}

.meta-text {
  position: absolute;
  color: #cbd5e1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
}

.meta-tl {
  top: 18px;
  left: 22px;
}

.meta-tr {
  top: 18px;
  right: 22px;
  transition: color 0.2s;
}

.meta-bl {
  bottom: 18px;
  left: 22px;
}

.dashboard-title {
  margin-top: 10px;
  margin-bottom: 15px;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.gauge-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(240px, 100%);
  height: 240px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sample-score.is-gauge-visible .gauge-container {
  opacity: 1;
}

.gauge-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tick {
  stroke: rgba(226, 232, 240, 0.45);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke 0.1s, filter 0.1s;
}

.tick-major {
  stroke: rgba(226, 232, 240, 0.75);
  stroke-width: 2.5;
}

.tick.is-active {
  stroke: #00d2ff;
  filter: drop-shadow(0 0 2px #00d2ff);
}

.tick.is-critical {
  stroke: #ff0033;
  filter: drop-shadow(0 0 2px #ff0033);
}

.scale-number {
  fill: #e2e8f0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
  transition: fill 0.2s, text-shadow 0.2s;
}

.scale-number.is-active {
  fill: #00d2ff;
  text-shadow: 0 0 4px #00d2ff;
}

.scale-number.is-critical {
  fill: #ff0033;
  text-shadow: 0 0 4px #ff0033;
}

.center-display {
  position: absolute;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.number {
  color: #00d2ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.85;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
  transition: color 0.2s, text-shadow 0.2s;
}

.total {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
}

.alert-badge,
.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -18px;
  margin-bottom: 14px;
  padding: 8px 18px;
  border: 1px solid #ff5577;
  border-radius: 4px;
  color: #ffffff;
  background-color: #ff0033;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.4);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.alert-badge svg {
  flex-shrink: 0;
  width: 15px;
  height: 13px;
  overflow: visible;
  transform: translateY(-0.8px);
}

.description {
  margin: 0 5px;
  color: #f8fafc;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.description b,
.description strong {
  color: #ffffff;
  font-weight: 700;
}

.sample-score.is-critical .number {
  color: #ff0033;
  text-shadow: 0 0 4px #ff0033, 0 0 8px rgba(255, 0, 51, 0.6);
}

.sample-score.is-critical .meta-tr {
  color: #ff0033;
  font-weight: 700;
}

.sample-score.is-complete .alert-badge,
.sample-score.is-complete .description {
  opacity: 1;
}

.sample-score.is-complete .alert-badge {
  transform: scale(1);
}

.sample-score.is-alerting .alert-badge {
  animation: flash 0.25s ease-in-out 2;
}

@keyframes flash {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.sample-output-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-self: stretch;
}

.sample-output-grid article {
  min-height: auto;
  padding: 16px 18px;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.sample-output-grid span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  border-radius: 50%;
  color: var(--ae-blue);
  background: #eef4ff;
  font-weight: 900;
}

.sample-output-grid h3 {
  margin-bottom: 8px;
}

.sample-output-grid p {
  margin: 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.42;
}

.closing-cta {
  max-width: 920px;
  border-radius: 18px;
  text-align: center;
}

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

.security-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  font-weight: 700;
}

.security-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid var(--trust-green);
  border-radius: 999px;
  color: var(--trust-green);
  font-size: 0.8rem;
  line-height: 1;
}

.closing-cta {
  max-width: 1220px;
  margin-bottom: 34px;
  padding-top: clamp(28px, 3.4vw, 44px);
  padding-bottom: clamp(28px, 3.4vw, 44px);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
}

.closing-cta h2 {
  max-width: 880px;
  margin-inline: auto;
  font-size: clamp(1.42rem, 2.1vw, 1.78rem);
  line-height: 1.08;
}

.closing-soft {
  margin: 12px auto 0;
  max-width: 880px;
  color: #64748b;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.closing-strong {
  max-width: 860px;
  margin: 18px auto 0;
  color: #0f172a !important;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  font-weight: 900;
  line-height: 1.28;
}

.closing-note {
  margin-top: 18px;
  color: var(--teal) !important;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 800;
}

.closing-cta .cta-domain-form {
  margin-top: 20px;
}

.problem-card,
.who-card,
.audit-form,
.source-card,
.result-section,
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.problem-card,
.scope-grid article,
.sample-card,
.security-list li,
.faq details,
.insight-grid article {
  transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
}

.problem-card:hover,
.scope-grid article:hover,
.sample-card:hover,
.security-list li:hover,
.faq details:hover,
.insight-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.problem-card {
  min-height: 104px;
  padding: 12px 11px;
  text-align: center;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  border: 2px solid var(--ae-blue);
  border-radius: 999px;
  color: var(--ae-blue);
  font-size: 1.28rem;
  line-height: 1;
}

.problem-card h3 {
  color: var(--ae-blue);
  font-size: 0.92rem;
}

.problem-card p,
.for-who p,
.audit-intro p,
.faq p,
.source-card,
.roadmap-item p {
  color: #334155;
  line-height: 1.45;
}

.dark-band {
  max-width: 1080px;
  margin-top: 16px;
  padding: 34px 42px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, #071326, #061120 52%, #0b1b33);
  box-shadow: var(--shadow);
}

.dark-band h2 {
  text-align: center;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.feature-row article {
  padding: 20px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.feature-row article:first-child {
  border-left: 0;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  color: var(--cyan);
  border: 2px solid var(--ae-blue);
  border-radius: 50%;
  font-size: 1.5rem;
}

.feature-row p {
  color: #dbeafe;
  line-height: 1.5;
}

.for-who {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.who-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.who-card p {
  margin: 0;
  color: #0f172a;
  font-weight: 750;
}

.audit-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audit-panel > * {
  min-width: 0;
}

.safe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #334155;
  font-weight: 700;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
}

.multi-step-form {
  overflow: hidden;
}

.form-step {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  animation: stepFade 220ms ease-out;
}

.form-step.active {
  display: grid;
}

.form-step h3,
.form-step .step-help,
.form-step > .eyebrow,
.progress-step h3,
.progress-step .progress-text,
.success-step h3,
.success-step p {
  grid-column: 1 / -1;
}

.form-step h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.step-help {
  margin: 0;
  color: #334155;
  line-height: 1.55;
}

.tile-group {
  display: grid;
  gap: 12px;
}

.tile-group p {
  margin: 0;
  color: #0f172a;
  font-weight: 850;
}

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

.tile-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile-grid button {
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: 150ms ease;
}

.tile-grid button:hover,
.tile-grid button.selected {
  border-color: var(--ae-blue);
  color: var(--ae-blue);
  background: #eef4ff;
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.08);
}

.progress-step {
  min-height: 260px;
  align-content: center;
  text-align: center;
}

.progress-shell {
  grid-column: 1 / -1;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.progress-shell span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ae-blue), var(--cyan));
  transition: width 260ms ease;
}

.progress-text {
  margin: 0;
  color: #334155;
  font-weight: 800;
}

.success-step {
  padding: 22px;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  background: #f0fdf4;
}

.success-step h3,
.success-step p {
  color: #14532d;
}

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field.full,
.full {
  grid-column: 1 / -1;
}

label {
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 750;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 13px 14px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ae-blue);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.12);
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #334155;
  font-weight: 650;
  line-height: 1.45;
  min-width: 0;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  text-align: center;
}

.error {
  min-height: 22px;
  margin: 0;
  color: var(--danger);
  font-weight: 700;
}

.result-section {
  margin-top: 42px;
  padding: 30px;
}

.hidden {
  display: none !important;
}

.result-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.result-score {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ae-blue);
  background:
    radial-gradient(circle at center, #fff 0 52%, transparent 53%),
    conic-gradient(var(--cyan) 0 42%, var(--ae-blue) 42% 72%, #e2e8f0 72% 100%);
}

.result-score strong {
  margin-top: 18px;
  font-size: 3.2rem;
  line-height: 1;
}

.result-score span {
  margin-top: -22px;
  color: #334155;
  font-weight: 800;
}

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

.pillar {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}

.pillar-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-weight: 850;
}

.bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.bar span {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ae-blue), var(--cyan));
}

.pillar p {
  margin: 10px 0 0;
  color: var(--slate);
  line-height: 1.45;
}

.finding-card {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid #fecaca;
  border-radius: 14px;
  background: #fff1f2;
}

.finding-card h3 {
  color: #991b1b;
}

.finding-card p:last-child {
  margin-bottom: 0;
  color: #7f1d1d;
  line-height: 1.55;
}

.result-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.result-columns article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

#buyer-questions {
  margin: 0;
  padding-left: 22px;
}

#buyer-questions li {
  margin: 0 0 14px;
  color: #334155;
  line-height: 1.52;
}

.roadmap-item {
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
}

.roadmap-item strong {
  color: #0f172a;
}

.roadmap-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.roadmap-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #155eef;
  background: #eef4ff;
  font-size: 0.78rem;
  font-weight: 750;
}

.upgrade-proof {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 20px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #c7d2fe;
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(21, 94, 239, 0.08), transparent 22rem),
    #f8fbff;
}

.upgrade-copy p:last-child {
  color: #334155;
  line-height: 1.6;
}

.upgrade-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.upgrade-lists article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.upgrade-lists h4 {
  margin: 0 0 12px;
  color: #0f172a;
}

.upgrade-lists ul {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.52;
}

.upgrade-lists li {
  margin-bottom: 9px;
}

.source-card {
  margin-top: 22px;
  padding: 22px;
}

.source-card dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 18px;
  margin: 0;
}

.source-card dt {
  color: #0f172a;
  font-weight: 850;
}

.source-card dd {
  margin: 0;
  color: #334155;
}

.next-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 26px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ae-blue), #7c2dff);
}

.next-offer p {
  color: #e0f2fe;
}

.ai-disclosure {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq {
  max-width: 860px;
}

.faq details {
  padding: 18px 22px;
  margin-bottom: 12px;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "⌄";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--ae-blue);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
  transform-origin: 50% 52%;
  transition: transform 0.2s ease-in-out;
  flex: 0 0 auto;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 46px clamp(20px, 5vw, 64px);
  color: #e2e8f0;
  background: linear-gradient(135deg, #061120, #0b1324);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #94a3b8 !important;
}

.footer img {
  width: 150px;
  margin-bottom: 16px;
}

.footer h3 {
  color: #ffffff;
}

.footer a,
.footer p {
  display: block;
  color: #cbd5e1;
  line-height: 1.7;
}

.exit-dialog {
  width: min(92vw, 520px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.exit-dialog::backdrop {
  background: rgba(2, 6, 23, 0.58);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef2ff;
  cursor: pointer;
}

.academy-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 96px 1fr minmax(280px, 360px);
    gap: 10px;
    padding-inline: 18px;
  }

  .brand img {
    width: 76px;
  }

  .nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .section {
    max-width: 1100px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  }

  .sample-audit {
    grid-template-columns: minmax(230px, 0.9fr) minmax(300px, 340px) minmax(280px, 0.95fr);
    gap: 16px;
  }
}

@media (max-height: 820px) and (min-width: 821px) {
  .site-header {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .section {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero {
    gap: 18px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .hero-card {
    border-radius: 12px;
  }

  .decision-step {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .ai-logo-grid {
    gap: 5px;
  }

  .ai-logo-pill {
    gap: 6px;
    padding: 5px 7px 5px 6px;
    font-size: 0.72rem;
  }

  .ai-logo-pill img {
    width: 20px;
    height: 20px;
  }

  .lead,
  .hero-warning,
  .trust-row {
    font-size: 0.82rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 150px 1fr;
  }

  .nav {
    display: none;
  }

  .header-domain-form {
    justify-self: end;
  }

  .audit-panel,
  .for-who,
  .result-columns,
  .upgrade-proof,
  .split-section,
  .sample-audit,
  .security-section {
    grid-template-columns: 1fr;
  }

  .sample-audit {
    max-width: 720px;
    justify-items: stretch;
  }

  .sample-score {
    width: min(100%, 380px);
    justify-self: center;
  }

  .feature-row,
  .problem-grid,
  .insight-grid,
  .scope-grid,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-row article:nth-child(odd) {
    border-left: 0;
  }

}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-diagnostic-card {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    gap: 8px;
    padding: 8px 10px;
  }

  .brand img {
    width: 78px;
  }

  .header-domain-form {
    grid-template-columns: minmax(0, 1fr) 70px;
    justify-self: end;
    width: 100%;
  }

  .inline-domain-row,
  .cta-domain-form {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .header-domain-form input,
  .header-domain-form .button {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .inline-domain-form .button {
    width: 100%;
    border-radius: 8px;
  }

  .inline-domain-form input {
    border-right: 1px solid #cbd5e1;
    border-radius: 7px;
  }

  .sample-audit-form {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
  }

  .sample-audit-form input {
    border-right: 0;
    border-bottom: 1px solid #d1d5db;
    border-radius: 0;
  }

  .sample-audit-form .button {
    width: 100%;
    border-radius: 0;
  }

  .section {
    padding: 24px 16px;
  }

  h1 {
    font-size: clamp(1.72rem, 7.6vw, 2.18rem);
    line-height: 1.08;
  }

  h2,
  .section-heading h2,
  .solution-section h2,
  .closing-cta h2 {
    font-size: clamp(1.42rem, 6.4vw, 1.9rem);
    line-height: 1.12;
  }

  .hero {
    gap: 18px;
  }

  .hero-mini-form {
    padding: 12px;
  }

  .trust-row {
    gap: 10px 14px;
  }

  .problem-card,
  .scope-grid article {
    min-height: auto;
    padding: 18px 16px;
  }

  .solution-section {
    padding-top: 30px;
    padding-bottom: 16px;
  }

  .solution-copy p {
    font-size: 1rem;
    text-align: left;
  }

  .solution-copy p:last-child {
    font-size: 1.08rem;
    text-align: center;
  }

  .closing-cta {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .closing-soft,
  .closing-strong,
  .closing-note {
    margin-top: 24px;
  }

  .card-grid,
  .problem-grid,
  .insight-grid,
  .feature-row,
  .scope-grid,
  .sample-card,
  .sample-output-grid,
  .audit-form,
  .form-step,
  .tile-grid,
  .tile-grid-compact,
  .pillar-grid,
  .footer,
  .source-card dl,
  .academy-form,
  .upgrade-lists {
    grid-template-columns: 1fr;
  }

  .feature-row article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .feature-row article:first-child {
    border-top: 0;
  }

  .dark-band {
    padding: 28px 18px;
  }

  .result-header,
  .next-offer {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-score {
    width: 118px;
    height: 118px;
  }

  .result-score strong {
    font-size: 2.7rem;
  }

  .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip,
  .text-stack,
  .sample-card,
  .closing-cta {
    padding: 20px 16px;
  }

  .risk-card {
    grid-template-columns: 1fr;
  }

  .risk-card p,
  .risk-card em,
  .risk-card small {
    grid-column: auto;
  }

  .risk-card strong {
    grid-row: auto;
  }

  .ai-logo-grid {
    grid-template-columns: 1fr;
  }

  .ai-logo-pill {
    gap: 10px;
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 13px;
    font-size: 0.88rem;
  }

  .ai-logo-pill img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .sample-score {
    min-height: 520px;
    padding: 22px 18px 42px;
  }

  .sample-score .meta-text {
    position: static;
    align-self: stretch;
    text-align: left;
  }

  .sample-score .meta-tl,
  .sample-score .meta-tr {
    align-self: stretch;
    overflow-wrap: anywhere;
  }

  .sample-score .meta-bl {
    position: absolute;
    bottom: 18px;
    left: 18px;
  }

  .dashboard-title {
    margin-top: 8px;
  }

  .gauge-container {
    width: min(240px, 92vw);
  }
  }

  .risk-card strong {
    font-size: 2.55rem;
  }
}

/* Handoff-only controls; not part of the production design. */
.handoff-tools{position:relative;z-index:100;background:#fff4d6;color:#332600;padding:10px 16px;display:flex;flex-wrap:wrap;gap:10px;align-items:center;font:13px system-ui}.handoff-tools button{padding:7px 10px;border:1px solid #b39a55;border-radius:6px;background:white;cursor:pointer}
#upgrade-proof{display:none!important}
