:root {
  color-scheme: dark;
  --bg: #05060b;
  --bg-deep: #020308;
  --surface: #0d101b;
  --surface-raised: #121627;
  --ink: #f7f7ff;
  --muted: #9da6c2;
  --muted-bright: #c7cce0;
  --line: rgba(196, 202, 255, .13);
  --line-strong: rgba(196, 202, 255, .23);
  --violet: #8b5cf6;
  --violet-bright: #a989ff;
  --cyan: #28d7ff;
  --pink: #ff4ecd;
  --amber: #ffbd5b;
  --red: #ff657a;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 82% 7%, rgba(139, 92, 246, .13), transparent 30rem), radial-gradient(circle at 8% 34%, rgba(40, 215, 255, .06), transparent 26rem), var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.preview-denied {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.preview-denied-panel {
  text-align: center;
}

.preview-denied-panel button {
  margin-top: 16px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
.button {
  cursor: pointer;
}

::selection {
  color: white;
  background: rgba(139, 92, 246, .78);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 4vw, 72px);
  min-height: 74px;
  padding: 0 clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 11, .8);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(40, 215, 255, .45), rgba(139, 92, 246, .65), rgba(255, 78, 205, .4), transparent 95%);
  content: "";
  opacity: .45;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: white;
  font-size: 2rem;
  font-weight: 840;
  letter-spacing: -.035em;
  text-decoration: none;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(17px, 2vw, 32px);
  min-height: 52px;
  margin-left: auto;
}

.site-header nav a,
.site-footer a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 680;
  text-decoration: none;
  transition: color .18s ease;
}

.site-header nav a.button,
.site-footer a.button {
  color: #fff;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: white;
}

.site-header nav a.nav-cta,
.mobile-nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(40, 215, 255, .35);
  border-radius: 999px;
  color: #05060b;
  background: linear-gradient(100deg, var(--cyan), var(--violet-bright));
  box-shadow: 0 10px 30px rgba(40, 215, 255, .13);
}

.site-header nav a.nav-cta:hover,
.mobile-nav a.nav-cta:hover {
  color: #05060b;
  filter: brightness(1.08);
}

main {
  overflow: hidden;
}

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

h1 {
  margin-bottom: 25px;
  font-size: clamp(3.15rem, 5.8vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.065em;
}

h2 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.3vw, 4.55rem);
  line-height: .99;
  letter-spacing: -.055em;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
  letter-spacing: -.025em;
  line-height: 1.3em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.hero {
  position: relative;
  padding: clamp(68px, 8vw, 116px) clamp(22px, 6vw, 96px) clamp(76px, 8vw, 116px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 40%;
  width: 58vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .16), transparent 68%);
  content: "";
  filter: blur(14px);
}

.hero::after {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 96%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(390px, .95fr);
  align-items: center;
  max-width: 1500px;
  margin: auto;
}

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

.hero h1 {
  max-width: 880px;
}

section#scan h1 {
  padding-top: 35px;
}

.hero h1 span {
  color: transparent;
  padding-bottom: 10px;
  padding-right: 10px;
  background: linear-gradient(92deg, var(--violet-bright), var(--cyan) 54%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted-bright);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
}

.scan-form {
  position: relative;
  max-width: 730px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 21px;
  background: rgba(13, 16, 27, .9);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
}

.scan-form>label {
  position: absolute;
  padding: 7px 10px 10px;
  color: var(--muted-bright);
  font-size: .7rem;
  font-weight: 790;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}

.url-entry {
  display: flex;
  gap: 9px;
}

