/* ===== NEWSROOM NAVIGATION - ENHANCED SUBNAV ===== */
/* Extend the standard subnav pattern for newsroom with mobile menu */

/* Keep standard subnav behavior for newsroom but add mobile enhancements */
[data-page="newsroom"] .subnav {
  position: sticky !important;
  top: 64px !important;
  z-index: 50 !important;
  background: rgba(255, 255, 255, .95) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid var(--line) !important;
}

[data-page="newsroom"] .subnav .container {
  position: relative;
  padding: 0 !important;
}

/* Mobile toggle - hidden by default, shown only on mobile */
[data-page="newsroom"] .subnav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--crimson);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  z-index: 52;
  position: relative;
  width: 100%;
  justify-content: center;
}

[data-page="newsroom"] .subnav-toggle i {
  font-size: 16px;
}

/* Standard subnav-inner behavior - keep original pattern */
[data-page="newsroom"] .subnav-inner {
  display: flex !important;
  gap: 6px !important;
  overflow-x: auto !important;
  padding: 25px 0 !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent !important;
}

[data-page="newsroom"] .subnav-inner::-webkit-scrollbar {
  height: 4px !important;
}
[data-page="newsroom"] .subnav-inner::-webkit-scrollbar-track {
  background: transparent !important;
}
[data-page="newsroom"] .subnav-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15) !important;
  border-radius: 4px !important;
}
[data-page="newsroom"] .subnav-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25) !important;
}
[data-page="newsroom"] .subnav-inner::-webkit-scrollbar-button {
  display: none !important;
}

/* Standard subnav links - keep original styling */
[data-page="newsroom"] .subnav-link {
  white-space: nowrap !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-full) !important;
  transition: var(--ease) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

[data-page="newsroom"] .subnav-link:hover,
[data-page="newsroom"] .subnav-link.active {
  background: var(--navy) !important;
  color: #fff !important;
}

[data-page="newsroom"] .subnav-link i {
  font-size: 14px !important;
  opacity: 0.8 !important;
}

/* Mobile enhancements - only apply on mobile */
@media (max-width: 768px) {
  [data-page="newsroom"] .subnav {
    position: sticky !important;
    top: 0 !important;
    z-index: 51 !important;
  }

  [data-page="newsroom"] .subnav .container {
    flex-direction: column;
    align-items: stretch;
  }

  [data-page="newsroom"] .subnav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 52 !important;
  }

  [data-page="newsroom"] .subnav-inner {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    background: rgba(255, 255, 255, .98) !important;
    border: 1px solid var(--line) !important;
    border-top: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 51 !important;
    padding: 0 !important;
  }

  [data-page="newsroom"] .subnav-inner.mobile-active {
    max-height: 400px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  [data-page="newsroom"] .subnav-link {
    padding: 16px 20px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    justify-content: flex-start !important;
    white-space: normal !important;
  }

  [data-page="newsroom"] .subnav-link:last-child {
    border-bottom: none !important;
  }

  [data-page="newsroom"] .subnav-link:hover,
  [data-page="newsroom"] .subnav-link.active {
    background: var(--crimson) !important;
    color: white !important;
  }
}

/* Fix main navigation backdrop conflicts */
[data-page="newsroom"] .nav-backdrop.show {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ===== SECTORS SNAPSHOT (home) ===== */
.sector-snapshot {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px
}

@media(max-width:1080px) {
  .sector-snapshot {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(max-width:640px) {
  .sector-snapshot {
    grid-template-columns: repeat(2, 1fr)
  }
}

.snap-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--r-md);
  padding: 22px 12px;
  transition: var(--ease)
}

.snap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md)
}

.snap-ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff
}

.snap-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3
}

.snap-pct {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--crimson);
  margin-top: 4px
}

/* ===== QUICK LINKS (home highlights) ===== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

@media(max-width:900px) {
  .quick-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:520px) {
  .quick-grid {
    grid-template-columns: 1fr
  }
}

.quick-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--ease-out)
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent
}

.quick-card>i {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, .12), rgba(5, 30, 63, .08));
  color: var(--crimson);
  font-size: 20px;
  margin-bottom: 18px;
  transition: var(--ease)
}

.quick-card:hover>i {
  background: var(--grad-crim);
  color: #fff
}

.quick-card h3 {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px
}

.quick-card p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px
}

.quick-card>span {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .3px
}

.quick-card>span i {
  color: var(--crimson);
  transition: transform var(--ease)
}

.quick-card:hover>span i {
  transform: translateX(4px)
}

/* ===== PORTFOLIO AT A GLANCE ===== */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

@media(max-width:760px) {
  .glance-grid {
    grid-template-columns: 1fr 1fr
  }
}

.glance-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: var(--ease)
}

.glance-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md)
}

.g-num {
  font-family: var(--font-h);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px
}

.g-num .suf {
  color: var(--crimson);
  font-size: .6em
}

.g-pre {
  font-family: var(--font-b);
  font-size: .42em;
  font-weight: 600;
  color: var(--muted)
}

.g-lbl {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: .4px
}

/* ===== PORTFOLIO CARD FOOTER (2-link) ===== */
.pf-foot-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.pf-view {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--ease)
}

.pf-view i {
  font-size: 11px;
  transition: transform var(--ease)
}

.pf-view:hover {
  color: var(--crimson)
}

.pf-view:hover i {
  transform: translateX(4px)
}

/* ===== HOLDING STRUCTURE CHART ===== */
.holdchart {
  display: flex;
  flex-direction: column;
  align-items: center
}

.hc-apex {
  display: flex;
  flex-direction: column;
  align-items: center
}

.hc-node {
  text-align: center;
  border-radius: var(--r-md);
  padding: 18px 30px;
  box-shadow: var(--sh-md)
}

