:root {
  color-scheme: light;
  --ink: #1f2726;
  --muted: #5d6b67;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --line: #dbe2de;
  --green: #2d7a68;
  --green-dark: #195d4e;
  --amber: #c68435;
  --coral: #c75f4a;
  --blue: #385f89;
  --shadow: 0 20px 50px rgba(31, 39, 38, 0.12);
  --max: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(45, 122, 104, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(45, 122, 104, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--ink);
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  background: rgba(251, 251, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.78)),
    linear-gradient(180deg, rgba(251, 251, 247, 0.5), rgba(251, 251, 247, 0.88));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav .nav-cta {
  color: #ffffff;
  background: var(--green-dark);
}

.hero {
  min-height: calc(100vh - 69px);
  display: grid;
  grid-template-columns: minmax(460px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 32px 64px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label,
.package-kicker {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.05rem;
  line-height: 1.16;
}

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

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.22rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.secondary {
  background: #ffffff;
}

.fine-print {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-proof div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

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

.hero-proof strong {
  margin-bottom: 2px;
  font-size: 0.98rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-system {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(220px, 0.45fr);
  gap: 18px;
  align-items: stretch;
}

.audit-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.audit-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(45, 122, 104, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(56, 95, 137, 0.08), transparent 34%);
}

.board-top {
  display: flex;
  gap: 7px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
  background: #f3f7f3;
}

.board-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.board-title,
.check-row,
.report-note {
  position: relative;
  z-index: 1;
  margin: 18px;
}

.board-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.board-title p,
.report-note p,
.check-row span {
  color: var(--muted);
}

.score {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
}

.check-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.good .dot {
  background: var(--green);
}

.warn .dot {
  background: var(--amber);
}

.report-note {
  padding: 16px;
  border-radius: 8px;
  background: #f7f2ea;
  border: 1px solid #ead9c1;
}

.report-note span {
  color: var(--coral);
  font-weight: 800;
}

.side-panel {
  display: grid;
  grid-template-rows: minmax(112px, auto) minmax(112px, auto) 1fr;
  gap: 18px;
}

.panel-block,
.mini-log {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(31, 39, 38, 0.08);
}

.panel-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.panel-block span,
.mini-log span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.panel-block strong {
  font-size: 1.35rem;
}

.mini-log {
  padding: 18px;
}

.mini-log p {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
}

.wide-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 32px;
}

.band-inner div {
  min-width: 0;
}

.band-inner span,
.band-inner strong {
  display: block;
}

.band-inner span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.band-inner strong {
  font-size: 1.02rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 32px;
}

.split {
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1.32fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.check-grid article,
.package,
.process-grid article {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.check-grid p,
.package p,
.package li,
.process-grid p {
  color: var(--muted);
}

.process {
  border-top: 1px solid var(--line);
}

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

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.packages {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

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

.package.featured {
  border-color: rgba(45, 122, 104, 0.5);
  box-shadow: var(--shadow);
}

.package h3 {
  font-size: 2rem;
}

.package h3 span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.package ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.package li + li {
  margin-top: 8px;
}

.closing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.closing h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .site-header,
  .closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .hero-system,
  .package-grid,
  .process-grid,
  .band-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 620px) {
  .check-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .site-header,
  .hero,
  .section,
  .footer,
  .band-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .audit-board {
    min-width: 0;
  }
}