.url-entry input {
  min-width: 0;
  flex: 1;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: white;
  background: rgba(3, 4, 10, .76);
  font-size: 1.06rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.url-entry input::placeholder,
.purchase-fields input::placeholder {
  color: #69718c;
}

.url-entry input:focus,
.purchase-fields input:focus {
  border-color: rgba(40, 215, 255, .58);
  box-shadow: 0 0 0 4px rgba(40, 215, 255, .08);
}

.url-entry button,
.checkout-form button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 23px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: linear-gradient(110deg, #7047ee, var(--violet) 42%, #a949e8);
  box-shadow: 0 12px 34px rgba(115, 69, 238, .25), inset 0 1px 0 rgba(255, 255, 255, .28);
  font-weight: 820;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.url-entry button span,
.checkout-form button span {
  color: var(--cyan);
  font-size: 1.2em;
}

.url-entry button:hover,
.checkout-form button:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 42px rgba(115, 69, 238, .36), inset 0 1px 0 rgba(255, 255, 255, .3);
  filter: saturate(115%);
}

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

button:disabled {
  cursor: not-allowed;
  filter: grayscale(.4);
  opacity: .48;
}

.form-note {
  margin: 12px 10px 4px;
  color: var(--muted);
  font-size: .78rem;
}

.form-note span {
  margin: 0 5px;
  color: var(--violet-bright);
}

.scan-progress {
  max-width: 730px;
  margin-top: 16px;
  padding: 15px 18px;
  border: 1px solid rgba(40, 215, 255, .22);
  border-radius: 13px;
  color: #a5efff;
  background: rgba(40, 215, 255, .08);
  font-weight: 730;
}

.scan-progress.error {
  border-color: rgba(255, 101, 122, .3);
  color: #ff9dad;
  background: rgba(255, 101, 122, .09);
}

.report-showcase {
  position: relative;
  width: 100%;
  margin: 0 0 0 auto;
}

.report-showcase::before {
  position: absolute;
  z-index: -1;
  inset: 12% -6% -5% 14%;
  border-radius: 45%;
  background: rgba(139, 92, 246, .3);
  content: "";
  filter: blur(62px);
  opacity: .44;
}

.report-showcase figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 17px;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  color: var(--muted);
  background: rgba(13, 16, 27, .96);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.report-showcase figcaption span {
  color: var(--cyan);
}

.report-showcase figcaption strong {
  color: var(--muted-bright);
  font-weight: 700;
}

.report-window {
  position: relative;
  height: clamp(430px, 43vw, 600px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0 0 20px 20px;
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}

.report-window::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 25%;
  background: linear-gradient(transparent, rgba(2, 3, 8, .95));
  content: "";
  pointer-events: none;
}

.report-window img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(22px, 6vw, 40px);
  color: var(--muted-bright);
  font-size: .75rem;
  font-weight: 720;
}

.trust-strip span {
  padding: 20px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.trust-strip span+span {
  border-left: 1px solid var(--line);
}

.trust-strip b {
  margin-right: 9px;
  color: var(--violet-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.2rem;
}

.section {
  position: relative;
  padding: clamp(84px, 9vw, 142px) clamp(22px, 7vw, 112px);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.0fr);
  gap: clamp(40px, 8vw, 50px);
  max-width: 1500px;
  margin: auto;
}

.method-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.method-intro p,
.pricing-intro p,
.preview-section>p,
.legal>p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.03rem;
}

.criteria-list {
  border-top: 1px solid var(--line-strong);
}

.criteria-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(165px, .48fr);
  gap: 22px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .18s ease, border-color .18s ease;
}

.criteria-list article:hover {
  padding-right: 12px;
  padding-left: 12px;
  border-color: rgba(139, 92, 246, .48);
}

.criteria-list article>div {
  max-width: 350px;
}

.criterion-index {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 2rem;
}

.criteria-list article:nth-child(2) .criterion-index {
  color: var(--violet-bright);
}

.criteria-list article:nth-child(3) .criterion-index {
  color: var(--pink);
}

.criteria-list article:nth-child(4) .criterion-index {
  color: var(--amber);
}

.criteria-list h3 {
  margin-bottom: 6px;
}

.criteria-list p {
  margin: 0;
  color: var(--muted-bright);
  font-size: .9rem;
}

.criteria-list small {
  padding-top: 4px;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.6;
}

