:root {
  --ink: #111827;
  --muted: #4b5563;
  --line: #d1d5db;
  --panel: #ffffff;
  --page: #f3f4f6;
  --brand: #153e75;
  --brand-dark: #0f2f5f;
  --accent: #0f766e;
  --accent-soft: #dff7f4;
  --danger-soft: #fff1f2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-dark);
}

.brand-logo {
  width: 96px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 14px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 6px;
  font-weight: 700;
}

.hero,
.section,
.trust-strip,
.footer {
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
  min-height: 680px;
  padding: 72px 32px 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
}

.button.secondary {
  color: var(--brand-dark);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero-panel {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: #e5e7eb;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 11px;
  height: 11px;
  background: #9ca3af;
  border-radius: 50%;
}

.redaction-preview {
  padding: 26px;
  font-size: 18px;
}

mark {
  padding: 2px 4px;
  background: var(--danger-soft);
  color: var(--ink);
}

.tag {
  display: inline-block;
  padding: 2px 6px;
  color: #ffffff;
  background: #111827;
  border-radius: 4px;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  min-height: 112px;
  padding: 22px;
  background: var(--panel);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: 88px 32px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
}

.copy {
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards,
.proof-grid,
.metric-grid {
  display: grid;
  gap: 18px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.price-card,
.proof-card,
.metric {
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card p,
.price-card p,
.proof-card p {
  color: var(--muted);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 50%;
  font-weight: 800;
}

.media-stack {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.video-frame,
.screenshot-figure {
  width: min(100%, 980px);
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #111827;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  width: min(100%, 980px);
  margin: -14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.video-fallback a {
  color: var(--brand-dark);
}

.screenshot-figure {
  margin: 0;
}

.screenshot-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.screenshot-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.proof-grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.proof-card.strong {
  background: var(--accent-soft);
  border-color: #99d8d2;
}

.metric-grid {
  grid-template-columns: 0.7fr 1fr 1.15fr;
}

.metric strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 36px;
  line-height: 1;
}

.metric span,
.note {
  color: var(--muted);
}

.chart-panel {
  margin-top: 24px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chart-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.chart-header h3 {
  margin: 0;
}

.chart-header span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.bar-chart {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(180px, 3fr) 72px;
  gap: 14px;
  align-items: center;
}

.bar-row span {
  color: var(--ink);
  font-weight: 700;
}

.bar-row div {
  height: 14px;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 999px;
}

.bar-row i {
  display: block;
  width: max(var(--bar), 2px);
  height: 100%;
  background: var(--brand);
  border-radius: inherit;
}

.bar-row strong {
  color: var(--brand-dark);
  font-size: 14px;
  text-align: right;
}

.note {
  margin-top: 18px;
  font-size: 14px;
}

.price {
  color: var(--brand-dark) !important;
  font-size: 24px;
  font-weight: 800;
}

.final-cta {
  padding: 70px 32px;
  color: #ffffff;
  background: var(--brand-dark);
  border-radius: 8px;
}

.final-cta .eyebrow,
.final-cta p,
.final-cta a {
  color: #ffffff;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 32px 44px;
  color: var(--muted);
}

@media (max-width: 940px) {
  .site-header,
  .nav,
  .hero-actions,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .trust-strip,
  .three,
  .four,
  .proof-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .chart-header,
  .bar-row {
    align-items: stretch;
  }

  .chart-header {
    flex-direction: column;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bar-row strong {
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }
}
