:root {
  --navy: #10233f;
  --gold: #c59b3d;
  --ink: #172033;
  --muted: #667085;
  --line: #e4dfd4;
  --soft: #f7f1e6;
  --white: #ffffff;
  --bg: #fbfaf6;
  --green: #1f7a4d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(251,250,246,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.logo { font-weight: 900; font-size: 1.2rem; text-decoration: none; letter-spacing: -.02em; }
.logo span { color: var(--gold); }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 600; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-block; border-radius: 999px; padding: 12px 18px; text-decoration: none;
  font-weight: 800; border: 1px solid transparent;
}
.btn.gold { background: var(--gold); color: #111; }
.btn.navy { background: var(--navy); color: var(--white); }
.btn.light { background: var(--white); border-color: var(--line); }
.hero { padding: 72px 0 48px; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; color: var(--gold); }
h1, h2, h3 { line-height: 1.12; margin: 0 0 14px; letter-spacing: -.03em; }
h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); max-width: 900px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.7rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 14px; }
.lead { font-size: 1.15rem; color: #2d394d; max-width: 780px; }
.muted { color: var(--muted); }
.hero-actions, .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.trust, .grid, .grid.two, .pricing-grid, .steps { display: grid; gap: 18px; }
.trust { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-top: 28px; }
.trust div, .card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 10px 35px rgba(16,35,63,.05); }
.grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.two { grid-template-columns: 1.15fr .85fr; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.section { padding: 58px 0; }
.band { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 24px; }
.tag { display: inline-block; font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; color: var(--navy); background: #eef2f7; padding: 8px 10px; border-radius: 999px; margin-bottom: 12px; }
.price { font-size: 2rem; font-weight: 900; margin: 14px 0 8px; }
.clean { padding-left: 18px; margin: 0; }
.notice { background: #fff7e7; border: 1px solid #efd9a0; border-radius: 18px; padding: 16px 18px; }
.form-grid { display: grid; gap: 14px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cfd6df; border-radius: 14px; font: inherit; background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f5f7fa; font-size: .92rem; }
.cta { background: var(--navy); color: #fff; border-radius: 28px; padding: 28px; }
.preview-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: stretch; margin-top: 26px; }
.preview-stack {
  background: linear-gradient(155deg, #163052 0%, #10233f 58%, #0b1830 100%);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(16,35,63,.18);
}
.preview-stack::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197,155,61,.3) 0%, rgba(197,155,61,0) 70%);
}
.preview-stack .mini-eyebrow,
.preview-card .mini-eyebrow,
.report-shell .mini-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}
.preview-stack h3,
.preview-card h3,
.report-shell h1,
.report-shell h2,
.report-shell h3 { letter-spacing: -.02em; }
.preview-pages {
  position: relative;
  margin-top: 22px;
  min-height: 280px;
}
.preview-page {
  position: absolute;
  width: min(100%, 420px);
  background: rgba(255,255,255,.98);
  color: var(--ink);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.55);
  padding: 18px;
  box-shadow: 0 18px 45px rgba(7,16,30,.22);
}
.preview-page.one { top: 0; left: 0; transform: rotate(-4deg); }
.preview-page.two { top: 28px; right: 10px; transform: rotate(5deg); }
.preview-page.three { top: 138px; left: 36px; transform: rotate(-1.5deg); }
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.dot-row { display: flex; gap: 6px; }
.dot-row span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d3dae5;
}
.page-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--muted);
}
.line-stack,
.metric-list,
.schedule-bars,
.check-list { display: grid; gap: 8px; }
.line-stack span,
.schedule-bars span,
.check-list span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #e9eef5;
}
.line-stack span.short,
.schedule-bars span.short,
.check-list span.short { width: 62%; }
.line-stack span.mid,
.schedule-bars span.mid,
.check-list span.mid { width: 78%; }
.metric-list {
  grid-template-columns: repeat(3, 1fr);
  margin: 14px 0;
}
.metric-list div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  background: #fbfcfe;
}
.metric-list strong { display: block; font-size: 1rem; }
.metric-list span { font-size: .76rem; color: var(--muted); }
.preview-side { display: grid; gap: 16px; }
.preview-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 35px rgba(16,35,63,.05);
}
.preview-card p:last-child,
.report-card p:last-child { margin-bottom: 0; }
.preview-links,
.report-link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
}
.report-shell {
  background: linear-gradient(180deg, #f7f3eb 0%, #fbfaf6 100%);
  min-height: 100vh;
}
.report-wrap { width: min(980px, calc(100% - 32px)); margin: 0 auto; }
.report-hero {
  padding: 48px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.report-meta span,
.report-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
}
.report-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(16,35,63,.06);
  margin-bottom: 20px;
}
.report-grid { display: grid; gap: 18px; grid-template-columns: 1.05fr .95fr; }
.report-card,
.report-table,
.report-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}
.report-note { background: #fff9ee; }
.report-table table { border-radius: 16px; }
.report-table td,
.report-table th { font-size: .94rem; }
.report-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 18px; }
.report-kpis div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #f9fbfd;
}
.report-kpis strong { display: block; font-size: 1.35rem; margin-bottom: 4px; }
.report-list { margin: 0; padding-left: 18px; }
.report-footer {
  padding: 0 0 52px;
  color: var(--muted);
  font-size: .92rem;
}
.footer { padding: 28px 0 48px; color: var(--muted); }
.small { font-size: .92rem; }
@media (max-width: 860px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .grid.two,
  .preview-grid,
  .report-grid { grid-template-columns: 1fr; }
  .preview-pages { min-height: 340px; }
  .preview-page { width: calc(100% - 14px); }
  .preview-page.two { right: 0; }
  .preview-page.three { left: 10px; top: 168px; }
}
