:root {
  color-scheme: light;
  --ink: #1f3556;
  --ink-soft: #4f6070;
  --paper: #f7f3ec;
  --paper-warm: #d8c4a3;
  --surface: #fffdf8;
  --navy: #1f3556;
  --copper: #c67a45;
  --sand: #d8c4a3;
  --slate: #6c7682;
  --line: rgba(31, 53, 86, 0.16);
  --shadow: 0 24px 70px rgba(31, 53, 86, 0.12);
  --max-width: 1180px;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.root-page {
  min-height: 100vh;
}

body.insight-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(360px, 2fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.75rem);
  background: rgba(247, 243, 236, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(14.5rem, 100%);
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 4.85rem;
  height: auto;
  object-fit: contain;
}

.main-nav,
.language-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav {
  justify-content: center;
  flex-wrap: wrap;
}

.language-nav {
  justify-content: flex-end;
}

.main-nav a,
.language-nav a {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.language-nav a:hover,
.main-nav a:focus-visible,
.language-nav a:focus-visible,
.main-nav a[aria-current="page"],
.language-nav a[aria-current="page"] {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.82);
  outline: none;
}

.hero {
  position: relative;
  min-height: min(720px, 72vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.root-hero {
  min-height: 100vh;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 53, 86, 0.92), rgba(31, 53, 86, 0.68) 48%, rgba(31, 53, 86, 0.12)),
    linear-gradient(0deg, rgba(31, 53, 86, 0.58), rgba(31, 53, 86, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
  color: var(--surface);
}

.root-logo {
  display: block;
  width: min(23rem, 100%);
  height: auto;
  margin: 0 0 1.35rem;
  padding: 0.5rem;
  background: var(--surface);
  border-radius: 8px;
}

.hero-content h1 {
  max-width: 900px;
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 5.05rem;
  line-height: 1;
  font-weight: 700;
}

.hero-content p {
  max-width: 700px;
  margin: 1.25rem 0 0;
  font-size: 1.22rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sand);
}

.text-link,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  margin-top: 1.6rem;
  padding: 0.75rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.hero-link {
  color: var(--surface);
}

.hero-trust-card {
  width: min(100%, 25rem);
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.93);
  border: 1px solid rgba(255, 253, 248, 0.64);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(31, 53, 86, 0.18);
}

.hero-trust-card img {
  display: block;
  width: 5.25rem;
  height: auto;
}

.hero-trust-card strong,
.hero-trust-card span {
  display: block;
}

.hero-trust-card strong {
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-trust-card span {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.4;
}

.button-link {
  color: var(--surface);
  background: var(--navy);
  border-color: var(--navy);
}

button.button-link {
  font: inherit;
  cursor: pointer;
}

.button-link:hover,
.button-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.section {
  padding: 6rem clamp(1rem, 3vw, 2.75rem);
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.two-column,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4.5rem;
  align-items: start;
}

.intro-section,
.cta-section {
  background: var(--surface);
}

.intro-section h2,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 700;
}

.large-body,
.cta-layout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.intro-section .large-body {
  margin-top: 2.1rem;
}

.muted-section {
  background: color-mix(in srgb, var(--sand) 48%, var(--paper));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.focus-item {
  min-height: 15rem;
  padding: 1.55rem;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.focus-item h3 {
  margin: 0 0 0.85rem;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 1.42rem;
  line-height: 1.15;
  font-weight: 700;
}

.focus-item p {
  margin: 0;
  color: var(--ink-soft);
}

.related-link {
  width: min(100%, 38rem);
  display: grid;
  gap: 0.25rem;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.related-link span {
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-weight: 700;
}

.related-link small {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.related-link:hover,
.related-link:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.insights-section {
  background: var(--paper);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.insight-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.insight-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.insight-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card__content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.85rem;
  padding: 1.35rem;
}

.insight-card__category,
.insight-modal__category {
  margin: 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 1.55rem;
  line-height: 1.13;
}

.insight-card p {
  margin: 0;
  color: var(--ink-soft);
}

.insight-card__button {
  justify-self: start;
  margin-top: 0.4rem;
}

.insight-modal[hidden] {
  display: none;
}

.insight-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.insight-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 53, 86, 0.72);
}

.insight-modal__panel {
  position: relative;
  width: min(100%, 46rem);
  max-height: min(760px, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--surface);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(31, 53, 86, 0.28);
  outline: none;
}

.insight-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.insight-modal__close:hover,
.insight-modal__close:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.insight-modal h2 {
  max-width: 34rem;
  margin: 0.5rem 3rem 1.25rem 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 2.35rem;
  line-height: 1.08;
}

.insight-modal__body {
  display: grid;
  gap: 0.9rem;
}

.insight-modal__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.insight-modal__download {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.phases-section {
  background: var(--surface);
}

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

.phase-card {
  min-height: 19rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.phase-card span {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  background: var(--navy);
  border-radius: 50%;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-weight: 700;
}

.phase-card h3 {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 1.22rem;
  line-height: 1.18;
}

.phase-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: 4rem;
}

.outcome-layout h2 {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 3.1rem;
  line-height: 1.08;
}

.outcome-layout p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  min-height: 4rem;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-layout {
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.contact-details {
  display: grid;
  gap: 0.45rem;
  margin: 1.35rem 0 0;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-style: normal;
}

.contact-details a {
  color: var(--navy);
}

.partners-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.partners-copy {
  max-width: 28rem;
}

.partners-copy h2 {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 700;
}

.partners-copy p:last-child {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.partner-marquee {
  width: min(100%, 52rem);
  justify-self: end;
  overflow: hidden;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 42s linear infinite;
}

.partner-set {
  display: flex;
  gap: 1rem;
  padding-inline-end: 1rem;
}

.partner-logo-card {
  flex: 0 0 15rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(31, 53, 86, 0.12);
  border-radius: 8px;
}

.partner-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 3.9rem;
  object-fit: contain;
}

@keyframes partner-scroll {
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  padding: 2.2rem clamp(1rem, 3vw, 2.75rem);
  background: var(--navy);
  color: var(--surface);
}

.footer-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr) minmax(260px, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-logo {
  width: min(17rem, 100%);
  height: auto;
  object-fit: contain;
  padding: 0.5rem;
  background: var(--surface);
  border-radius: 8px;
}

.footer-brand span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.site-footer a {
  color: var(--surface);
}

.footer-note {
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  color: var(--surface);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.language-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.language-choice {
  width: min(100%, 16rem);
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: 8px;
  color: var(--surface);
  background: rgba(31, 53, 86, 0.42);
  text-decoration: none;
}

.language-choice span {
  font-family: Manrope, Inter, "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.language-choice small,
.route-note {
  color: rgba(255, 253, 248, 0.78);
}

.route-note {
  max-width: 33rem;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 12.75rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .intro-section h2,
  .section-heading h2,
  .cta-section h2 {
    font-size: 2.45rem;
  }

  .two-column,
  .cta-layout,
  .outcome-layout,
  .partners-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .phase-grid,
  .outcome-list,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section .large-body {
    margin-top: 0;
  }

  .partner-marquee {
    justify-self: stretch;
    width: 100%;
  }

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

  .focus-item {
    min-height: auto;
  }

  .phase-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    padding: 0.9rem 1rem;
    gap: 0.6rem;
  }

  .brand {
    width: 11.2rem;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.22rem;
  }

  .main-nav a,
  .language-nav a {
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.36rem 0.25rem;
    font-size: 0.78rem;
    text-align: center;
    white-space: normal;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 53, 86, 0.94), rgba(31, 53, 86, 0.74)),
      linear-gradient(0deg, rgba(31, 53, 86, 0.68), rgba(31, 53, 86, 0.18));
  }

  .hero-content {
    width: min(100% - 1.5rem, var(--max-width));
    padding: 2.4rem 0;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .two-column,
  .cta-layout {
    gap: 2rem;
  }

  .intro-section h2,
  .section-heading h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .large-body,
  .cta-layout p {
    font-size: 1rem;
  }

  .hero-trust-card {
    grid-template-columns: 4.4rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .hero-trust-card img {
    width: 4.15rem;
  }

  .phase-grid,
  .outcome-list,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight-card__content {
    padding: 1.1rem;
  }

  .insight-card h3 {
    font-size: 1.35rem;
  }

  .insight-modal {
    align-items: end;
    padding: 0.75rem;
  }

  .insight-modal__panel {
    max-height: calc(100vh - 1.5rem);
    padding: 1.25rem;
  }

  .insight-modal h2 {
    margin-right: 2.6rem;
    font-size: 1.75rem;
  }

  .outcome-layout h2 {
    font-size: 2rem;
  }

  .partners-copy h2 {
    font-size: 1.95rem;
  }

  .partner-set {
    gap: 0.75rem;
    padding-inline-end: 0.75rem;
  }

  .partner-logo-card {
    flex-basis: 11.5rem;
    height: 5.6rem;
    padding: 0.85rem 1rem;
  }

  .partner-logo-card img {
    max-height: 3.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee {
    overflow-x: auto;
  }

  .partner-track {
    animation: none;
  }
}