.hc-parent {
  background: var(--grad-navy);
  color: #fff
}

.hc-parent strong {
  font-family: var(--font-h);
  font-size: 21px;
  display: block
}

.hc-parent span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brass-lt)
}

.hc-stem {
  width: 2px;
  height: 34px;
  background: var(--line)
}

.hc-branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  width: 100%;
  position: relative;
  padding-top: 24px
}

.hc-branches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line)
}

.hc-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative
}

.hc-branch::before {
  content: '';
  position: absolute;
  top: -24px;
  width: 2px;
  height: 24px;
  background: var(--line)
}

.hc-sector {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid;
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 14px;
  box-shadow: var(--sh-xs);
  width: 100%
}

.hc-companies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%
}

.hc-co {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-size: 12.5px;
  color: var(--body);
  transition: var(--ease);
  line-height: 1.3
}

.hc-co:hover {
  border-color: var(--crimson);
  color: var(--navy);
  transform: translateX(3px)
}

.hc-badge {
  width: 38px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .3px;
  overflow: hidden;
  padding: 3px
}

.hc-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

/* ===== SHARE APPLICATION FORM ===== */
.apply-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px
}

.apply-steps span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--off);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: var(--r-full)
}

.apply-steps i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-crim);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-style: normal
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.app-sec {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  background: var(--white);
  box-shadow: var(--sh-xs)
}

@media(max-width:560px) {
  .app-sec {
    padding: 20px 16px
  }
}

.app-sec legend {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 10px
}

.app-sec legend small {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted)
}

.app-n {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 13px
}

.app-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: .3px;
  margin: 18px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.app-sub small {
  font-weight: 500;
  color: var(--muted);
  font-size: 11.5px
}

.fg label small {
  color: var(--muted);
  font-weight: 400;
  font-size: 11px
}

.fg input[readonly] {
  background: var(--off-2);
  color: var(--navy);
  font-weight: 600
}

.form-row-3 {
  grid-template-columns: repeat(3, 1fr)
}

.form-row-4 {
  grid-template-columns: repeat(4, 1fr)
}

@media(max-width:760px) {

  .form-row-3,
  .form-row-4 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {

  .form-row-3,
  .form-row-4 {
    grid-template-columns: 1fr
  }
}

/* segmented toggle */
.seg-toggle {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.seg-toggle button {
  flex: 1;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  transition: var(--ease)
}

.seg-toggle button.active {
  border-color: var(--crimson);
  background: rgba(196, 30, 58, .06);
  color: var(--crimson)
}

.seg-toggle button i {
  font-size: 15px
}

/* applicant-type visibility */
.company-only {
  display: none
}

body.is-company .company-only {
  display: block
}

body.is-company .individual-only {
  display: none
}

.up-grid.company-only,
.up-grid.individual-only {
  display: none
}

body.is-company .up-grid.company-only {
  display: grid
}

body.is-individual .up-grid.individual-only {
  display: grid
}

/* payment box */
.pay-box {
  background: var(--grad-navy);
  border-radius: var(--r-md);
  padding: 20px 24px;
  color: #fff;
  margin-bottom: 20px
}

.pay-box-h {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px
}

.pay-box dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

@media(max-width:620px) {
  .pay-box dl {
    grid-template-columns: 1fr
  }
}

.pay-box dt {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px
}

.pay-box dd {
  font-size: 15px;
  font-weight: 600;
  color: #fff
}

/* uploads */
.up-field {
  margin-top: 6px
}

.up-drop {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px dashed rgba(196, 30, 58, .4);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  cursor: pointer;
  background: var(--off);
  transition: var(--ease)
}

.up-drop:hover {
  border-color: var(--crimson);
  background: var(--gold-pale, #FBF5E1)
}

.up-drop i {
  font-size: 20px;
  color: var(--crimson)
}

.up-drop .up-text {
  font-size: 13.5px;
  color: var(--body);
  font-weight: 500
}

.up-drop.has-file {
  border-style: solid;
  border-color: #2BB673;
  background: #ECF6F0
}

.up-drop.has-file i {
  color: #1E7A45
}

.up-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

@media(max-width:760px) {
  .up-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:420px) {
  .up-grid {
    grid-template-columns: 1fr
  }
}

.up-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  border: 1.5px dashed var(--line);
  border-radius: var(--r-md);
  padding: 20px 12px;
  cursor: pointer;
  transition: var(--ease)
}

.up-tile:hover {
  border-color: var(--crimson);
  background: var(--off)
}

.up-tile i {
  font-size: 24px;
  color: var(--crimson);
  margin-bottom: 4px
}

.up-tile b {
  font-size: 13.5px;
  color: var(--navy)
}

.up-tile span {
  font-size: 11px;
  color: var(--muted);
  word-break: break-word
}

.up-tile.has-file {
  border-style: solid;
  border-color: #2BB673;
  background: #ECF6F0
}

.up-tile.has-file i {
  color: #1E7A45
}

/* checkboxes */
.chk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 14px;
  cursor: pointer
}

.chk:last-child {
  margin-bottom: 0
}

.chk input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--crimson)
}

/* signature */
.sig-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px
}

.sig-tabs button {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 9px 16px;
  border-radius: var(--r-full);
  transition: var(--ease)
}

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

.sig-panel {
  position: relative
}

#sigPad {
  width: 100%;
  max-width: 600px;
  height: 180px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: repeating-linear-gradient(var(--off), var(--off) 178px, var(--line) 179px, var(--line) 180px);
  touch-action: none;
  cursor: crosshair;
  display: block
}

.sig-clear {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--crimson);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--r-full)
}

.sig-clear:hover {
  background: var(--crimson);
  color: #fff
}

