:root {
  --navy: #0a2742;
  --teal: #147a73;
  --teal-2: #2f9188;
  --gold: #c8932d;
  --coral: #b95842;
  --ink: #111a24;
  --muted: #60707c;
  --soft: #f5f7f4;
  --line: #dce4e1;
  --paper: #fbfaf6;
  --mist: #eef5f3;
  --shadow: 0 22px 60px rgba(10, 39, 66, .12);
  --shadow-soft: 0 14px 34px rgba(10, 39, 66, .08);
}

body {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.topbar {
  background: rgba(251, 250, 246, .88);
  border-bottom: 1px solid rgba(10, 39, 66, .12);
  box-shadow: 0 8px 24px rgba(10, 39, 66, .04);
}

.marketTicker {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px 13px;
  border-top: 1px solid rgba(10, 39, 66, .08);
}

.tickerLabel {
  color: var(--teal);
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.tickerPinnedWrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.tickerSelectLabel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.tickerSelect {
  min-height: 34px;
  max-width: 138px;
  border: 1px solid rgba(10, 39, 66, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 850;
  padding: 6px 28px 6px 12px;
  cursor: pointer;
}

.tickerPinned {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(200, 147, 45, .46);
  border-radius: 999px;
  background: #fff8e7;
  color: #173047;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(10, 39, 66, .05);
}

.tickerPinned strong {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
}

.tickerPinned b {
  color: #7b560e;
  font-size: 1rem;
  font-weight: 950;
}

.tickerPinned small {
  color: #60707c;
  font-size: .76rem;
}

.tickerPinned.verified {
  border-color: rgba(20, 122, 115, .35);
  background: #eef8f5;
}

.tickerPinned.verified b {
  color: var(--teal);
}

.tickerPinned.blocked {
  border-color: rgba(200, 147, 45, .46);
  background: #fff8e7;
}

.tickerPinned.blocked b {
  color: #7b560e;
}

.adminShell {
  display: grid;
  gap: 18px;
}

.adminLogin {
  max-width: 520px;
}

.adminDashboard {
  display: grid;
  gap: 18px;
}

.adminTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.adminTop h2 {
  margin: 0 0 4px;
  color: var(--navy);
}

.adminTop p {
  margin: 0;
  color: var(--muted);
}

.adminTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(10, 39, 66, .12);
  padding-bottom: 10px;
}

.adminTabs button {
  border: 1px solid rgba(10, 39, 66, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
  padding: 8px 12px;
}

.adminTabs button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.adminPane {
  display: grid;
  gap: 16px;
}

.adminCards {
  display: grid;
  gap: 10px;
}

.adminCard {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(10, 39, 66, .12);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.adminCard strong {
  color: var(--navy);
}

.adminCard span,
.adminCard small,
.adminCard p {
  color: var(--muted);
  margin: 0;
}

.adminEditor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.adminEditor h3,
.adminEditor .full,
.adminEditor button {
  grid-column: 1 / -1;
}

.adminEditor textarea {
  min-height: 130px;
}

.adminArticleRow {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 160px;
  gap: 10px;
  margin-bottom: 10px;
}

.adminArticleRow textarea {
  grid-column: 1 / -1;
  min-height: 82px;
}

.tickerViewport {
  overflow: hidden;
  min-width: 0;
  border-left: 1px solid rgba(10, 39, 66, .1);
  border-right: 1px solid rgba(10, 39, 66, .1);
}

.tickerTrack {
  display: inline-flex;
  gap: 0;
  min-width: max-content;
  animation: tickerRun 48s linear infinite;
  padding: 0;
}

.tickerTrack.paused {
  animation-play-state: paused;
}

.tickerGroup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}

.tickerItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #263743;
  font-size: 1rem;
  white-space: nowrap;
}

.tickerItem strong {
  color: var(--navy);
  font-weight: 900;
}

.tickerItem b {
  font-weight: 850;
}

.tickerItem em {
  font-style: normal;
  font-weight: 800;
}

.tickerItem small {
  font-size: .84rem;
  color: #6a7881;
}

.tickerItem.up em {
  color: #147a4f;
}

.tickerItem.down em {
  color: #a64734;
}

.tickerItem.flat em {
  color: #64717a;
}

.tickerItem.blocked em,
.tickerItem.blocked_unverified em {
  color: #9d6d17;
}

.tickerItem.blocked b,
.tickerItem.blocked_unverified b {
  color: #6d4b13;
  background: #fff4d6;
  border: 1px solid rgba(200, 147, 45, .34);
  border-radius: 999px;
  padding: 2px 8px;
}

.tickerMeta {
  color: #64717a;
}

.tickerPause {
  border: 1px solid rgba(10, 39, 66, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}

@keyframes tickerRun {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.nav {
  max-width: 1240px;
  padding: 12px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brandLogo {
  display: block;
  width: clamp(190px, 18vw, 260px);
  height: auto;
  object-fit: contain;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #09243d 0%, #147a73 72%, #c8932d 100%);
  box-shadow: 0 12px 26px rgba(20, 122, 115, .22);
}

.links {
  gap: 4px;
}

.links a {
  position: relative;
  color: #2b3a44;
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 6px;
}

.links a:hover {
  background: rgba(20, 122, 115, .08);
  color: var(--navy);
}

.links a.active {
  background: #e8f2ef;
  color: var(--teal);
}

.btn {
  border-radius: 8px;
  padding: 11px 16px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn.primary {
  border-color: #126a64;
  background: linear-gradient(135deg, var(--teal), #2f9188);
}

.btn.secondary {
  background: rgba(255, 255, 255, .86);
  border-color: rgba(20, 122, 115, .45);
}

.lang {
  border-color: rgba(10, 39, 66, .16);
  border-radius: 8px;
  background: #fff;
}

.lang button.active {
  background: var(--navy);
}

.hero {
  min-height: 690px;
  isolation: isolate;
  background: #fff;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, .98) 0%, rgba(251, 250, 246, .93) 35%, rgba(251, 250, 246, .48) 70%, rgba(251, 250, 246, .22) 100%),
    linear-gradient(180deg, rgba(10, 39, 66, .1), rgba(10, 39, 66, 0) 38%),
    url("assets/banking-skyline-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.015);
}

.hero::after {
  height: 145px;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--paper));
}

.inner {
  max-width: 1240px;
  padding: 0 24px;
}

.profileHero .inner {
  max-width: 1360px;
}

.profileHeroGrid {
  grid-template-columns: minmax(520px, .92fr) minmax(520px, .82fr);
  gap: 42px;
  align-items: center;
}

.profileHeroText {
  padding: 112px 0 132px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: .74rem;
  letter-spacing: 0;
}

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

.hero h1 {
  font-size: 6.8rem;
  line-height: .82;
  margin: 18px 0 20px;
  color: #071f36;
  letter-spacing: 0;
}

.profileHero h2 {
  max-width: 760px;
  font-size: 2.45rem;
  line-height: 1.08;
  margin-bottom: 24px;
  color: #142230;
}

.profileHero .lead {
  max-width: 760px;
  font-size: 1.14rem;
  color: #334957;
}

.credentialStrip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
  margin-top: 34px;
  border: 1px solid rgba(10, 39, 66, .12);
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--shadow-soft);
}

.credentialStrip span {
  background: rgba(255, 255, 255, .76);
  padding: 18px;
  color: #1e3344;
}

.credentialStrip span::before {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  margin-bottom: 10px;
  background: var(--gold);
}

.heroProfilePanel {
  background: rgba(8, 31, 54, .93);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 28px 70px rgba(8, 31, 54, .28);
  transform: translateY(22px);
}

.heroProfilePanel::before {
  left: 26px;
  right: auto;
  width: 74px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #e3c06e);
}

.heroProfilePanel h3,
.snapshotRows strong {
  color: #fff;
}

.headlinePanel {
  width: 100%;
  max-width: 620px;
  min-height: 540px;
  overflow: hidden;
  justify-self: end;
}

.headlinePanel h3 {
  margin-bottom: 16px;
}

.headlineViewport {
  position: relative;
  height: 376px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding: 12px 0;
}

.headlineViewport::before,
.headlineViewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 46px;
  z-index: 2;
  pointer-events: none;
}

.headlineViewport::before {
  top: 0;
  background: linear-gradient(180deg, rgba(8, 31, 54, .98), rgba(8, 31, 54, 0));
}

.headlineViewport::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(8, 31, 54, .98), rgba(8, 31, 54, 0));
}

.headlineTrack {
  display: grid;
  gap: 14px;
  animation: headlineRise 62s linear infinite;
}

.headlinePanel:hover .headlineTrack {
  animation-play-state: paused;
}

.headlineItem {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 14px;
}

.headlineTop {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.headlineTop span {
  color: #0b2944;
  background: #f4c66b;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: .72rem;
  font-weight: 900;
}

.headlineTop small {
  color: #a9c7d0;
  text-align: right;
  font-size: .74rem;
}

.headlineItem h4 {
  margin: 0;
  color: #fff;
  font-size: .98rem;
  line-height: 1.28;
}

.headlineItem p {
  margin: 0;
  color: #d3e0e5;
  font-size: .86rem;
  line-height: 1.45;
}

.headlineMeta {
  margin-top: 12px;
  color: #a9c7d0;
  font-size: .76rem;
}

@keyframes headlineRise {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.panelKicker {
  color: #92d5ce;
  letter-spacing: 0;
}

.snapshotRows div {
  border-top-color: rgba(255, 255, 255, .14);
}

.snapshotRows span {
  color: #e8bd67;
}

.snapshotRows p {
  color: #d3e0e5;
}

.band {
  padding: 96px 0;
  background: var(--paper);
}

.strategicArticle {
  padding: 86px 0;
  background: #fff;
}

.strategicArticleGrid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(300px, .45fr);
  gap: 34px;
  align-items: start;
}

.articleKicker {
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  border-top: 3px solid var(--gold);
  padding-top: 16px;
}

.strategicNarrative {
  max-width: 760px;
}

.strategicNarrative h2 {
  margin: 0 0 20px;
  color: #0b2944;
  font-size: 2.35rem;
  line-height: 1.08;
}

.strategicNarrative p {
  margin: 0 0 18px;
  color: #3d4d58;
  font-size: 1.05rem;
}

.pressurePanel {
  background: #f3f7f5;
  border: 1px solid rgba(10, 39, 66, .12);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10, 39, 66, .05);
}

.pressurePanel h3 {
  margin: 0 0 14px;
  color: #0b2944;
  font-size: 1.12rem;
}

.pressurePanel ul {
  margin: 0;
  padding-left: 20px;
  color: #4b5c66;
}

.pressurePanel li {
  margin: 10px 0;
}

.pressurePanel li::marker {
  color: var(--coral);
}

.band.soft {
  background: #edf3f0;
}

.sectionHead h2 {
  font-size: 2.8rem;
  line-height: 1.04;
  color: #0b2944;
}

.sectionHead p {
  font-size: 1.04rem;
  color: #5d6d77;
}

.profileNarrative {
  grid-template-columns: .75fr 1.25fr;
  gap: 66px;
}

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

.credItem {
  position: relative;
  min-height: 210px;
  border: 1px solid rgba(10, 39, 66, .12);
  border-left: 0;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(10, 39, 66, .05);
}

.credItem::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 42px;
  height: 4px;
  background: var(--teal);
}

