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

:root {
  --brand-blue: #0735ad;
  --brand-blue-dark: #021d6a;
  --cta-blue: #0b38b8;
  --cta-blue-hover: #082d96;
  --border: #e5ebf4;
  --ticker-red: #ff241a;
  --ticker-green: #1e8c63;
  --site-width: 1320px;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: #fafafc;
  color: var(--brand-blue-dark);
  font-family: Inter, "SF Pro Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  width: 100%;
  background: #ffffff;
}

.header-primary {
  height: 116px;
  border-bottom: 1px solid var(--border);
}

.header-inner,
.ticker-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr) 143px;
  align-items: center;
  column-gap: 64px;
  height: 100%;
}

.brand {
  display: inline-block;
  width: max-content;
}

.brand-logo {
  display: block;
  width: 97px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  height: 100%;
  gap: 24px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--brand-blue-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--brand-blue);
}

.nav-link.is-active::after {
  background: #0b46ff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: 43px;
  border-radius: 5px;
  background: var(--cta-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--cta-blue-hover);
}

.header-cta:active {
  transform: translateY(1px);
}

.ticker-strip {
  min-height: 44px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.ticker-inner {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.ticker-symbol {
  color: var(--brand-blue-dark);
}

.ticker-inner.is-loading [data-stock-price] {
  display: inline-block;
  width: 58px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dfe6f2 0%, #f1f4f9 48%, #dfe6f2 100%);
  background-size: 180% 100%;
  color: transparent;
  vertical-align: middle;
  animation: ticker-loading 1.2s ease-in-out infinite;
}

.ticker-inner.is-loading .ticker-arrow,
.ticker-inner.is-loading .ticker-change {
  visibility: hidden;
  opacity: 0;
}

.ticker-change.is-negative {
  color: var(--ticker-red);
}

.ticker-change.is-positive {
  color: var(--ticker-green);
}

.ticker-change.is-neutral {
  color: #5c6983;
}

.ticker-arrow {
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transform: translateY(1px);
}

.ticker-arrow.is-negative {
  border-top: 8px solid var(--ticker-red);
}

.ticker-arrow.is-positive {
  border-bottom: 8px solid var(--ticker-green);
}

.ticker-arrow.is-neutral {
  width: 8px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: #5c6983;
}

@keyframes ticker-loading {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

#app {
  min-height: 240px;
}

.investors-page-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: #fafafc;
}

.investors-page-nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(var(--site-width), calc(100% - 48px));
  min-height: 64px;
  margin: 0 auto;
  gap: 48px;
}

.investors-page-nav a {
  color: #071e65;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 160ms ease;
}

.investors-page-nav a:hover,
.investors-page-nav a:focus-visible {
  color: var(--brand-blue);
}

.hero {
  position: relative;
  min-height: 522px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 14, 0.96) 0%, rgba(3, 8, 18, 0.88) 24%, rgba(5, 10, 20, 0.56) 51%, rgba(5, 10, 20, 0.08) 100%),
    url("./hero-bg.webp");
  background-position: center 47%;
  background-size: cover;
  color: #ffffff;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(420px, 470px);
  justify-content: space-between;
  align-items: center;
  width: min(var(--site-width), calc(100% - 48px));
  min-height: 522px;
  margin: 0 auto;
  padding: 28px 0;
}

.hero-copy {
  max-width: 510px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  margin: 0 0 18px;
  padding: 0 16px;
  border: 1px solid rgba(61, 127, 255, 0.2);
  border-radius: 999px;
  background: rgba(17, 67, 178, 0.72);
  box-shadow: 0 7px 22px rgba(6, 20, 55, 0.28);
  color: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: #ffffff;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(1, 8, 27, 0.46);
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  color: #1257f1;
}

.hero-description {
  max-width: 462px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(1, 8, 27, 0.4);
}

.hero-estimator {
  width: 100%;
  min-height: 444px;
  padding: 34px 37px 24px;
  border: 1px solid rgba(208, 213, 221, 0.84);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(1, 12, 41, 0.28);
  color: var(--brand-blue-dark);
  text-align: center;
}

