:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5b6673;
  --line: #dce2ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --green: #2d7a5d;
  --blue: #315b9f;
  --amber: #ba7a22;
  --shadow: 0 24px 80px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(220, 226, 234, 0.82);
  background: rgba(246, 248, 251, 0.94);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 32px;
  height: 32px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  min-height: calc(90vh - 69px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 54px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 46px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(50px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  color: white;
  background: var(--green);
}

.secondary {
  border: 1px solid var(--line);
  background: white;
}

.hero-image {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 32px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.section p,
.tool-card p,
.approach span,
.contact p,
.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.62;
}

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

.tool-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
}

.tool-card .status {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.tool-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.tool-card.muted {
  background: #fbfcfe;
}

.approach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  border-top: 1px solid var(--line);
}

.approach ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.approach li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.approach strong {
  font-size: 16px;
}

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

.contact p {
  max-width: 660px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 32px 28px;
}

.page-hero h1,
.page-hero .lead {
  max-width: 780px;
}

.policy {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 32px 70px;
}

.policy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  font-size: 26px;
}

.policy-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

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

.price {
  margin: 8px 0 16px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 850;
}

.fine-print {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.62;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 860px) {
  .topbar,
  .contact,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .approach,
  .tool-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .topbar,
  .hero,
  .section,
  .page-hero,
  .policy,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .approach li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
