:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5f625f;
  --line: #d9d6cd;
  --paper: #fbfaf6;
  --wash: #f3f0e8;
  --panel: #ffffff;
  --accent: #11675f;
  --accent-soft: #e3f0ec;
  --accent-ink: #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);
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.brand { font-weight: 800; text-decoration: none; letter-spacing: 0; }
nav { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 14px; }
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }
main { min-height: calc(100vh - 130px); }
.hero {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 64px) clamp(42px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
}
h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.lede {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
}
.signal {
  border-left: 4px solid var(--accent);
  padding: 18px 0 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.section {
  padding: 36px clamp(20px, 5vw, 64px) 70px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 12px;
  line-height: 1.05;
}
.section > .lede {
  margin-bottom: 28px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card h3 { margin: 0 0 10px; font-size: 19px; line-height: 1.2; }
.card p { margin: 0 0 18px; color: var(--muted); line-height: 1.5; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
}
.button.secondary,
.button.subtle {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
}
.button:hover { filter: brightness(0.96); }
.pay-band {
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}
.steps li { margin: 10px 0; }
.sample-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.empty { color: var(--muted); }
footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 760px) {
  .topbar, footer { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; }
  .card { min-height: 0; }
}
