@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-700.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --navy: #021d3c;
  --navy-soft: #0b3157;
  --teal: #008b97;
  --teal-dark: #006b75;
  --cyan: #22bdd0;
  --green: #2f7d5a;
  --green-dark: #1d6345;
  --ink: #17232b;
  --muted: #5b6970;
  --line: #dce5e6;
  --line-strong: #c4d1d3;
  --surface: #ffffff;
  --surface-soft: #f3f8f8;
  --surface-green: #f0f6f2;
  --shadow: 0 14px 40px rgba(2, 29, 60, 0.08);
  --container: 1240px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  font-size: 54px;
  line-height: 1.08;
}

h2 {
  font-size: 36px;
  line-height: 1.18;
}

h3 {
  font-size: 19px;
  line-height: 1.3;
}

p {
  margin-bottom: 0;
}

::selection {
  background: #bcecf0;
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

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

.button--secondary {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
}

.button--secondary:hover {
  background: #fff;
}

.text-link,
.inline-link {
  color: var(--green-dark);
  font-weight: 700;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  font-size: 17px;
  transition: transform 160ms ease;
}

.text-link:hover,
.inline-link:hover {
  color: var(--teal-dark);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.guide-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.guide-hero__media {
  position: absolute;
  inset: 0;
}

.guide-hero__media picture,
.guide-hero__media img {
  width: 100%;
  height: 100%;
}

.guide-hero__media img {
  object-fit: cover;
  object-position: center bottom;
}

.guide-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding-block: 58px;
  pointer-events: none;
}

.guide-hero__copy {
  width: 52%;
  max-width: 650px;
  pointer-events: auto;
}

.guide-hero__lead {
  max-width: 555px;
  margin-top: 21px;
  color: #33464f;
  font-size: 18px;
  line-height: 1.58;
}

.guide-hero h1 {
  text-wrap: wrap;
}

.guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.guide-hero__topics {
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  padding: 0;
  margin: 31px 0 0;
  list-style: none;
}

.guide-hero__topics li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.guide-hero__topics svg {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-section {
  padding-block: 72px;
}

.page-section--soft {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 56px;
}

.section-heading > p:last-child,
.section-heading--split > p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.section-heading--split > p {
  margin-top: 0;
}

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

.start-card {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.start-card:hover {
  border-color: #9ec7c9;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.start-card__top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.start-card__icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-green);
  color: var(--green);
}

.start-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.start-card__label {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.start-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.guide-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(2, 29, 60, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-card:hover {
  border-color: #9ec7c9;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.guide-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #e9efef;
}

.guide-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.guide-card:hover .guide-card__image img {
  transform: scale(1.025);
}

.guide-card__body {
  min-height: 250px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px 20px 18px;
}

.guide-card__meta {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.pathway__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 64px;
  padding-block: 62px;
}

.pathway .eyebrow {
  color: #76d4dd;
}

.pathway h2,
.pathway h3 {
  color: #fff;
}

.pathway__intro p:last-child {
  margin-top: 14px;
  color: #cfdae4;
  line-height: 1.55;
}

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

.pathway__step {
  min-width: 0;
  padding: 4px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.pathway__number {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border: 1px solid #76d4dd;
  border-radius: 50%;
  color: #76d4dd;
  font-size: 13px;
  font-weight: 700;
}

.pathway__step p {
  margin-top: 7px;
  color: #cfdae4;
  font-size: 13px;
  line-height: 1.5;
}

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

.product-topic {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px 19px 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-topic:hover {
  border-color: #9ec7c9;
  box-shadow: 0 12px 30px rgba(2, 29, 60, 0.07);
  transform: translateY(-2px);
}

.product-topic svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-topic h3 {
  font-size: 17px;
}

.product-topic p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-topic .text-link {
  min-height: 44px;
  font-size: 13px;
}

.medical-band {
  border-block: 1px solid #cfe0d4;
  background: var(--surface-green);
}

.medical-band__inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding-block: 42px;
}

.medical-band__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #acd0ba;
  border-radius: 50%;
  color: var(--green);
}

.medical-band__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.medical-band h2 {
  font-size: 25px;
}

.medical-band p {
  max-width: 760px;
  margin-top: 7px;
  color: #42574b;
  font-size: 14px;
  line-height: 1.55;
}

.medical-band .button {
  white-space: nowrap;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 86px;
}

.faq-layout__intro {
  position: sticky;
  top: 130px;
}

.faq-layout__intro > p:last-child {
  max-width: 430px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 22px;
  padding-block: 18px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: var(--teal);
  content: "";
  transition: transform 160ms ease;
}

.faq-item__icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  max-width: 720px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 14px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.faq-item[open]:not([data-closing]) .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item__answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item__answer p {
  margin-bottom: 10px;
}

.faq-item .inline-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-enabled .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .guide-hero,
  .guide-hero__content {
    min-height: 600px;
  }

  .guide-hero__copy {
    width: 48%;
  }

  .guide-hero h1 {
    font-size: 48px;
  }

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

  .guide-card__body {
    min-height: 220px;
  }

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

@media (max-width: 980px) {
  .guide-hero h1 {
    font-size: 43px;
  }

  .guide-hero__lead {
    font-size: 16px;
  }

  .guide-hero__topics {
    gap: 12px 18px;
  }

  .section-heading--split,
  .pathway__inner,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 0;
  }

  .pathway__inner {
    gap: 36px;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-layout__intro {
    position: static;
  }

  .medical-band__inner {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .medical-band .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .guide-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .guide-hero__media {
    position: relative;
    order: 2;
    aspect-ratio: 4 / 3;
  }

  .guide-hero__media img {
    object-position: right bottom;
  }

  .guide-hero__content {
    width: min(calc(100% - 40px), var(--container));
    min-height: 0;
    order: 1;
    padding-block: 58px 50px;
  }

  .guide-hero__copy {
    width: 100%;
    max-width: 670px;
  }

  .guide-hero__lead,
  .guide-hero__topics {
    max-width: 650px;
  }

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

  .start-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  .page-section {
    padding-block: 54px;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading > p:last-child,
  .section-heading--split > p {
    font-size: 16px;
  }

  .guide-grid,
  .pathway__steps,
  .product-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway__step {
    padding: 8px 20px;
  }

  .pathway__step:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .medical-band__inner {
    padding-block: 36px;
  }
}

@media (max-width: 560px) {
  .container,
  .guide-hero__content {
    width: min(calc(100% - 28px), var(--container));
  }

  h1,
  .guide-hero h1 {
    font-size: 35px;
    line-height: 1.1;
  }

  h2 {
    font-size: 28px;
  }

  .guide-hero__content {
    padding-block: 45px 40px;
  }

  .guide-hero__lead {
    margin-top: 17px;
    font-size: 15px;
  }

  .guide-hero__actions {
    display: grid;
    margin-top: 23px;
  }

  .guide-hero__actions .button {
    width: 100%;
  }

  .guide-hero__topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-top: 25px;
  }

  .guide-hero__media {
    aspect-ratio: 16 / 10;
  }

  .guide-grid,
  .pathway__steps,
  .product-topic-grid {
    grid-template-columns: 1fr;
  }

  .guide-card__body {
    min-height: 0;
  }

  .pathway__inner {
    padding-block: 50px;
  }

  .pathway__step,
  .pathway__step:nth-child(3) {
    grid-column: auto;
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .pathway__step:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .product-topic {
    min-height: 0;
  }

  .medical-band__inner {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .medical-band .button {
    grid-column: auto;
    width: 100%;
  }

  .faq-item summary {
    min-height: 70px;
    font-size: 16px;
  }

  .faq-item__answer {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-enabled .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