.estimator-title {
  margin: 0 0 22px;
  color: var(--brand-blue-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.estimator-block {
  margin: 0;
}

.estimator-label {
  margin: 0 0 13px;
  color: #1c2d66;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.estimator-value {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.estimator-value span {
  font-size: inherit;
  font-weight: inherit;
}

.estimator-value-primary {
  color: #071e65;
}

.estimator-value-success {
  color: #0b8c48;
}

.estimator-slider {
  --slider-progress: 0%;
  margin: 31px 0 38px;
}

.slider-track {
  position: relative;
  height: 16px;
  margin: 0 10px;
}

.slider-track::before,
.slider-fill {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
}

.slider-track::before {
  background: #e1e6f1;
}

.slider-fill {
  right: auto;
  width: var(--slider-progress);
  background: #123fc5;
}

.slider-dot {
  position: absolute;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dbe2ef;
  transform: translateX(-50%);
}

.slider-dot.is-active {
  top: 2px;
  width: 13px;
  height: 13px;
  background: #123fc5;
  box-shadow: 0 2px 6px rgba(18, 63, 197, 0.28);
}

.estimator-range {
  position: absolute;
  z-index: 2;
  inset: 0 -3px;
  width: calc(100% + 6px);
  height: 16px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.slider-dot-1 {
  left: 0;
}

.slider-dot-2 {
  left: 25%;
}

.slider-dot-3 {
  left: 50%;
}

.slider-dot-4 {
  left: 75%;
}

.slider-dot-5 {
  left: 100%;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #617195;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.slider-labels button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.slider-labels button.is-active {
  color: #123fc5;
}

.slider-labels button:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(18, 63, 197, 0.35);
  outline-offset: 3px;
}

.estimator-income {
  margin-bottom: 27px;
}

.estimator-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border-radius: 5px;
  background: #153bc4;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 12px rgba(21, 59, 196, 0.18);
  transition: background-color 160ms ease, transform 160ms ease;
}

.estimator-cta:hover,
.estimator-cta:focus-visible {
  background: #0d309f;
}

.estimator-cta:active {
  transform: translateY(1px);
}

.estimator-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0;
  color: #56627b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.estimator-lock {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #56627b;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.logo-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.logo-strip-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 36px;
}

.logo-strip-title {
  margin: 0 0 17px;
  color: #0e43c3;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: start;
  gap: 34px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  margin: 0;
  color: #071e65;
  text-align: center;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 64px;
  color: #071e65;
}

.logo-asset img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-asset-01 img {
  max-height: 58px;
}

.logo-asset-02 img {
  max-height: 48px;
}

.logo-asset-03 img {
  max-height: 45px;
}

.logo-asset-04 img {
  max-height: 42px;
}

.logo-asset-05 img {
  max-height: 46px;
}

.logo-asset-06 img {
  max-height: 48px;
}

.logo-asset-07 img {
  max-height: 46px;
}

.logo-item figcaption {
  min-height: 40px;
  margin: 9px 0 0;
  color: #071e65;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
}

.quote-section {
  background: #ffffff;
}

.quote-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: center;
  gap: 112px;
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 38px;
}

.quote-media {
  overflow: hidden;
  border-radius: 6px;
}

.quote-media img {
  display: block;
  width: 100%;
  aspect-ratio: 568 / 414;
  object-fit: cover;
}

.quote-content {
  margin: 0;
  color: #071e65;
  transform: translateY(-2px);
}

.quote-icon {
  height: 54px;
  color: #0d45c5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 0.78;
}

.quote-content blockquote {
  margin: 0;
}

