:root {
  color-scheme: light;
  --ink: #182026;
  --muted: #5d6975;
  --line: #d7dde3;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --warm: #f5b84b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}
a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { font-weight: 800; text-decoration: none; }
nav { display: flex; gap: 18px; align-items: center; font-size: 14px; }
nav a { text-decoration: none; color: var(--muted); }
.nav-cta { color: var(--accent); font-weight: 700; }
.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: linear-gradient(120deg, #eef8f6 0%, #fff 52%, #fff6e4 100%);
}
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: 0; }
h1 { font-size: clamp(36px, 6vw, 72px); line-height: 1.05; letter-spacing: 0; margin: 10px 0 20px; }
h2 { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.15; letter-spacing: 0; margin: 0 0 22px; }
h3 { margin: 0 0 10px; font-size: 19px; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.primary { color: #fff; background: var(--accent); border-color: var(--accent); }
.primary:hover { background: var(--accent-strong); }
.ghost, .secondary { background: #fff; }
.hero-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 8px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(24,32,38,.08);
}
.metric { display: flex; justify-content: space-between; gap: 18px; padding: 16px; background: var(--soft); border-radius: 6px; }
.metric span { color: var(--muted); }
.metric strong { font-size: 20px; }
.band, .split, .cta, .form-page, .report-page { padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px); }
.muted { background: var(--soft); }
.grid { display: grid; gap: 18px; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid article, .report, .form-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}
.featured { border-color: var(--accent) !important; box-shadow: inset 0 4px 0 var(--accent); }
.price { font-size: 24px; font-weight: 900; margin: 4px 0 12px; }
.split { display: flex; justify-content: space-between; align-items: center; gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta { text-align: center; }
.form-shell { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; }
form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
.check { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; font-weight: 500; }
.check input { width: auto; margin-top: 7px; }
.result { min-height: 28px; font-weight: 800; color: var(--accent); }
.report { max-width: 900px; margin: 0 auto; }
table { width: 100%; border-collapse: collapse; margin: 18px 0; }
th, td { border: 1px solid var(--line); padding: 10px; text-align: left; }
th { background: var(--soft); }
@media (max-width: 820px) {
  nav { display: none; }
  .hero, .form-shell, .three { grid-template-columns: 1fr; }
  .split { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 40px; }
}
.footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 28px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer a { color: var(--muted); }
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.legal-page {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
}
.legal {
  max-width: 900px;
  margin: 0 auto;
}
.legal h1 { font-size: clamp(32px, 4vw, 54px); }
.legal h2 { margin-top: 34px; font-size: 26px; }
.legal p, .legal li { color: var(--muted); }
