:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5b6578;
  --line: #d9deea;
  --soft: #f3f6fb;
  --brand: #0b6f6a;
  --brand-strong: #07524e;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

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;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.25rem;
}

nav,
footer,
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

nav a,
footer a,
.text-link {
  color: var(--muted);
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--brand);
}

.button:hover {
  background: var(--brand-strong);
}

.button.secondary {
  background: #fff;
  color: var(--brand);
}

.button.small {
  min-height: 36px;
}

.hero,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.98;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-panel,
article,
.pricing {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.hero-panel {
  padding: 20px;
}

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

.metric:last-child {
  border-bottom: 0;
}

.metric strong,
.metric span {
  display: block;
}

.metric span,
article p,
.section p,
.benefits {
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

article {
  padding: 24px;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.benefits {
  margin: 0;
  padding-left: 22px;
}

.benefits li {
  margin-bottom: 10px;
}

.pricing {
  padding: 40px;
}

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

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

footer {
  justify-content: center;
  border-top: 1px solid var(--line);
  padding: 28px 24px;
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .split,
  .grid.three,
  .grid.five,
  .faq {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .hero,
  .section {
    padding: 48px 20px;
  }
}
