:root {
  color-scheme: light;
  --ink: #15232b;
  --muted: #647482;
  --soft: #f4f7f6;
  --paper: #ffffff;
  --canvas: #fbfaf6;
  --line: #dce5e8;
  --brand: #0b7a75;
  --brand-dark: #075d61;
  --brand-soft: #e5f4f1;
  --accent: #a85d12;
  --accent-soft: #fff2df;
  --amber-soft: #fff8e8;
  --blue-soft: #edf4fb;
  --ok: #166534;
  --danger-soft: #fff1f0;
  --shadow: 0 22px 60px rgba(15, 35, 42, 0.1);
  --shadow-soft: 0 10px 30px rgba(15, 35, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #153d42;
  color: white;
  font-weight: 900;
  line-height: 1;
}

.brand .brand-mark {
  display: grid;
  color: white;
  font-size: 15px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 38px;
  padding: 10px 11px;
  border-radius: 8px;
  color: #31424f;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.nav-cta,
.button,
button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #123f43;
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta:hover,
.button:hover,
button:hover {
  background: var(--brand-dark);
}

.nav-cta {
  padding: 0 14px;
  white-space: nowrap;
}

main {
  min-height: 70vh;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: 640px;
  padding: 66px 0 46px;
}

.hero::before {
  position: absolute;
  inset: 24px -28px 18px;
  z-index: -1;
  border: 1px solid rgba(220, 229, 232, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(229, 244, 241, 0.92), rgba(255, 255, 255, 0.5) 42%, rgba(255, 242, 223, 0.68)),
    var(--paper);
  content: "";
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(11, 122, 117, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
.page-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

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

.button {
  padding: 0 18px;
  box-shadow: 0 10px 22px rgba(18, 63, 67, 0.16);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--soft);
}

.button.subtle {
  background: var(--brand-soft);
  color: var(--brand-dark);
  box-shadow: none;
}

.button.subtle:hover {
  background: #d6eee9;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-panel header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfb;
}

.hero-panel h2,
.panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.hero-panel p,
.panel p,
.card p,
.article-card p,
.legal p,
.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.72;
}

.decision-dashboard {
  display: grid;
  gap: 12px;
  padding: 20px 24px 24px;
}

.decision-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid #e7eef1;
  border-radius: 8px;
  background: white;
}

.decision-row strong {
  color: #243944;
  font-size: 14px;
}

.decision-row span {
  color: var(--muted);
  font-size: 13px;
}

.decision-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef1;
}

.decision-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.decision-pill {
  display: inline-flex;
  justify-content: center;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.editor-note {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(168, 93, 18, 0.22);
  border-radius: 8px;
  background: var(--amber-soft);
}

.editor-note strong {
  color: #74420d;
}

.editor-note p {
  margin: 0;
  color: #5b6670;
  line-height: 1.7;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  margin: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.checklist li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #dff4ef;
  color: var(--ok);
  content: "✓";
  font-weight: 900;
}

.section {
  padding: 58px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-header h2,
.section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
}

.section-header p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

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

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

.card,
.article-card,
.panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.card,
.article-card,
.panel {
  padding: 24px;
}

.card h3,
.article-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mini-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f606c;
  font-size: 12px;
  font-weight: 800;
}

.card a,
.article-card a {
  text-decoration: none;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.card,
.article-card {
  position: relative;
  min-height: 190px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover,
.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 122, 117, 0.28);
  box-shadow: var(--shadow-soft);
}

.card h3 a::after,
.article-card h3 a::after {
  content: " →";
  color: var(--brand);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.metric {
  min-height: 112px;
  padding: 22px;
  background: white;
}

.metric strong {
  display: block;
  color: #123f43;
  font-size: 30px;
}

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

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

.pathway-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.pathway-card header {
  display: grid;
  gap: 8px;
}

.pathway-card h3,
.routine-card h3,
.product-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.pathway-card p,
.routine-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.step-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #43525d;
  line-height: 1.55;
}

.step-list li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  content: attr(data-step);
  font-size: 12px;
  font-weight: 900;
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.routine-card,
.product-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.routine-card::before {
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #394b56;
  font-weight: 800;
}

.filter-button[aria-pressed="true"] {
  border-color: rgba(11, 122, 117, 0.32);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

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

.product-card[hidden] {
  display: none;
}

.product-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #24547a;
  font-size: 12px;
  font-weight: 900;
}

.disclosure-band {
  padding: 20px;
  border: 1px solid rgba(168, 93, 18, 0.22);
  border-radius: 8px;
  background: var(--amber-soft);
}

.disclosure-band p {
  margin: 0;
  color: #5d6670;
  line-height: 1.7;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 16px 18px;
  background: white;
  color: var(--ink);
  box-shadow: none;
  text-align: left;
}

.accordion-toggle:hover,
.accordion-toggle[aria-expanded="true"] {
  background: var(--soft);
  color: var(--brand-dark);
}

.accordion-panel {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.page-head {
  padding: 62px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(229, 244, 241, 0.8), rgba(255, 255, 255, 0.6) 48%, rgba(237, 244, 251, 0.74)),
    var(--soft);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--brand-dark);
  text-decoration: none;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: 46px 0 70px;
}

.article-body {
  max-width: 760px;
  padding: 4px 0;
}

.article-body h2 {
  margin: 36px 0 12px;
  font-size: 30px;
}

.article-body h3 {
  margin: 26px 0 8px;
  font-size: 22px;
}

.article-body p,
.article-body li {
  font-size: 17px;
}

.article-body blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  background: #eef8f8;
  color: #24464a;
}

.toc {
  position: sticky;
  top: 90px;
  align-self: start;
}

.toc ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.toc li {
  margin: 8px 0;
  color: var(--muted);
}

.cta-band {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid #f3c77c;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 242, 223, 0.9), rgba(255, 255, 255, 0.78)),
    var(--accent-soft);
  box-shadow: var(--shadow-soft);
}

.cta-band h2,
.cta-band h3 {
  margin-top: 0;
}

.form-panel {
  padding: 26px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #334553;
  font-weight: 750;
}

.lead-form .wide,
.lead-form .checkbox-row,
.lead-form button,
.lead-form .success-box,
.lead-form .form-note {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cedadf;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfc;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(11, 122, 117, 0.18);
  border-color: var(--brand);
  background: white;
}

.lead-form textarea {
  min-height: 92px;
  resize: vertical;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.checkbox-row input {
  min-height: auto;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.success-box {
  display: none;
  padding: 16px;
  border: 1px solid #b8e1c5;
  border-radius: 8px;
  background: #effaf2;
  color: var(--ok);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #10282c;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.6fr));
  gap: 20px;
  padding: 38px 0;
}

.site-footer p,
.site-footer a {
  color: #cbd5dd;
  line-height: 1.65;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aab7c0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    width: 100%;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-links a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-header p {
    max-width: 100%;
  }

  .hero,
  .content-layout,
  .grid,
  .grid.two,
  .grid.four,
  .pathway-grid,
  .routine-grid,
  .product-grid,
  .metric-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    inset: 12px -12px;
  }

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

  .toc {
    position: static;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-cta {
    width: auto;
    min-height: 36px;
    padding: 0 12px;
  }

  h1,
  .page-title {
    font-size: 36px;
  }

  .section {
    padding: 40px 0;
  }
}
