@font-face {
  font-family: 'Roboto Mono';
  src: url('https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_ROW4.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

:root {
  --bg: #ffffff;
  --text: #344255;
  --heading: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.12);
  --brand: #10b981;
  --brand-soft: #ecfdf5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans Pro', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
  color: #10b981;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.page {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.topbar nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
}

.topbar nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-size: 1.55rem;
  font-weight: 300;
  text-decoration: none;
}

.brand img {
  height: 38px;
  width: auto;
}

.hero,
.section,
.faq,
.cta {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section,
.faq,
.cta {
  margin-top: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid #d1fae5;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #059669;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.55rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p,
li,
td,
th {
  font-size: 1.06rem;
  line-height: 1.6;
}

p,
li,
td {
  color: var(--text);
}

.hero > p,
.section > p,
.faq-item p,
.cta > p {
  max-width: 700px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.button-primary {
  border-color: #a7f3d0;
  background: var(--brand-soft);
  color: #059669;
}

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

.hero-grid,
.grid-2,
.grid-3,
.cards {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.grid-2,
.grid-3,
.cards {
  grid-template-columns: 1fr;
}

.card,
.stat,
.callout,
.faq-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.card,
.stat,
.faq-item {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-grid > .card {
  padding-top: 0;
  border-top: 0;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
}

.checklist,
.inline-links {
  margin: 0;
  padding-left: 20px;
}

.checklist li + li,
.inline-links li + li {
  margin-top: 8px;
}

.table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

thead th {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.faq-item + .faq-item {
  margin-top: 0;
}

.footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  text-align: left;
}

code,
kbd {
  border: 1px solid #e7e5e4;
  border-radius: 4px;
  background: #fafaf9;
  font-family: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (max-width: 900px) {
  .page {
    width: min(100% - 24px, 940px);
    padding: 18px 0 56px;
  }

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

  .topbar nav {
    width: 100%;
  }

  h1 {
    max-width: none;
  }
}
