:root {
  --navy: #0d3158;
  --ink: #10263e;
  --blue: #174b7a;
  --green: #218b4d;
  --pale: #eef5f9;
  --line: #d8e3ea;
  --red: #b4232f;
  --white: #fff;
  --shadow: 0 18px 45px rgba(13, 49, 88, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.55 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fff;
}
a {
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  height: 82px;
  padding: 0 max(20px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}
.brand-mark svg {
  width: 100%;
}
.brand strong {
  display: block;
  font-size: 19px;
  line-height: 1.15;
}
.brand small {
  display: block;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-top: 5px;
}
.site-header nav,
.footer-main nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-header nav > a:not(.button),
.footer-main a {
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}
.site-header nav > a:hover,
.footer-main a:hover {
  color: var(--green);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 700;
  color: var(--navy);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 15px 24px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
  box-shadow: 0 8px 18px rgba(33, 139, 77, 0.16);
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.button-primary {
  background: linear-gradient(135deg, #1e8b4a, #2aa759);
  color: #fff;
  font-size: 18px;
}
.button-small {
  padding: 11px 17px;
  background: var(--navy);
  color: #fff !important;
  font-size: 14px;
}
.hero {
  background: radial-gradient(
    circle at 20% 10%,
    #fff 0,
    #f7fbfe 50%,
    #eaf4fa 100%
  );
  overflow: hidden;
}
.hero-copy {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  min-height: 590px;
  gap: 46px;
  padding-block: 55px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 850;
  color: var(--green);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(43px, 5.4vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 12px 0 12px;
  color: var(--navy);
}
.hero h2 {
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero p {
  max-width: 670px;
  font-size: 18px;
}
.hero .button {
  margin-top: 8px;
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 21px;
  font-size: 13px;
  font-weight: 650;
  color: #38516a;
}
.hero-art {
  position: relative;
}
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  filter: drop-shadow(0 25px 30px rgba(13, 49, 88, 0.15));
}
.hero-note {
  position: absolute;
  right: 5%;
  bottom: 7%;
  padding: 17px 21px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 4px solid var(--green);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.18;
  transform: rotate(-2deg);
}
.section {
  padding: 64px 0;
}
.section h2 {
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--navy);
}
.lead {
  font-size: 18px;
  max-width: 850px;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.check-grid article {
  text-align: center;
}
.check-grid article > span {
  width: 52px;
  height: 52px;
  margin: auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
}
.check-grid h3 {
  font-size: 14px;
  margin: 9px 0 4px;
}
.check-grid p {
  font-size: 12px;
  line-height: 1.35;
  color: #516275;
}
.section-blue {
  background: linear-gradient(135deg, #f1f7fb, #e8f2f8);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading > p {
  max-width: 390px;
  margin: 0;
  color: #52677b;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 50px;
}
.steps article {
  position: relative;
  padding: 8px 25px 10px;
  border-right: 1px solid #cddde7;
}
.steps article:last-child {
  border: 0;
}
.steps b {
  position: absolute;
  top: 0;
  left: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #3d74ac;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.steps article > span {
  display: block;
  font-size: 42px;
  color: var(--navy);
  margin: 39px 0 10px;
}
.steps h3 {
  font-size: 17px;
  margin-bottom: 7px;
}
.steps p {
  font-size: 14px;
  color: #52677b;
}
.report-preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 35px;
  box-shadow: var(--shadow);
}
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-list li:before,
.checklist li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 9px;
}
.sample-card {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  border-top: 5px solid var(--navy);
}
.sample-card small {
  font-weight: 850;
  color: var(--blue);
}
.sample-card h3 {
  font-size: 21px;
  margin: 9px 0 16px;
}
.risk {
  background: #fff0f1;
  color: var(--red);
  font-weight: 900;
  padding: 12px;
  border-radius: 7px;
}
.risk span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e31a2b;
  margin-right: 7px;
}
.sample-card dl {
  margin-bottom: 0;
}
.sample-card dl > div {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.sample-card dl > div:last-child {
  border: 0;
}
.sample-card dt {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: #657789;
}
.sample-card dd {
  margin: 3px 0 0;
  font-weight: 650;
}
.three-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 42px;
}
.three-columns h2 {
  font-size: 27px;
}
.callout {
  border-left: 4px solid var(--green);
  background: #edf8f1;
  padding: 15px 18px;
}
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  margin: 8px 0;
}
.warning {
  background: #fff1f1;
  border: 1px solid #f7d8d9;
  border-radius: 12px;
  padding: 27px;
}
.warning h2 {
  color: var(--red);
  font-size: 22px;
}
.section-light {
  background: #f9fbfc;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.faq-grid details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
  list-style: none;
}
.faq-grid summary::-webkit-details-marker {
  display: none;
}
.faq-grid summary:after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 21px;
  line-height: 1;
}
.faq-grid details[open] summary:after {
  content: "−";
}
.faq-grid p {
  margin: 12px 0 0;
  color: #52677b;
  font-size: 14px;
}
.final-cta {
  padding: 48px 0;
  background: linear-gradient(100deg, #eff8f2, #eaf4fa);
}
.final-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.final-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  margin: 7px 0;
  color: var(--navy);
}
.final-cta p {
  margin: 0;
}
.final-cta .wrap > div:last-child {
  text-align: center;
  flex: 0 0 auto;
}
.final-cta small {
  display: block;
  margin-top: 9px;
  color: #506477;
}
footer {
  background: var(--navy);
  color: #fff;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 30px;
}
.footer-main strong {
  font-size: 19px;
}
.footer-main small {
  display: block;
  color: #bcd0df;
}
.legal {
  border-top: 1px solid #315272;
  padding: 19px 0 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  color: #bcd0df;
  font-size: 12px;
}
.legal p {
  margin: 0;
}
.legal p:last-child {
  white-space: nowrap;
}
@media (max-width: 980px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero-copy {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-art {
    max-width: 680px;
    margin: auto;
  }
  .check-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .steps article {
    border: 0;
    border-bottom: 1px solid #cddde7;
  }
  .three-columns {
    grid-template-columns: 1fr 1fr;
  }
  .three-columns .warning {
    grid-column: 1/-1;
  }
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 660px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    height: 72px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
  }
  .brand strong {
    font-size: 16px;
  }
  .brand small {
    font-size: 12px;
    letter-spacing: 0.07em;
  }
  .site-header nav {
    top: 71px;
  }
  .hero-copy {
    padding-block: 38px;
    gap: 25px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero p {
    font-size: 16px;
  }
  .button-primary {
    width: 100%;
  }
  .trust-row {
    display: grid;
    gap: 8px;
  }
  .section {
    padding: 48px 0;
  }
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading {
    display: block;
  }
  .steps,
  .report-preview,
  .three-columns,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .steps article {
    padding-left: 55px;
  }
  .steps b {
    left: 0;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .three-columns .warning {
    grid-column: auto;
  }
  .final-cta .wrap,
  .footer-main {
    display: block;
  }
  .final-cta .wrap > div:last-child {
    margin-top: 25px;
  }
  .footer-main nav {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .legal {
    grid-template-columns: 1fr;
  }
  .hero-art {
    margin-inline: -8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

/* Sample reports extend the existing navy, blue, and green visual language. */
.report-link { display: inline-block; margin-top: 18px; color: var(--blue); font-weight: 750; text-underline-offset: 4px; }
.sample-notice { padding: 18px 22px; border-left: 4px solid var(--blue); background: var(--pale); margin-bottom: 28px; }
.sample-report-list { display: grid; gap: 16px; }
.sample-report { border: 1px solid var(--line); border-radius: 12px; background: white; overflow: hidden; --status-ink: #9d2430; --status-bg: #fff0f1; }
.sample-report.review { --status-ink: #78510d; --status-bg: #fff5d9; }
.sample-report.lower { --status-ink: #17623a; --status-bg: #edf8f1; }
.sample-report > summary { display: flex; align-items: center; gap: 24px; cursor: pointer; list-style: none; padding: 26px; color: var(--navy); }
.sample-report > summary::-webkit-details-marker { display: none; }
.report-number { font-size: .875rem; font-weight: 800; letter-spacing: .06em; white-space: nowrap; }
.report-summary { flex: 1; }
.report-summary strong { display: block; font-size: 1.2rem; line-height: 1.3; }
.report-summary > span { display: block; margin-top: 6px; color: #52677b; }
.report-status { display: inline-block; padding: 7px 12px; border-radius: 6px; background: var(--status-bg); color: var(--status-ink); font-size: .875rem; font-weight: 800; }
.report-toggle { width: 24px; text-align: center; flex-shrink: 0; font-size: 1.6rem; line-height: 1; }
.report-toggle::after { content: '+'; }
.sample-report[open] > summary .report-toggle::after { content: '−'; }
.sample-report[open] > summary { border-bottom: 1px solid var(--line); background: #f8fbfd; }
.report-body { max-width: 960px; margin: auto; padding: 36px; }
.report-heading { display: flex; justify-content: space-between; align-items: start; gap: 24px; margin-bottom: 24px; }
.report-heading h3 { font-size: 1.75rem; color: var(--navy); margin: 6px 0; }
.report-heading p { margin: 0; }
.fiction-label { font-size: .875rem; color: #52677b; }
.report-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: #f1f6fa; padding: 24px; border-radius: 8px; }
.report-facts > div:last-child { grid-column: 1 / -1; }
.report-facts dt { font-weight: 750; color: var(--blue); font-size: .875rem; margin-bottom: 4px; }
.report-facts dd { margin: 0; }
.report-body h4 { margin: 30px 0 12px; font-size: 1.125rem; color: var(--navy); }
.report-finding { padding: 20px 0; border-top: 1px solid var(--line); }
.report-finding h5 { margin: 0 0 8px; font-size: 1rem; color: var(--blue); }
.report-finding p { margin: 8px 0 0; }
.report-next-steps { padding-left: 24px; }
.report-next-steps li { padding-left: 4px; margin-bottom: 10px; }
.report-scope { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .875rem; color: #52677b; }
.sample-report > summary:hover { background: #f1f6fa; }
.sample-report > summary:focus-visible, .report-link:focus-visible { outline: 3px solid #174b7a; outline-offset: -3px; }
@media (min-width: 981px) { .site-header nav { gap: 16px; } }
@media (min-width: 981px) and (max-width: 1160px) { .site-header nav { gap: 12px; } .site-header .brand strong { font-size: 16px; } .site-header .brand-mark { width: 40px; } .site-header .button-small { padding-inline: 12px; } }
@media (max-width: 760px) {
 .sample-report > summary { flex-wrap: wrap; gap: 12px; padding: 22px; }
 .report-number { width: 100%; }
 .report-summary { flex-basis: calc(100% - 40px); }
 .sample-report > summary > .report-status { order: 4; }
 .report-body { padding: 24px 20px; }
 .report-heading { display: block; }
 .report-heading > .report-status { margin-top: 18px; }
 .report-facts { grid-template-columns: 1fr; padding: 20px; }
}