.quote-content h2 {
  max-width: 560px;
  margin: 3px 0 17px;
  color: #071e65;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

.quote-content p {
  max-width: 560px;
  margin: 0;
  color: #102d7a;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.58;
}

.quote-attribution {
  margin: 21px 0 0;
  color: #071e65;
}

.quote-divider {
  display: block;
  width: 60px;
  height: 3px;
  margin-bottom: 24px;
  background: #0d45c5;
}

.quote-attribution strong,
.quote-attribution span:not(.quote-divider) {
  display: block;
}

.quote-attribution strong {
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.quote-attribution span:not(.quote-divider) {
  color: #071e65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  height: 46px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 5px;
  background: #153bc4;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 7px 14px rgba(21, 59, 196, 0.20);
  transition: background-color 160ms ease, transform 160ms ease;
}

.quote-link span {
  font-size: 22px;
  line-height: 0.7;
  transform: translateY(1px);
}

.quote-link:hover,
.quote-link:focus-visible {
  background: #0d309f;
}

.quote-link:active {
  transform: translateY(1px);
}

.projects-section {
  background: #fafafc;
  border-top: 1px solid var(--border);
}

.projects-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 17px 0 36px;
}

.projects-eyebrow {
  margin: 0 0 8px;
  color: #0e43c3;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.projects-title {
  margin: 0 0 17px;
  color: #071e65;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid #e0e6ef;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04);
}

.project-card img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.project-card:nth-child(1) img {
  object-position: center 32%;
}

.project-card:nth-child(2) img {
  object-position: center 48%;
}

.project-card:nth-child(3) img {
  object-position: center 48%;
}

.project-card-body {
  padding: 18px 19px 18px;
}

.project-card h3 {
  margin: 0 0 8px;
  color: #071e65;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-description {
  min-height: 43px;
  margin: 0 0 18px;
  color: #071e65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.project-metrics {
  display: grid;
  gap: 12px;
}

.project-metrics span,
.project-metrics strong {
  display: block;
}

.project-metrics span {
  margin-bottom: 6px;
  color: #3d4f79;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.project-metrics strong {
  color: #071e65;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.project-metrics .project-income {
  color: #0b8c48;
  font-size: 20px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #0d45c5;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.project-link span {
  font-size: 25px;
  line-height: 0.7;
  transform: translateY(1px);
}

.steps-section {
  background: #ffffff;
}

.steps-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 64px;
}

.steps-eyebrow {
  margin: 0 0 8px;
  color: #0e43c3;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.steps-title {
  margin: 0 0 22px;
  color: #071e65;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr);
  align-items: stretch;
  gap: 26px;
}

.step-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  min-height: 176px;
  height: 100%;
  padding: 28px 30px 28px;
  border: 1px solid rgba(83, 132, 255, 0.24);
  border-radius: 8px;
  background: #071844;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 24, 68, 0.18);
}

.step-icon {
  width: 50px;
  height: 50px;
  padding: 10px;
  border: 1px solid rgba(112, 157, 255, 0.34);
  border-radius: 50%;
  background: rgba(21, 83, 215, 0.22);
  color: #78a4ff;
  fill: none;
  overflow: visible;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  margin: 0 0 10px;
  padding: 0 10px;
  border: 1px solid rgba(112, 157, 255, 0.24);
  border-radius: 999px;
  background: rgba(21, 83, 215, 0.22);
  color: #9bb9ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.step-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.step-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d45c5;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.stats-band {
  background: #071844;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 32px;
}

.stat-item {
  text-align: center;
  color: #ffffff;
}

.stat-item strong,
.stat-item span {
  display: block;
}

.stat-item strong {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.investors-overview {
  background: #fafafc;
}

.investors-overview-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 52px;
}

.investors-overview-copy {
  max-width: 1180px;
}

