:root {
  --bg: #f7f8f5;
  --panel: #12182d;
  --paper: #ffffff;
  --soft: #eef4ef;
  --text: #14242c;
  --muted: #66767a;
  --ink: #14242c;
  --green: #25bd86;
  --green-dark: #12845f;
  --line: #dce6df;
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 290px;
}

.brand-mark {
  display: block;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  width: 56px;
}

.brand-wordmark {
  display: block;
  height: 58px;
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  background:
    linear-gradient(120deg, rgba(247, 248, 245, 0.96), rgba(238, 244, 239, 0.92)),
    var(--bg);
  min-height: 88vh;
  padding: 112px clamp(20px, 7vw, 96px) 38px;
  position: relative;
}

.section {
  scroll-margin-top: 96px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 104px);
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.8fr);
  max-width: 1480px;
}

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

.hero-panel {
  display: grid;
  gap: 18px;
}

.brief-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 22px 22px 0 rgba(37, 189, 134, 0.18);
  display: grid;
  gap: 0;
  padding: clamp(20px, 3vw, 34px);
  position: relative;
}

.brief-card::before {
  background: var(--green);
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.brief-card-header {
  align-items: center;
  display: flex;
  gap: 14px;
  padding: 10px 0 24px;
}

.brief-card-header img {
  height: 48px;
  width: 48px;
}

.brief-card-header span,
.brief-stat-grid span,
.brief-callout span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.brief-card-header strong,
.brief-stat-grid strong,
.brief-callout strong {
  color: var(--panel);
  display: block;
}

.brief-card-header strong {
  font-size: 22px;
}

.brief-stat-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brief-stat-grid div {
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.brief-stat-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.brief-stat-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.brief-stat-grid strong {
  font-size: 30px;
}

.brief-table {
  border: 1px solid var(--line);
  border-top: 0;
}

.brief-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 1fr 0.6fr;
}

.brief-row span {
  border-bottom: 1px solid var(--line);
  color: #33444a;
  font-size: 14px;
  padding: 13px 12px;
}

.brief-row.header span {
  background: var(--panel);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-row:last-child span {
  border-bottom: 0;
}

.brief-callout {
  background: var(--soft);
  border: 1px solid var(--line);
  margin-top: 18px;
  padding: 18px;
}

.brief-callout strong {
  font-size: 18px;
  line-height: 1.35;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--panel);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 780px;
}

h2 {
  color: var(--panel);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  color: var(--ink);
  font-size: 24px;
  margin-bottom: 16px;
}

.lede {
  color: #33444a;
  font-size: clamp(20px, 2.6vw, 31px);
  line-height: 1.28;
  max-width: 820px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 0 20px;
}

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

.button.secondary {
  border-color: #b9c9c1;
  color: var(--panel);
}

.data-strip {
  border-top: 1px solid #bed1c8;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: min(13vh, 120px);
  max-width: 980px;
}

.data-strip div {
  padding: 20px 24px 20px 0;
}

.data-strip span,
.price-list span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.data-strip strong,
.price-list strong {
  color: var(--panel);
  display: block;
  font-size: clamp(18px, 2vw, 24px);
}

.section {
  padding: 72px clamp(20px, 7vw, 96px);
}

.intro,
.pricing,
.sample {
  align-items: start;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
}

.intro p:last-child,
.pricing p,
.sample p {
  color: #4d5058;
  font-size: 20px;
  line-height: 1.45;
}

.grid {
  background: var(--soft);
  color: var(--ink);
}

.section-head {
  margin-bottom: 32px;
}

.section-note {
  color: #4d5058;
  font-size: 18px;
  line-height: 1.45;
  margin: 18px 0 0;
  max-width: 720px;
}

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

.grid .section-head {
  grid-column: 1 / -1;
}

article {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 240px;
  padding: 28px;
}

article p {
  color: #4d5058;
  line-height: 1.45;
}

article strong {
  color: var(--green-dark);
}

.pricing-copy {
  max-width: 660px;
}

.included-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
}

.included-list span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
  padding-left: 22px;
  position: relative;
}

.included-list span::before {
  background: var(--green);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 8px;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-tier {
  background: var(--panel);
  border: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(150px, 0.7fr) minmax(220px, 1fr);
  min-height: 0;
  padding: 24px;
}

.price-tier p {
  color: #d8e1dc;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.price-tier strong {
  color: var(--paper);
}

.sample {
  background: var(--paper);
}

.sample-copy {
  max-width: 640px;
}

.form-shell {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: clamp(14px, 2vw, 24px);
}

.tally-frame {
  border: 0;
  display: block;
  min-height: 720px;
  width: 100%;
}

footer {
  background: var(--panel);
  color: #d8e1dc;
  font-size: 13px;
  line-height: 1.5;
  padding: 28px clamp(20px, 7vw, 96px);
}

footer p {
  max-width: 780px;
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 72px;
    position: static;
  }

  nav {
    display: none;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .brief-card {
    box-shadow: 12px 12px 0 rgba(37, 189, 134, 0.18);
  }

  .data-strip,
  .intro,
  .pricing,
  .sample,
  .grid {
    grid-template-columns: 1fr;
  }

  .price-tier {
    grid-template-columns: 1fr;
  }

  .tally-frame {
    min-height: 780px;
  }
}
