:root {
  --ink: #16211f;
  --muted: #5a6864;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dfe5df;
  --forest: #17483c;
  --forest-2: #256554;
  --mint: #d8f0df;
  --amber: #f0bd4e;
  --red: #b95043;
  --blue: #375b86;
  --shadow: 0 20px 50px rgba(18, 28, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(22, 33, 31, 0.08);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 40px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--forest);
  border-radius: 6px;
  color: #f8fff5;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
}

nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.94rem;
}

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

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--forest);
  border-radius: 6px;
  color: var(--forest);
  font-weight: 700;
  padding: 8px 12px;
}

.hero {
  min-height: calc(100svh - 104px);
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 15, 0.84) 0%, rgba(7, 18, 15, 0.58) 44%, rgba(7, 18, 15, 0.12) 76%),
    rgba(7, 18, 15, 0.1);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fffaf0;
  max-width: 760px;
  padding: 104px 40px 54px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--forest-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #c8f2d1;
}

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

h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-copy {
  color: #eef7ee;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  max-width: 660px;
}

.hero-actions,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button-primary {
  background: var(--mint);
  border: 1px solid var(--mint);
  color: #10241d;
}

.button-primary:hover {
  background: #ebfff0;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fffaf0;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  max-width: 640px;
}

.hero-stats div {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  padding-left: 16px;
}

.hero-stats dt {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  color: #dce8df;
  margin: 6px 0 0;
}

.signal-band {
  background: var(--forest);
  color: #f8fff5;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-item {
  background: rgba(255, 255, 255, 0.05);
  min-height: 104px;
  padding: 26px 40px;
}

.signal-item strong,
.signal-item span {
  display: block;
}

.signal-item strong {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.signal-item span {
  color: #d2e8dc;
}

.section {
  padding: 96px 40px;
}

.section-split {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
}

.section-copy,
.section-heading,
.scan-panel,
.product-board {
  margin: 0 auto;
  max-width: 1180px;
}

.section-copy {
  margin-left: 0;
}

.section-copy p,
.section-heading p,
.scan-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.step-card,
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.step-number {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.step-card p,
.price-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-section {
  background: #eef3ec;
}

.section-heading {
  margin-bottom: 38px;
}

.product-board {
  background: #f9fbf7;
  border: 1px solid #d5dfd3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-header {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 26px;
}

.board-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.board-header h3 {
  font-size: 1.65rem;
  margin-bottom: 0;
}

.board-score {
  align-items: center;
  background: #fff6df;
  border: 1px solid #ead29e;
  border-radius: 8px;
  color: #6c4a00;
  display: grid;
  min-width: 124px;
  padding: 14px 18px;
  text-align: center;
}

.board-score span {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

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

.risk-tile {
  border-radius: 8px;
  min-height: 96px;
  padding: 18px;
}

.risk-tile span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.risk-tile small,
.board-score small {
  font-size: 0.82rem;
  font-weight: 800;
}

.good {
  background: #d8f0df;
  color: #18452a;
}

.warn {
  background: #fff2cc;
  color: #604609;
}

.danger {
  background: #ffe1dc;
  color: #792d25;
}

.mute {
  background: #e9edf0;
  color: #334047;
}

.table-wrap {
  overflow-x: auto;
  padding: 0 26px 28px;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 15px 12px;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 6px 9px;
  white-space: nowrap;
}

.pricing-section {
  background: var(--paper);
}

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

.price-card.featured {
  border-color: var(--forest);
  box-shadow: 0 14px 36px rgba(23, 72, 60, 0.14);
}

.price {
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.scan-section {
  background: var(--forest);
  color: #f8fff5;
}

.scan-panel {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
}

.scan-panel .eyebrow {
  color: #b7efc4;
}

.scan-panel p {
  color: #d2e8dc;
}

.lead-form {
  background: #ffffff;
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #f7faf6;
  border: 1px solid #cad5ca;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.lead-form .button {
  cursor: pointer;
  font: inherit;
  width: 100%;
}

.form-note {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0;
}

.site-footer {
  align-items: center;
  background: #101916;
  color: #d7e5dc;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px 40px;
}

.site-footer p {
  margin: 0;
  max-width: 820px;
}

.site-footer a {
  color: #f7fff7;
  text-decoration: none;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 16px 20px;
  }

  nav {
    gap: 12px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 2px;
    width: 100%;
  }

  nav a {
    flex: 0 0 auto;
  }

  .brand,
  nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 22px 38px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-stats,
  .signal-band,
  .section-split,
  .risk-grid,
  .price-list,
  .scan-panel {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    padding: 12px 0 0;
  }

  .signal-item,
  .section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .board-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .board-score {
    width: 100%;
  }
}
