:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5d6964;
  --faint: #7f8a85;
  --line: #d9e0dc;
  --soft: #f4f6f2;
  --paper: #ffffff;
  --accent: #176b5d;
  --accent-dark: #103f38;
  --amber: #b87a21;
  --blue: #365a8c;
  --wash: #eef3ef;
  --shadow: 0 22px 58px rgba(23, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 9px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(217, 224, 220, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(23, 107, 93, 0.22);
  border-radius: 6px;
  color: var(--accent-dark);
  background: #e7f0ec;
  font-size: 12px;
  font-weight: 850;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.nav-cta {
  justify-self: end;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
}

.nav-cta:hover {
  border-color: rgba(23, 107, 93, 0.5);
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  padding: 86px 0 72px;
  background:
    linear-gradient(180deg, #fbfcfa 0%, var(--wash) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.hero-copy-block {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  color: #34413c;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border-radius: 6px;
  font-weight: 780;
  line-height: 1.05;
  text-align: center;
}

.button.primary {
  color: white;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.84);
}

.button.secondary:hover {
  border-color: var(--accent);
}

.fineprint,
.note-footer {
  color: var(--faint);
  font-size: 14px;
}

.audit-note {
  padding: 26px;
  border: 1px solid rgba(23, 107, 93, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.note-label {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

blockquote {
  margin-bottom: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  color: #26322e;
  font-size: 21px;
  font-weight: 720;
  line-height: 1.28;
}

.answer-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.answer-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 14px;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.answer-row:first-child {
  border-top: 0;
}

.answer-row span:first-child {
  color: var(--ink);
  font-weight: 760;
}

.answer-row.head {
  color: var(--faint);
  background: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
}

.note-footer {
  margin: 16px 0 0;
}

.section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.section.compact {
  padding: 70px 0;
}

.shaded,
.proof {
  background: var(--soft);
}

.intro-grid,
.proof-grid,
.sample-grid,
.fit-grid,
.boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-heading {
  max-width: 820px;
}

.prompt-list {
  color: var(--muted);
  font-size: 18px;
}

.prompt-list ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  color: var(--ink);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.test-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.metric {
  display: block;
  margin-bottom: 15px;
  color: var(--accent-dark);
  font-size: 30px;
  font-weight: 880;
  line-height: 1;
}

.test-grid p,
.finding-card p,
.proof p,
.deliverables-list p,
.pricing-grid p,
.not-list,
.faq p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-dark);
  font-weight: 780;
}

.finding-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.finding-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.finding-row:first-child {
  border-top: 0;
}

.finding-row span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.finding-row p {
  margin-bottom: 0;
}

.report-preview {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(23, 32, 29, 0.1);
}

.report-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.deliverables-list article {
  padding: 22px;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 16px;
  margin-top: 34px;
}

.pricing-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.pricing-grid .button {
  margin-top: auto;
}

.quiet-plan {
  opacity: 0.92;
}

.featured {
  border-color: rgba(23, 107, 93, 0.55) !important;
  box-shadow: 0 16px 38px rgba(23, 107, 93, 0.13);
}

.plan-label {
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: #e4eee9;
  font-size: 12px;
  font-weight: 820;
}

.price {
  margin-bottom: 14px;
  color: var(--ink) !important;
  font-size: 35px;
  font-weight: 880;
  line-height: 1;
}

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit-columns article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.fit-columns article:first-child {
  border-top: 4px solid var(--accent);
}

.fit-columns article:last-child {
  border-top: 4px solid var(--amber);
}

.boundary {
  background: #17201d;
  color: white;
}

.boundary .eyebrow,
.final-cta .eyebrow {
  color: #a9d5c9;
}

.boundary h2 {
  color: white;
}

.not-list {
  color: #d7dfdc;
  font-size: 18px;
}

.not-list p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 760;
}

details p {
  padding: 0 20px 20px;
}

.final-cta {
  padding: 70px 0;
  color: white;
  background: var(--accent-dark);
}

.final-cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-cta h2 {
  margin-bottom: 0;
  color: white;
}

.final-cta .button.primary {
  color: var(--accent-dark);
  background: white;
}

footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-grid,
  .intro-grid,
  .proof-grid,
  .sample-grid,
  .fit-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .audit-note {
    max-width: 680px;
  }

  .test-grid,
  .deliverables-list,
  .pricing-grid,
  .fit-columns {
    grid-template-columns: 1fr;
  }

  .deliverables-list {
    display: grid;
  }
}

@media (max-width: 620px) {
  .topbar {
    min-height: 64px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 8px 11px;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    padding: 48px 0 54px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .hero-copy,
  .prompt-list,
  .not-list {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .audit-note {
    padding: 20px;
  }

  blockquote {
    font-size: 18px;
  }

  .answer-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .finding-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .section.compact {
    padding: 58px 0;
  }

  .final-cta .section-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
