:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5b665f;
  --line: #d8ded8;
  --paper: #fbfbf8;
  --panel: #ffffff;
  --accent: #0f7b5c;
  --accent-2: #b84230;
  --soft: #eef5f1;
}
* { box-sizing: border-box; }
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  width: 100%;
}
a { color: inherit; }
.topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(251,251,248,.94);
  position: sticky;
  top: 0;
  z-index: 2;
}
.brand { font-weight: 800; text-decoration: none; }
nav { display: flex; gap: 18px; font-size: 14px; color: var(--muted); }
nav a { text-decoration: none; }
main, section, article, div, textarea, input, table { min-width: 0; max-width: 100%; }
main { min-height: calc(100vh - 128px); }
.hero, .tool-head {
  padding: 72px 28px 44px;
  max-width: 1120px;
  margin: 0 auto;
}
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
}
.tool-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
}
.buy-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}
.buy-panel .button {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.buy-panel .button:first-child { margin-top: 0; }
.buy-panel p {
  color: var(--muted);
  line-height: 1.42;
  margin: 14px 0;
}
.buy-panel .microcopy {
  font-size: 13px;
  margin-bottom: 0;
}
.buy-panel pre {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
}
.eyebrow {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  max-width: 860px;
  margin: 10px 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
h2 { margin: 0 0 10px; font-size: 22px; }
.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}
.hero-actions, .row, .tool-bar, .card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.button, button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  min-height: 42px;
  padding: 10px 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button.primary, button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.button.small { min-height: 36px; padding: 8px 12px; }
.price { white-space: nowrap; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 64px;
  padding: 0 28px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.card p { color: var(--muted); line-height: 1.45; }
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 266px;
}
.product-card h2 {
  font-size: 23px;
}
.proof-line {
  margin-top: auto;
  padding-top: 14px;
  color: var(--muted);
  line-height: 1.42;
  font-size: 14px;
}
.proof-line span {
  display: block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.card-actions {
  justify-content: space-between;
  padding-top: 18px;
}
.card-actions strong {
  font-size: 18px;
}
.row { justify-content: space-between; }
.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.trust-band, .proof-grid, .home-proof {
  max-width: 1120px;
  margin: 0 auto 34px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-band > div, .proof, .home-proof > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}
.trust-band strong, .home-proof strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}
.trust-band p, .proof p, .home-proof p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}
.mini-label {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.home-proof { margin-top: -18px; }
.home-trust { margin-top: -18px; margin-bottom: 64px; }
.tool {
  max-width: 1280px;
  margin: 0 auto 42px;
  padding: 0 28px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
textarea {
  width: 100%;
  min-height: 420px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  resize: vertical;
  font: 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.summary {
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
}
.findings, .plain, .table-wrap, .example-panel {
  max-width: 1120px;
  margin: 0 auto 64px;
  padding: 0 28px;
}
.example-panel {
  margin-bottom: 34px;
}
.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.example-grid > div, .proof-callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}
pre {
  margin: 10px 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--ink);
}
#findings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.finding {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 14px;
}
.finding span {
  float: right;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 750;
}
.finding p { margin-bottom: 0; color: var(--muted); }
.label {
  display: block;
  margin: 12px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
input[type="text"], .label input {
  width: 100%;
  margin-top: 6px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
}
input[type="file"] { margin-top: 12px; }
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
th, td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th { background: var(--soft); font-size: 13px; text-transform: uppercase; color: var(--muted); }
footer {
  min-height: 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  font-size: 13px;
}
@media (max-width: 820px) {
  .topbar { height: auto; align-items: flex-start; gap: 12px; flex-direction: column; padding: 16px; }
  nav { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 14px 20px; overflow-wrap: anywhere; }
  h1 { font-size: 34px; line-height: 1.08; max-width: 100%; }
  .lede { font-size: 19px; max-width: 100%; }
  .hero { min-height: 420px; padding-top: 48px; }
  .tool-head, .two-col, .grid, #findings, .trust-band, .proof-grid, .example-grid, .home-proof { grid-template-columns: 1fr; }
  .product-hero { grid-template-columns: minmax(0, 1fr); }
  .tool-head { align-items: start; }
  .hero, .tool-head, .tool, .findings, .plain, .table-wrap, .grid, .trust-band, .proof-grid, .example-panel, .home-proof { padding-left: 20px; padding-right: 20px; }
  .table-wrap { overflow-x: visible; }
  .button.primary { width: 100%; text-align: center; }
  .button, button { max-width: 100%; white-space: normal; }
  .hero-actions .button { width: 100%; text-align: center; }
  .row { align-items: stretch; }
  .row .button { text-align: center; }
  .card-actions { align-items: stretch; }
  .card-actions .button { flex: 1; text-align: center; }
  table, thead, tbody, tr, td { display: block; width: 100%; }
  table { border: 0; background: transparent; }
  thead { display: none; }
  tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 10px 12px;
  }
  td {
    border: 0;
    padding: 8px 0;
  }
  td::before {
    content: attr(data-label);
    display: block;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
  }
  .home-proof, .home-trust { margin-top: -20px; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 430px) {
  .topbar { padding: 14px 12px; }
  .hero, .tool-head, .tool, .findings, .plain, .table-wrap, .grid, .trust-band, .proof-grid, .example-panel, .home-proof {
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 { font-size: 30px; }
  .tool-head h1 { font-size: 27px; overflow-wrap: anywhere; }
  .lede { font-size: 17px; }
  .card, .trust-band > div, .proof, .example-grid > div, .proof-callout, .home-proof > div { padding: 14px; }
  .buy-panel { padding: 16px; }
  nav { gap: 12px 16px; }
}