.investors-overview h1 {
  margin: 0 0 18px;
  color: #071e65;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

.investors-overview-kicker {
  margin: 0 0 12px;
  color: #071e65;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.investors-overview-copy > p:not(.investors-overview-kicker) {
  max-width: 1180px;
  margin: 0;
  color: #071e65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.investors-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.investors-market-card,
.investors-resource-column {
  min-height: 248px;
}

.investors-market-card {
  padding-right: 32px;
}

.investors-resource-column {
  padding-left: 32px;
  border-left: 1px solid #d5dbe6;
}

.market-company {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.market-company h2 {
  max-width: 180px;
  margin: 0;
  color: #071e65;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.market-company span {
  color: #071e65;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.market-price {
  margin: 0 0 26px;
  color: #071e65;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.market-price span {
  color: #0b8c48;
  font-size: 20px;
}

.market-metric + .market-metric {
  margin-top: 26px;
}

.market-metric h3 {
  max-width: 220px;
  margin: 0 0 7px;
  color: #071e65;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.market-metric strong {
  display: block;
  color: #071e65;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.investors-resource-column h2 {
  margin: 0 0 24px;
}

.investors-resource-column h2 a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #071e65;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.investors-resource-column h2 span {
  color: #0d45c5;
  font-size: 21px;
  line-height: 0.7;
}

.investors-resource-column ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investors-resource-column li,
.investors-resource-column li a {
  color: #071e65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.investors-resource-column a {
  transition: color 160ms ease;
}

.investors-resource-column a:hover,
.investors-resource-column a:focus-visible {
  color: #0d45c5;
}

.recent-news-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.recent-news-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 56px;
}

.recent-news-title {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 42px;
  color: #071e65;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

.recent-news-title span {
  color: #0d45c5;
  font-size: 34px;
  line-height: 0.7;
}

.recent-news-list {
  display: grid;
  gap: 34px;
}

.recent-news-item {
  max-width: 1180px;
}

.recent-news-item time {
  display: block;
  margin-bottom: 12px;
  color: #102d7a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.recent-news-item h3 {
  margin: 0;
  color: #071e65;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.why-invest-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.why-invest-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 64px;
}

.why-invest-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.why-invest-title {
  margin: 0 0 18px;
  color: #071e65;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

.why-invest-lede {
  margin: 0;
  color: #071e65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.why-invest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 56px;
}

.why-invest-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.why-invest-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.why-invest-icon img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.why-invest-body h3 {
  margin: 0 0 14px;
  color: #071e65;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}

.why-invest-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-invest-body li {
  position: relative;
  padding-left: 18px;
  color: #071e65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.why-invest-body li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d45c5;
  content: "";
}

.why-invest-body sup {
  margin-left: 1px;
  color: #0d45c5;
  font-size: 11px;
  font-weight: 800;
  vertical-align: super;
  line-height: 0;
}

.faqs-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.faqs-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 64px;
}

.faqs-header {
  max-width: 820px;
  margin-bottom: 36px;
}

.faqs-title {
  margin: 0 0 16px;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

.faqs-title a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: #071e65;
  transition: color 160ms ease;
}

.faqs-title a:hover,
.faqs-title a:focus-visible {
  color: #0d45c5;
}

.faqs-title span {
  color: #0d45c5;
  font-size: 34px;
  line-height: 0.7;
}

.faqs-lede {
  margin: 0;
  color: #071e65;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.faqs-panel {
  display: grid;
  gap: 0;
  padding: 24px;
  background: #eef2f8;
  border-radius: 4px;
}

.faq-item {
  background: #ffffff;
  border-top: 1px solid #d5dbe6;
}

.faq-item:first-of-type {
  border-top: 0;
}

.faq-item > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  color: #071e65;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

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

.faq-item > summary:hover,
.faq-item > summary:focus-visible {
  color: #0d45c5;
  outline: none;
}

.faq-toggle {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #0d45c5;
  transform: translate(-50%, -50%);
  content: "";
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 4px 22px 22px 54px;
  border-top: 1px solid #e5ebf4;
}

.faq-answer p {
  margin: 16px 0 0;
  color: #071e65;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.faq-answer a {
  color: #0d45c5;
  font-weight: 700;
  transition: color 160ms ease;
}

.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: #082d96;
  text-decoration: underline;
}

.lead-section {
  background: #fafafc;
  border-top: 1px solid var(--border);
}

.lead-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 72px;
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 56px;
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #071e65;
}

.lead-copy h1,
.lead-copy h2 {
  margin: 0 0 18px;
  color: #071e65;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

.lead-copy p {
  margin: 0 0 28px;
  color: #102d7a;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.58;
}

.lead-features {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-features li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #102d7a;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.58;
}

.lead-features li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d45c5;
  content: "";
}

.lead-form-card {
  display: grid;
  align-content: center;
  gap: 14px;
  height: 100%;
  padding: 27px 28px 24px;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.08);
}

.lead-form-card {
  min-height: 388px;
}

.lead-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.lead-form-card label {
  display: block;
}

.lead-form-card label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lead-form-card input {
  width: 100%;
  height: 58px;
  border: 1px solid #d0d7e4;
  border-radius: 10px;
  background: #ffffff;
  color: #071e65;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  padding: 0 20px;
}