.preview-section {
  max-width: calc(100% - clamp(44px, 10vw, 156px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: radial-gradient(circle at 80% 10%, rgba(255, 78, 205, .14), transparent 36%), radial-gradient(circle at 12% 85%, rgba(40, 215, 255, .12), transparent 32%), linear-gradient(135deg, #101426, #080a12 68%);
  box-shadow: var(--shadow);
}

.preview-section>p {
  max-width: 760px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-strong);
}

.metric-row div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 29px 24px 0 0;
}

.metric-row div+div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.metric-row strong {
  color: transparent;
  background: linear-gradient(90deg, white, var(--violet-bright), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2.5rem, 4.2vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.metric-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .78rem;
}

.pricing-section {
  max-width: 1600px;
  margin: auto;
  scroll-margin-top: 86px;
}

.pricing-intro {
  max-width: 850px;
  margin-bottom: 48px;
}

.notice {
  max-width: 680px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 189, 91, .26);
  border-left: 3px solid var(--amber);
  border-radius: 9px;
  color: #ffdca6;
  background: rgba(255, 189, 91, .07);
}

.purchase-layout {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.pricing-grid legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.tier-option {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 22px;
  cursor: pointer;
  background: linear-gradient(155deg, rgba(18, 22, 39, .94), rgba(8, 10, 17, .97));
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tier-option:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.tier-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.tier-check {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.tier-option input:checked+.tier-check {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: inset 0 0 0 4px #111528, 0 0 18px rgba(40, 215, 255, .28);
}

.tier-option:has(input:checked) {
  border-color: rgba(139, 92, 246, 1);
  box-shadow: 0 22px 70px rgba(94, 50, 203, .18), 0 0 50px rgba(139, 92, 246, .4);
  transform: translateY(-7px);
}

.tier-option:has(input:focus-visible) {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.tier-limit {
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tier-name {
  font-size: 1.55rem;
  letter-spacing: -.03em;
}

.tier-description {
  margin: 8px 0 24px;
  color: var(--muted);
  font-size: .87rem;
}

.tier-price {
  margin-top: auto;
  color: white;
  font-size: 2.8rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: -.06em;
}

.tier-price small {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 0;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.8fr);
  gap: 38px;
  align-items: end;
  margin-top: 22px;
  padding: 25px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(13, 16, 27, .82);
}

.purchase-panel>div:first-child span {
  display: block;
  margin-bottom: 8px;
  color: var(--violet-bright);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.purchase-panel>div:first-child strong {
  color: var(--muted-bright);
  font-size: .9rem;
}

.purchase-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 13px;
  align-items: end;
}

.purchase-fields label {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 790;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  font-size: 0;
}

.purchase-fields input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  color: white;
  background: rgba(3, 4, 9, .65);
  font-size: 1.1rem;
  text-transform: none;
  height: 64px;
}

.purchase-fields button {
  min-height: 48px;
  white-space: nowrap;
}

.fine-print {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

body.checkout-open {
  overflow: hidden;
}

.checkout-dialog {
  width: min(800px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.checkout-dialog::backdrop {
  background: rgba(2, 3, 8, .86);
  backdrop-filter: blur(9px);
}

.checkout-dialog-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 16, 27, .96);
}

.checkout-dialog-header .eyebrow {
  margin-bottom: 5px;
}

.checkout-dialog-header h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  letter-spacing: -.04em;
}

.checkout-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--muted-bright);
  background: transparent;
  font-size: 1.65rem;
}

.checkout-close:hover {
  border-color: var(--violet);
  color: white;
}

.checkout-loading,
.checkout-error {
  margin: 28px;
  padding: 16px 18px;
  border-radius: 10px;
  font-weight: 700;
}

.checkout-loading {
  border: 1px solid rgba(40, 215, 255, .24);
  color: #bceef7;
  background: rgba(40, 215, 241, .07);
}

.checkout-error {
  border: 1px solid rgba(255, 101, 122, .26);
  color: #ffacb8;
  background: rgba(255, 101, 122, .08);
}

#stripe-checkout {
  min-height: 0;
  padding: 0 12px 20px;
}

.faq {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(55px, 9vw, 140px);
  max-width: 1500px;
  margin: auto;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  color: var(--muted-bright);
  font-weight: 730;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 2px;
  color: var(--violet-bright);
  content: "+";
  font-size: 1.05rem;
}

.faq-list details[open] summary::after {
  color: var(--cyan);
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 42px 23px 0;
  color: var(--muted);
}

.status-page {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 84px 22px;
  text-align: center;
}

.status-page h1 {
  max-width: 850px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
}

.status-page p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
}