/* draft bar */
.draft-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 20px;
  margin-bottom: 24px
}

.draft-status {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px
}

.draft-status i {
  color: var(--crimson)
}

.draft-status.saved {
  color: #1E7A45
}

.draft-status.saved i {
  color: #1E7A45
}

.draft-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.draft-actions .btn {
  font-size: 13px;
  padding: 10px 18px
}

.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line)
}

.btn-ghost-navy:hover {
  border-color: var(--crimson);
  color: var(--crimson)
}

/* experience rows */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px
}

.exp-row {
  position: relative;
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 44px 16px 16px
}

.exp-row .form-row {
  margin-bottom: 0
}

.exp-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease)
}

.exp-remove:hover {
  background: var(--crimson);
  color: #fff;
  border-color: transparent
}

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: #2BB673;
  border-radius: var(--r-full);
  padding: 10px 20px;
  transition: var(--ease);
  box-shadow: 0 6px 16px rgba(43, 182, 115, .28)
}

.btn-add:hover {
  background: #229960;
  transform: translateY(-2px)
}

.btn-add i {
  font-size: 12px
}

/* investment disclaimer */
.risk-box {
  background: #FBF3E0;
  border: 1px solid #EBD3A0;
  border-left: 4px solid var(--brass);
  border-radius: var(--r-md);
  padding: 22px 26px
}

.risk-h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  color: #8a6d1e;
  text-transform: uppercase;
  margin-bottom: 10px
}

.risk-h i {
  color: var(--brass-dk, #9A7B22)
}

.risk-box p {
  font-size: 13px;
  color: #6B5A28;
  line-height: 1.8
}

.apply-submit {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px
}

.apply-submit .form-note {
  justify-content: center;
  text-align: center;
  max-width: 720px;
  margin: 6px auto 0
}

.apply-success {
  max-width: 620px;
  margin: 0 auto
}

.modal-alt {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line)
}

.modal-alt a {
  color: var(--crimson);
  font-weight: 600
}

/* Apply-for-shares banner (IR page) */
.apply-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--grad-navy);
  border-radius: var(--r-lg);
  padding: 30px 36px;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden
}

.apply-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(196, 30, 58, .25), transparent 60%)
}

.apply-banner .ab-text {
  position: relative;
  z-index: 2
}

.apply-banner h3 {
  font-family: var(--font-h);
  font-size: 23px;
  color: #fff;
  margin-bottom: 6px
}

.apply-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  max-width: 560px
}

.apply-banner .ab-cta {
  position: relative;
  z-index: 2
}

/* ===== GROWTH TRAJECTORY CHART ===== */
.growth-wrap {
  max-width: 940px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px 24px;
  box-shadow: var(--sh-sm)
}

.growth-svg {
  width: 100%;
  height: auto;
  display: block
}

.gc-grid {
  stroke: var(--line);
  stroke-width: 1
}

.gc-ylbl {
  font-size: 11px;
  fill: var(--muted);
  font-family: var(--font-b)
}

.gc-xlbl {
  font-size: 12px;
  fill: var(--navy);
  font-weight: 600;
  font-family: var(--font-b)
}

.gc-band {
  fill: rgba(201, 168, 106, .09)
}

.gc-divider {
  stroke: var(--brass);
  stroke-width: 1.5;
  stroke-dasharray: 4 4
}

.gc-zone {
  font-size: 11px;
  letter-spacing: 2.5px;
  fill: var(--muted);
  font-weight: 700;
  font-family: var(--font-b)
}

.gc-zone.proj {
  fill: var(--brass-dk, #9A7B22)
}

.gc-line {
  stroke-linecap: round;
  stroke-linejoin: round
}

.gc-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.gc-leg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body);
  font-weight: 500
}

.gc-sw {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0
}

.gc-style {
  width: 26px;
  height: 0;
  flex-shrink: 0;
  border-top: 3px solid var(--navy)
}

.gc-style.solid {
  border-top-style: solid
}

.gc-style.dashed {
  border-top-style: dashed
}

/* ===== IR LINK BAND ===== */
.ir-link-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--off);
  border: 1px solid var(--line);
  border-left: 4px solid var(--crimson);
  border-radius: var(--r-lg);
  padding: 30px 34px
}

.ir-link-band h3 {
  font-family: var(--font-h);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 6px
}

.ir-link-band p {
  font-size: 14px;
  color: var(--body);
  max-width: 560px
}

/* ===== DOCUMENT / REPORT LISTS (IR, disclosures, reports) ===== */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto
}

.doc-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 24px;
  transition: var(--ease)
}

.doc-row:hover {
  box-shadow: var(--sh-md);
  border-color: rgba(196, 30, 58, .3)
}

.doc-ic {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-2);
  color: var(--crimson);
  font-size: 18px
}

.doc-main {
  flex: 1;
  min-width: 0
}

.doc-main b {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600
}

.doc-main span {
  font-size: 12.5px;
  color: var(--muted)
}

.doc-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  white-space: nowrap
}

.doc-tag.published {
  background: #E8F2EC;
  color: #1E7A45
}

.doc-tag.pending {
  background: #FBF3E0;
  color: #8a6d1e
}

.doc-tag.request {
  background: rgba(196, 30, 58, .09);
  color: var(--crimson)
}

.doc-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap
}

.doc-action i {
  color: var(--crimson)
}

.doc-action:hover {
  color: var(--crimson)
}

/* empty / coming-soon state */
.soon-card {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: var(--off);
  border: 1px dashed rgba(196, 30, 58, .35);
  border-radius: var(--r-lg);
  padding: 48px 32px
}

.soon-card i {
  font-size: 34px;
  color: var(--crimson);
  margin-bottom: 16px
}