.lead-form-card input::placeholder {
  color: #a5aebb;
  opacity: 1;
}

.lead-form-card input:focus {
  border-color: #0d45c5;
  box-shadow: 0 0 0 3px rgba(13, 69, 197, 0.16);
}

.lead-phone-field {
  position: relative;
  height: 58px;
  border: 1px solid #d0d7e4;
  border-radius: 10px;
  background: #ffffff;
}

.lead-phone-field .iti {
  display: block;
  width: 100%;
  height: 100%;
}

.lead-phone-field input {
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.lead-phone-field:focus-within {
  border-color: #0d45c5;
  box-shadow: 0 0 0 3px rgba(13, 69, 197, 0.16);
}

.iti__dropdown-content {
  font: inherit;
  color: #071e65;
  border-radius: 10px;
  border: 1px solid #d0d7e4;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.iti__country-list,
.iti__country,
.iti__search-input {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.lead-form-card input.iti__search-input {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: calc(var(--iti-spacer-horizontal) + var(--iti-globe-icon-size) + var(--iti-spacer-horizontal));
  padding-right: calc(var(--iti-spacer-horizontal) + var(--iti-clear-icon-size) + var(--iti-spacer-horizontal));
}

.lead-form-card input.iti__search-input:focus {
  border: 0;
  box-shadow: none;
}

.iti__country.iti__highlight {
  background: rgba(13, 69, 197, 0.08);
}

.lead-form-card > button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  margin-top: 20px;
  border: 0;
  border-radius: 5px;
  background: #153bc4;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 7px 14px rgba(21, 59, 196, 0.20);
}

.lead-advisor-message {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 0 0 12px;
  color: #071e65;
  text-align: center;
}

.lead-advisor-message strong {
  color: #071e65;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
}

.lead-advisor-message span {
  color: #56627b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.lead-form-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 7px 0 0;
  color: #56627b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.lead-form-note svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #56627b;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.lead-form-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff1f1;
  border: 1px solid #f5c2c2;
  color: #9b1c1c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.lead-form-card input[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.14);
}

.lead-form-card.is-submitting {
  opacity: 0.85;
  pointer-events: none;
}

.thankyou-section {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 72px 24px 96px;
}

.thankyou-card {
  width: min(640px, 100%);
  padding: 40px 32px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(7, 53, 173, 0.08);
  text-align: center;
}

.thankyou-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
}

.thankyou-card p {
  margin: 0;
  color: #56627b;
  font-size: 16px;
  line-height: 1.6;
}

.thankyou-redirect-note {
  margin-top: 16px !important;
  font-size: 14px !important;
}

.thankyou-card .thankyou-cta {
  display: inline-flex;
  margin-top: 24px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--cta-blue);
  color: #ffffff;
  font-weight: 700;
}

.thankyou-card .thankyou-cta:hover {
  background: var(--cta-blue-hover);
}

.testimonials-section {
  background: #fafafc;
  border-top: 1px solid var(--border);
}

.testimonials-inner {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 44px;
}

.testimonials-eyebrow {
  margin: 0 0 8px;
  color: #0e43c3;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.testimonials-title {
  margin: 0 0 20px;
  color: #071e65;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 28px 28px 24px;
  border: 1px solid #e0e6ef;
  border-radius: 7px;
  background: #ffffff;
  color: #071e65;
}

.testimonial-header {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.testimonial-avatar {
  display: block;
  width: 56px;
  height: 56px;
  border: 2px solid #dbe5f4;
  border-radius: 50%;
  background: #eef4ff;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(7, 24, 68, 0.10);
}

.testimonial-card h3 {
  margin: 0 0 7px;
  color: #071e65;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.testimonial-stars {
  color: #f5b301;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 3px;
  white-space: nowrap;
}

.testimonial-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid #e5ebf4;
}

.testimonial-metrics div,
.testimonial-metrics dt,
.testimonial-metrics dd {
  margin: 0;
}

.testimonial-metrics dt {
  margin-bottom: 6px;
  color: #3d4f79;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.testimonial-metrics dd {
  color: #071e65;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.testimonial-metrics div:last-child dd {
  color: #23906f;
}

