:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6b7a;
  --line: #d7dee8;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --blue: #2458d3;
  --green: #167a4a;
  --amber: #a15c00;
  --red: #b42318;
  --navy: #101828;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: var(--blue);
}

code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-text {
  max-width: 30ch;
  overflow-wrap: anywhere;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 48px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.94), rgba(16, 24, 40, 0.62)),
    url("sample-report.svg") center right / min(860px, 72vw) auto no-repeat,
    #101828;
}

.hero-inner {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #98c1ff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: #e4e9f2;
  font-size: clamp(18px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--blue);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.section {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 48px);
}

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

.content {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  border-left: 4px solid var(--blue);
  padding: 8px 12px;
  background: #ffffff;
}

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

.trust-strip div {
  border-top: 3px solid var(--green);
  padding-top: 12px;
  color: var(--muted);
}

.sample {
  width: min(920px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.14);
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
}

.policy {
  max-width: 850px;
  margin: 0 auto;
}

.policy h1 {
  color: var(--navy);
  font-size: clamp(36px, 6vw, 64px);
}

.policy h2 {
  margin-top: 34px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 4vw, 48px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-lockup {
  width: min(320px, 100%);
  height: auto;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand,
  .nav {
    width: 100%;
  }

  .nav {
    justify-content: flex-start;
    row-gap: 8px;
  }

  .hero {
    min-height: 78vh;
    background:
      linear-gradient(180deg, rgba(16, 24, 40, 0.96), rgba(16, 24, 40, 0.72)),
      url("sample-report.svg") bottom center / 760px auto no-repeat,
      #101828;
  }

  .grid,
  .status-list,
  .trust-strip {
    grid-template-columns: 1fr;
  }
}
