:root {
  color-scheme: light;
  --ink: #10213d;
  --blue: #2066a3;
  --green: #16835e;
  --mint: #dff5eb;
  --paper: #f7f4ee;
  --line: #cfd7df;
  --amber: #a76516;
  --coral: #b54842;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 56px;
  border-bottom: 1px solid rgba(16, 33, 61, 0.12);
  background: rgba(247, 244, 238, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: #637083;
  font-size: 12px;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

nav a {
  text-decoration: none;
  color: #334761;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 64px;
  align-items: center;
  padding: 88px 64px 56px;
  background: #f1f6f3;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 78px;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 0;
}

.lede {
  max-width: 700px;
  color: #344a65;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.price-board {
  border: 1px solid rgba(16, 33, 61, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 33, 61, 0.14);
  overflow: hidden;
}

.board-header,
.price-row {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.board-header {
  color: var(--white);
  background: var(--ink);
}

.scope-visual {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.board-header span,
.price-row span {
  font-weight: 800;
}

.board-header strong {
  color: var(--mint);
}

.price-row strong {
  color: var(--amber);
  font-size: 15px;
}

.price-row small {
  grid-column: 1 / -1;
  color: #617088;
}

.notice,
.section-grid,
.comparison,
.provider-band,
.closing {
  padding: 64px;
}

.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #55320b;
  background: #fff4da;
  border-top: 1px solid rgba(167, 101, 22, 0.28);
  border-bottom: 1px solid rgba(167, 101, 22, 0.28);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
  background: var(--white);
}

.section-grid p,
.provider-band p,
.closing p {
  color: #40546d;
  max-width: 820px;
  font-size: 17px;
}

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

.cards article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.chip {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #07563d;
  background: var(--mint);
  font-size: 12px;
  font-weight: 850;
}

.comparison {
  background: #eef5f8;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.compare-table {
  border: 1px solid #b8c7d2;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.compare-table > div {
  display: grid;
  grid-template-columns: 0.72fr 1.32fr 0.72fr;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid #d9e1e8;
}

.compare-table > div:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.provider-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  color: var(--white);
  background: var(--ink);
}

.provider-band .eyebrow,
.provider-band p {
  color: #b9f0db;
}

.provider-band ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.provider-band li {
  counter-increment: steps;
  position: relative;
  padding: 18px 18px 18px 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.provider-band li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
}

.closing {
  background: var(--white);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 64px;
  color: #627086;
  border-top: 1px solid var(--line);
  background: #f8fafc;
  font-size: 13px;
}

@media (max-width: 920px) {
  .hero {
    gap: 34px;
    padding: 56px 28px 42px;
  }

  .hero,
  .section-grid,
  .provider-band {
    grid-template-columns: 1fr;
  }

  .notice,
  .section-grid,
  .comparison,
  .provider-band,
  .closing {
    padding: 48px 28px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  footer {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: auto;
    padding: 46px 18px 38px;
  }

  .board-header,
  .price-row,
  .compare-table > div {
    grid-template-columns: 1fr;
  }

  .notice {
    flex-direction: column;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .lede {
    font-size: 20px;
  }

  .notice,
  .section-grid,
  .comparison,
  .provider-band,
  .closing {
    padding: 40px 18px;
  }

  footer {
    padding-right: 18px;
    padding-left: 18px;
  }
}
