:root {
  color: #101827;
  background: #f4f6f8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.1), transparent 30%),
    #f4f6f8;
}

.nav,
.hero,
.section,
.footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #101827;
  background: #5eead4;
}

.navLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
}

.hero {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: stretch;
}

.heroCopy,
.panel,
.card,
.answer,
.reportRow {
  background: #ffffff;
  border: 1px solid #dce3ec;
  border-radius: 8px;
}

.heroCopy {
  padding: 36px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p,
.section p,
.card p,
.answer p,
.reportRow p,
.footer {
  color: #64748b;
  line-height: 1.55;
}

.tagline {
  color: #334155 !important;
  font-size: 20px;
  margin: 18px 0 0;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  border-radius: 8px;
  background: #101827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  background: #ffffff;
  color: #101827;
  border: 1px solid #cfd8e3;
}

.panel {
  padding: 20px;
}

.panel h2,
.section h2,
.card h2,
.answer h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.55;
}

.section {
  display: grid;
  gap: 16px;
}

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

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

.card,
.answer,
.reportRow {
  padding: 18px;
}

.eyebrow {
  display: block;
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  font-weight: 900;
}

.reportRow {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
}

.reportRow time {
  color: #0f766e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
}

.footer {
  font-size: 14px;
}

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

  .hero h1 {
    font-size: 36px;
  }

  .heroCopy {
    padding: 24px;
  }
}
