.elementor-1404 .elementor-element.elementor-element-b87f34f{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-4ccf702 *//* ===== Base ===== */
:root {
  --navy: #093250;
  --navy-light: #0d4a78;
  --text: #141b22;
  --text-body: #232e37;
  --muted: #5b6b78;
  --muted-light: #8b98a3;
  --border: #e7ebee;
  --bg-soft: #f4f6f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--navy-light);
}

::selection {
  background: #09325033;
}

img {
  display: block;
  max-width: 100%;
}

.serif {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy);
  font-size: 15px;
  white-space: nowrap;
}

.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #3d4a54;
  text-transform: uppercase;
}

.nav a {
  color: #3d4a54;
}

.nav a.is-active {
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 4px;
}

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  color: #ffffff;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid #ffffff44;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #cfe0ee;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 24px;
}

.hero__lede {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: #d7e3ee;
  max-width: 520px;
  margin: 0 0 28px;
}

.hero__quote {
  margin: 0;
  border-left: 3px solid #ffffff55;
  padding-left: 20px;
}

.hero__quote p {
  font-size: clamp(19px, 2.4vw, 22px);
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 8px;
}

.hero__quote cite {
  font-style: normal;
  font-size: 13px;
  color: #9fb6c9;
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px #00000066;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -16px;
  background: #ffffff;
  color: var(--navy);
  padding: 14px 20px;
  border-radius: 4px;
  box-shadow: 0 20px 40px -16px #00000055;
}

.hero__badge-year {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.hero__badge-label {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== Stats strip ===== */
.stats {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.stats__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 36px;
  column-gap: 0;
}

.stat {
  position: relative;
  text-align: center;
  padding: 0 20px;
}

/* Dividers are drawn as pseudo-elements, not borders, so the vertical
   and horizontal lines can be inset independently — they stop short of
   each other at the corners instead of merging into an L, and stop
   short of the text instead of touching it. */
.stat:nth-child(2n)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}

.stat:nth-child(n+3)::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--border);
}

@media (min-width: 640px) {
  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat:nth-child(n+3)::after {
    content: none;
  }

  .stat:nth-child(2n)::before {
    content: none;
  }

  .stat:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--border);
  }
}

.stat__value {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy);
}

.stat__label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* ===== Article ===== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 24px 40px;
}

.article p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-body);
  margin: 0 0 22px;
}

.article p.lede {
  font-size: 19px;
  line-height: 1.85;
}

.article .drop-cap {
  float: left;
  font-size: 76px;
  font-weight: 800;
  line-height: 0.8;
  color: var(--navy);
  margin: 6px 14px 0 0;
}

.article h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin: 56px 0 20px;
}

.article figure {
  margin: 44px 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
}

.article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article figure.is-contain img {
  object-fit: contain;
}

.pull-quote {
  background: var(--bg-soft);
  border-radius: 4px;
  padding: clamp(24px, 5vw, 40px);
  margin: 48px 0;
  border: 0;
}

.pull-quote--dark {
  background: var(--navy);
}

.pull-quote p {
  font-size: clamp(19px, 3vw, 24px);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  margin: 0;
}

.pull-quote--dark p {
  color: #ffffff;
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 0;
}

.pull-quote--dark cite {
  color: #9fb6c9;
}

.article__source {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted-light);
}

/* ===== CTA / Footer ===== */
.cta {
  background: var(--navy);
  color: #ffffff;
  margin-top: 40px;
}

.cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}

.cta__text {
  color: #c3d5e3;
  margin: 0;
  font-size: 15px;
}

.cta__button {
  background: #ffffff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  display: inline-block;
}

.cta__button:hover {
  color: var(--navy-light);
}

.site-footer {
  border-top: 1px solid #ffffff22;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9fb6c9;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__inner a {
  color: #9fb6c9;
}

/* ===== Mobile type scale ===== */
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__lede {
    font-size: 15px;
  }

  .hero__quote p {
    font-size: 17px;
  }

  .stat__value {
    font-size: 22px;
  }

  .stat__label {
    font-size: 12px;
  }

  .article p {
    font-size: 16px;
  }

  .article p.lede {
    font-size: 16px;
  }

  .article .drop-cap {
    font-size: 56px;
  }

  .article h2 {
    font-size: 22px;
    margin: 40px 0 16px;
  }

  .pull-quote p {
    font-size: 17px;
  }

  .cta__title {
    font-size: 21px;
  }

  .cta__text {
    font-size: 14px;
  }
}/* End custom CSS */