.soon-card h3 {
  font-family: var(--font-h);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px
}

.soon-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7
}

/* ===== ACCORDION (policies, governance, FAQ) ===== */
.accordion {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
  transition: var(--ease)
}

.acc-item.open {
  border-color: rgba(196, 30, 58, .4);
  box-shadow: var(--sh-sm)
}

.acc-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy)
}

.acc-q i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-2);
  color: var(--crimson);
  font-size: 12px;
  transition: var(--ease)
}

.acc-item.open .acc-q i {
  transform: rotate(45deg);
  background: var(--crimson);
  color: #fff
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.acc-a-in {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.8
}

.acc-a-in a {
  color: var(--crimson);
  font-weight: 600
}

/* ===== SHARE INFORMATION ===== */
.share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px
}

@media(max-width:760px) {
  .share-grid {
    grid-template-columns: 1fr
  }
}

.share-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  text-align: center
}

.share-stat .ss-lbl {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px
}

.share-stat .ss-val {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy)
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden
}

.simple-table th {
  background: var(--navy);
  color: var(--brass-lt);
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px
}

.simple-table td {
  padding: 13px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--body)
}

.simple-table tr:last-child td {
  border-bottom: none
}

.simple-table tr:hover td {
  background: var(--off)
}

/* ===== NEWS / PRESS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

@media(max-width:980px) {
  .news-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .news-grid {
    grid-template-columns: 1fr
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease-out)
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg)
}

.news-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grad-navy)
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.news-card:hover .news-img img {
  transform: scale(1.06)
}

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px
}

.news-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--crimson);
  background: rgba(196, 30, 58, .08);
  padding: 4px 11px;
  border-radius: var(--r-full)
}

.news-date {
  font-size: 12px;
  color: var(--muted)
}

.news-card h3 {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px
}

.news-card p {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.7;
  flex: 1
}

.news-more {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.news-more i {
  color: var(--crimson);
  transition: transform var(--ease)
}

.news-card:hover .news-more i {
  transform: translateX(4px)
}

/* ===== MEDIA GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  min-height: auto; /* Remove any minimum height that could cause empty frames */
}

@media(max-width:900px) {
  .gallery {
    grid-template-columns: 1fr 1fr
  }
}

/* Force gallery items to be visible (in case reveal fails) */
#gallery-container .gal-item,
#media-gallery .gal-item {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

#media-gallery .gal-item.in {
  opacity: 1 !important;
  transform: none !important;
}

.gallery .gal-item {
  opacity: 1 !important;
  visibility: visible !important;
}

.gallery-category-title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--crimson);
  display: inline-block;
}

.gal-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block; /* Ensure image displays */
  position: relative;
  z-index: 1; /* Ensure image is above background */
}

.gal-item:hover img {
  transform: scale(1.1)
}

/* Category thumbnail overlay */
.gal-item.category-thumbnail {
  position: relative;
  display: block;
  background: #f5f5f5; /* Light background in case image fails to load */
}

.gal-item.category-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gal-item.category-thumbnail .gal-overlay {
  z-index: 2;
}

.gal-item.category-thumbnail::after {
  display: none;
}

/* Fallback styling when image fails to load */
.gal-item.has-fallback {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  min-height: 200px;
}

.gal-item.has-fallback img {
  opacity: 0.8;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0; /* Hidden by default, only show on hover */
  transition: opacity 0.3s ease;
  z-index: 2; /* Above image */
}

.gal-item.category-thumbnail:hover .gal-overlay {
  opacity: 1;
}

.gal-info {
  text-align: center;
  color: white;
  margin-bottom: 10px;
}

.gal-info h4 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gal-info span {
  font-size: 13px;
  opacity: 0.9;
}

.gal-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--crimson);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

/* Mobile gallery adjustments */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-category-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .gal-info h4 {
    font-size: 16px;
  }

  .gal-info span {
    font-size: 12px;
  }

  .gal-count {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.gal-item:hover img {
  transform: scale(1.08)
}

.gal-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  background: rgba(5, 30, 63, .5);
  opacity: 0;
  transition: var(--ease)
}

.gal-item:hover::after {
  opacity: 1
}

.gal-item.video::after {
  content: '\f04b'
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  position: relative;
  text-align: center;
}

#lightboxImage {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  min-width: 200px;
}

.lightbox-info h3 {
  font-family: var(--font-h);
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.lightbox-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

#lightboxCounter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10001;
}

.lightbox-close {
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  #lightboxImage {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-info {
    position: relative;
    bottom: auto;
    transform: none;
    margin-top: 20px;
    left: auto;
  }
}

/* ===== EVENTS / TIMELINE LIST ===== */
.event-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.event-row {
  display: flex;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  transition: var(--ease)
}

.event-row:hover {
  box-shadow: var(--sh-md)
}

.event-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 64px
}

.event-date .d {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--crimson);
  line-height: 1
}

.event-date .m {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted)
}

.event-info h4 {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 5px
}

.event-info p {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.65
}

.event-location {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.event-location i {
  color: var(--crimson);
  font-size: 10px;
}

/* ===== FACTSHEET / DOWNLOAD CARD ===== */
.fact-card {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: var(--grad-navy);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  color: #fff;
  box-shadow: var(--sh-lg)
}

.fact-card h3 {
  font-family: var(--font-h);
  font-size: 24px;
  margin-bottom: 8px
}

.fact-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  max-width: 520px
}

.factsheet-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 820px;
  margin: 0 auto
}

@media(max-width:640px) {
  .factsheet-rows {
    grid-template-columns: 1fr
  }
}

.fs-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.fs-row dt {
  font-size: 13.5px;
  color: var(--muted)
}

.fs-row dd {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  text-align: right
}

