:root {
  --background: #ffffff;
  --foreground: #0d0d0d;
  --muted: rgba(13, 13, 13, 0.62);
  --faint: rgba(13, 13, 13, 0.42);
  --secondary: #f8faff;
  --border: #e5e9f5;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --green: #22c55e;
  --container: min(1200px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
section, #order { scroll-margin-top: 96px; }
.audit-noscript-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.page-container { width: var(--container); margin: 0 auto; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.top-rule {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--green) 100%);
}
.site-nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  position: relative;
  display: block;
  width: 208px;
  height: 48px;
  flex: 0 0 auto;
}
.brand img, .footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--foreground); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-strong); }
.btn-secondary { background: #fff; color: var(--accent); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: rgba(37, 99, 235, 0.35); }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 112px 0 56px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(37, 99, 235, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px);
  background-size: 40px 40px, 20vw 20vw, 20vw 20vw;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%), linear-gradient(180deg, transparent 44%, #000 100%);
  opacity: 0.72;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, #fff 94%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.hero-grid > .audit-form-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.hero-stats { grid-column: 1; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-title {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(2.8rem, 7.8vw, 7.6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-title span, .section-title span { color: var(--accent); }
.hero-rule { height: 1px; margin: 30px 0; overflow: hidden; background: var(--border); }
.hero-rule span {
  display: block;
  height: 100%;
  width: 64%;
  background: linear-gradient(90deg, var(--accent), var(--green));
}
.hero-copy-box, .audit-form-panel, .status-panel, .section-summary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(37, 99, 235, 0.08), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
  border-radius: 6px;
}
.hero-copy-box { max-width: 620px; padding: 24px 28px; }
.hero-copy-box p, .section-summary p, .simple-card p, .simple-card li, .line-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; }
.audit-form-panel { padding: 24px; }
.order-product-intent {
  display: grid;
  gap: 7px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.order-product-intent span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.order-product-intent h2 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.02;
}
.order-product-intent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.48;
}
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.price-line > div {
  display: grid;
  gap: 4px;
}
.price-line strong { font-size: clamp(2rem, 5vw, 3rem); line-height: 1; letter-spacing: -0.03em; }
.price-line span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.checkout-reassurance {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.order-value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.order-value-list li {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.055);
  padding: 9px 8px;
}
.order-value-list strong {
  color: #15803d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}
.order-value-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.trust-list li {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.05);
  color: var(--accent);
  padding: 9px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.sample-link {
  margin: -4px 0 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}
.sample-link a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.order-sample-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: -2px 0 16px;
}
.order-sample-actions .btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
  white-space: nowrap;
}
.order-sample-actions span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.form-start-cue {
  display: grid;
  gap: 4px;
  margin: -2px 0 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.045);
  padding: 10px 12px;
}
.form-start-cue span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}
.form-start-cue p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
}
.audit-form { display: grid; gap: 14px; }
.field-group { display: grid; gap: 7px; }
.field-group label {
  color: rgba(13, 13, 13, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field-group input, .field-group select, .field-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--foreground);
  padding: 12px 13px;
  outline: none;
}
.field-group textarea { min-height: 92px; resize: vertical; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.optional-details {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.035);
}
.optional-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--accent);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}
.optional-details summary::-webkit-details-marker { display: none; }
.optional-details summary::after {
  content: "+";
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}
.optional-details[open] summary {
  border-bottom: 1px solid var(--border);
}
.optional-details[open] summary::after { content: "-"; }
.optional-details-body {
  display: grid;
  gap: 14px;
  padding: 14px 13px 13px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note, .status-message { margin: 0; color: var(--faint); font-size: 12px; line-height: 1.55; }
.checkout-summary {
  display: grid;
  gap: 5px;
  margin: 0;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.055);
  padding: 10px 12px;
}
.checkout-summary span {
  color: #15803d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}
.checkout-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}
.checkout-step-note {
  margin: -2px 0 0;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.045);
  color: var(--muted);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.form-alert { display: none; margin: 2px 0 0; border-radius: 6px; padding: 10px 12px; font-size: 13px; line-height: 1.45; }
