:root {
  --bg: #f3f7fb;
  --ink: #142031;
  --muted: #5a6b80;
  --brand: #0f766e;
  --brand-2: #1456ff;
  --line: #d9e2ec;
  --card: #ffffff;
  --warn: #b45309;
  --pass: #047857;
  --fail: #b91c1c;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #e2f5ef 0%, var(--bg) 50%);
}
a { color: var(--brand-2); text-decoration: none; }
.container { width: min(1080px, 92%); margin: 0 auto; }
.narrow { width: min(760px, 92%); }
.topbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(13, 88, 83, .18);
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-top {
  font-size: 1.1rem;
  color: #0c6f67;
}
.brand-bottom {
  font-size: 1.06rem;
  color: #1a2f52;
}
.nav { display: flex; gap: 10px; align-items: center; }
.nav-btn {
  border: 1px solid #d5deec;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  color: #143260;
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s ease;
}
.nav-btn:hover {
  border-color: #a9c3ec;
  color: #0d4ea8;
  transform: translateY(-1px);
}
.nav-btn-primary {
  border-color: #1a75cf;
  background: linear-gradient(130deg, #0f766e, #1456ff);
  color: #fff;
}
.nav-btn-primary:hover {
  color: #fff;
  border-color: #1a75cf;
}
.nav-btn-accent {
  background: #f2f8ff;
  border-color: #c7ddfb;
}
.hero { padding: 70px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; color: var(--brand); font-weight: 700; font-size: .78rem; }
ul { margin: 0; padding-left: 18px; }
li { margin-bottom: 6px; }
h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 5vw, 2.9rem); }
.subhead { color: var(--muted); max-width: 70ch; }
.section { padding: 52px 0; }
.section.alt { background: #eaf0f7; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.panel, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(20, 32, 49, .06);
}
.cards { display: grid; gap: 16px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps3 { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.steps3 div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.steps3 span { display: inline-block; width: 32px; height: 32px; line-height: 32px; text-align: center; border-radius: 50%; background: var(--brand-2); color: #fff; font-weight: 700; }
.center { text-align: center; margin-top: 20px; }
.cta-row { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.btn { border: 0; border-radius: 10px; padding: 11px 16px; font-weight: 700; display: inline-block; cursor: pointer; }
.btn-primary { background: linear-gradient(130deg, var(--brand), var(--brand-2)); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid var(--line); padding: 8px; text-align: left; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px; margin-top: 6px; font: inherit; background: #fff;
}
textarea { resize: vertical; }
label { display: block; margin-bottom: 12px; font-weight: 600; }
.checkbox { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.checkbox input { width: auto; margin: 0; }
.grid2 { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.chips label { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; margin: 0; font-weight: 500; }
.chips input { width: auto; margin-right: 8px; }
.wizard { position: relative; }
.wizard-progress-wrap { height: 8px; background: #e2e8f0; border-radius: 999px; margin: 18px 0; overflow: hidden; }
.wizard-progress { height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: width .24s ease; }
.step { display: none; animation: fade .2s ease; }
.step.active { display: block; }
.wizard-actions { display: flex; justify-content: space-between; margin-top: 8px; }
.error { color: var(--fail); margin-top: 10px; font-size: .95rem; }
.flash { margin: 14px 0; padding: 10px 12px; border-radius: 10px; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
.site-footer { background: #0e1726; color: #fff; margin-top: 60px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0; }
.footer-grid a { color: #e2f0ff; display: block; margin-bottom: 8px; }
.footer-logo {
  display: inline-flex;
  gap: 2px;
  align-items: baseline;
  font-size: 1.05rem;
}
.footer-logo span {
  color: #67d3bf;
}
.tiny { font-size: .83rem; color: var(--muted); }
.status-list { margin: 0 0 12px; padding-left: 18px; }
.progress-wrap { height: 9px; border-radius: 999px; background: #e5e7eb; overflow: hidden; margin-top: 10px; }
.badge { display: inline-block; padding: 4px 8px; border-radius: 999px; font-size: .8rem; font-weight: 700; }
.badge-pass { background: #d1fae5; color: #065f46; }
.badge-warn { background: #ffedd5; color: #9a3412; }
.badge-fail { background: #fee2e2; color: #991b1b; }
.stat p { font-size: 1.4rem; font-weight: 700; }
.cta-soft { border: 1px solid #bfd6ff; background: linear-gradient(120deg,#f8fbff,#edf5ff); }
.hp { position: absolute; left: -9999px; }
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .48s ease, transform .48s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.lp-hero {
  background: radial-gradient(circle at 12% 8%, #e3f4f2 0%, #f4f8fd 42%, #eef3ff 100%);
  border-bottom: 1px solid #d7e3f2;
}
.lp-hero-grid { gap: 34px; }
.lp-right-stack {
  display: grid;
  gap: 14px;
}
.lp-hero-card {
  border: 1px solid #c9d9f3;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.lp-vsl-card {
  border: 1px solid #b8cff4;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}
.lp-vsl-video {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #d1dded;
  background: #081326;
}
.lp-vsl-placeholder {
  border: 1px dashed #bed2ee;
  border-radius: 10px;
  padding: 16px;
  background: #f8fbff;
  color: #3d5370;
}
.lp-vsl-placeholder p {
  margin: 0 0 6px;
}
.lp-vsl-placeholder code {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: .8rem;
}
.lp-player-placeholder {
  border: 1px solid #c3d4ec;
  border-radius: 12px;
  overflow: hidden;
  background: #0f1d37;
}
.lp-player-screen {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: radial-gradient(circle at 20% 20%, #173762 0%, #0d1830 70%);
  color: #d9e8ff;
}
.lp-player-screen p {
  margin: 10px 0 0;
  font-size: .9rem;
}
.lp-play-btn {
  border: 1px solid #7fb3ff;
  background: linear-gradient(130deg, #1d65ce, #0fa37f);
  color: #fff;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 700;
  cursor: default;
}
.lp-player-controls {
  height: 28px;
  background: #0a1528;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}
.lp-progress {
  display: inline-block;
  height: 4px;
  border-radius: 999px;
  width: calc(100% - 20px);
  background: linear-gradient(90deg, #0fa37f 0%, #2f78e2 40%, #2f3d57 40%);
}
.lp-knob {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.lp-checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.lp-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}
.lp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background: #d1fae5;
  color: #065f46;
  font-weight: 800;
  font-size: .78rem;
}
.lp-hero-points {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.lp-hero-points strong {
  display: block;
  color: #0b2a63;
}
.lp-hero-points p {
  margin: 0;
  color: #4b5f7b;
  font-size: .95rem;
}
.lp-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-mini-proof span {
  border: 1px solid #c6d9fb;
  background: #eef5ff;
  color: #153b79;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}
.lp-icon-head {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.lp-icon-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #eaf3ff 45%, #dceaff 100%);
  border: 1px solid #bed2ee;
  color: #1f4f8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  box-shadow: 0 4px 10px rgba(20, 60, 120, .12);
}
.lp-icon-badge svg {
  width: 16px;
  height: 16px;
}
.lp-trust-strip {
  padding: 24px 0;
  border-top: 1px solid #dce6f5;
  border-bottom: 1px solid #dce6f5;
  background: #f9fbfe;
}
.lp-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-strip-grid div {
  background: #fff;
  border: 1px solid #dce4f0;
  border-radius: 12px;
  padding: 12px;
}
.lp-strip-item h3 {
  font-size: 1.02rem;
}
.lp-strip-grid strong {
  color: #163b77;
}
.lp-strip-grid p {
  margin: 0;
  color: #5b6f8c;
  font-size: .93rem;
}
.lp-pain-grid .card h3 {
  color: #1f2d48;
}
.lp-audit-grid .card {
  border-color: #d2dfef;
}
.lp-audit-grid h3 {
  color: #14386f;
}
.lp-steps div {
  border-color: #d2dff0;
}
.lp-fit-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.lp-fit-panel h3 {
  margin-bottom: 10px;
}
.lp-faq h4 {
  margin-top: 16px;
  margin-bottom: 8px;
  color: #1c355e;
}
.lp-faq p {
  margin: 0;
  color: #4f637f;
}
.lp-final-cta {
  background: linear-gradient(130deg, #e9f7f3 0%, #edf3ff 70%);
  border-top: 1px solid #d4e1f3;
  border-bottom: 1px solid #d4e1f3;
}
@keyframes fade { from { opacity: .4; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }
@media (max-width: 900px) {
  .hero-grid, .cards.three, .cards.two, .steps3, .grid2 { grid-template-columns: 1fr; }
  .lp-strip-grid, .lp-fit-panel { grid-template-columns: 1fr; }
  .topbar-inner { flex-wrap: wrap; gap: 10px; }
  .nav { display: flex; width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .nav-btn { white-space: nowrap; font-size: .78rem; padding: 7px 10px; }
  .footer-grid { flex-direction: column; }
  .lp-checklist li { font-size: .95rem; }
  .btn { width: 100%; text-align: center; }
  .cta-row { width: 100%; }
  .brand-wordmark { font-size: .95rem; }
}