/* ===== COMPANY TEMPLATE PAGE ===== */
.co-hero {
  background: var(--grad-navy-deep);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden
}

.co-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(3, 12, 26, .86) 0%, rgba(5, 30, 63, .7) 55%, rgba(5, 30, 63, .5) 100%), radial-gradient(ellipse 50% 70% at 85% 10%, rgba(196, 30, 58, .18), transparent 55%)
}

.co-hero .container {
  position: relative;
  z-index: 2
}

.co-head {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.co-badge {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--sh-md);
  overflow: hidden;
  padding: 12px
}

.co-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.co-badge-txt {
  display: none;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy)
}

.co-badge--text .co-badge-txt {
  display: block
}

.co-titles h1 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px
}

.co-sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brass-lt);
  background: rgba(201, 168, 106, .14);
  padding: 6px 16px;
  border-radius: var(--r-full)
}

.co-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start
}

@media(max-width:900px) {
  .co-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

.co-section {
  margin-bottom: 40px
}

.co-section h2 {
  font-family: var(--font-h);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px
}

.co-section p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 14px
}

.co-aside {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  position: sticky;
  top: 100px
}

.co-aside h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px
}

.co-prod {
  display: flex;
  flex-wrap: wrap;
  gap: 9px
}

.co-prod span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--off);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: var(--r-full)
}

/* ===== LEGAL / PROSE ===== */
.prose {
  max-width: 820px;
  margin: 0 auto
}

.prose h2 {
  font-family: var(--font-h);
  font-size: 26px;
  color: var(--navy);
  margin: 42px 0 14px;
  padding-top: 14px;
  scroll-margin-top: 100px
}

.prose h2:first-child {
  margin-top: 0
}

.prose p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 16px
}

.prose ul {
  margin: 0 0 16px 4px
}

.prose li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.7
}

.prose li::before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--crimson);
  font-size: 12px
}

/* ===== SITEMAP ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px
}

@media(max-width:760px) {
  .sitemap-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .sitemap-grid {
    grid-template-columns: 1fr
  }
}

.sm-col h3 {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--crimson);
  display: inline-block
}

.sm-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.sm-col a {
  font-size: 14px;
  color: var(--body);
  transition: var(--ease)
}

.sm-col a:hover {
  color: var(--crimson);
  padding-left: 5px
}

/* ===== SUB-NAV (in-page anchor pills) ===== */
.subnav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.subnav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 25px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.subnav-inner::-webkit-scrollbar {
  height: 4px;
}
.subnav-inner::-webkit-scrollbar-track {
  background: transparent;
}
.subnav-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.subnav-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.subnav-inner::-webkit-scrollbar-button {
  display: none;
}

.subnav a {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: var(--ease)
}

.subnav a:hover,
.subnav a.active {
  background: var(--navy);
  color: #fff
}

/* Mobile Subnav Overrides */
@media(max-width:768px) {
  .subnav {
    position: sticky;
    top: 0
  }

  .subnav-inner {
    position: relative
  }
}

/* ===== HOME HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy)
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
  filter: saturate(.75) brightness(.7);
  animation: kenburns 32s ease-in-out infinite alternate
}

@keyframes kenburns {
  0% {
    transform: scale(1.02) translate(0, 0)
  }

  100% {
    transform: scale(1.1) translate(-1.5%, -1%)
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none
  }

  .orb-1,
  .orb-2,
  .orb-3,
  .hero-rings span {
    animation: none !important
  }

  /* keep the gentle marquee scrolling even under reduced-motion (overrides the global * reset) */
  .hero-marquee .hm-track {
    animation-name: marquee !important;
    animation-duration: 38s !important;
    animation-iteration-count: infinite !important;
    animation-timing-function: linear !important
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3, 12, 26, .94) 0%, rgba(5, 30, 63, .82) 46%, rgba(5, 30, 63, .42) 100%),
    radial-gradient(ellipse 50% 60% at 88% 20%, rgba(196, 30, 58, .22), transparent 55%)
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(183, 184, 183, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(183, 184, 183, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000, transparent 75%)
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 90px
}

.hero-content {
  max-width: 820px;
  will-change: transform
}

/* moving orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none
}

.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .5
}

.orb-1 {
  width: 340px;
  height: 340px;
  top: 8%;
  right: 6%;
  background: radial-gradient(circle, rgba(196, 30, 58, .35), transparent 68%);
  animation: orbFloat 16s ease-in-out infinite
}

.orb-2 {
  width: 260px;
  height: 260px;
  bottom: 12%;
  right: 24%;
  background: radial-gradient(circle, rgba(16, 58, 110, .55), transparent 68%);
  animation: orbFloat 21s ease-in-out infinite reverse
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 24%;
  left: -40px;
  background: radial-gradient(circle, rgba(201, 168, 106, .25), transparent 68%);
  animation: orbFloat 19s ease-in-out infinite
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(-26px, 30px) scale(1.08)
  }

  66% {
    transform: translate(22px, -20px) scale(.95)
  }
}

/* concentric rotating rings */
.hero-rings {
  position: absolute;
  top: 50%;
  right: -180px;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: .4
}

.hero-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(201, 168, 106, .28);
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

.hero-rings span:nth-child(1) {
  width: 420px;
  height: 420px;
  animation: spin 38s linear infinite
}

.hero-rings span:nth-child(2) {
  width: 600px;
  height: 600px;
  border-color: rgba(196, 30, 58, .22);
  border-style: dashed;
  animation: spin 60s linear infinite reverse
}

