:root {
  --ink: #17202a;
  --muted: #5d6b7a;
  --line: #dbe3ea;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --navy: #0f2437;
  --red: #b3261e;
  --red-dark: #851c18;
  --amber: #b7791f;
  --green: #257a45;
  --blue: #1769aa;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.button:hover {
  text-decoration: none;
  background: #16344f;
}

.button.secondary {
  background: #fff;
  color: var(--navy);
}

.hero {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0 56px;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--navy);
}

h1 {
  margin: 14px 0 18px;
  font-size: clamp(40px, 6vw, 64px);
}

h2 {
  margin: 0 0 16px;
  font-size: 34px;
}

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

.lead {
  max-width: 650px;
  font-size: 19px;
  color: #394756;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 9px;
  background: #fff;
}

.product-shot {
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 36, 55, 0.12);
  overflow: hidden;
}

.shot-bar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  padding: 0 16px;
  font-size: 13px;
}

.shot-tabs {
  display: flex;
  gap: 8px;
}

.shot-tabs span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfdae4;
}

.shot-body {
  padding: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: var(--soft);
}

.metric strong {
  display: block;
  font-size: 22px;
  color: var(--navy);
}

.metric span {
  font-size: 12px;
  color: var(--muted);
}

.notice-table {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
}

.notice-row {
  display: grid;
  grid-template-columns: 82px 1fr 92px;
  gap: 10px;
  align-items: start;
  padding: 11px 12px;
  border-top: 1px solid var(--line);
}

.notice-row:first-child {
  border-top: 0;
  background: #edf2f7;
  color: var(--muted);
  font-weight: 800;
}

.pill {
  display: inline-block;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 800;
}

.high {
  background: #fde8e8;
  color: #9b1c1c;
}

.medium {
  background: #fff4d6;
  color: #7a4d00;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.price-card,
.legal-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

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

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keywords span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  color: #344457;
  font-size: 14px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
}

.price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}

.features {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.features li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 16px;
  color: #693900;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.site-footer {
  background: var(--navy);
  color: #dce7f1;
  padding: 38px 0;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 56px 0 80px;
}

.legal-page h1 {
  font-size: 42px;
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 24px;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .price-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 560px) {
  .metric-grid,
  .notice-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }
}
