:root {
  --ink: #071e2d;
  --ink-soft: #38505d;
  --navy: #071e2d;
  --navy-2: #0b2a3d;
  --paper: #f6f8f4;
  --white: #ffffff;
  --line: #dbe2dd;
  --line-dark: rgba(255, 255, 255, 0.16);
  --mint: #7de2c3;
  --mint-dark: #006b59;
  --mint-soft: #dff8ef;
  --coral: #ff735c;
  --coral-dark: #bc3d2e;
  --amber: #e99d28;
  --amber-soft: #fff3d8;
  --red: #c73f3a;
  --red-soft: #fff0ed;
  --blue: #3479c9;
  --blue-soft: #eaf3ff;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(4, 27, 40, 0.08);
  --shadow: 0 24px 70px rgba(4, 27, 40, 0.14);
  --shell: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.shell-narrow {
  max-width: 900px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand > span:last-child > span {
  color: var(--mint);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(125, 226, 195, 0.38);
  border-radius: 12px;
  background: rgba(125, 226, 195, 0.1);
}

.brand-mark svg {
  width: 27px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav > a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.header-nav > a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.button-small {
  min-height: 39px;
  padding-inline: 15px;
  border-radius: 10px;
  font-size: 13px;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #062232;
  background: var(--mint);
  box-shadow: 0 9px 24px rgba(55, 203, 160, 0.2);
}

.button-primary:hover:not(:disabled) {
  background: #91ebd0;
  box-shadow: 0 12px 28px rgba(55, 203, 160, 0.27);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover:not(:disabled),
.button-ghost-on-light:hover:not(:disabled) {
  border-color: #a9bbb1;
  background: #f1f5f1;
}

.button-ghost,
.button-ghost-on-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost-on-light {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover:not(:disabled) {
  background: var(--mint-soft);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 164px 0 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 38%, rgba(52, 177, 155, 0.16), transparent 31%),
    linear-gradient(138deg, #061b29 0%, #09283a 61%, #0d3549 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -140px;
  left: -10%;
  height: 230px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  content: "";
  transform: scaleX(1.2);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(125, 226, 195, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 460px;
  height: 460px;
  right: 2%;
  top: 120px;
}

.hero-orbit-two {
  width: 650px;
  height: 650px;
  right: -6%;
  top: 25px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 0.75fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.progress-card .eyebrow {
  color: var(--mint);
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(125, 226, 195, 0.13);
}

.hero h1 {
  max-width: 650px;
  margin: 25px 0 25px;
  font-size: clamp(44px, 5.1vw, 70px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 18px;
  line-height: 1.7;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 18px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audit-card-wrap {
  position: relative;
}

.audit-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 80px rgba(0, 11, 18, 0.32);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audit-card h2 {
  margin: 0 0 8px;
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.audit-card > p {
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-size: 14px;
}

.audit-card label,
.field label,
.capture-form > label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 760;
}

.url-field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.url-field-icon {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  color: #71838b;
  pointer-events: none;
}

.url-field-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5cf;
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 92px;
  padding: 12px 14px;
  resize: vertical;
}

.url-field input {
  min-width: 0;
  padding-left: 42px;
}

input:hover,
textarea:hover {
  border-color: #9eafa6;
}

input:focus,
textarea:focus {
  border-color: var(--mint-dark);
  outline: none;
  box-shadow: 0 0 0 4px rgba(30, 156, 127, 0.12);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.audit-submit {
  min-height: 50px;
}

.field-hint,
.field-error,
.form-error {
  margin: 8px 0 0;
  font-size: 12px;
}

.field-hint {
  color: #687c84;
}

.field-error,
.form-error {
  min-height: 19px;
  color: var(--red);
  font-weight: 650;
}

.audit-seal {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 21px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: #63777f;
  font-size: 12px;
}

.audit-seal svg {
  flex: 0 0 20px;
  width: 20px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audit-seal strong {
  color: var(--ink);
}

.signal-card {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: -38px;
  display: flex;
  min-width: 280px;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--white);
  background: rgba(5, 30, 45, 0.92);
  box-shadow: 0 18px 42px rgba(0, 12, 20, 0.34);
  backdrop-filter: blur(12px);
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(125, 226, 195, 0.13);
}

.signal-card div:nth-child(2) {
  display: grid;
  flex: 1;
}

.signal-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 13px;
}

.signal-card .signal-score {
  color: var(--mint);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.state-section {
  padding: 80px 0;
}

.progress-card,
.message-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 44px;
  align-items: center;
  padding: 52px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.radar {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 1px solid rgba(125, 226, 195, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 226, 195, 0.12) 0 3px, transparent 4px);
}

.radar::before,
.radar::after {
  position: absolute;
  background: rgba(125, 226, 195, 0.15);
  content: "";
}

.radar::before {
  width: 1px;
  height: 100%;
  left: 50%;
}

.radar::after {
  width: 100%;
  height: 1px;
  top: 50%;
}

.radar span {
  position: absolute;
  border: 1px solid rgba(125, 226, 195, 0.13);
  border-radius: 50%;
  inset: 21%;
}

.radar span:nth-child(2) {
  inset: 38%;
}

.radar span:nth-child(3) {
  width: 8px;
  height: 8px;
  inset: 28% auto auto 64%;
  border: 0;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.radar i {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 0;
  border-left: 1px solid var(--mint);
  background: linear-gradient(125deg, rgba(125, 226, 195, 0.22), transparent 70%);
  transform-origin: bottom left;
  animation: scan 2.2s linear infinite;
}

@keyframes scan {
  to { transform: rotate(360deg); }
}

.progress-copy h2,
.message-card h2 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 4vw, 39px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.progress-copy > p,
.message-card p {
  color: rgba(255, 255, 255, 0.69);
}

.indeterminate-progress {
  position: relative;
  height: 6px;
  overflow: hidden;
  margin-top: 24px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.indeterminate-progress span {
  position: absolute;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: var(--mint);
  animation: progress-slide 1.7s ease-in-out infinite;
}

@keyframes progress-slide {
  from { transform: translateX(-110%); }
  to { transform: translateX(390%); }
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.49);
  font-size: 11px;
}

.progress-honesty {
  margin: 22px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--mint);
  font-size: 12px;
}

.message-card-error {
  grid-template-columns: auto 1fr;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #f0c9c2;
}

.message-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--red-soft);
  font-size: 34px;
  font-weight: 400;
}

.message-card-error p {
  color: var(--ink-soft);
}

.message-label {
  margin: 0;
  color: var(--red) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.results-section {
  padding: 72px 0 110px;
}

.results-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.results-topline h2 {
  max-width: 700px;
  margin: 13px 0 6px;
  font-size: clamp(34px, 5vw, 55px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.results-subtitle {
  margin: 0;
  color: var(--ink-soft);
}

.results-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.report-notice {
  margin: 0 0 24px;
  padding: 15px 18px;
  border: 1px solid #e6c982;
  border-radius: 12px;
  color: #6d4b0e;
  background: var(--amber-soft);
  font-size: 13px;
}

.report-grid {
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
}

.score-panel {
  position: sticky;
  top: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.score-ring {
  position: relative;
  display: grid;
  width: 178px;
  height: 178px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--score-color, var(--mint-dark)) 0%, #e9eeeb 0);
}

.score-tone-good { --score-color: #159476; --bar-color: #159476; }
.score-tone-watch { --score-color: #e99d28; --bar-color: #e99d28; }
.score-tone-risk { --score-color: #c73f3a; --bar-color: #c73f3a; }
.score-ring.score-progress-0 { background: conic-gradient(var(--score-color) 0%, #e9eeeb 0); }
.score-ring.score-progress-10 { background: conic-gradient(var(--score-color) 10%, #e9eeeb 0); }
.score-ring.score-progress-20 { background: conic-gradient(var(--score-color) 20%, #e9eeeb 0); }
.score-ring.score-progress-30 { background: conic-gradient(var(--score-color) 30%, #e9eeeb 0); }
.score-ring.score-progress-40 { background: conic-gradient(var(--score-color) 40%, #e9eeeb 0); }
.score-ring.score-progress-50 { background: conic-gradient(var(--score-color) 50%, #e9eeeb 0); }
.score-ring.score-progress-60 { background: conic-gradient(var(--score-color) 60%, #e9eeeb 0); }
.score-ring.score-progress-70 { background: conic-gradient(var(--score-color) 70%, #e9eeeb 0); }
.score-ring.score-progress-80 { background: conic-gradient(var(--score-color) 80%, #e9eeeb 0); }
.score-ring.score-progress-90 { background: conic-gradient(var(--score-color) 90%, #e9eeeb 0); }
.score-ring.score-progress-100 { background: conic-gradient(var(--score-color) 100%, #e9eeeb 0); }

.score-ring::before {
  position: absolute;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.score-ring > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
}

.score-ring strong {
  font-size: 59px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.score-ring span {
  color: #708088;
  font-size: 13px;
  font-weight: 700;
}

.score-label {
  margin: 0;
  text-align: center;
  font-size: 17px;
  font-weight: 850;
}

.score-summary {
  margin: 10px 0 24px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.report-meta {
  margin: 0;
  border-top: 1px solid var(--line);
}

.report-meta > div {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.report-meta dt {
  color: #52666f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-meta dd {
  overflow: hidden;
  margin: 0;
  font-size: 12px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-meta dd a {
  color: var(--mint-dark);
}

.snapshot-note {
  margin: 18px 0 0;
  color: #556871;
  font-size: 10px;
  line-height: 1.5;
}

.report-main {
  display: grid;
  gap: 18px;
}

.report-block {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(4, 27, 40, 0.045);
}

.block-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.section-number {
  margin: 0 0 7px;
  color: var(--mint-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.block-heading h3,
.capture-section h3,
.pilot-section h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 31px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.block-heading > p {
  max-width: 280px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: right;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcfa;
}

.category-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-top h4 {
  margin: 0;
  font-size: 13px;
}

.category-top strong {
  font-size: 15px;
}

.category-track {
  display: block;
  width: 100%;
  height: 6px;
  overflow: hidden;
  margin: 12px 0 9px;
  appearance: none;
  border: 0;
  border-radius: 99px;
  background: #e8eeea;
}

.category-track::-webkit-progress-bar { border-radius: 99px; background: #e8eeea; }
.category-track::-webkit-progress-value { border-radius: 99px; background: var(--bar-color); }
.category-track::-moz-progress-bar { border-radius: 99px; background: var(--bar-color); }

.category-card p {
  margin: 0;
  color: #4f636b;
  font-size: 10px;
}

.priority-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: priority;
}

.priority-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcfa;
  counter-increment: priority;
}

.priority-list li::before {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  color: var(--mint-dark);
  background: var(--mint-soft);
  font-size: 12px;
  font-weight: 850;
  content: "0" counter(priority);
}

.priority-content {
  min-width: 0;
}

.priority-content strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.priority-content span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 11px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.early-conversion {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #b9dcd0;
  border-radius: 14px;
  background: var(--mint-soft);
}

.early-conversion > div {
  display: grid;
  gap: 4px;
}

.early-conversion strong {
  font-size: 14px;
}

.early-conversion span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.early-conversion .button {
  flex: 0 0 auto;
}

.severity-badge,
.count-chip {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.severity-critical,
.severity-high {
  color: var(--red);
  background: var(--red-soft);
}

.severity-medium {
  color: #855a0b;
  background: var(--amber-soft);
}

.severity-low,
.severity-info,
.severity-pass {
  color: var(--mint-dark);
  background: var(--mint-soft);
}

.count-chip {
  color: var(--ink-soft);
  background: #eef2ef;
}

.findings-list {
  display: grid;
  gap: 10px;
}

.finding {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcfa;
}

.finding summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 13px 16px;
  cursor: pointer;
  list-style: none;
}

.finding summary::-webkit-details-marker {
  display: none;
}

.finding summary::after {
  width: 9px;
  height: 9px;
  border-right: 2px solid #70828a;
  border-bottom: 2px solid #70828a;
  content: "";
  transform: rotate(45deg) translate(-2px, 2px);
  transition: transform 160ms ease;
}

.finding[open] summary::after {
  transform: rotate(225deg) translate(-2px, 2px);
}

.finding-title {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.finding-title strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.finding-title span {
  color: #52666f;
  font-size: 10px;
}

.finding-body {
  display: grid;
  gap: 15px;
  padding: 0 16px 18px 118px;
}

.finding-body div {
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.finding-body strong {
  display: block;
  margin-bottom: 4px;
  color: #4f626a;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finding-body p,
.finding-body code {
  margin: 0;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.finding-body .recommendation {
  padding: 13px 15px;
  border: 0;
  border-left: 3px solid var(--mint-dark);
  border-radius: 0 8px 8px 0;
  background: var(--mint-soft);
}

.empty-state {
  padding: 22px;
  border: 1px dashed #b9c7bf;
  border-radius: 13px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.capture-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 70px;
  align-items: center;
  margin-top: 26px;
  padding: 54px;
  border: 1px solid #cbded4;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(125, 226, 195, 0.14), transparent 42%),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.capture-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 15px;
  color: var(--mint-dark);
  background: var(--mint-soft);
}

.capture-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capture-copy > p:last-child {
  max-width: 440px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.followup-guarantees {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  list-style: none;
}

.followup-guarantees li::before {
  margin-right: 8px;
  color: var(--mint-dark);
  content: "✓";
}

.capture-form {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.intent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.intent-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 760;
}

.intent-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  cursor: pointer;
}

.intent-option:has(input:checked) {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(30, 156, 127, 0.1);
}

.intent-option.is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.intent-option input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--mint-dark);
}

.intent-option span {
  display: grid;
  gap: 3px;
}

.intent-option strong {
  font-size: 12px;
}

.intent-option small {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.4;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field-wide {
  grid-column: 1 / -1;
}

.optional {
  float: right;
  color: #5f6e75;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 0 !important;
  color: var(--ink-soft);
  font-size: 11px !important;
  font-weight: 500 !important;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--mint-dark);
}

.privacy-mini {
  margin: 11px 0 0;
  color: #53666e;
  font-size: 10px;
  text-align: center;
}

.privacy-mini a {
  color: var(--mint-dark);
}

.inline-success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 27px;
  border: 1px solid #a3dac7;
  border-radius: var(--radius);
  background: var(--mint-soft);
}

.inline-success svg {
  width: 35px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-success div {
  display: grid;
  gap: 3px;
}

.inline-success span {
  color: var(--ink-soft);
  font-size: 12px;
}

.pilot-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
  margin-top: 26px;
  padding: 58px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(125, 226, 195, 0.15), transparent 32%),
    var(--navy);
  box-shadow: var(--shadow);
}

.eyebrow-light {
  color: var(--mint);
}

.pilot-copy h3 {
  max-width: 480px;
  margin-top: 17px;
  font-size: clamp(31px, 4vw, 44px);
}

.pilot-copy > p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.66);
}

.pilot-copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  list-style: none;
}

.pilot-copy li::before {
  margin-right: 10px;
  color: var(--mint);
  content: "✓";
}

.pilot-form {
  padding: 27px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.pilot-form .field label {
  color: rgba(255, 255, 255, 0.82);
}

.pilot-form input,
.pilot-form textarea {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.pilot-form input:focus,
.pilot-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(125, 226, 195, 0.13);
}

.pilot-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.37);
}

.optional-dark {
  color: #bec9ce;
}

.consent-row-dark {
  color: rgba(255, 255, 255, 0.62);
}

.form-error-dark {
  color: #ffb8ae;
}

.pilot-success {
  padding: 34px;
  border: 1px solid rgba(125, 226, 195, 0.25);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(125, 226, 195, 0.08);
}

.pilot-success-icon {
  display: grid;
  width: 57px;
  height: 57px;
  margin: 0 auto 15px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--mint);
  font-size: 26px;
}

.pilot-success h4 {
  margin: 0 0 7px;
  font-size: 23px;
}

.pilot-success p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.method-section,
.privacy-section {
  padding: 110px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.section-intro h2,
.privacy-section h2 {
  margin: 0;
  font-size: clamp(35px, 5vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.method-grid article {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.method-grid article > svg {
  width: 35px;
  margin: 42px 0 25px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #61736b;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.method-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.method-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.method-boundary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.method-boundary > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #eef3ef;
}

.method-boundary svg {
  flex: 0 0 24px;
  width: 24px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-boundary span {
  color: var(--ink-soft);
  font-size: 12px;
}

.method-boundary strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
}

.related-check {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.related-check a {
  color: var(--mint-dark);
  font-weight: 760;
}

.privacy-section {
  background: #eaf0ec;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
  align-items: start;
}

.privacy-grid .eyebrow {
  margin-bottom: 20px;
}

.privacy-copy {
  padding-top: 26px;
}

.privacy-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.privacy-copy a {
  color: var(--mint-dark);
  font-weight: 700;
}

.privacy-disclaimer {
  padding: 15px 18px;
  border-left: 3px solid var(--mint-dark);
  background: rgba(255, 255, 255, 0.45);
}

.site-footer {
  padding: 38px 0;
  color: var(--white);
  background: #041722;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 35px;
  align-items: center;
}

.brand-footer {
  font-size: 16px;
}

.brand-footer .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.brand-footer .brand-mark svg {
  width: 23px;
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.footer-inner nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  text-decoration: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: min(390px, calc(100vw - 40px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 650;
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .hero {
    padding-bottom: 170px;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .score-panel {
    position: static;
    display: grid;
    grid-template-columns: 190px 1fr;
    column-gap: 30px;
    align-items: center;
  }

  .score-ring {
    grid-row: span 4;
    margin: 0;
  }

  .score-label,
  .score-summary {
    text-align: left;
  }

  .score-summary {
    margin-bottom: 8px;
  }

  .report-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .snapshot-note {
    grid-column: 2;
  }

  .capture-section,
  .pilot-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-intro,
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro .eyebrow {
    margin-bottom: -5px;
  }

  .privacy-copy {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
  }

  .header-nav > a {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 118px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero h1 {
    margin: 14px 0;
    font-size: clamp(32px, 9.4vw, 42px);
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .trust-list {
    gap: 8px 14px;
    margin-top: 16px;
    font-size: 11px;
  }

  .audit-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .audit-card h2 {
    font-size: 23px;
  }

  .audit-card > p {
    margin-bottom: 14px;
  }

  .url-field {
    grid-template-columns: 1fr;
  }

  .audit-submit {
    width: 100%;
  }

  .signal-card {
    display: none;
  }

  .state-section,
  .results-section {
    padding: 50px 0 76px;
  }

  .progress-card,
  .message-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 24px;
  }

  .radar {
    width: 108px;
    height: 108px;
  }

  .progress-meta {
    display: grid;
  }

  .message-icon {
    width: 55px;
    height: 55px;
  }

  .results-topline {
    display: grid;
  }

  .results-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .score-panel {
    display: block;
    padding: 25px;
  }

  .score-ring {
    width: 156px;
    height: 156px;
    margin: 0 auto 18px;
  }

  .score-ring::before {
    width: 124px;
    height: 124px;
  }

  .score-label,
  .score-summary {
    text-align: center;
  }

  .report-meta {
    display: block;
  }

  .snapshot-note {
    grid-column: auto;
  }

  .report-block {
    padding: 24px 18px;
  }

  .block-heading {
    display: grid;
    gap: 10px;
  }

  .block-heading > p {
    text-align: left;
  }

  .categories-grid,
  .form-grid,
  .intent-options,
  .method-grid,
  .method-boundary {
    grid-template-columns: 1fr;
  }

  .priority-list li {
    grid-template-columns: 38px 1fr;
  }

  .priority-list .severity-badge {
    grid-column: 2;
    justify-self: start;
  }

  .early-conversion {
    display: grid;
  }

  .early-conversion .button {
    width: 100%;
  }

  .finding summary {
    grid-template-columns: 1fr auto;
  }

  .finding summary .severity-badge {
    grid-column: 1;
    justify-self: start;
  }

  .finding-body {
    padding: 0 16px 18px;
  }

  .capture-section,
  .pilot-section {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .pilot-form,
  .capture-form {
    padding: 21px 16px;
  }

  .method-section,
  .privacy-section {
    padding: 78px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .header-nav .button {
    padding-inline: 10px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .results-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .score-ring {
    border: 8px solid CanvasText;
    background: Canvas;
  }

  .eyebrow > span,
  .category-track {
    background: CanvasText;
  }
}