.hero-rings span:nth-child(3) {
  width: 780px;
  height: 780px;
  border-color: rgba(183, 184, 183, .14);
  animation: spin 90s linear infinite
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@media(max-width:900px) {
  .hero-rings {
    display: none
  }
}

/* tagline + heading */
.hero-tagline {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--brass-lt);
  letter-spacing: .4px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  padding: 8px 18px 8px 8px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  font-size: 12.5px;
  letter-spacing: .4px;
  color: rgba(255, 255, 255, .85);
}

.hero-badge b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-crim);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-full);
}

.hero h1 {
  font-family: var(--font-h);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  font-size: clamp(40px, 6.4vw, 76px);
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: linear-gradient(120deg, #E4CD96, #C9A86A 60%, #9B1528);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, .74);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 38px
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hs-card {
  flex: 1;
  min-width: 150px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  padding: 22px 24px;
  backdrop-filter: blur(6px);
  transition: var(--ease);
}

.hs-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-4px)
}

.hs-num {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px
}

.hs-num .suf {
  color: var(--brass-lt);
  font-size: 24px
}

.hs-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
  letter-spacing: .3px
}

.scroll-cue {
  position: absolute;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .6)
}

.scroll-cue span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase
}

.scroll-cue .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 14px;
  position: relative
}

@media(max-width:600px) {
  .scroll-cue {
    bottom: 34px
  }
}

.scroll-cue .mouse::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 8px;
  background: var(--brass-lt);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrolldot 1.6s ease-in-out infinite
}

@keyframes scrolldot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0)
  }

  40% {
    opacity: 1
  }

  80% {
    opacity: 0;
    transform: translate(-50%, 12px)
  }
}

@media(max-width:600px) {
  .hero-cta .btn {
    width: 100%
  }

  .hs-card {
    min-width: calc(50% - 7px)
  }
}

/* moving sector marquee at base of hero */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, transparent, rgba(3, 12, 26, .55));
  padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.hm-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite
}

.hero-marquee:hover .hm-track {
  animation-play-state: paused
}

.hm-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 30px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

.hm-item i {
  color: var(--brass-lt);
  font-size: 9px
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

@media(max-width:600px) {
  .hero-marquee {
    display: none
  }
}

/* ===== KEY METRICS BAND ===== */
.metrics-band {
  background: var(--grad-navy);
  position: relative;
  z-index: 5;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.metrics-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-brass);
  opacity: .55
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch
}

.metric {
  padding: 40px 28px;
  text-align: center;
  position: relative
}

.metric+.metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: rgba(255, 255, 255, .1)
}

.metric-ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 106, .12);
  border: 1px solid rgba(201, 168, 106, .28);
  color: var(--brass-lt);
  font-size: 21px
}

.metric-val {
  font-family: var(--font-h);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-size: clamp(34px, 3.6vw, 46px)
}

.metric-pre {
  font-family: var(--font-b);
  font-size: .42em;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: .5px
}

.metric-num {
  display: inline-flex;
  align-items: baseline
}

.metric-num .suf {
  color: var(--brass-lt);
  font-size: .62em
}

.metric-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .62);
  margin-top: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 500
}

@media(max-width:880px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr
  }

  .metric:nth-child(3)::before {
    display: none
  }
}

@media(max-width:480px) {
  .metric {
    padding: 30px 16px
  }
}

/* ===== CREDIBILITY MARQUEE ===== */
.cred-band {
  background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 26px 0
}

.cred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 48px
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .82)
}

.cred-item i {
  color: var(--brass-lt);
  font-size: 20px
}

.cred-item b {
  font-family: var(--font-h);
  font-size: 18px;
  color: #fff
}

.cred-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6)
}

/* ===== WHY PROSPERITY ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

@media(max-width:980px) {
  .why-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

.why-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: var(--ease-out);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-crim);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease)
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: transparent
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, .12), rgba(5, 30, 63, .08));
  color: var(--crimson);
  font-size: 24px;
  margin-bottom: 22px;
  transition: var(--ease);
}

.why-card:hover .why-icon {
  background: var(--grad-crim);
  color: #fff;
  transform: rotate(-6deg) scale(1.05)
}

.why-card h3 {
  font-family: var(--font-h);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 11px
}

.why-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.78
}

.why-num {
  position: absolute;
  top: 20px;
  right: 26px;
  z-index: 0;
  font-family: var(--font-h);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .5px;
  color: #162438;
  opacity: .55;
  transition: opacity var(--ease), transform var(--ease);
}

.why-card:hover .why-num {
  opacity: .92;
  transform: translateY(-2px)
}

/* ===== INVESTMENT STRATEGY / ALLOCATION ===== */
.alloc-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center
}

@media(max-width:920px) {
  .alloc-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.donut-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.donut {
  width: min(440px, 88vw);
  height: min(440px, 88vw)
}

.donut-seg {
  transition: stroke-width .3s ease, opacity .3s ease;
  cursor: pointer
}

.donut-seg:hover,
.donut-seg.active {
  stroke-width: 42
}

.donut-seg.dim {
  opacity: .3
}

.donut-lbl {
  font-family: var(--font-b);
  font-size: 10.5px;
  font-weight: 700;
  fill: #fff;
  cursor: pointer;
  transition: opacity .3s ease;
  paint-order: stroke;
  pointer-events: auto
}

.donut-lbl.dim {
  opacity: .28
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none
}

.dc-pct {
  font-family: var(--font-h);
  font-size: 54px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  transition: var(--ease)
}

.dc-sector {
  font-size: 15px;
  font-weight: 700;
  color: var(--crimson);
  margin-top: 6px;
  letter-spacing: .3px;
  min-height: 20px
}

.dc-hint {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

/* sector allocation bars (integrated disclosure, not a table) */
.alloc-legend {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.alloc-row {
  cursor: pointer;
  transition: var(--ease)
}

.ar-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px
}

.ar-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
  transition: var(--ease)
}

.ar-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
  transition: var(--ease)
}

