:root {
  color-scheme: light;
  --bg: #f6f8f5;
  --panel: #ffffff;
  --ink: #15201d;
  --muted: #5c6a65;
  --line: #dbe3dd;
  --accent: #0c8f68;
  --accent-2: #174ea6;
  --warn: #9a5a00;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: var(--accent-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
code { overflow-wrap: anywhere; }
.site-header, .site-footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 24px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-size: 14px;
}
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--ink); text-decoration: none; font-weight: 650; }
.hero, .section, .article-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 24px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 34px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: 0;
  margin: 0 0 20px;
  overflow-wrap: anywhere;
}
.hero p, .lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 760px;
}
.hero-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.hero-panel h2 { margin-top: 0; font-size: 22px; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { border: 1px solid var(--line); background: #fff; padding: 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 700; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.card h3 { margin: 8px 0 12px; font-size: 22px; line-height: 1.18; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card p { color: var(--muted); margin-bottom: 0; }
.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-shell {
  max-width: 820px;
}
.article-shell h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  margin: 12px 0 18px;
  overflow-wrap: anywhere;
}
.article-shell h2 {
  margin-top: 36px;
  font-size: 28px;
  line-height: 1.15;
}
.article-shell p, .article-shell li {
  font-size: 18px;
}
.notice {
  margin: 28px 0;
  padding: 18px;
  border-left: 4px solid var(--warn);
  background: #fff7e8;
  color: #3f2a05;
}
.ad-slot {
  margin: 28px 0;
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed #b9c6be;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.service-tier {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.service-tier h2 {
  margin-top: 0;
  font-size: 24px;
}
.price {
  font-size: 32px;
  font-weight: 850;
  color: var(--accent);
  margin: 12px 0;
}
.cta-box {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 750;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}
textarea { resize: vertical; }
.brief-output {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
  padding: 16px;
  font-size: 15px;
  line-height: 1.45;
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
button, .action-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  padding: 10px 14px;
  text-decoration: none;
  cursor: pointer;
}
.action-row a {
  background: #fff;
  color: var(--accent);
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.check-grid label {
  min-height: 72px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  font-size: 15px;
  line-height: 1.35;
}
.check-grid input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}
.score-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  margin: 28px 0;
}
.score-panel h2 { margin: 0 0 8px; }
.score-panel p { margin: 0; }
.score-number {
  font-size: 60px;
  line-height: 1;
  font-weight: 850;
  color: var(--accent);
}
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer nav a { color: var(--muted); }
@media (max-width: 840px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; padding-top: 34px; }
  .grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .score-panel { grid-template-columns: 1fr; }
  .hero p, .lead { font-size: 18px; }
  .hero h1 { font-size: 40px; line-height: 1.03; }
  .hero, .section, .article-shell { padding-left: 20px; padding-right: 20px; }
  .hero-panel, .card { width: 100%; max-width: 100%; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 36px; }
  .article-shell h1 { font-size: 34px; line-height: 1.05; }
  .site-header, .site-footer, .hero, .section, .article-shell { padding-left: 16px; padding-right: 16px; }
  .pill { font-size: 13px; }
  .card h3 { font-size: 20px; }
}
