@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-grotesque-latin-20260729.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("/assets/fonts/source-serif-4-latin-20260729.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --font-display: "Bricolage Grotesque";
  --font-body: "Source Serif 4";
}

:root {
  --navy: #092d3b;
  --navy-deep: #061f2b;
  --teal: #0f6670;
  --sea: #1599a3;
  --coral: #ef6f55;
  --sand: #f2e7d5;
  --paper: #fffdf7;
  --ink: #17343d;
  --muted: #5e7479;
  --line: #d9e1dc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body), Georgia, serif;
  font-size: 18px;
  line-height: 1.72;
}

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

h1,
h2,
h3,
strong,
.brand,
.button,
.eyebrow,
.desktop-nav,
.mobile-menu,
.aside-label,
.path-label,
.path-link,
.related-card em,
.footer-kicker {
  font-family: var(--font-display), Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 31, 43, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1220px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  position: relative;
}

.brand-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  position: absolute;
  bottom: -3px;
  background: var(--navy-deep);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: #a9c6ca;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  color: #d9e9e9;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--sand);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(9, 45, 59, 0.98), rgba(8, 73, 82, 0.96)),
    var(--navy);
  color: var(--white);
  padding: 78px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -240px;
  top: -280px;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.hero-home {
  padding-top: 104px;
  padding-bottom: 112px;
}

.hero-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: 78px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  color: #a8c5c8;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 24px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #a8d9d6;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero:not(.hero-home) h1 {
  font-size: clamp(40px, 5.1vw, 68px);
}

.hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: #d4e4e4;
  font-size: 20px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 750;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
}

.button-primary:hover {
  background: #ff8066;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--sand);
  color: var(--sand);
}

.compass-panel {
  min-height: 390px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  display: grid;
  place-items: center;
  position: relative;
}

.compass-panel::before,
.compass-panel::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--coral);
}

.compass-panel::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid var(--coral);
  border-left: 2px solid var(--coral);
}

.compass-panel::after {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
}

.compass {
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  position: relative;
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.03),
    inset 0 0 0 13px rgba(255, 255, 255, 0.12);
}

.compass::before,
.compass::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}

.compass::before {
  width: 1px;
  height: 100%;
  left: 50%;
}

.compass::after {
  width: 100%;
  height: 1px;
  top: 50%;
}

.compass span:not(.needle, .compass-center) {
  position: absolute;
  color: #d7e7e7;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 12px;
  font-weight: 750;
}