.ar-pct {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy)
}

.ar-track {
  height: 8px;
  border-radius: var(--r-full);
  background: var(--off-2);
  overflow: hidden
}

.ar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-full);
  transition: width 1.1s cubic-bezier(.16, 1, .3, 1)
}

.ar-note {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease, margin-top .4s ease
}

.alloc-row:hover .ar-name,
.alloc-row.active .ar-name {
  color: var(--crimson)
}

.alloc-row:hover .ar-dot,
.alloc-row.active .ar-dot {
  transform: scale(1.25)
}

.alloc-row.active .ar-note {
  max-height: 60px;
  opacity: 1;
  margin-top: 9px
}

/* ===== PORTFOLIO ===== */
.pf-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px
}

.pf-tab {
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  color: var(--muted);
  background: var(--white);
  transition: var(--ease);
}

.pf-tab:hover {
  border-color: var(--crimson);
  color: var(--crimson)
}

.pf-tab.active {
  background: var(--grad-navy);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-sm)
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

@media(max-width:980px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .pf-grid {
    grid-template-columns: 1fr
  }
}

.pf-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease-out);
}

.pf-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent
}

.pf-top {
  padding: 26px 26px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px
}

.pf-badge {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  padding: 8px;
}

.pf-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.pf-badge-txt {
  display: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: .5px;
  text-align: center;
  line-height: 1.1
}

.pf-badge--text {
  background: var(--grad-navy);
  border-color: transparent
}

.pf-badge--text .pf-badge-txt {
  display: block;
  color: #fff
}

.pf-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 0
}

.pf-sector {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--crimson);
  background: rgba(196, 30, 58, .09);
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.pf-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--body);
  background: var(--off);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: var(--r-full);
}

.pf-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2BB673;
  flex-shrink: 0
}

.pf-status.construction {
  color: #8a6d1e
}

.pf-status.construction .dot {
  background: var(--brass)
}

.pf-body {
  padding: 18px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.pf-tagline {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px
}

.pf-name {
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px
}

.pf-summary {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.72;
  margin-bottom: 18px
}

.pf-highlights {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  flex: 1
}

.pf-hl {
  display: flex;
  gap: 10px;
  font-size: 12.8px;
  color: var(--body);
  line-height: 1.55
}

.pf-hl i {
  color: var(--crimson);
  font-size: 11px;
  margin-top: 4px;
  flex-shrink: 0
}

.pf-foot {
  border-top: 1px solid var(--line);
  padding-top: 16px
}

.pf-req {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--ease)
}

.pf-req i {
  color: var(--crimson);
  transition: transform var(--ease)
}

.pf-req:hover {
  color: var(--crimson)
}

.pf-req:hover i {
  transform: translateX(4px)
}

/* ===== PIPELINE ===== */
.pipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 14px
}

@media(max-width:760px) {
  .pipe-grid {
    grid-template-columns: 1fr
  }
}

.pipe-card {
  display: flex;
  gap: 22px;
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  transition: var(--ease);
}

.pipe-card:hover {
  border-color: rgba(201, 168, 106, .4);
  transform: translateY(-5px)
}

.pipe-ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-crim);
  color: #fff;
  font-size: 24px
}

.pipe-card h3 {
  font-family: var(--font-h);
  font-size: 21px;
  color: #fff;
  margin-bottom: 8px
}

.pipe-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 10px;
  display: inline-block
}

.pipe-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .66);
  line-height: 1.72
}

/* ===== LEADERSHIP ===== */
.lead-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

@media(max-width:1040px) {
  .lead-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .lead-grid {
    grid-template-columns: 1fr
  }
}

.lead-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease-out);
  display: flex;
  flex-direction: column;
}

.lead-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: transparent
}

.lead-photo {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background: linear-gradient(160deg, #0A2E5C, #051E3F)
}

.lead-photo .lead-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform .7s ease;
  background: #fff
}

.lead-card:hover .lead-photo .lead-img {
  transform: scale(1.05)
}

.lead-initials {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 54px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9)
}

.lead-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 30, 63, .9) 100%)
}

.lead-role-chip {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--brass-lt)
}

.lead-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.lead-name {
  font-family: var(--font-h);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 6px
}

.lead-creds {
  font-size: 11.5px;
  color: var(--crimson);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px
}

.lead-bio {
  font-size: 13px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1
}

.lead-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.lead-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-2);
  padding: 4px 11px;
  border-radius: var(--r-full)
}

/* compact (homepage preview) */
.lead-card.compact .lead-bio {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

/* ===== STAT STRIP (about) ===== */
.statstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center
}

@media(max-width:760px) {
  .statstrip {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px
  }
}

.stat-item .sv {
  font-family: var(--font-h);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px
}

.stat-item .sv .suf {
  color: var(--brass-lt);
  font-size: .6em
}

.stat-item .sl {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-top: 12px;
  letter-spacing: .5px
}

/* ===== VALUES (about) ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

@media(max-width:720px) {
  .values-grid {
    grid-template-columns: 1fr
  }
}

.val-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: var(--ease)
}

.val-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px)
}

.val-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 30, 63, .07), rgba(196, 30, 58, .1));
  color: var(--crimson);
  font-size: 22px
}

.val-card h4 {
  font-family: var(--font-h);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 8px
}

.val-card p {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.75
}

/* ===== APPROACH TIMELINE (about) ===== */
.approach {
  position: relative;
  max-width: 860px;
  margin: 0 auto
}

.approach::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--crimson), rgba(196, 30, 58, .12))
}

.ap-step {
  position: relative;
  padding: 0 0 38px 76px
}

