:root {
  --paper: #ffffff;
  --surface: #ffffff;
  --ink: #18171f;
  --muted: rgba(24, 23, 31, 0.68);
  --line: #18171f;
  --brand: #4f46e5;
  --signal: #ff3d86;
  --soft: rgba(24, 23, 31, 0.055);
  --type: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: var(--type);
  --sans: var(--type);
  --label: var(--type);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-optical-sizing: auto;
}

body::selection {
  background: var(--brand);
  color: var(--surface);
}

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

button,
input {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 760;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: 4.15rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  font-size: 4rem;
  font-weight: 720;
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.top-strip {
  overflow: clip;
  border-bottom: 2px solid var(--line);
  background: var(--brand);
  color: var(--surface);
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.top-strip-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.top-strip-group {
  display: flex;
  width: max(100vw, 1180px);
  flex: 0 0 max(100vw, 1180px);
  align-items: center;
  justify-content: space-around;
}

.top-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 18px;
  white-space: nowrap;
}

.top-strip span::before {
  content: "+";
  margin-right: 18px;
  color: var(--surface);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px max(20px, calc((100% - var(--shell)) / 2));
  border-bottom: 2px solid var(--line);
  background: var(--surface);
}

.brand,
.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  width: fit-content;
  min-height: 46px;
  color: var(--ink);
  font-weight: 900;
}

.brand-symbol {
  display: block;
  width: 46px;
  height: auto;
  flex: 0 0 46px;
}

.brand-wordmark {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--type);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-primary {
  color: var(--brand);
}

.brand-accent {
  color: var(--signal);
}

.site-footer .brand {
  color: var(--surface);
}

.site-footer .brand-primary {
  color: var(--surface);
}

.nav-links {
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.site-footer nav a {
  padding: 9px 11px;
  border: 1px solid transparent;
  font-family: var(--label);
  font-size: 0.76rem;
}

.nav-links a:hover,
.site-footer nav a:hover {
  border-color: var(--line);
  background: var(--surface);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 0 15px;
  border: 2px solid var(--line);
  background: var(--signal);
  color: var(--ink);
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--signal);
}

.hero {
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}

.hero-shell,
.section-shell,
.coverage-shell,
.final-cta-shell,
.footer-shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding: 44px 0 54px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  margin: 0 0 20px;
  padding: 6px 9px;
  border: 2px solid var(--line);
  background: var(--brand);
  color: var(--surface);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--line);
}

.eyebrow.accent {
  background: var(--brand);
  color: var(--surface);
}

.hero-lede,
.section-heading > p,
.split-heading > p,
.panel-copy > p,
.price-grid p,
.faq-list p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 1.18rem;
}

.hero-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
}

.hero-outcomes li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-outcomes span {
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.66rem;
}

.audit-form {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 0 22px;
  overflow: clip;
  padding: 14px;
  border: 2px solid var(--line);
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--line);
}

.audit-form.is-launching::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  background: var(--brand);
  content: "";
  transform-origin: left;
  animation: launch-progress 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.audit-form.is-launching button {
  background: var(--brand);
  color: var(--surface);
}

.audit-form label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 216px;
  gap: 8px;
}

.form-row input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0 14px;
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.form-row input:focus {
  background: var(--surface);
  box-shadow: inset 0 0 0 3px rgba(79, 70, 229, 0.22);
}

.form-row button,
.price-grid a,
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--line);
  background: var(--signal);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--label);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
}

.form-row button {
  min-height: 56px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.form-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-reassurance span::before {
  content: "+";
  color: var(--ink);
  font-weight: 900;
}

#form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.7rem;
  line-height: 1.4;
}

.turnstile-shell {
  min-height: 65px;
  margin-top: 12px;
}

