:root {
  color-scheme: light;
  --bg: #eef7f4;
  --paper: #ffffff;
  --ink: #17322d;
  --muted: #60746e;
  --line: #d7e7e1;
  --teal: #176f6a;
  --teal-dark: #0f5d58;
  --mint: #dff4ed;
  --blue: #2b5c92;
  --shadow: 0 18px 48px rgba(18, 54, 48, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(111, 206, 183, 0.22), transparent 28%),
    linear-gradient(180deg, #f7fbf9 0%, var(--bg) 46%, #f7faf8 100%);
  color: var(--ink);
}

body {
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 249, 0.88);
  border-bottom: 1px solid rgba(215, 231, 225, 0.92);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(23, 111, 106, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span span,
.brand-copy > span {
  color: var(--muted);
  font-size: 0.86rem;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-weight: 650;
}

.top-nav a:hover {
  color: var(--teal);
}

.hero {
  padding: 36px 0 22px;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.feature,
.price-card,
.contact-card,
.policy-links,
.checklist div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(215, 231, 225, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
}

.eyebrow {
  display: inline-block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 750;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin-top: 10px;
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
  line-height: 0.98;
  max-width: 760px;
}

.lede {
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: #304640;
  max-width: 760px;
}

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

.primary-button,
.secondary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 750;
}

.primary-button {
  background: var(--teal);
  color: #fff;
}

.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: #bcd8cf;
}

.hero-points {
  margin: 24px 0 0;
  padding-left: 20px;
  color: #304640;
}

.hero-panel {
  padding: 18px;
}

.summary-card {
  min-height: 100%;
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(23, 111, 106, 0.95), rgba(43, 92, 146, 0.84)),
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  color: #fff;
}

.panel-topline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pill.ok {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.muted {
  color: rgba(255, 255, 255, 0.8);
}

.summary-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.summary-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.mini-metrics {
  display: grid;
  gap: 12px;
}

.mini-metrics article {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.band {
  padding: 18px 0 22px;
}

.band.alt {
  padding-top: 6px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.section-head p,
.two-column p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 780px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.feature,
.price-card,
.contact-card,
.policy-links,
.checklist div {
  padding: 18px;
}

.feature h3,
.price-card strong {
  font-size: 1.15rem;
}

.feature p,
.price-card span,
.checklist span {
  margin: 8px 0 0;
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist strong {
  display: block;
}

.policy-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.policy-links a,
.contact-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--teal);
  font-weight: 700;
}

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

.price-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.price-card.featured {
  border-color: #98d2c2;
  background: linear-gradient(180deg, #f7fffc, #eefaf5);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
}

.contact-card h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .top-nav {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .hero-copy {
    padding: 22px 18px;
  }

  .hero-copy h1,
  .section-head h2,
  .contact-card h2 {
    overflow-wrap: anywhere;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