.ap-step:last-child {
  padding-bottom: 0
}

.ap-dot {
  position: absolute;
  left: 14px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-crim);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 0 5px var(--off)
}

.ap-step h4 {
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px
}

.ap-step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  background: var(--grad-navy-deep)
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 85% 50%, rgba(196, 30, 58, .22), transparent 60%)
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.cta-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.4vw, 40px);
  color: #fff;
  line-height: 1.18;
  max-width: 640px
}

.cta-inner p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, .68);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.75
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* ===== FORMS ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 42px;
  box-shadow: var(--sh-lg)
}

@media(max-width:560px) {
  .form-card {
    padding: 28px 22px
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

@media(max-width:560px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

.fg {
  margin-bottom: 18px
}

.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .2px
}

.fg label .req {
  color: var(--crimson)
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off);
  transition: var(--ease);
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--crimson);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(196, 30, 58, .1)
}

.fg textarea {
  resize: vertical;
  min-height: 120px
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  gap: 8px;
  line-height: 1.6
}

.form-note i {
  color: var(--crimson);
  margin-top: 2px
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px
}

.form-success.show {
  display: block;
  animation: fadeUp .5s ease
}

.form-success i {
  font-size: 52px;
  color: #2BB673;
  margin-bottom: 16px
}

.form-success h3 {
  font-family: var(--font-h);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px
}

.form-success p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.7
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ===== INVESTOR MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 12, 26, .6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible
}

.modal {
  width: min(560px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  transform: translateY(20px) scale(.98);
  transition: var(--ease-out);
}

.modal-overlay.open .modal {
  transform: none
}

.modal-head {
  position: relative;
  padding: 34px 36px 0
}

.modal-head .eyebrow {
  margin-bottom: 10px
}

.modal-head h3 {
  font-family: var(--font-h);
  font-size: 26px;
  color: var(--navy);
  line-height: 1.2
}

.modal-head p {
  font-size: 14px;
  color: var(--body);
  margin-top: 10px;
  line-height: 1.7
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-2);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease)
}

.modal-close:hover {
  background: var(--crimson);
  color: #fff;
  transform: rotate(90deg)
}

.modal-body {
  padding: 26px 36px 36px
}

@media(max-width:560px) {
  .modal-head {
    padding: 26px 22px 0
  }

  .modal-body {
    padding: 22px
  }
}

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.ci-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px
}

.ci-row {
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.ci-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-navy);
  color: #fff;
  font-size: 19px
}

.ci-row h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .4px;
  margin-bottom: 4px
}

.ci-row p,
.ci-row a {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.6
}

.ci-row a:hover {
  color: var(--crimson)
}

.contact-meeting {
  margin-top: 8px;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  background: var(--off);
  border: 1px solid var(--line)
}

.contact-meeting h4 {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px
}

.contact-meeting p {
  font-size: 13.5px;
  color: var(--body);
  margin-bottom: 16px;
  line-height: 1.7
}

/* ===== SECTION DECOR ===== */
.deco-quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
  color: var(--navy);
}

.deco-quote .mark {
  color: var(--crimson);
  font-size: 1.4em;
  line-height: 0
}



[data-page="newsroom"] .news-card:hover .news-img img {
  transform: scale(1.05);
}

[data-page="newsroom"] .news-body {
  padding: 24px;
}

[data-page="newsroom"] .news-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

[data-page="newsroom"] .news-cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #C41E3A;
}

[data-page="newsroom"] .news-date {
  font-size: 12px;
  color: #999;
}

[data-page="newsroom"] .news-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0;
  color: #103A6E;
  line-height: 1.4;
}

[data-page="newsroom"] .news-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0;
}

[data-page="newsroom"] .news-more {
  display: inline-block;
  color: #C41E3A;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  transition: gap 0.3s;
}

[data-page="newsroom"] .news-more i {
  margin-left: 6px;
  transition: transform 0.3s;
}

[data-page="newsroom"] .news-card:hover .news-more i {
  transform: translateX(4px);
}

/* Simple gallery preview cards - Newsroom only */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-preview-card {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.gallery-preview-card__media {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #e8ecf0;
  line-height: 0;
}

.gallery-preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-preview-card:hover .gallery-preview-card__media img {
  transform: scale(1.05);
}

.gallery-preview-card__caption {
  padding: 12px 4px 0;
}

.gallery-preview-card__caption h4 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}

.gallery-preview-card__caption span {
  font-size: 13px;
  color: #7A8696;
}

@media (max-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* Enhanced Gallery Styles - Newsroom only */
[data-page="newsroom"] .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

[data-page="newsroom"] .gal-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #f0f0f0;
}

[data-page="newsroom"] .gal-item.category-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-page="newsroom"] .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

[data-page="newsroom"] .gal-item:hover img {
  transform: scale(1.1);
}

[data-page="newsroom"] .doc-tag.published {
  background: #d4edda;
  color: #155724;
}

/* Mobile specific adjustments - Newsroom only */
@media (max-width: 768px) {
  [data-page="newsroom"] .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-page="newsroom"] .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  [data-page="newsroom"] .news-body {
    padding: 20px;
  }

  [data-page="newsroom"] .news-card h3 {
    font-size: 16px;
  }
  .hero-inner{padding-top: 30px;}
  .hero h1{font-size: 36px;}
  .hero-sub{line-height: 20px; margin-bottom: 30px; font-size: 15px;}
  .btn-lg, .btn{padding: 10px 25px;}
  .subnav a{padding: 4px 10px !important;}
  .hero-badge{line-height: 16px;}
  .h-section{font-size: 24px;}
}

@media (max-width: 480px) {
  [data-page="newsroom"] .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-page="newsroom"] .news-body {
    padding: 16px;
  }
}