.spinner {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  border: 3px solid var(--line);
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.report-hero {
  display: flex;
  justify-content: space-between;
  gap: 54px;
  padding: clamp(74px, 9vw, 126px) clamp(22px, 8vw, 130px) 70px;
  border-bottom: 1px solid var(--line);
}

.report-hero h1 {
  max-width: 870px;
  overflow-wrap: anywhere;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
}

.report-hero p,
.report-notes p {
  color: var(--muted);
}

.score {
  --score-color: var(--amber);
  flex: 0 0 174px;
  position: relative;
  display: grid;
  place-items: center;
  width: 174px;
  height: 174px;
  padding: 20px;
  border: 0;
  border-radius: 50%;
  text-align: center;
  background: var(--surface);
  box-shadow: 0 22px 65px rgba(0, 0, 0, .38), 0 0 32px rgba(255, 189, 91, .75);
}

.score-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring-track,
.score-ring-value {
  fill: none;
  stroke-width: 8;
}

.score-ring-track {
  stroke: rgba(196, 202, 255, .12);
}

.score-ring-value {
  stroke: var(--score-color);
  stroke-linecap: round;
}

.score-content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.score-good {
  --score-color: #35d07f;
  box-shadow: 0 22px 65px rgba(0, 0, 0, .38), 0 0 32px rgba(53, 208, 127, .75);
}

.score-needs-improvement {
  --score-color: var(--amber);
}

.score-poor {
  --score-color: var(--red);
  box-shadow: 0 22px 65px rgba(0, 0, 0, .38), 0 0 32px rgba(255, 101, 122, .75);
}

.score strong {
  color: var(--score-color);
  font-size: 3.5rem;
  line-height: 1;
}

.score span {
  margin-top: 6px;
  color: var(--score-color);
  font-size: .62rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.score small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .62rem;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 46px clamp(22px, 8vw, 130px) 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.report-summary div {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}

.report-summary div+div {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.report-summary strong {
  font-size: 2rem;
}

.report-summary span {
  color: var(--muted);
  font-size: .76rem;
}

.report-findings {
  max-width: 1150px;
  margin: auto;
}

.issue-card {
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 17px;
  background: linear-gradient(150deg, rgba(18, 22, 39, .94), rgba(8, 10, 17, .97));
}

.issue-card.severity-critical {
  border-left-color: var(--red);
}

.issue-card.severity-high {
  border-left-color: #eb915a;
}

.issue-card.severity-low,
.issue-card.severity-info {
  border-left-color: var(--cyan);
}

.issue-meta {
  display: flex;
  gap: 9px;
  margin-bottom: 14px;
}

.issue-meta span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--violet-bright);
  font-size: .66rem;
  font-weight: 780;
}

.issue-card>p,
.issue-card dd,
.issue-card small {
  color: var(--muted);
}

.issue-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.issue-card dl div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-deep);
}

.issue-card dt {
  margin-bottom: 5px;
  color: var(--muted-bright);
  font-weight: 780;
}

.issue-card dd {
  margin: 0;
}

.issue-card small {
  display: block;
  margin-top: 16px;
  overflow-wrap: anywhere;
}

.locked {
  margin-top: 32px;
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-raised);
  text-align: center;
}

.locked strong {
  font-size: 1.45rem;
}

.locked .button {
  margin-top: 10px;
}

.report-notes {
  padding-top: 0;
}

.report-notes p {
  max-width: 800px;
}

.mobile-nav {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-bright);
  font-size: .9rem;
  font-weight: 760;
  text-decoration: none;
  transition: color .18s ease, gap .18s ease;
}

.text-link:hover {
  gap: 13px;
  color: white;
}

.text-link span {
  color: var(--cyan);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  max-width: 1600px;
  min-height: 650px;
  margin: auto;
  padding: clamp(86px, 10vw, 152px) clamp(22px, 7vw, 112px);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  top: -18%;
  right: -8%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .14), transparent 68%);
  content: "";
}

.pricing-hero {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .75fr);
  gap: 20px;
}

.contact-hero {
  gap: clamp(30px, 6vw, 40px);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.35rem, 6vw, 6.7rem);
}

.page-hero>div>p {
  max-width: 770px;
  margin-bottom: 34px;
  color: var(--muted-bright);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.hero-proof {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 22, 39, .92), rgba(8, 10, 17, .96));
  box-shadow: var(--shadow);
}

.hero-proof::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet-bright), var(--pink));
  content: "";
}