.testimonial-copy {
  margin: 0 0 22px;
  color: #071e65;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.site-footer {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 13% 5%, rgba(13, 69, 197, 0.22), transparent 28%),
    linear-gradient(90deg, #061638 0%, #071844 48%, #061638 100%);
  color: #ffffff;
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 340px;
  align-items: center;
  gap: 36px;
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 26px;
}

.footer-rocket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 3px solid #0b55d7;
  border-radius: 50%;
  background: rgba(3, 22, 67, 0.72);
  box-shadow: 0 0 20px rgba(13, 69, 197, 0.35);
}

.footer-rocket svg {
  width: 39px;
  height: 39px;
  color: #1267ff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-cta-copy h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.12;
}

.footer-cta-copy p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-cta-actions {
  display: grid;
  justify-items: stretch;
  gap: 15px;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 6px;
  background: #0b55d7;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.22);
}

.footer-secure-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.footer-secure-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-main-inner {
  display: grid;
  grid-template-columns: 310px minmax(120px, 1fr) minmax(180px, 1.25fr) minmax(150px, 1fr) 220px;
  align-items: start;
  gap: 52px;
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 32px;
}

.footer-logo {
  display: block;
  width: 103px;
  height: auto;
  margin: 0 0 14px;
  filter: brightness(0) invert(1);
}

.footer-brand-block p {
  max-width: 250px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #0b55d7;
  color: #ffffff;
}

.footer-socials svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footer-socials a[aria-label="Facebook"] svg {
  width: 10px;
}

.footer-column {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column h3 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.footer-cipf {
  display: grid;
  justify-items: center;
  align-self: center;
  min-height: 124px;
  padding: 18px 18px 16px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.04);
}

.footer-cipf-logo {
  display: block;
  width: 136px;
  height: auto;
  margin: 0;
}

.footer-cipf-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-cipf small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  min-height: 48px;
}

.footer-bottom p,
.footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-legal span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-legal span + span::before {
  position: absolute;
  left: -17px;
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.25);
  content: "";
}

.footer-legal b {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1120px) {
  .header-primary {
    height: auto;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    row-gap: 18px;
    padding: 24px 0 16px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    height: auto;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .nav-link {
    height: 32px;
    padding-top: 0;
  }

  .nav-link::after {
    bottom: 0;
  }
}

@media (max-width: 1180px) {
  .investors-page-nav-inner {
    min-height: 62px;
    gap: 42px;
  }

  .investors-overview h1 {
    font-size: 31px;
  }

  .investors-overview-kicker {
    font-size: 17px;
  }

  .investors-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .investors-market-card,
  .investors-resource-column {
    min-height: 0;
  }

  .investors-resource-grid > *:nth-child(odd) {
    padding-right: 36px;
    padding-left: 0;
    border-left: 0;
  }

  .investors-resource-grid > *:nth-child(even) {
    padding-left: 36px;
    border-left: 1px solid #d5dbe6;
  }

  .investors-resource-grid > *:nth-child(n+3) {
    padding-top: 38px;
    border-top: 1px solid #d5dbe6;
  }

  .logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
  }

  .quote-section-inner {
    gap: 56px;
  }

  .projects-grid {
    gap: 24px;
  }

  .steps-grid {
    gap: 28px;
  }

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

  .footer-cta-inner {
    grid-template-columns: 78px minmax(0, 1fr) 300px;
    gap: 28px;
  }

  .footer-rocket {
    width: 66px;
    height: 66px;
  }

  .footer-cta-copy h2 {
    font-size: 25px;
  }

  .footer-main-inner {
    grid-template-columns: 260px repeat(3, minmax(0, 1fr));
    gap: 36px;
  }

  .footer-cipf {
    grid-column: 1 / -1;
    justify-self: end;
    width: 220px;
  }
}

