:root {
  --ink: #152425;
  --muted: #546463;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #d4ded9;
  --teal: #087f74;
  --teal-dark: #055c55;
  --sun: #f4b942;
  --coral: #e5674f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--teal-dark); }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav,
.section-inner,
.hero-inner,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.brand img { width: 32px; height: 32px; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-inner { padding: 72px 0 58px; }
.compact-hero .hero-inner { padding: 38px 0 28px; }
.compact-hero h1 { font-size: clamp(32px, 4vw, 44px); }
.compact-hero .hero-copy { font-size: 18px; margin-top: 16px; }
.sample-explainer { border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: 6px; padding: 24px; background: var(--paper); }
.sample-explainer h2 { font-size: 25px; }
.sample-explainer h2:first-of-type { margin-top: 0; }
.sample-explainer p, .sample-explainer li { overflow-wrap: anywhere; }
.acquisition-hero { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .8fr); gap: 46px; align-items: center; }
.acquisition-hero h1 { font-size: clamp(36px, 4.2vw, 52px); }
.acquisition-hero .hero-copy { font-size: 19px; }
.acquisition-hero .plain-list li + li { margin-top: 22px; }
.product-view summary { cursor: pointer; color: #e5f0ed; font-size: 18px; font-weight: 650; }
.product-view details[open] summary { margin-bottom: 20px; }

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

h1, h2, h3 { line-height: 1.14; }

h1 {
  max-width: 820px;
  margin: 0;
  font-size: 54px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 750px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.button:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.button.secondary { background: var(--white); color: var(--teal-dark); }
.button.secondary:hover { background: #eef7f4; }

.product-view { background: #0f1821; padding: 36px 0; }
.product-view figure { margin: 0; }
.product-view img {
  width: 100%;
  display: block;
  border: 1px solid #354150;
  border-radius: 6px;
}
.product-view figcaption { margin-top: 12px; color: #c4d0dc; font-size: 14px; }

.band { padding: 66px 0; }
.band.white { background: var(--white); }
.band.dark { background: var(--ink); color: var(--white); }
.band.dark p, .band.dark li { color: #d7e2df; }

.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading h2 { margin: 0; font-size: 34px; letter-spacing: 0; }
.section-heading p { margin: 12px 0 0; color: var(--muted); font-size: 18px; }
.band.dark .section-heading p { color: #d7e2df; }

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

.feature { border-top: 4px solid var(--teal); padding-top: 18px; }
.feature:nth-child(2) { border-color: var(--sun); }
.feature:nth-child(3) { border-color: var(--coral); }
.feature h3 { margin: 0; font-size: 20px; }
.feature p { margin: 10px 0 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 60px;
  align-items: start;
}

.plain-list { margin: 0; padding-left: 22px; }
.plain-list li + li { margin-top: 10px; }

.metric {
  border-left: 4px solid var(--sun);
  padding-left: 20px;
}
.metric strong { display: block; font-size: 28px; }
.metric span { color: #d7e2df; }

.fine-print { color: var(--muted); font-size: 13px; }
.dark .fine-print { color: #d7e2df; }
.dark a { color: #ffffff; }
.coverage-form { min-width: 0; }
.coverage-form label { display: block; font-weight: 650; margin: 18px 0 6px; }
.coverage-form input:not([type="checkbox"]), .coverage-form textarea {
  display: block; width: 100%; padding: 12px; border: 1px solid #80938c;
  border-radius: 5px; font: inherit; background: #fff; color: var(--ink);
}
.coverage-form textarea { resize: vertical; }
.coverage-form input:focus, .coverage-form textarea:focus { outline: 3px solid #95d6cc; outline-offset: 2px; }
.coverage-form .form-consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; margin: 22px 0; }
.form-consent input { margin-top: 6px; flex: 0 0 auto; }
.field-help { margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.coverage-form .button { font: inherit; font-weight: 700; cursor: pointer; }
.form-error { padding: 14px; background: #fff0eb; border-left: 4px solid #ad3424; color: #6d2117; }
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}
.support-grid h2 { margin: 0; font-size: 24px; }
.support-context { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 26px; }

.legal-doc { max-width: 900px; overflow-wrap: anywhere; }
.legal-doc h1 { font-size: 36px; }
.legal-doc h2 { margin-top: 36px; font-size: 25px; }
.legal-doc h3 { margin-top: 28px; font-size: 20px; }
.legal-doc ul { padding-left: 22px; }
.legal-doc li + li { margin-top: 7px; }
.legal-doc hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }
.legal-doc table { width: 100%; display: block; overflow-x: auto; border-collapse: collapse; }
.legal-doc th, .legal-doc td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; font-size: 14px; }
.legal-doc th { background: #eef7f4; }
.legal-doc code { background: #edf2ef; padding: 1px 5px; border-radius: 3px; }

.site-footer { background: #0d1718; color: #c8d5d2; padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-inner a { color: #e5f0ed; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(390px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(21, 36, 37, .18);
}
.consent p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.consent strong { color: var(--ink); }
.consent-actions { display: flex; gap: 8px; margin-bottom: 10px; }
.consent button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--teal);
  border-radius: 5px;
  background: var(--white);
  color: var(--teal-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.consent button.primary { background: var(--teal); color: var(--white); }
.consent a { font-size: 13px; }

@media (max-width: 760px) {
  .acquisition-hero { grid-template-columns: 1fr; gap: 28px; }
  .nav { padding: 15px 0; }
  .nav-links { gap: 0; }
  .nav-links a:not(:last-child) { display: none; }
  .hero-inner { padding: 52px 0 44px; }
  h1 { font-size: 39px; }
  .hero-copy { font-size: 18px; }
  .actions { flex-direction: column; }
  .actions .button { width: 100%; }
  .feature-grid, .terms-grid, .split, .support-grid { grid-template-columns: 1fr; }
  .support-context { grid-column: auto; }
  .split { gap: 36px; }
  .band { padding: 50px 0; }
  .product-view { padding: 24px 0; }
  .product-view img { width: 100%; min-width: 0; transform: none; }
  .consent-actions { flex-direction: column; }
  .consent button { width: 100%; }
}
