:root {
  --ink: #111310;
  --paper: #f4f5ef;
  --white: #fffef9;
  --lime: #c9ff3d;
  --red: #ff4d35;
  --amber: #f2b63d;
  --muted: #646961;
  --line: #cdd0c7;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.wordmark { text-decoration: none; font-weight: 800; }
.wordmark span { color: var(--lime); font-family: var(--mono); }
nav { display: flex; gap: 30px; align-items: center; font-size: 14px; }
nav a { text-decoration: none; }
.nav-cta { border: 1px solid rgba(255,255,255,.5); padding: 9px 14px; }

.hero {
  min-height: 720px;
  height: min(86vh, 860px);
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: url("assets/hero-report.png") center 40% / cover no-repeat; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(10,12,10,.97) 0%, rgba(10,12,10,.76) 48%, rgba(10,12,10,.22) 100%); }
.hero-content { position: absolute; z-index: 2; left: clamp(20px, 8vw, 120px); top: 50%; width: min(680px, calc(100% - 40px)); transform: translateY(-43%); }
.status, .eyebrow { font: 500 12px/1.4 var(--mono); text-transform: uppercase; }
.status { color: #d6d9d2; display: flex; align-items: center; gap: 10px; }
.status span { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(201,255,61,.14); }
h1 { margin: 22px 0 12px; font-size: clamp(64px, 9vw, 132px); line-height: .86; font-weight: 800; letter-spacing: 0; }
.hero-copy { max-width: 600px; margin: 28px 0 34px; font-size: clamp(21px, 2.3vw, 31px); line-height: 1.35; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 48px; padding: 13px 19px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; text-decoration: none; border: 1px solid transparent; }
.button.primary { color: var(--ink); background: var(--lime); }
.button.primary:hover { background: #ddff84; }
.button.secondary { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(10,12,10,.24); }
.trust-line { margin-top: 24px; color: #b9beb5; font: 12px/1.6 var(--mono); }
.trust-line span { color: var(--lime); margin: 0 8px; }
.scroll-cue { position: absolute; z-index: 2; right: clamp(20px, 5vw, 72px); bottom: 30px; font: 12px var(--mono); color: var(--white); text-decoration: none; }
.scroll-cue span { color: var(--lime); margin-left: 10px; }

.proof-band { min-height: 126px; background: var(--lime); display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 clamp(20px, 6vw, 96px); }
.proof-band div { display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(17,19,16,.3); padding: 20px 28px; }
.proof-band div:first-child { border-left: 1px solid rgba(17,19,16,.3); }
.proof-band strong { font: 500 28px var(--mono); }
.proof-band span { margin-top: 5px; font-size: 12px; text-transform: uppercase; }

.findings, .workflow, .audit { padding: 110px clamp(20px, 8vw, 120px); }
.section-heading { max-width: 760px; }
.eyebrow { color: #4f5c2f; margin: 0 0 18px; }
h2 { margin: 0; max-width: 820px; font-size: clamp(38px, 5vw, 68px); line-height: 1.03; letter-spacing: 0; }
.section-heading > p:last-child { max-width: 680px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.finding-list { margin-top: 70px; border-top: 1px solid var(--ink); }
.finding { display: grid; grid-template-columns: 80px minmax(260px, 1.2fr) 1fr; gap: 30px; align-items: center; min-height: 152px; border-bottom: 1px solid var(--line); }
.finding-index { font: 14px var(--mono); color: var(--muted); }
.finding .severity { margin: 0 0 6px; font: 11px var(--mono); text-transform: uppercase; }
.critical .severity { color: #c82918; }
.warning .severity { color: #8a6000; }
.finding h3 { margin: 0 0 10px; font-size: 20px; }
.finding code, .address-row code { font: 12px var(--mono); color: var(--muted); overflow-wrap: anywhere; }
.finding > p { color: var(--muted); line-height: 1.6; }
.text-link { display: inline-block; margin-top: 34px; font-weight: 800; text-underline-offset: 5px; }

.workflow { background: var(--ink); color: var(--white); }
.workflow .eyebrow { color: var(--lime); }
.command-block { max-width: 1020px; margin-top: 64px; border: 1px solid #4a4d47; background: #080908; }
.command-top { height: 48px; padding: 0 18px; display: flex; justify-content: space-between; align-items: center; color: #a8ada4; border-bottom: 1px solid #343732; font: 12px var(--mono); }
.command-top button, .address-row button { color: inherit; background: transparent; border: 0; cursor: pointer; font: 12px var(--mono); text-decoration: underline; text-underline-offset: 4px; }
pre { margin: 0; padding: 26px; overflow-x: auto; }
pre code { color: #d9f99d; font: 14px/1.9 var(--mono); }
.ci-callout { max-width: 1020px; min-height: 66px; margin-top: 12px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid #4a4d47; }
.ci-callout div { min-width: 0; display: flex; align-items: center; gap: 18px; }
.ci-callout span { color: #a8ada4; font: 11px var(--mono); text-transform: uppercase; }
.ci-callout code { color: var(--lime); font: 13px var(--mono); overflow-wrap: anywhere; }
.ci-callout button { flex: 0 0 auto; color: #a8ada4; background: transparent; border: 0; cursor: pointer; font: 12px var(--mono); text-decoration: underline; text-underline-offset: 4px; }
.steps { max-width: 1020px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #4a4d47; margin-top: 68px; }
.steps div { display: flex; gap: 16px; padding: 30px 20px 0 0; }
.steps span { color: var(--lime); font: 13px var(--mono); }
.steps p { margin: 0; color: #babfb6; line-height: 1.6; }
.steps strong { color: var(--white); }

.audit { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(50px, 8vw, 130px); background: var(--white); }
.audit-copy > p:not(.eyebrow) { max-width: 690px; color: var(--muted); line-height: 1.7; font-size: 18px; }
.audit-copy ul { list-style: none; padding: 0; margin: 40px 0 0; border-top: 1px solid var(--line); }
.audit-copy li { padding: 16px 0 16px 25px; border-bottom: 1px solid var(--line); position: relative; }
.audit-copy li::before { content: "+"; position: absolute; left: 0; color: #5d7d00; font: 15px var(--mono); }
.checkout { align-self: start; padding: 34px; border: 1px solid var(--ink); background: var(--paper); }
.price { border-bottom: 1px solid var(--line); margin-bottom: 28px; padding-bottom: 22px; }
.price > span { font: 12px var(--mono); text-transform: uppercase; color: var(--muted); }
.price strong { display: block; margin: 8px 0 0; font-size: 56px; }
.price small { font-size: 18px; }
.price p { margin: 0; color: var(--muted); font: 12px var(--mono); }
.checkout img { display: block; width: 176px; height: 176px; image-rendering: pixelated; border: 8px solid white; }
.address-row { margin-top: 18px; display: flex; gap: 10px; align-items: center; }
.address-row code { flex: 1; color: var(--ink); }
.payment-warning { color: var(--muted); font-size: 12px; line-height: 1.6; }
.tip-note { margin: 14px 0; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.6; }
.tip-note strong { color: var(--ink); }
.button.full { width: 100%; }

footer { min-height: 120px; padding: 28px clamp(20px, 5vw, 72px); display: flex; justify-content: space-between; align-items: center; gap: 24px; background: var(--ink); color: var(--white); font-size: 12px; }
footer p { color: #aeb3aa; }

.checklist-header { position: static; color: var(--ink); border-bottom-color: var(--line); }
.checklist-header .nav-cta { border-color: var(--ink); }
.checklist-intro, .checklist-list, .checklist-cta, .checklist-sources { padding: 82px clamp(20px, 8vw, 120px); }
.checklist-intro { background: var(--ink); color: var(--white); }
.checklist-intro .eyebrow { color: var(--lime); }
.checklist-intro h1 { max-width: 950px; font-size: 72px; line-height: .98; }
.checklist-intro > p:not(.eyebrow) { max-width: 720px; color: #c8ccc3; font-size: 20px; line-height: 1.7; }
.checklist-intro .checklist-note { margin-top: 30px; font: 13px/1.7 var(--mono); color: #aeb3aa; }
.checklist-list { padding-top: 48px; padding-bottom: 90px; }
.checklist-list article { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 30px; padding: 35px 0; border-top: 1px solid var(--line); }
.checklist-list article:last-child { border-bottom: 1px solid var(--line); }
.check-number { color: #648000; font: 16px var(--mono); }
.checklist-list h2, .checklist-sources h2 { font-size: 28px; line-height: 1.2; }
.checklist-list p { max-width: 700px; margin: 12px 0 0; color: var(--muted); line-height: 1.7; }
.checklist-cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; background: var(--lime); }
.checklist-cta h2 { font-size: 42px; }
.checklist-cta p:not(.eyebrow) { max-width: 650px; line-height: 1.7; }
.checklist-cta .button { flex: 0 0 auto; background: var(--ink); color: var(--white); }
.checklist-sources { padding-top: 60px; padding-bottom: 80px; background: var(--white); }
.checklist-sources ul { max-width: 720px; margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.checklist-sources li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.checklist-sources a { font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 760px) {
  .site-header { height: 62px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { height: 780px; min-height: 0; }
  .hero-shade { background: linear-gradient(180deg, rgba(10,12,10,.73), rgba(10,12,10,.96) 72%); }
  .hero-content { top: 48%; transform: translateY(-35%); }
  h1 { font-size: 64px; }
  .hero-copy { font-size: 21px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 330px; }
  .trust-line { max-width: 330px; }
  .scroll-cue { display: none; }
  .proof-band { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
  .proof-band div, .proof-band div:first-child { min-height: 102px; border: 0; border-bottom: 1px solid rgba(17,19,16,.3); padding: 15px; }
  .proof-band div:nth-child(odd) { border-right: 1px solid rgba(17,19,16,.3); }
  .findings, .workflow, .audit { padding: 78px 20px; }
  .finding { grid-template-columns: 40px 1fr; gap: 12px; padding: 25px 0; }
  .finding > p { grid-column: 2; margin: 0; }
  .steps { grid-template-columns: 1fr; }
  .ci-callout div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .steps div { border-bottom: 1px solid #343732; padding-bottom: 20px; }
  .audit { grid-template-columns: 1fr; }
  .checkout { padding: 24px; }
  footer { align-items: flex-start; flex-direction: column; }
  .checklist-intro, .checklist-list, .checklist-cta, .checklist-sources { padding: 62px 20px; }
  .checklist-intro h1 { font-size: 48px; }
  .checklist-list article { grid-template-columns: 48px minmax(0, 1fr); gap: 12px; }
  .checklist-cta { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * { animation: reveal .6s both; }
  .hero-content > *:nth-child(2) { animation-delay: .08s; }
  .hero-content > *:nth-child(3) { animation-delay: .16s; }
  .hero-content > *:nth-child(4) { animation-delay: .24s; }
  @keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
}