@media (max-width: 980px) {
  .investors-page-nav {
    overflow-x: auto;
  }

  .investors-page-nav-inner {
    width: max-content;
    min-width: calc(100% - 48px);
    min-height: 58px;
    gap: 38px;
  }

  .investors-overview-inner {
    padding: 40px 0 48px;
  }

  .investors-overview h1 {
    font-size: 31px;
  }

  .investors-overview-kicker {
    font-size: 17px;
  }

  .investors-overview-copy > p:not(.investors-overview-kicker) {
    font-size: 16px;
  }

  .investors-resource-grid {
    margin-top: 42px;
  }

  .recent-news-inner {
    padding: 42px 0 50px;
  }

  .recent-news-title {
    margin-bottom: 36px;
  }

  .recent-news-list {
    gap: 30px;
  }

  .why-invest-inner {
    padding: 48px 0 54px;
  }

  .why-invest-header {
    margin-bottom: 38px;
  }

  .why-invest-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-invest-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 20px;
  }

  .why-invest-icon img {
    width: 64px;
    height: 64px;
  }

  .faqs-inner {
    padding: 48px 0 54px;
  }

  .faqs-header {
    margin-bottom: 28px;
  }

  .faqs-panel {
    padding: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }

  .hero-copy,
  .hero-description {
    max-width: 560px;
  }

  .hero-estimator {
    max-width: 470px;
  }

  .quote-section-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quote-content {
    transform: none;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .project-card img {
    height: 160px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
    margin: 0 auto;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    padding: 34px 0;
  }

  .lead-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lead-form-card {
    height: auto;
    max-width: 620px;
    min-height: 0;
  }

  .footer-cta-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    padding: 34px 0;
    text-align: center;
  }

  .footer-cta-copy p {
    max-width: 620px;
  }

  .footer-cta-actions {
    width: min(340px, 100%);
  }

  .footer-main-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
    padding: 38px 0;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-brand-block p {
    max-width: 420px;
  }

  .footer-cipf {
    grid-column: auto;
    justify-self: start;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .ticker-inner,
  .investors-page-nav-inner {
    width: min(var(--site-width), calc(100% - 32px));
  }

  .investors-page-nav-inner {
    min-width: calc(100% - 32px);
    min-height: 52px;
    gap: 30px;
  }

  .investors-overview-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 34px 0 40px;
  }

  .investors-overview h1 {
    margin-bottom: 14px;
    font-size: 27px;
  }

  .investors-overview-kicker {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .investors-overview-copy > p:not(.investors-overview-kicker) {
    font-size: 16px;
  }

  .investors-resource-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .investors-market-card,
  .investors-resource-column,
  .investors-resource-grid > *:nth-child(odd),
  .investors-resource-grid > *:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .investors-resource-grid > * + * {
    padding-top: 26px;
    border-top: 1px solid #d5dbe6;
  }

  .market-company h2 {
    font-size: 17px;
  }

  .market-price,
  .market-metric strong {
    font-size: 20px;
  }

  .market-metric h3 {
    font-size: 17px;
  }

  .investors-resource-column h2 {
    margin-bottom: 18px;
  }

  .investors-resource-column h2 a {
    font-size: 17px;
  }

  .investors-resource-column ul {
    gap: 14px;
  }

  .investors-resource-column li,
  .investors-resource-column li a {
    font-size: 16px;
  }

  .recent-news-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 36px 0 42px;
  }

  .recent-news-title {
    margin-bottom: 30px;
    font-size: 27px;
  }

  .recent-news-title span {
    font-size: 30px;
  }

  .recent-news-list {
    gap: 26px;
  }

  .recent-news-item h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .why-invest-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 40px 0 46px;
  }

  .why-invest-header {
    margin-bottom: 32px;
  }

  .why-invest-title {
    font-size: 27px;
  }

  .why-invest-grid {
    gap: 28px;
  }

  .why-invest-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .why-invest-icon img {
    width: 54px;
    height: 54px;
  }

  .why-invest-body h3 {
    font-size: 17px;
  }

  .why-invest-body li {
    font-size: 16px;
  }

  .faqs-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 40px 0 46px;
  }

  .faqs-title {
    font-size: 27px;
  }

  .faqs-title span {
    font-size: 30px;
  }

  .faqs-panel {
    padding: 12px;
  }

  .faq-item > summary {
    padding: 16px 16px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 4px 16px 18px 46px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    width: min(var(--site-width), calc(100% - 32px));
    min-height: 0;
    padding: 44px 0;
  }

  .hero-badge {
    height: auto;
    min-height: 24px;
    padding: 7px 12px;
    font-size: 10px;
  }

  .hero-title {
    font-size: 43px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-estimator {
    min-height: 0;
    padding: 28px 22px 22px;
  }

  .logo-strip-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 22px 0 36px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .logo-strip-title {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.25;
  }

  .logo-mark {
    width: 120px;
  }

  .logo-item figcaption {
    font-size: 13px;
  }

  .quote-section-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 36px 0;
  }

  .quote-content h2 {
    font-size: 27px;
  }

  .quote-content p {
    font-size: 17px;
  }

  .quote-icon {
    height: 46px;
    font-size: 80px;
  }

  .projects-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 30px 0 36px;
  }

  .projects-title {
    font-size: 24px;
  }

  .project-card img {
    height: 132px;
  }

  .steps-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 46px 0 52px;
  }

  .steps-title {
    font-size: 23px;
  }

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

  .stats-inner {
    width: min(var(--site-width), calc(100% - 32px));
  }

  .stat-item strong {
    font-size: 36px;
  }

  .lead-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 36px 0;
  }

  .lead-copy h1,
  .lead-copy h2 {
    font-size: 27px;
  }

  .lead-copy p {
    font-size: 17px;
  }

  .lead-features li {
    font-size: 17px;
  }

  .lead-form-card {
    padding: 22px 20px 20px;
  }

  .lead-form-row {
    grid-template-columns: 1fr;
  }

  .testimonials-inner {
    width: min(var(--site-width), calc(100% - 32px));
    padding: 30px 0 36px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .footer-cta-inner,
  .footer-main-inner,
  .footer-bottom-inner {
    width: min(var(--site-width), calc(100% - 32px));
  }

  .footer-cta-copy h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .footer-cta-copy p {
    font-size: 15px;
  }

  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: start;
    padding: 36px 0;
  }

  .footer-column a {
    font-size: 15px;
    line-height: 1.2;
  }

  .footer-cipf {
    width: 100%;
    max-width: 240px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
    line-height: 1.2;
  }

  .footer-legal span + span::before {
    display: none;
  }
}