.north {
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

.east {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.south {
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}

.west {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.needle {
  position: absolute;
  width: 4px;
  height: 120px;
  left: calc(50% - 2px);
  top: 45px;
  background: linear-gradient(to bottom, var(--coral) 0 48%, var(--sand) 48% 100%);
  clip-path: polygon(50% 0, 100% 48%, 68% 50%, 68% 100%, 32% 100%, 32% 50%, 0 48%);
  transform: rotate(28deg);
  transform-origin: 50% 50%;
}

.compass-center {
  position: absolute;
  width: 13px;
  height: 13px;
  left: calc(50% - 6.5px);
  top: calc(50% - 6.5px);
  background: var(--sand);
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.panel-copy {
  text-align: center;
  display: grid;
  gap: 3px;
}

.panel-copy span,
.panel-copy small {
  color: #a8c5c8;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-copy strong {
  font-size: 18px;
}

.wave-line {
  position: absolute;
  right: -10px;
  left: -10px;
  bottom: 24px;
  display: grid;
  gap: 7px;
  opacity: 0.28;
}

.wave-line span {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 22px,
    rgba(255, 255, 255, 0.8) 22px 64px,
    transparent 64px 86px
  );
}

.learning-paths,
.related-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.learning-paths {
  padding: 92px 0 72px;
}

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

.section-heading > span {
  color: var(--coral);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.path-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.path-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  border-color: #9fbab7;
  box-shadow: 0 20px 45px rgba(9, 45, 59, 0.09);
}

.path-number {
  align-self: flex-end;
  color: #dce5e1;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.path-label {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.path-card strong {
  margin-top: 9px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.18;
}

.path-card p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.path-link {
  margin-top: auto;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.article-layout {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 84px;
  scroll-margin-top: 90px;
}

.hero-home + .learning-paths + .article-layout {
  border-top: 1px solid var(--line);
}

.content-section {
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(29px, 3vw, 41px);
  line-height: 1.13;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.content-section h3 {
  margin: 34px 0 10px;
  color: var(--teal);
  font-size: 23px;
  line-height: 1.25;
}

.content-section p {
  margin: 0 0 18px;
}

.subsection {
  padding-left: 24px;
  border-left: 3px solid var(--sand);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.table-wrap {
  overflow-x: auto;
  margin: 27px 0;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.45;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

tbody th {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
}

tbody tr:nth-child(even) {
  background: #f5f7f3;
}

.source-note {
  margin-top: 28px !important;
  padding: 18px 20px;
  border-left: 3px solid var(--sea);
  background: #eaf5f3;
  display: grid;
  gap: 2px;
}

.source-note span {
  color: var(--muted);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.source-note a {
  color: var(--teal);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 14px;
  font-weight: 750;
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.aside-label {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aside-card > strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

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

.archive-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 9px;
  background: var(--sand);
  color: #765a37;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 10px;
  font-weight: 750;
}

.keywords-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keywords-card li {
  padding: 5px 8px;
  background: #edf4f2;
  color: var(--teal);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 11px;
  font-weight: 650;
}

.print-card {
  background: var(--navy);
  color: var(--white);
}

.print-card > strong {
  color: var(--white);
}

.print-card p {
  color: #c7dcdd;
}

.related-section {
  padding: 84px 0 94px;
  border-top: 1px solid var(--line);
}

.related-card {
  min-height: 260px;
  padding: 27px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.related-card > span {
  color: var(--coral);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.related-card strong {
  margin-top: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.related-card p {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.related-card em {
  margin-top: auto;
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.final-cta {
  padding: 78px 40px;
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

.final-cta > span {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 760px;
  margin: 10px auto 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.final-cta a {
  display: inline-block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 76px 0 28px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.7fr;
  gap: 70px;
}

.footer-kicker {
  color: #91b9bc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid h2 {
  max-width: 520px;
  margin: 10px 0 14px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.footer-grid p {
  max-width: 570px;
  margin: 0;
  color: #a9c4c6;
  font-size: 15px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid > div:not(:first-child) a {
  color: #b9d0d1;
  font-size: 14px;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7fa4a7;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-weight: 750;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    width: 220px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 48px;
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    display: grid;
  }

  .mobile-menu nav a {
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 700;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .compass-panel {
    min-height: 300px;
    grid-template-columns: auto 1fr;
    gap: 35px;
  }

  .compass {
    width: 180px;
    height: 180px;
  }

  .needle {
    height: 104px;
    top: 38px;
  }

  .panel-copy {
    text-align: left;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .path-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .path-card:last-child,
  .related-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .hero-home {
    padding: 65px 0 78px;
  }

  .hero-grid,
  .learning-paths,
  .related-section,
  .article-layout,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .hero h1,
  .hero:not(.hero-home) h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .compass-panel {
    min-height: 360px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .panel-copy {
    text-align: center;
  }

  .learning-paths,
  .related-section {
    padding: 68px 0;
  }

  .path-grid,
  .related-grid,
  .article-aside,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .path-card:last-child,
  .related-card:last-child {
    grid-column: auto;
  }

  .article-layout {
    padding: 68px 0;
  }

  .content-section {
    padding-bottom: 36px;
    margin-bottom: 38px;
  }

  .subsection {
    padding-left: 16px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-grid h2 {
    font-size: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .compass-panel,
  .article-aside,
  .related-section,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  .hero {
    padding: 24px 0;
    background: white;
    color: black;
  }

  .hero-copy > p,
  .eyebrow,
  .breadcrumb {
    color: black;
  }

  .hero-grid,
  .article-layout {
    width: 100%;
    display: block;
  }

  .article-layout {
    padding: 20px 0;
  }

  .content-section {
    break-inside: avoid;
  }
}


.screen-reader-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.screen-reader-link:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: #ffffff;
  color: #061f2b;
}
.mobile-menu .mobile-nav {
  width: 220px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 48px;
  background: #ffffff;
  color: #092d3b;
  display: grid;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.mobile-menu .mobile-nav a {
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 700;
}