.form-alert.is-visible { display: block; }
.form-alert.error { color: #9f1239; background: rgba(190, 18, 60, 0.08); }
.form-alert.success { color: #166534; background: rgba(34, 197, 94, 0.1); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 620px; margin-top: 28px; }
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.05);
}
.stat strong { color: var(--foreground); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.stat span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}
.divider-line { height: 1px; overflow: hidden; }
.divider-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--green) 60%, transparent 100%);
  opacity: 0.35;
}
.section { position: relative; padding: 92px 0; background: #fff; }
.section-secondary { background: var(--secondary); }
.sample-section { background: #fff; }
.sample-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.sample-score {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(34, 197, 94, 0.05));
  padding: clamp(22px, 4vw, 34px);
}
.sample-score span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sample-score strong {
  color: var(--foreground);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.03em;
}
.sample-score p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.sample-report-preview {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.sample-report-preview:hover {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.13);
  transform: translateY(-2px);
}
.sample-report-preview span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sample-report-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
}
.sample-findings {
  display: grid;
  border-top: 1px solid var(--border);
}
.sample-findings article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.sample-findings span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.sample-findings h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.sample-findings p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.section-bg { position: absolute; inset: 0; z-index: 0; }
.section-bg img { width: 100%; height: 100%; object-fit: cover; }
.section-bg::after { content: ""; position: absolute; inset: 0; background: rgba(248, 250, 255, 0.97); }
.section-inner { position: relative; z-index: 1; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.section-title { margin: 0; font-size: clamp(2.2rem, 5vw, 5rem); font-weight: 900; line-height: 0.94; letter-spacing: -0.03em; text-wrap: balance; }
.section-summary { max-width: 470px; padding: 22px 26px; }
.line-list { border-top: 1px solid var(--border); }
.line-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.line-item span { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; }
.line-item h3 { margin: 0 0 8px; font-size: clamp(1.15rem, 2vw, 1.8rem); line-height: 1.1; letter-spacing: -0.02em; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.simple-card { border: 1px solid var(--border); border-radius: 6px; background: #fff; padding: 22px; }
.simple-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.15; }
.simple-card ul { margin: 0; padding-left: 18px; }
.status-hero { min-height: 72vh; }
.status-panel { max-width: 720px; padding: 30px; }
.status-panel h1 { margin: 0 0 14px; font-size: clamp(2.4rem, 7vw, 5.2rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.03em; }
.footer { border-top: 2px solid var(--accent); background: #fff; }
.footer-band { overflow: hidden; padding: 14px 0; border-bottom: 1px solid var(--border); }
.footer-band-track { display: flex; gap: 42px; white-space: nowrap; animation: marquee 28s linear infinite; }
.footer-band-track span { color: rgba(37, 99, 235, 0.2); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding: 48px 0 60px; }
.footer-logo { width: 224px; height: 48px; margin-bottom: 20px; }
.footer p { margin: 0; color: rgba(13, 13, 13, 0.5); font-size: 14px; line-height: 1.65; }
.footer a { color: rgba(13, 13, 13, 0.55); font-size: 14px; }
.footer a:hover { color: var(--accent); }
.footer h3 { margin: 0 0 16px; color: rgba(13, 13, 13, 0.35); font-size: 11px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; }
.footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid var(--border); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a, .footer-bottom p { color: rgba(13, 13, 13, 0.4); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.sticky-order-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(560px, calc(100vw - 32px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(13, 13, 13, 0.18), inset 0 1px 0 #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(16px);
}
.sticky-order-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.sticky-order-cta div {
  display: grid;
  min-width: 0;
  gap: 3px;
}
.sticky-order-cta strong {
  color: var(--foreground);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}
.sticky-order-cta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (min-width: 860px) {
  .site-nav { height: 80px; }
  .brand { width: 256px; height: 56px; }
  .nav-links { display: flex; }
}
@media (max-width: 940px) {
  .hero-grid, .footer-main, .sample-layout { grid-template-columns: 1fr; }
  .hero-grid > .audit-form-panel, .hero-stats { grid-column: auto; grid-row: auto; }
  .section-head { display: grid; }
  .card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --container: min(100vw - 28px, 1200px); }
  .header-actions .btn-secondary { display: none; }
  .brand { width: 198px; }
  .hero { padding-top: 96px; }
  .hero-copy-box, .audit-form-panel, .status-panel, .section-summary { padding: 18px; }
  .checkout-reassurance {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.45;
  }
  .order-value-list {
    gap: 6px;
    margin-bottom: 10px;
  }
  .order-value-list li {
    gap: 2px;
    padding: 7px 6px;
  }
  .order-value-list strong { font-size: 9px; }
  .order-value-list span {
    font-size: 10px;
    line-height: 1.22;
  }
  .form-start-cue {
    gap: 3px;
    margin-bottom: 10px;
    padding: 8px 10px;
  }
  .form-start-cue p {
    font-size: 11px;
    line-height: 1.34;
  }
  .audit-form { gap: 12px; }
  .field-group input, .field-group select, .field-group textarea { padding: 10px 11px; }
  .price-line { align-items: center; gap: 12px; }
  .price-line strong { font-size: 2.4rem; }
  .form-grid, .stat-grid, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .line-item, .sample-findings article { grid-template-columns: 1fr; gap: 8px; }
  .sticky-order-cta {
    bottom: 12px;
    gap: 12px;
    width: calc(100vw - 24px);
    min-height: 58px;
    padding: 9px 9px 9px 13px;
  }
  .sticky-order-cta .btn {
    min-height: 40px;
    padding: 0 14px;
    white-space: nowrap;
  }
  .sticky-order-cta span { font-size: 11px; }
}
