@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #102f2d;
  --ink-soft: #41605d;
  --paper: #f5f7f2;
  --white: #fff;
  --mint: #a6e5df;
  --mint-light: #dff5f1;
  --teal: #166b68;
  --teal-dark: #0b4745;
  --lime: #d9ef93;
  --coral: #ef8e6f;
  --line: rgba(16, 47, 45, .14);
  --shadow: 0 24px 70px rgba(13, 56, 53, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.68 "DM Sans", sans-serif;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -.04em;
}
h1 { margin-bottom: 28px; font-size: clamp(3.2rem, 6vw, 6rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4.3vw, 4.4rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
em {
  color: var(--teal);
  font-family: Georgia, serif;
  font-weight: 400;
}
.section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 105px 46px;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--teal);
  font: 800 .8rem "Manrope", sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--mint); }
.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.22rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 12px 28px rgba(37, 131, 125, .18);
  font: 700 .92rem "Manrope", sans-serif;
  text-decoration: none;
}
.button:hover { background: var(--lime); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 700;
  text-underline-offset: 5px;
}
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(26px, calc((100vw - 1188px) / 2));
  background: rgba(245, 247, 242, .92);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 800 1rem "Manrope", sans-serif;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a { font-size: .84rem; font-weight: 700; text-decoration: none; }
.site-nav .nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}
.preview-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.preview-switch a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
}
.preview-switch .active { color: var(--ink); background: var(--mint-light); }
.article-hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 65px;
  align-items: center;
  padding-top: 70px;
}
.hero-copy { min-width: 0; }
.hero-actions { display: flex; gap: 26px; align-items: center; margin-top: 36px; }
.hero-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 180px 180px 28px 28px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}
.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(8, 47, 46, .34));
}
.hero-note {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  max-width: 300px;
  margin: 0;
  padding: 22px 24px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(16, 47, 45, .92);
  font: 600 1rem/1.48 "Manrope", sans-serif;
}
.intro-band {
  max-width: none;
  color: var(--white);
  background: var(--ink);
}
.intro-band .section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.intro-band h2 { color: var(--white); font-size: clamp(2.2rem, 4vw, 4rem); }
.intro-band em { color: var(--mint); }
.intro-band p { color: rgba(255,255,255,.78); }
.signal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.signal-list li {
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  position: relative;
}
.signal-list li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}
.editorial-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.editorial-copy {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}
.pullquote {
  margin: 0;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
  font: 600 1.65rem/1.45 "Manrope", sans-serif;
  letter-spacing: -.03em;
}
.pullquote-spaced { margin-top: 65px; }
.cards-section { max-width: none; background: var(--mint-light); }
.section-heading { max-width: 820px; margin: 0 auto 55px; text-align: center; }
.section-heading p:last-child { max-width: 650px; margin-right: auto; margin-left: auto; color: var(--ink-soft); }
.section-heading-left { margin-left: 0; text-align: left; }
.section-heading-left p:last-child { margin-left: 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1188px;
  margin: 0 auto;
  gap: 18px;
}
.card {
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
}
.card:nth-child(2) { color: var(--white); background: var(--teal-dark); }
.card:nth-child(2) h3 { color: var(--white); }
.card:nth-child(2) p { color: rgba(255,255,255,.75); }
.card-number {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 65px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font: 800 .85rem "Manrope", sans-serif;
}
.card:nth-child(2) .card-number { color: var(--ink); background: var(--mint); }
.card p { color: var(--ink-soft); font-size: .92rem; }
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 90px .72fr 1fr;
  gap: 35px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font: 800 1rem "Manrope", sans-serif;
}
.step p { color: var(--ink-soft); }
.example-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  margin-top: 70px;
  padding: 55px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal-dark);
}
.example-panel h2 { color: var(--white); font-size: clamp(2.1rem, 3.6vw, 3.8rem); }
.example-panel em { color: var(--mint); }
.example-panel ul { margin: 0; padding: 0; list-style: none; }
.example-panel li {
  padding: 14px 0 14px 35px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  position: relative;
}
.example-panel li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 800;
}
.role-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.role-copy, .context-card {
  padding: 52px;
  border-radius: var(--radius);
}
.role-copy { background: var(--white); }
.role-copy p, .context-card p { color: var(--ink-soft); }
.context-card { background: var(--mint-light); }
.context-card ul { padding-left: 20px; }
.crosslink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 50px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.crosslink p { margin-bottom: 5px; color: var(--ink-soft); }
.crosslink h3 { margin: 0; font-size: 1.7rem; }
.cta-section {
  max-width: none;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 65px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 95px 46px;
}
.cta-inner h2 { color: var(--white); }
.cta-inner em { color: var(--mint); }
.cta-inner p { max-width: 720px; color: rgba(255,255,255,.75); }
.cta-panel {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}
.cta-panel p { color: var(--ink-soft); }
.cta-panel .button { width: 100%; }
.cta-text-link {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 700;
  text-align: center;
  text-underline-offset: 5px;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 44px max(26px, calc((100vw - 1188px) / 2));
  color: rgba(255,255,255,.7);
  background: #082f2e;
  font-size: .83rem;
}
.site-footer p { margin: 0; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 18px; }
.site-footer a { text-decoration: none; }
.footer-title { color: var(--white); }
.site-footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }

@media (max-width: 980px) {
  .site-nav > a:not(.nav-cta) { display: none; }
  .article-hero, .intro-band .section, .editorial-split, .cta-inner { grid-template-columns: 1fr; }
  .hero-image { min-height: 520px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card { min-height: 300px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 72px 22px; }
  .site-header { min-height: 68px; padding: 9px 20px; }
  .brand img { width: 40px; height: 40px; }
  .site-nav .nav-cta { padding: 10px 13px; font-size: .72rem; }
  .preview-switch { justify-content: flex-start; overflow-x: auto; }
  .preview-switch a { white-space: nowrap; }
  .article-hero { gap: 45px; padding-top: 48px; }
  h1 { font-size: clamp(2.65rem, 12vw, 4rem); overflow-wrap: anywhere; }
  h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-image { min-height: 430px; border-radius: 110px 110px 24px 24px; }
  .hero-note { right: 18px; bottom: 18px; left: 18px; max-width: none; }
  .intro-band .section { gap: 28px; }
  .signal-list, .card-grid, .role-section, .example-panel, .site-footer { grid-template-columns: 1fr; }
  .editorial-split { gap: 35px; }
  .pullquote { padding: 30px; font-size: 1.3rem; }
  .card { min-height: auto; }
  .card-number { margin-bottom: 42px; }
  .step { grid-template-columns: 55px 1fr; gap: 18px; }
  .step p { grid-column: 2; }
  .example-panel { gap: 25px; margin-top: 45px; padding: 32px 25px; }
  .role-copy, .context-card { padding: 32px 26px; }
  .crosslink { align-items: flex-start; flex-direction: column; padding: 32px 26px; }
  .cta-inner { gap: 28px; padding: 75px 22px; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; }
}