.turnstile-shell[hidden] {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid var(--line);
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-product {
  min-width: 0;
}

.report-window {
  overflow: clip;
  border: 2px solid var(--line);
  background: var(--surface);
  box-shadow: 12px 12px 0 var(--line);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 14px;
  border-bottom: 2px solid var(--line);
  background: var(--soft);
  font-family: var(--label);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.window-bar > div {
  display: flex;
  gap: 6px;
}

.window-dot {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.window-dot:first-child {
  background: var(--signal);
}

.window-dot:nth-child(2) {
  background: var(--brand);
}

.window-dot:nth-child(3) {
  background: var(--ink);
}

.live-label {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
}

.live-label i {
  width: 8px;
  height: 8px;
  background: var(--signal);
}

.score-overview {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  align-items: center;
  min-height: 150px;
  border-bottom: 2px solid var(--line);
  background: var(--brand);
  color: var(--surface);
}

.score-overview > div,
.score-overview > p {
  padding: 22px;
}

.score-overview > div {
  border-right: 2px solid var(--line);
}

.data-label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.score-overview strong {
  display: block;
  font-size: 4.5rem;
  line-height: 0.85;
}

.score-overview .result-status {
  margin-top: 10px;
  font-size: 2.2rem;
  line-height: 1;
}

.score-overview small {
  font-size: 1.1rem;
}

.score-overview p {
  margin: 0;
  color: var(--surface);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.4;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 2px solid var(--line);
}

.metric-grid div {
  min-height: 94px;
  padding: 15px;
  border-right: 2px solid var(--line);
}

.metric-grid div:last-child {
  border-right: 0;
}

.metric-grid span {
  display: block;
  min-height: 26px;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.64rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.65rem;
}

.prompt-receipt {
  margin: 14px;
  border: 2px solid var(--line);
}

.receipt-topline,
.answer-row,
.next-fix {
  display: grid;
  align-items: center;
}

.receipt-topline {
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 2px solid var(--line);
  background: var(--soft);
  font-family: var(--label);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.receipt-topline strong {
  padding: 4px 6px;
  border: 1px solid var(--line);
  background: var(--signal);
}

.query {
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.answer-row {
  grid-template-columns: 112px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.answer-row:last-child {
  border-bottom: 0;
}

.answer-row > span,
.answer-row > p {
  padding: 11px 12px;
}

.answer-row > span {
  height: 100%;
  border-right: 1px solid var(--line);
  background: var(--soft);
  font-family: var(--label);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-row > p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

.answer-row.missed > span {
  background: var(--signal);
}

.next-fix {
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 13px 14px;
  border-top: 2px solid var(--line);
  border-left: 8px solid var(--brand);
  background: var(--soft);
}

.next-fix .data-label,
.next-fix p {
  margin: 0;
}

.next-fix p {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.next-fix strong {
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-family: var(--label);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.sample-note {
  margin: 22px 0 0;
  padding-left: 14px;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.68rem;
  line-height: 1.45;
}

.coverage-strip {
  border-bottom: 2px solid var(--line);
  background: var(--ink);
  color: var(--surface);
}

.coverage-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coverage-shell div {
  min-height: 106px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.coverage-shell div:last-child {
  border-right: 0;
}

.coverage-shell strong,
.coverage-shell span {
  display: block;
}

.coverage-shell strong {
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 1.22rem;
}

.coverage-shell span {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--label);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.problem-band,
.how-section,
.pricing-section,
.final-cta {
  border-bottom: 2px solid var(--line);
}

.problem-band {
  background: var(--soft);
}

.problem-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 64px;
  align-items: center;
  padding: 88px 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading > p {
  max-width: 720px;
}

.problem-band .section-heading > p {
  color: rgba(24, 23, 31, 0.76);
}

.section-heading > p.eyebrow {
  color: var(--surface);
}

.section-heading > p.eyebrow.accent {
  color: var(--surface);
}

.question-stack {
  display: grid;
  gap: 10px;
}

.question-stack article {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 156px;
  gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 16px;
  border: 2px solid var(--line);
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--line);
}

.question-stack span,
.question-stack strong {
  font-family: var(--label);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.question-stack span {
  color: var(--muted);
}

.question-stack p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
}

.question-stack strong {
  padding: 8px;
  border: 1px solid var(--line);
  border-color: var(--brand);
  background: var(--surface);
  line-height: 1.3;
  text-align: center;
}

.report-section,
.checks-section,
.faq-section {
  border-bottom: 2px solid var(--line);
  background: var(--surface);
}

.report-section .section-shell,
.how-section .section-shell,
.checks-section .section-shell,
.pricing-section .section-shell,
.faq-section .section-shell {
  padding: 92px 0;
}

.section-heading.centered {
  margin-right: auto;
  margin-bottom: 44px;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow,
.section-heading.centered > p {
  margin-right: auto;
  margin-left: auto;
}

.report-explorer {
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--line);
}

.report-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 2px solid var(--line);
}

.report-tab {
  min-height: 82px;
  padding: 12px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.report-tab:last-child {
  border-right: 0;
}

.report-tab span,
.report-tab strong {
  display: block;
}

.report-tab span {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.report-tab strong {
  font-size: 1.08rem;
}

.report-tab.active {
  background: var(--brand);
  color: var(--surface);
  box-shadow: inset 0 -6px 0 var(--line);
}

.report-tab.active span {
  color: var(--surface);
}

.report-panels {
  min-height: 430px;
}

.report-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: center;
  min-height: 430px;
  padding: 42px;
}

.report-panel[hidden] {
  display: none;
}

.panel-copy h3 {
  font-size: 2.35rem;
  line-height: 1.03;
}

.panel-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border-bottom: 2px solid var(--line);
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 900;
}

.engine-list,
.citation-list,
.priority-list,
.competitor-table {
  margin: 0;
  border: 2px solid var(--line);
  background: var(--surface);
  box-shadow: 7px 7px 0 var(--line);
}

.engine-list div,
.citation-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.engine-list div:last-child,
.citation-list div:last-child {
  border-bottom: 0;
}

.engine-list span,
.citation-list span {
  font-weight: 800;
}

.engine-list strong,
.citation-list strong {
  padding: 6px 8px;
  border: 1px solid var(--line);
  font-family: var(--label);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.status-good {
  background: var(--brand);
  color: var(--surface);
}

.status-bad {
  background: var(--signal);
}

.citation-list strong {
  background: var(--soft);
}

.priority-list {
  padding: 0;
  list-style: none;
}

.priority-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.priority-list li:last-child {
  border-bottom: 0;
}

.priority-list span,
.priority-list strong {
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 900;
}

.priority-list p {
  margin: 0;
  font-weight: 750;
}

.priority-list strong {
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: var(--signal);
}

.competitor-table > div {
  display: grid;
  grid-template-columns: 1fr 110px 110px;
  min-height: 62px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.competitor-table > div:last-child {
  border-bottom: 0;
}

.competitor-table > div > * {
  height: 100%;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.competitor-table > div > *:last-child {
  border-right: 0;
}

.competitor-table > div:first-child {
  background: var(--ink);
  color: var(--surface);
  font-family: var(--label);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.competitor-table .your-row {
  background: var(--soft);
}

.how-section {
  background: var(--ink);
  color: var(--surface);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 80px;
  align-items: end;
  max-width: none;
  margin-bottom: 46px;
}

.split-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
}

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

.steps article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 22px;
  border: 2px solid var(--surface);
  background: var(--surface);
  color: var(--ink);
}

.steps article:nth-child(1) .step-number {
  background: var(--brand);
  color: var(--surface);
}

.steps article:nth-child(2) .step-number {
  background: var(--brand);
  color: var(--surface);
}

.steps article:nth-child(3) .step-number {
  background: var(--brand);
  color: var(--surface);
}

.step-number {
  display: grid;
  width: 70px;
  height: 62px;
  place-items: center;
  margin-bottom: 72px;
  border: 2px solid var(--line);
  font-family: var(--label);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--line);
}

.steps p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.step-time {
  width: fit-content;
  margin-top: auto;
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-family: var(--label);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checks-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

.check-list {
  border-top: 2px solid var(--line);
}

.check-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  min-height: 116px;
  padding: 20px 0;
  border-bottom: 2px solid var(--line);
}

.check-list article > span {
  font-family: var(--label);
  font-size: 1.5rem;
  font-weight: 900;
}

.check-list article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-section {
  background: var(--soft);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.price-grid article {
  position: relative;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  padding: 28px;
  border: 2px solid var(--line);
  background: var(--surface);
}

#receipts {
  scroll-margin-top: 110px;
}

.price-grid article.featured {
  background: var(--surface);
  box-shadow: 10px 10px 0 var(--brand);
}

.price-grid article.featured .price-topline strong {
  color: var(--brand);
}

.price-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  padding: 7px 10px;
  border: 2px solid var(--line);
  background: var(--signal);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line);
}

.price-topline span {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-topline strong {
  font-size: 3.4rem;
  line-height: 0.86;
}

.price-topline strong small {
  display: block;
  margin-top: 10px;
  font-family: var(--label);
  font-size: 0.66rem;
  text-align: right;
  text-transform: uppercase;
}

.price-grid h3 {
  max-width: 420px;
  font-size: 2rem;
}

.price-grid ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 32px;
  padding: 0;
  list-style: none;
}

.price-grid li {
  display: flex;
  gap: 10px;
  line-height: 1.35;
}

.price-grid li::before {
  content: "+";
  font-family: var(--label);
  font-weight: 900;
}

.price-grid a {
  min-height: 54px;
  margin-top: auto;
  padding: 0 14px;
}

.price-note {
  margin: 14px 0 0;
  font-family: var(--label);
  font-size: 0.68rem !important;
  text-align: center;
  text-transform: uppercase;
}

.agency-line {
  margin: 36px 0 0;
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
}

.faq-list {
  border-top: 2px solid var(--line);
}

.faq-list details {
  border-bottom: 2px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  font-size: 1.14rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--brand);
  font-family: var(--label);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 720px;
  margin-bottom: 22px;
  padding-right: 48px;
}

.final-cta {
  background: var(--brand);
  color: var(--surface);
}

.final-cta-shell {
  padding: 92px 0;
  text-align: center;
}

.final-cta .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.final-cta .eyebrow.accent {
  background: var(--signal);
  color: var(--ink);
}

.final-cta h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta a {
  min-height: 58px;
  margin-top: 12px;
  padding: 0 22px;
  background: var(--signal);
}

.final-cta-shell > span {
  display: block;
  margin-top: 18px;
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  background: var(--ink);
  color: var(--surface);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
  min-height: 260px;
  padding: 48px 0;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

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

.site-footer nav {
  align-items: flex-start;
  flex-direction: column;
}

.site-footer nav strong {
  margin: 0 0 10px 11px;
  color: var(--surface);
  font-family: var(--label);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer nav a:hover {
  color: var(--ink);
}

.mobile-cta {
  display: none;
}

.mobile-cta.is-hidden {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .site-header {
    animation: header-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .hero-copy > * {
    opacity: 0;
    animation: reveal-up 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--entrance-delay, 0ms) both;
  }

  .motion-ready .hero-product {
    opacity: 0;
    animation: product-enter 860ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
  }

  .motion-ready .live-label i {
    animation: live-blink 1.65s ease-in-out infinite;
  }

  .motion-ready .report-window {
    animation: report-float 5.5s ease-in-out 1.1s infinite;
  }

  .motion-ready .reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition:
      opacity 620ms ease,
      transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .coverage-shell .reveal {
    transform: translate3d(0, 16px, 0);
  }

  .motion-ready .report-panel.active {
    animation: panel-enter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .score-bump {
    animation: score-bump 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .report-tab,
  .question-stack article,
  .steps article,
  .price-grid article,
  .faq-list summary,
  .nav-cta,
  .form-row button,
  .price-grid a,
  .final-cta a,
  .mobile-cta {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      background-color 180ms ease;
  }

  .faq-list details[open] p {
    animation: answer-enter 300ms ease both;
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .nav-cta:hover,
  .form-row button:hover,
  .price-grid a:hover,
  .final-cta a:hover,
  .mobile-cta:hover {
    transform: translate3d(-2px, -2px, 0);
  }

  .question-stack article:hover,
  .steps article:hover,
  .price-grid article:hover {
    transform: translate3d(-3px, -3px, 0);
  }

  .report-tab:hover:not(.active) {
    background: var(--soft);
  }
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes launch-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes product-enter {
  from {
    opacity: 0;
    transform: translate3d(28px, 18px, 0) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes live-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}

@keyframes report-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes score-bump {
  0% {
    transform: translate3d(0, 8px, 0) scale(0.92);
  }

  70% {
    transform: translate3d(0, -2px, 0) scale(1.06);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes answer-enter {
  from {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero-shell {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: 30px;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .question-stack article {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .question-stack strong {
    grid-column: 2;
    width: fit-content;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero-shell,
  .problem-shell,
  .checks-shell,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 46px;
    padding: 58px 0 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .problem-shell,
  .checks-shell,
  .faq-shell {
    gap: 42px;
  }

  .report-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: 240px;
  }

  .step-number {
    margin-bottom: 44px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 66px;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .top-strip span {
    min-height: 32px;
    padding: 0 14px;
  }

  .top-strip span::before {
    margin-right: 14px;
  }

  .site-header {
    min-height: 62px;
    padding: 9px 14px;
  }

  .brand {
    gap: 8px;
    min-height: 39px;
  }

  .brand-symbol {
    width: 39px;
    flex-basis: 39px;
  }

  .brand-wordmark {
    font-size: 0.96rem;
  }

  .nav-cta {
    width: 44px;
    min-height: 42px;
    overflow: hidden;
    padding: 0;
    font-size: 0;
  }

  .nav-cta span {
    font-size: 1rem;
  }

  .hero-shell,
  .section-shell,
  .coverage-shell,
  .final-cta-shell,
  .footer-shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links nav:last-child {
    grid-column: 1 / -1;
  }

  .hero-shell {
    gap: 40px;
    padding: 44px 0 54px;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-outcomes {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row button {
    width: 100%;
  }

  .form-reassurance {
    gap: 8px 12px;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-bar > strong {
    order: 3;
    grid-column: 1 / -1;
    padding-bottom: 10px;
  }

  .score-overview {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .score-overview > div,
  .score-overview > p {
    padding: 16px;
  }

  .score-overview strong {
    font-size: 3.2rem;
  }

  .score-overview p {
    font-size: 0.86rem;
  }

  .metric-grid span {
    font-size: 0.58rem;
  }

  .metric-grid strong {
    font-size: 1.15rem;
  }

  .answer-row {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .next-fix {
    grid-template-columns: 1fr auto;
  }

  .next-fix p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .coverage-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-shell div {
    min-height: 90px;
    padding: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .coverage-shell div:nth-child(2n) {
    border-right: 0;
  }

  .coverage-shell div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .problem-shell,
  .report-section .section-shell,
  .how-section .section-shell,
  .checks-section .section-shell,
  .pricing-section .section-shell,
  .faq-section .section-shell,
  .final-cta-shell {
    padding: 68px 0;
  }

  .question-stack article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .question-stack strong {
    grid-column: 1;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading.centered .eyebrow,
  .section-heading.centered > p {
    margin-left: 0;
  }

  .report-explorer {
    box-shadow: 7px 7px 0 var(--line);
  }

  .report-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-tab {
    min-height: 74px;
    border-bottom: 1px solid var(--line);
  }

  .report-tab:nth-child(2n) {
    border-right: 0;
  }

  .report-tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .report-panel {
    min-height: 0;
    padding: 24px 18px;
  }

  .panel-copy h3 {
    font-size: 1.8rem;
  }

  .engine-list span,
  .citation-list span {
    overflow-wrap: anywhere;
  }

  .competitor-table > div {
    grid-template-columns: minmax(0, 1fr) 74px 74px;
  }

  .competitor-table > div > * {
    padding: 14px 8px;
    font-size: 0.76rem;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-grid article {
    min-height: 500px;
    padding: 22px;
  }

  .price-grid article.featured {
    margin-top: 16px;
    box-shadow: 7px 7px 0 var(--line);
  }

  .faq-list p {
    padding-right: 0;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 40;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--line);
    background: var(--signal);
    font-family: var(--label);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 5px 5px 0 var(--line);
  }

  .mobile-cta.is-hidden {
    display: none;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .score-overview {
    grid-template-columns: 124px minmax(0, 1fr);
  }

  .score-overview .result-status {
    font-size: 1.85rem;
  }

  .metric-grid div {
    padding: 12px 9px;
  }

  .prompt-receipt {
    margin: 10px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links nav:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
