:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5b6673;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --line: #d8e0e8;
  --teal: #1f9f91;
  --teal-dark: #12776e;
  --coral: #e95f46;
  --amber: #c98712;
  --navy: #0f2433;
  --shadow: 0 18px 46px rgba(15, 36, 51, 0.14);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0 24px;
  color: #ffffff;
  background: rgba(15, 36, 51, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--navy);
  background: #ffffff;
  border-radius: 50%;
}

.nav {
  gap: 18px;
  font-size: 0.94rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.nav a:hover {
  color: #ffffff;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 4px;
}

.hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: 96px 24px 88px;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(15, 36, 51, 0.92), rgba(15, 36, 51, 0.68), rgba(15, 36, 51, 0.28)),
    url("assets/audit-workbench.svg");
  background-position: center;
  background-size: cover;
}

.hero-copy,
.section,
.split-section,
.request,
.disclaimer,
.proof-strip {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.hero-copy {
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8df2df;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 4.25rem;
  line-height: 1.02;
  max-width: 680px;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.15rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.lede {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.72;
}

.actions,
.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.button-primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(233, 95, 70, 0.28);
}

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

.request .button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #ffffff;
}

.proof-strip {
  transform: translateY(-34px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-strip div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.proof-strip span,
.feature p,
.price p,
.request p,
.disclaimer p,
.report-note {
  color: var(--muted);
  line-height: 1.65;
}

.section,
.split-section,
.request,
.disclaimer {
  scroll-margin-top: 84px;
  padding: 56px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature,
.price,
.report-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(15, 36, 51, 0.08);
}

.feature {
  min-height: 204px;
  padding: 22px;
}

.feature:nth-child(1) {
  border-top: 4px solid var(--coral);
}

.feature:nth-child(2) {
  border-top: 4px solid var(--teal);
}

.feature:nth-child(3) {
  border-top: 4px solid var(--amber);
}

.feature:nth-child(4) {
  border-top: 4px solid #6f7f8d;
}

.feature:nth-child(5) {
  border-top: 4px solid var(--navy);
}

.signal {
  padding-top: 18px;
}

.signal .section-heading p:last-child,
.use-section p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.signal-list a,
.text-link {
  color: var(--teal-dark);
  font-weight: 760;
}

.signal-list a {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 18px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15, 36, 51, 0.07);
}

.signal-list a:hover,
.text-link:hover {
  color: var(--navy);
}

.use-section {
  padding-top: 38px;
}

.code-card {
  overflow: hidden;
  background: #071924;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.code-card pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
}

.code-card code {
  color: #dff9f2;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.7;
}

.code-card .text-link {
  display: block;
  padding: 16px 24px 20px;
  color: #8df2df;
  background: rgba(255, 255, 255, 0.04);
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 38px;
  align-items: center;
}

.report-preview {
  overflow: hidden;
}

.report-bar {
  display: flex;
  gap: 8px;
  padding: 18px;
  background: var(--navy);
}

.report-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.8;
}

.report-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.report-row b {
  display: inline-flex;
  justify-content: center;
  padding: 4px 8px;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.82rem;
}

.critical b {
  background: var(--coral);
}

.medium b {
  background: var(--amber);
}

.low b {
  background: var(--teal);
}

.report-note {
  padding: 20px 22px 24px;
}

.compact {
  padding-top: 72px;
}

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

.price {
  padding: 24px;
}

.price.featured {
  border-color: var(--teal);
  box-shadow: 0 18px 42px rgba(31, 159, 145, 0.16);
}

.amount {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 800;
}

.payment-note {
  margin-top: 20px;
  color: var(--muted);
}

.payment-note a {
  color: var(--teal-dark);
  font-weight: 760;
}

.request {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 52px;
  padding: 38px;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius);
}

.request p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.request-note {
  grid-column: 1 / -1;
  margin-top: -8px;
  font-size: 0.94rem;
}

.request .eyebrow {
  color: #8df2df;
}

.disclaimer {
  padding-top: 0;
  padding-bottom: 72px;
}

.disclaimer h2 {
  font-size: 1.25rem;
}

.disclaimer p {
  max-width: 820px;
}

@media (max-width: 920px) {
  h1 {
    font-size: 3.2rem;
  }

  .feature-grid,
  .signal-list,
  .price-grid,
  .split-section,
  .request {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    min-height: auto;
  }

  .split-section,
  .request {
    grid-template-columns: 1fr;
  }

  .request-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: 70vh;
    padding: 64px 18px 78px;
    background-image:
      linear-gradient(90deg, rgba(15, 36, 51, 0.98), rgba(15, 36, 51, 0.94), rgba(15, 36, 51, 0.9)),
      url("assets/audit-workbench.svg");
    background-position: 58% center;
  }

  .hero-copy,
  .section,
  .split-section,
  .request,
  .disclaimer,
  .proof-strip {
    width: calc(100% - 36px);
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    transform: translateY(-24px);
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .signal-list,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .report-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .request {
    padding: 28px 22px;
  }
}