.credItem h3 {
  font-size: 1.12rem;
}

.intelligenceBand {
  background: #0b2944;
  border: 0;
  color: #fff;
  padding: 96px 0;
}

.intelligenceBand .inner::before {
  content: "Risk intelligence";
  display: inline-flex;
  margin-bottom: 20px;
  color: #8ed7d1;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  border-top: 3px solid var(--gold);
  padding-top: 14px;
}

.intelligenceLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 28px;
  align-items: start;
}

.executiveMemo {
  background: linear-gradient(135deg, #fff 0%, #f4f8f6 100%);
  border: 0;
  box-shadow: var(--shadow);
  padding: 38px;
  min-width: 0;
}

.executiveMemo h2 {
  max-width: 860px;
  font-size: 2.35rem;
  line-height: 1.08;
  color: #0b2944;
}

.executiveMemo p,
.executiveMemo .memoList {
  color: #41515c;
}

.memoList li::marker {
  color: var(--coral);
}

.priorityLens {
  background: #12395d;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .18);
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.priorityLens h3 {
  font-size: 1.3rem;
}

.lensResult {
  margin-top: auto;
}

.lensBtn {
  border-radius: 8px;
}

.lensBtn.active {
  background: #f4c66b;
  color: #0b2944;
}

.portfolioBand {
  border: 0;
}

.portfolioGrid {
  gap: 20px;
}

.portfolioItem {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(10, 39, 66, .12);
  background: #fff;
  box-shadow: 0 12px 34px rgba(10, 39, 66, .06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.portfolioItem:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 122, 115, .38);
  box-shadow: 0 22px 54px rgba(10, 39, 66, .12);
}

.portfolioItem::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.portfolioRule {
  width: 54px;
  height: 4px;
  background: var(--gold);
}

.portfolioItem h3 {
  font-size: 1.42rem;
}

.companySplit {
  gap: 56px;
}

.serviceRows {
  background: #fff;
  border: 1px solid rgba(10, 39, 66, .1);
  border-radius: 8px;
  padding: 8px 28px 28px;
  box-shadow: 0 12px 32px rgba(10, 39, 66, .05);
}

.serviceRow {
  grid-template-columns: 64px 1fr;
  padding-top: 24px;
}

.serviceRow span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f4efe2;
  color: #9d6d17;
}

.companyProof {
  background: linear-gradient(160deg, #08233d, #12395d);
  box-shadow: var(--shadow);
}

.companyProof div {
  background: rgba(255, 255, 255, .06);
}

.governanceBand {
  background: var(--paper);
}

.governanceGrid article,
.regArticle,
.card,
.panel {
  border-color: rgba(10, 39, 66, .12);
  box-shadow: 0 10px 28px rgba(10, 39, 66, .05);
}

.governanceGrid article {
  min-height: 160px;
  background: #fff;
}

.regulatoryArticles {
  background: #fff;
  border-top: 0;
}

.articleGrid {
  gap: 20px;
}

.regArticle {
  min-height: 430px;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.regArticle:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(10, 39, 66, .12);
}

.articleMeta {
  color: #9d6d17;
  letter-spacing: 0;
}

.regArticle h3 {
  font-size: 1.32rem;
}

.regArticle a,
.lensResult a,
.gatewayNote a {
  text-underline-offset: 5px;
}

.finalCta {
  background: #0b2944;
  color: #fff;
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.finalCta h2 {
  color: #fff;
}

.finalCta p {
  color: #d4e0e5;
}

.gatewayNote {
  background: #0b2944;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #d5e1e6;
}

.footer {
  background: #071f36;
}

.pageHero {
  background:
    linear-gradient(135deg, rgba(251, 250, 246, .96), rgba(238, 245, 243, .98)),
    url("assets/banking-skyline-hero.png");
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid rgba(10, 39, 66, .1);
  padding: 92px 0 56px;
}

.pageHero h1 {
  font-size: 4.4rem;
  line-height: .95;
}

@media (max-width: 980px) {
  .profileHeroGrid,
  .profileNarrative,
  .intelligenceLayout,
  .companySplit,
  .governanceLayout,
  .strategicArticleGrid {
    grid-template-columns: 1fr;
  }

  .profileHero .inner {
    max-width: 860px;
  }

  .profileHeroText {
    padding: 86px 0 28px;
  }

  .heroProfilePanel {
    transform: none;
    margin-bottom: 90px;
  }

  .headlinePanel {
    max-width: none;
    justify-self: stretch;
  }

  .credGrid,
  .portfolioGrid,
  .articleGrid {
    grid-template-columns: 1fr;
  }

  .portfolioItem,
  .regArticle,
  .credItem {
    min-height: auto;
  }

  .strategicNarrative {
    max-width: none;
  }

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

@media (min-width: 981px) {
  .intelligenceBand .inner {
    max-width: 1240px;
  }

  .executiveMemo {
    grid-column: 1;
    grid-row: 1;
  }

  .priorityLens {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 12px 14px;
  }

  .links {
    top: 64px;
    background: rgba(251, 250, 246, .98);
  }

  .marketTicker {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 8px 14px 10px;
  }

  .tickerLabel {
    grid-column: 1;
  }

  .tickerPinned {
    max-width: 100%;
  }

  .tickerPinnedWrap {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .tickerSelect {
    max-width: 168px;
  }

  .tickerViewport {
    grid-column: 1 / -1;
  }

  .tickerTrack {
    animation-duration: 56s;
  }

  .tickerItem {
    font-size: .95rem;
  }

  .profileHeroText {
    padding: 58px 0 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 250, 246, .98) 0%, rgba(251, 250, 246, .92) 60%, rgba(251, 250, 246, .78) 100%),
      url("assets/banking-skyline-hero.png");
    background-size: cover;
    background-position: center right;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .profileHero h2 {
    font-size: 1.78rem;
  }

  .profileHero .lead {
    font-size: 1rem;
  }

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

  .heroProfilePanel {
    margin-bottom: 64px;
  }

  .headlinePanel {
    min-height: 500px;
  }

  .headlineViewport {
    height: 334px;
  }

  .band {
    padding: 68px 0;
  }

  .serviceRows,
  .finalCta,
  .executiveMemo,
  .priorityLens,
  .pressurePanel {
    padding: 24px;
  }

  .strategicArticle {
    padding: 58px 0;
  }

  .strategicNarrative h2 {
    font-size: 1.86rem;
  }

  .finalCta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px 16px;
  }

  .brand {
    grid-column: 1;
  }

  .brandLogo {
    width: clamp(172px, 30vw, 218px);
  }

  .actions {
    grid-column: 3;
    justify-self: end;
  }

  .links {
    grid-column: 1 / -1;
    justify-content: center;
    margin-left: 0;
    width: 100%;
    padding: 8px 0 0;
    border-top: 1px solid rgba(10, 39, 66, .08);
  }

  .marketTicker {
    padding-top: 10px;
  }

  .profileHeroText {
    padding: 46px 0 18px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .profileHero h2 {
    font-size: 1.62rem;
    max-width: 690px;
  }

  .profileHero .lead {
    max-width: 680px;
  }

  .strategicArticleGrid {
    gap: 20px;
  }

  .credentialStrip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .credentialStrip span {
    padding: 14px 12px;
    font-size: .82rem;
  }

  .heroProfilePanel {
    margin-bottom: 42px;
  }

  .headlineViewport {
    height: 318px;
  }
}

@media (max-width: 540px) {
  .inner {
    padding: 0 18px;
  }

  .brand {
    max-width: 168px;
  }

  .brandLogo {
    width: 168px;
  }

  .actions {
    gap: 6px;
  }

  .actions .btn.primary {
    padding: 9px 11px;
    min-height: 38px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .profileHero h2 {
    font-size: 1.38rem;
  }

  .sectionHead h2 {
    font-size: 2rem;
  }

  .companyProof dl,
  .governanceGrid {
    grid-template-columns: 1fr;
  }
}