.hero-proof span,
.feature-grid article>span,
.full-report-preview figcaption span,
.purchase-panel>div>span {
  display: block;
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  color: white;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.contact-hero .hero-proof strong {
  font-size: clamp(1.1rem, 1.5vw, 2.15rem);
}

.hero-proof p {
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.section-heading {
  max-width: 950px;
  margin-bottom: 52px;
}

.section-heading>p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.03rem;
}

.value-section,
.deliverables,
.process-section,
.sample-report-section {
  max-width: 1500px;
  margin: auto;
}

.feature-grid,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.feature-grid article,
.deliverable-grid article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 16, 27, .44);
}

.feature-grid article>span {
  color: var(--violet-bright);
}

.feature-grid h3,
.deliverable-grid h3 {
  max-width: 500px;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.feature-grid p,
.deliverable-grid p {
  max-width: 465px;
  margin: 0;
  color: var(--muted);
}

.deliverable-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliverable-grid article {
  min-height: 285px;
}

.deliverable-grid article>strong {
  display: block;
  margin-bottom: 42px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8rem;
}

.deliverable-grid article:nth-child(3n+2)>strong {
  color: var(--violet-bright);
}

.deliverable-grid article:nth-child(3n)>strong {
  color: var(--pink);
}

.offer-section,
.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
  max-width: calc(100% - clamp(44px, 10vw, 156px));
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.offer-section>div:first-child,
.conversion-panel>div:first-child {
  max-width: 860px;
}

.offer-section p,
.conversion-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.home-pricing-section {
  max-width: 1500px;
  margin: auto;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.home-pricing-grid>a {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: clamp(25px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: rgba(13, 16, 27, .44);
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.home-pricing-grid>a:hover {
  background: rgba(18, 22, 39, .84);
  transform: translateY(-4px);
}

.home-pricing-grid span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-pricing-grid strong {
  margin: 29px 0 18px;
  color: white;
  font-size: clamp(2.7rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.home-pricing-grid p {
  color: var(--muted);
  font-size: .88rem;
}

.home-pricing-grid small {
  margin-top: auto;
  color: var(--muted-bright);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-pricing-close {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
}

.home-pricing-close strong {
  color: var(--muted-bright);
  font-size: .87rem;
}

.process-list {
  border-top: 1px solid var(--line-strong);
}

.process-list article {
  display: grid;
  grid-template-columns: minmax(70px, .18fr) minmax(0, 1fr);
  gap: 30px;
  padding: 37px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article>strong {
  color: transparent;
  background: linear-gradient(90deg, var(--violet-bright), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
}

.process-list p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.full-report-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.full-report-preview figcaption {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.full-report-preview figcaption span {
  margin-bottom: 4px;
}

.full-report-preview figcaption strong {
  font-size: 1.05rem;
}

.sample-report {
  width: min(100%, 1080px);
  margin: 44px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-deep);
}

.sample-report-compact {
  width: 138%;
  min-width: 700px;
  margin: 0;
  transform: scale(.72);
  transform-origin: top left;
}

.sample-report-hero {
  display: flex;
  gap: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 44px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 88% 10%, rgba(139, 92, 246, .15), transparent 34%), var(--surface);
}

.sample-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border: 1px solid rgba(40, 215, 255, .24);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(40, 215, 255, .06);
  font-size: .65rem;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.sample-report-title {
  display: block;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  font-size: clamp(1.7rem, 3.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.sample-report-hero p {
  margin: 0;
  color: var(--muted);
}

.sample-report-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 44px;
  border-bottom: 1px solid var(--line-strong);
}

.sample-report-summary div {
  display: flex;
  flex-direction: column;
  padding: 25px 0;
}

.sample-report-summary div+div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.sample-report-summary strong {
  font-size: 1.8rem;
}

.sample-report-summary span {
  color: var(--muted);
  font-size: .72rem;
}

.sample-findings {
  padding: 40px 44px 52px;
}

.sample-findings-heading {
  display: flex;
  gap: 20px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sample-findings-heading span {
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
}

.sample-findings-heading strong {
  color: var(--muted);
  font-size: .75rem;
}

.sample-issue-title {
  display: block;
  margin-bottom: 9px;
  color: white;
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.sample-report-compact .sample-report-hero {
  padding: 34px;
}

.sample-report-compact .sample-report-summary {
  margin-inline: 34px;
}

.sample-report-compact .sample-findings {
  padding: 32px 34px 44px;
}

.sample-report-compact .sample-findings .issue-card:nth-of-type(n+3) {
  display: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  gap: clamp(54px, 8vw, 110px);
  max-width: 1500px;
  margin: auto;
}

.contact-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.contact-intro p {
  max-width: 520px;
  color: var(--muted);
}

.contact-guidance {
  margin-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.contact-guidance p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
}

.contact-guidance strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-bright);
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(18, 22, 39, .9), rgba(8, 10, 17, .96));
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--muted-bright);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: none;
  color: white;
  background: var(--bg-deep);
  font: inherit;
  font-size: .96rem;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(40, 215, 255, .09);
}

.contact-wide {
  grid-column: 1 / -1;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-submit {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

.contact-submit p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.legal {
  max-width: 930px;
  min-height: 66vh;
  margin: auto;
  padding: clamp(74px, 9vw, 126px) 22px;
}

.legal h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.legal h2 {
  margin-top: 47px;
  color: var(--muted-bright);
  font-size: 1.5rem;
  letter-spacing: -.02em;
}

.legal p {
  max-width: 800px;
  color: var(--muted);
}

.legal a {
  color: var(--cyan);
}

.site-footer {
  padding: 76px clamp(22px, 5vw, 76px) 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(140px, .55fr));
  gap: clamp(40px, 7vw, 110px);
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 62px;
}

.footer-brand .brand {
  color: white;
  font-size: 1.75rem;
}

.footer-brand p {
  max-width: 430px;
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: .95rem;
}

.footer-cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--muted-bright) !important;
  font-weight: 780 !important;
}

.footer-cta span {
  color: var(--cyan);
  transition: transform .18s ease;
}

.footer-cta:hover span {
  transform: translateX(4px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: white;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: .88rem;
}

.footer-bottom {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: .74rem;
}

.footer-cookie-button {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: .88rem;
  font-weight: 680;
  line-height: inherit;
}

.footer-cookie-button:hover {
  color: white;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(13, 16, 27, .98);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
}

.cookie-banner-copy {
  padding-right: 30px;
}

.cookie-banner[hidden],
.cookie-gpc-notice[hidden] {
  display: none;
}

.cookie-banner-copy strong {
  color: white;
  font-size: 1rem;
}

.cookie-banner-copy p,
.cookie-settings-dialog>form>p,
.cookie-current-state {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.cookie-banner a,
.cookie-settings-dialog a {
  color: var(--cyan);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.cookie-actions button,
.cookie-settings-actions button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: white;
  background: var(--surface-raised);
  font-size: .78rem;
  font-weight: 760;
}

.cookie-actions button:hover,
.cookie-settings-actions button:hover {
  border-color: rgba(40, 215, 255, .5);
}

.cookie-actions .cookie-secondary {
  color: var(--muted-bright);
  background: transparent;
}

.cookie-settings-dialog {
  width: min(600px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cookie-settings-dialog::backdrop {
  background: rgba(2, 3, 8, .78);
  backdrop-filter: blur(8px);
}

.cookie-settings-dialog form {
  padding: 26px;
}

.cookie-settings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-settings-header span {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cookie-settings-header h2 {
  margin: 3px 0 0;
  font-size: 1.8rem;
}

.cookie-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted-bright);
  background: transparent;
  font-size: 1.35rem;
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cookie-setting-row strong,
.cookie-setting-row small {
  display: block;
}

.cookie-setting-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
}

.cookie-setting-row input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--cyan);
}

.cookie-gpc-notice {
  color: var(--muted-bright) !important;
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.legal-technology-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 22px;
  background: var(--line);
}

.legal-technology-list article {
  padding: 24px;
  background: var(--surface);
}

.legal-technology-list h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.legal-technology-list p {
  margin: 8px 0 0;
  font-size: .86rem;
}

.legal-technology-list code {
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
  }

  .cookie-actions button {
    flex: 1 1 calc(50% - 5px);
  }

  .cookie-actions .cookie-secondary {
    order: 3;
    flex-basis: 100%;
  }

  .cookie-settings-dialog form {
    padding: 20px;
  }

  .legal-technology-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr);
    gap: 48px;
  }

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

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

  .tier-option:has(input:checked) {
    transform: none;
  }

  .purchase-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
    gap: 48px;
  }

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

  .footer-main {
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(120px, .55fr));
    gap: 38px;
  }

  .deliverable-grid article:nth-child(3n+2)>strong,
  .deliverable-grid article:nth-child(3n)>strong {
    color: var(--cyan);
  }

  .deliverable-grid article:nth-child(even)>strong {
    color: var(--violet-bright);
  }
}

@media (max-width: 1040px) {
  .site-header nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    padding: 8px 0;
    color: var(--muted-bright);
    cursor: pointer;
    font-size: .82rem;
    font-weight: 760;
    list-style: none;
  }

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

  .mobile-nav summary::after {
    margin-left: 8px;
    color: var(--cyan);
    content: "+";
  }

  .mobile-nav[open] summary::after {
    content: "−";
  }

  .mobile-nav>div {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(78vw, 280px);
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(13, 16, 27, .98);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 12px 14px;
    color: var(--muted-bright);
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
  }
}

@media (max-width: 920px) {

  .hero-shell,
  .method-section,
  .faq,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .page-hero {
    min-height: auto;
  }

  .hero-proof {
    max-width: 720px;
  }

  .hero-content {
    max-width: 840px;
  }

  .report-showcase {
    width: min(100%, 720px);
    margin: 10px 0 0;
  }

  .report-window {
    height: 520px;
  }

  .method-intro {
    position: static;
  }

  .purchase-fields {
    grid-template-columns: 1fr 1fr;
  }

  .purchase-fields button {
    grid-column: 1 / -1;
  }

  .trust-strip,
  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip span:nth-child(3),
  .metric-row div:nth-child(3) {
    border-left: 0;
  }

  .metric-row div:nth-child(n+3) {
    margin-top: 22px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .offer-section,
  .conversion-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.45rem);
  }

  .hero {
    padding-top: 58px;
  }

  .page-hero {
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .page-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .url-entry {
    flex-direction: column;
  }

  .url-entry input,
  .url-entry button {
    width: 100%;
  }

  .form-note {
    line-height: 1.8;
  }

  .report-showcase figcaption {
    flex-direction: column;
    gap: 3px;
  }

  .report-window {
    height: 390px;
  }

  .trust-strip {
    padding-inline: 12px;
  }

  .trust-strip span {
    padding: 17px 10px;
  }

  .criteria-list article {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
  }

  .criteria-list small {
    grid-column: 2;
    padding-top: 0;
  }

  .preview-section {
    max-width: calc(100% - 24px);
    border-radius: 22px;
  }

  .offer-section,
  .conversion-panel {
    max-width: calc(100% - 24px);
  }

  .feature-grid,
  .deliverable-grid,
  .home-pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-pricing-grid>a {
    min-height: 0;
  }

  .home-pricing-close {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid article,
  .deliverable-grid article {
    min-height: 0;
  }

  .process-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .full-report-preview figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-report {
    margin: 22px 12px;
    width: calc(100% - 24px);
  }

  .sample-report-compact {
    width: 155%;
    min-width: 650px;
    margin: 0;
    transform: scale(.64);
  }

  .sample-report-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-report-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .sample-report-summary div:nth-child(3) {
    border-left: 0;
  }

  .sample-report-summary div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .sample-findings-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-wide {
    grid-column: 1;
  }

  .contact-submit {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .tier-option {
    min-height: 225px;
  }

  .purchase-fields {
    grid-template-columns: 1fr;
  }

  .purchase-fields button {
    grid-column: 1;
  }

  .report-hero {
    flex-direction: column;
  }

  .score {
    width: 152px;
    height: 152px;
    flex-basis: 152px;
  }

  .report-summary {
    grid-template-columns: 1fr 1fr;
  }

  .report-summary div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .report-summary div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .checkout-dialog {
    width: 100vw;
    max-width: none;
    max-height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .checkout-dialog-header {
    padding: 20px 18px 16px;
  }

  .checkout-loading,
  .checkout-error {
    margin: 22px 18px;
  }

  #stripe-checkout {
    padding-inline: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}