@media (max-width: 360px) {
  .header-inner,
  .ticker-inner,
  .hero-inner,
  .logo-strip-inner,
  .quote-section-inner,
  .projects-inner,
  .steps-inner,
  .stats-inner,
  .lead-inner,
  .testimonials-inner,
  .footer-cta-inner,
  .footer-main-inner,
  .footer-bottom-inner,
  .investors-page-nav-inner {
    width: min(var(--site-width), calc(100% - 28px));
  }

  .investors-page-nav-inner {
    min-width: calc(100% - 28px);
    min-height: 50px;
    gap: 24px;
  }

  .investors-overview-inner {
    width: min(var(--site-width), calc(100% - 28px));
  }

  .recent-news-inner {
    width: min(var(--site-width), calc(100% - 28px));
  }

  .investors-overview h1 {
    font-size: 25px;
  }

  .investors-overview-kicker {
    font-size: 15px;
  }

  .site-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 12px;
  }

  .ticker-inner {
    font-size: 12px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-estimator {
    padding: 24px 18px 20px;
  }

  .estimator-title {
    font-size: 18px;
  }

  .estimator-value {
    font-size: 27px;
  }

  .slider-labels {
    font-size: 11px;
  }

  .logo-grid {
    gap: 26px 14px;
  }

  .logo-mark {
    width: 110px;
  }

  .quote-content h2,
  .lead-copy h1,
  .lead-copy h2 {
    font-size: 25px;
  }

  .quote-content p,
  .lead-copy p,
  .lead-features li {
    font-size: 16px;
  }

  .project-card-body {
    padding: 16px 16px 17px;
  }

  .step-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    padding: 8px;
  }

  .stats-inner {
    gap: 20px 10px;
  }

  .stat-item strong {
    font-size: 32px;
  }

  .lead-form-card input,
  .lead-phone-field {
    height: 54px;
  }

  .lead-form-card input {
    padding: 0 16px;
  }

  .lead-phone-field .iti__selected-country-primary {
    padding: 0 6px 0 10px;
  }

  .lead-advisor-message strong {
    font-size: 20px;
  }

  .testimonial-header {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-metrics {
    gap: 16px;
  }
}
