: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); }
.trust-line { color: var(--muted); font-weight: 700; margin-top: 16px; font-size: 14px; }
.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; }
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.inline-cta {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  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; }
.report-preview { align-self: stretch; align-content: center; }
.hero-image {
  width: 100%;
  aspect-ratio: 1721 / 914;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}
.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.preview-head span { color: var(--muted); font-weight: 800; }
.preview-head strong { color: var(--accent); }
.score-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 6px;
  background: var(--soft);
}
.score-row p { margin: 0; color: var(--muted); font-weight: 700; }
.mini-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}
.preview-list { display: grid; gap: 10px; }
.preview-list div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.preview-list span { color: var(--accent); font-weight: 900; }
.preview-list strong { font-size: 15px; }
.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;
}
.latest-report-section .section-intro,
.report-list-page .lead {
  max-width: 860px;
}
.latest-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.latest-report-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}
.latest-report-card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.latest-report-card h3 a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.latest-report-card p {
  color: var(--muted);
}
.report-date {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 900;
}
.latest-report-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.latest-report-card dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.latest-report-card dt {
  color: var(--muted);
  font-weight: 800;
}
.latest-report-card dd {
  margin: 0;
}
.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; }
.fit {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-weight: 800;
}
.deliverables {
  margin: 16px 0 18px;
  padding-left: 20px;
  color: var(--muted);
}
.deliverables li { margin: 4px 0; }
.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, .latest-report-grid { grid-template-columns: 1fr; }
  .split { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 40px; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .text-link { justify-content: center; width: 100%; }
  .score-row { grid-template-columns: 1fr; }
  .mini-score { width: 64px; height: 64px; }
}
.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); }

.pricing-page { padding-bottom: 24px; }
.muted-note { color: var(--muted); font-size: 14px; margin-top: 14px; }
button[disabled] { opacity: .58; cursor: not-allowed; }
.product-hero { min-height: 64vh; }
.score {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--accent);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
.score span {
  color: var(--muted);
  font-size: 18px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.steps div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}
.steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 12px;
}
.steps span { display: block; font-weight: 800; }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}


.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 40;
  transform: translateY(-140%);
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(245,184,75,.72);
  outline-offset: 3px;
}
.lp-hero {
  min-height: calc(100vh - 70px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.56)),
    linear-gradient(135deg, #e8f5f1 0%, #ffffff 56%, #fff0cf 100%);
}
.hero-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.hero-checks li {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-left: 3px solid var(--warm);
  background: rgba(255,255,255,.74);
  padding: 10px 12px;
  font-weight: 800;
}
.conversion-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfc;
}
.conversion-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}
.section-intro {
  max-width: 850px;
  margin-bottom: 28px;
}
.section-intro p { color: var(--muted); }
.pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}
.pain-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.pain-grid article:first-child {
  background: var(--ink);
  color: #fff;
}
.pain-grid article:first-child p { color: rgba(255,255,255,.76); }
.pain-grid p, .split-proof p, .pricing-focus p, .operator p { color: var(--muted); }
.split-proof, .pricing-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}
.proof-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.proof-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.proof-list div:last-child { border-bottom: 0; }
.proof-list strong { color: var(--accent-strong); }
.proof-list span { color: var(--muted); }
.steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.pricing-focus {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf9 100%);
}
.included-box {
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: inset 0 4px 0 var(--accent);
}
.compact { font-size: 20px; }
.product-mini-grid article { min-height: 230px; }
.operator {
  max-width: none;
  background: #fbfcfc;
}
.operator > * {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.operator .actions { justify-content: center; }
.final-cta {
  background: var(--ink);
  color: #fff;
}
.final-cta .eyebrow, .final-cta .muted-note { color: #b8d8d2; }
.final-cta .secondary { color: var(--ink); }
.final-cta .actions { justify-content: center; }
@media (max-width: 980px) {
  .hero-checks, .pain-grid, .split-proof, .pricing-focus { grid-template-columns: 1fr; }
  .proof-list div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 820px) {
  .lp-hero { min-height: auto; padding-top: 32px; }
  .hero-checks li { min-height: auto; }
  .conversion-strip { overflow-x: auto; flex-wrap: nowrap; }
  .conversion-strip span { white-space: nowrap; }
  .topbar { align-items: flex-start; }
  .brand { line-height: 1.25; }
  .final-cta .actions .button { width: 100%; }
}
@media (max-width: 420px) {
  h1 { font-size: 34px; }
  h2 { font-size: 25px; }
  .band, .split, .cta, .form-page, .report-page { padding-left: 16px; padding-right: 16px; }
  .hero { padding-left: 16px; padding-right: 16px; }
}


.lp-hero {
  min-height: auto;
  align-items: start;
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(34px, 5vw, 72px);
}
.lp-hero h1 { font-size: clamp(34px, 4.6vw, 60px); }
.lp-hero .report-preview { align-self: start; }
