﻿.inner-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #edf4fc;
  min-height: clamp(460px, 66vh, 640px);
  display: grid;
  align-items: center;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image, url('../media/hero-about.jpg'));
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: inner-hero-zoom 18s ease-out both;
  filter: saturate(1.02) contrast(1.02);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(6, 18, 42, 0.84) 0%, rgba(6, 18, 42, 0.5) 46%, rgba(6, 18, 42, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 18, 42, 0.0) 30%, rgba(6, 18, 42, 0.55) 100%),
    radial-gradient(ellipse at 18% 85%, rgba(30, 108, 232, 0.28), transparent 60%);
}

@keyframes inner-hero-zoom {
  from { transform: scale(1.14); }
  to   { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .inner-hero::before {
    animation: none;
    transform: scale(1);
  }
}

.inner-hero .container {
  position: relative;
  z-index: 1;
  padding: clamp(6.4rem, 10vw, 8.6rem) 0 clamp(4.4rem, 7vw, 5.8rem);
  display: grid;
  gap: 1.25rem;
  max-width: 1000px;
}

.inner-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 164, 255, 0.42);
  background: rgba(11, 31, 58, 0.32);
  color: rgba(230, 239, 255, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.inner-hero .kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5aa4ff;
  box-shadow: 0 0 12px rgba(90, 164, 255, 0.6);
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(6, 18, 42, 0.35);
}

.inner-hero p {
  margin: 0;
  max-width: 740px;
  color: rgba(232, 239, 248, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.84;
}

.inner-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.inner-hero .hero-actions .btn.primary {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
  box-shadow: 0 16px 36px rgba(6, 18, 42, 0.32);
}

.inner-hero .hero-actions .btn.primary:hover {
  background: #f2f6fb;
  border-color: #f2f6fb;
  transform: translateY(-1px);
}

.inner-hero .hero-actions .btn.accent {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.inner-hero .hero-actions .btn.accent:hover {
  background: rgba(90, 164, 255, 0.2);
  border-color: rgba(90, 164, 255, 0.85);
  color: #ffffff;
}

.detail-band {
  display: grid;
  gap: 1.2rem;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: stretch;
}

.detail-row.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.detail-row.reverse .detail-media {
  order: 2;
}

.detail-row.reverse .detail-copy {
  order: 1;
}

.detail-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  box-shadow: var(--shadow-md);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  padding: clamp(1.35rem, 2vw, 1.9rem);
  border-radius: 24px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.detail-copy h2,
.detail-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-copy p {
  margin: 0;
  color: var(--ink-muted);
}

.leadership-split {
  align-items: center;
}

.leadership-media {
  min-height: 380px;
  max-width: 420px;
}

.leadership-media img {
  object-position: center top;
}

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

.fact-tile {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.35rem;
}

.fact-tile strong {
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.fact-tile span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.sequence-card {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.7rem;
}

.sequence-card strong {
  font-size: 1rem;
  line-height: 1.15;
}

.sequence-card p {
  margin: 0;
  color: var(--ink-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-panel {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-panel h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

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

.notice-card {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.55rem;
}

.notice-card strong {
  font-size: 1rem;
}

.notice-card p {
  margin: 0;
  color: var(--ink-muted);
}

@media (max-width: 1140px) {
  .detail-row,
  .detail-row.reverse,
  .contact-layout,
  .fact-strip,
  .sequence-grid,
  .notice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-row.reverse .detail-media,
  .detail-row.reverse .detail-copy {
    order: initial;
  }
}

@media (max-width: 980px) {
  .inner-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.8rem);
  }

  .detail-row,
  .detail-row.reverse,
  .contact-layout,
  .fact-strip,
  .sequence-grid,
  .notice-grid {
    grid-template-columns: 1fr;
  }

  .leadership-media {
    max-width: none;
    min-height: 360px;
  }
}

/* Pegasus-inspired inner pages */

.pg-inner-hero {
  padding-top: clamp(2.8rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(216, 235, 248, 0.48) 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(circle at 100% 0%, rgba(47, 134, 198, 0.12), transparent 38%);
}

.pg-inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(310px, 0.74fr);
  gap: 2rem;
  align-items: start;
}

.pg-inner-hero-copy {
  max-width: 680px;
}

.pg-inner-hero-panel {
  align-self: stretch;
}

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

.pg-key-number {
  display: block;
  color: var(--pg-blue);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pg-key-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--pg-ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pg-about-leadership {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.4rem;
  align-items: center;
}

.pg-about-overview {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  gap: 2.4rem;
  align-items: start;
}

.pg-about-overview .pg-title {
  max-width: 11.3ch;
  font-size: clamp(2rem, 3.15vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.044em;
  text-wrap: balance;
}

.pg-inner-hero-copy .pg-title {
  max-width: 11.8ch;
  font-size: clamp(2.2rem, 3.55vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.046em;
  text-wrap: balance;
}

.pg-portrait-card {
  aspect-ratio: 4 / 5;
  max-width: 460px;
  justify-self: center;
}

.pg-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 16%;
}

.pg-positioning-panel {
  padding: 1.15rem 1.2rem;
}

.pg-positioning-panel p {
  margin: 0;
}

.pg-panel,
.pg-region-grid .pg-location-card,
.pg-experience-list li {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pg-panel:hover,
.pg-region-grid .pg-location-card:hover,
.pg-experience-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 108, 232, 0.2);
  box-shadow: 0 22px 40px rgba(8, 33, 61, 0.1);
}

.pg-founder-note,
.pg-region-closing-note {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--pg-blue);
  background: linear-gradient(180deg, #f6fbff 0%, #eef5fb 100%);
  box-shadow: var(--pg-shadow-soft);
}

.pg-founder-note p,
.pg-region-closing-note p {
  margin: 0;
}

.pg-button-row--center {
  justify-content: center;
}

.pg-experience-list {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
  margin-top: 1.2rem;
}

.pg-experience-list li {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 1rem 1.25rem 1rem 2.2rem;
  background: #ffffff;
  border: 1px solid rgba(11, 43, 79, 0.08);
  box-shadow: var(--pg-shadow-soft);
  line-height: 1.5;
}

.pg-experience-list li::before {
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
}

.pg-form-title--tight {
  max-width: 15ch;
  margin-inline: auto;
  line-height: 1.03;
  letter-spacing: -0.044em;
}

.pg-office-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.pg-office-list li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(15, 38, 67, 0.08);
}

.pg-office-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.pg-office-list strong {
  color: var(--pg-navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pg-office-list span,
.pg-office-list a {
  color: var(--pg-ink);
  font-size: 0.98rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.pg-contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.6rem;
  align-items: start;
}

.pg-contact-intro {
  max-width: 48ch;
  margin: 0 0 0.3rem;
}

.pg-contact-support-block {
  display: grid;
  gap: 0.8rem;
  margin: 0.25rem 0 1rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--pg-blue);
  background: linear-gradient(180deg, #f6fbff 0%, #eef5fb 100%);
  box-shadow: var(--pg-shadow-soft);
}

.pg-contact-support-block .pg-kicker {
  margin: 0;
}

.pg-contact-support-list {
  margin: 0;
}

.pg-contact-form-note {
  max-width: 44ch;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.68;
  text-align: center;
}

.pg-compact-grid {
  gap: 1rem;
}

.pg-compact-grid .pg-card {
  padding: 1.35rem;
}

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

.pg-region-grid .pg-location-card {
  display: grid;
  gap: 0.7rem;
  min-height: 100%;
  align-content: start;
  border-top: 3px solid rgba(30, 108, 232, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.pg-region-grid .pg-location-card p {
  font-size: 0.95rem;
  line-height: 1.68;
}

.pg-media-card img {
  transition: transform 420ms ease;
}

.pg-media-card:hover img {
  transform: scale(1.03);
}

.pg-region-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  align-items: start;
}

.pg-region-title h3 {
  margin: 0;
  color: var(--pg-navy);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.pg-region-index {
  display: inline-block;
  color: var(--pg-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .pg-inner-hero-grid,
  .pg-about-overview,
  .pg-about-leadership,
  .pg-contact-layout,
  .pg-region-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .pg-inner-hero-grid,
  .pg-about-overview,
  .pg-about-leadership,
  .pg-contact-layout,
  .pg-region-grid,
  .pg-mini-grid {
    grid-template-columns: 1fr;
  }

  .pg-about-overview .pg-title {
    max-width: 10.6ch;
    font-size: clamp(1.72rem, 6.1vw, 2.18rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .pg-inner-hero-copy .pg-title {
    max-width: 11ch;
    font-size: clamp(1.8rem, 6.3vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .pg-portrait-card img {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pg-inner-hero-copy .pg-title,
  .pg-about-overview .pg-title {
    max-width: 10.2ch;
    font-size: clamp(1.48rem, 6.9vw, 1.88rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
  }

  .pg-inner-hero-copy .pg-lead {
    max-width: 26ch;
    line-height: 1.68;
  }

  .pg-experience-list li {
    min-height: 56px;
    padding: 0.95rem 1rem 0.95rem 2.05rem;
  }

  .pg-experience-list li::before {
    left: 1rem;
  }

  .pg-region-title h3 {
    font-size: 1.06rem;
    line-height: 1.22;
  }

  .pg-region-grid .pg-location-card p {
    font-size: 0.93rem;
    line-height: 1.66;
  }

  .pg-about-overview,
  .pg-about-leadership,
  .pg-contact-layout,
  .pg-region-grid {
    gap: 1.5rem;
  }

  .pg-founder-note,
  .pg-region-closing-note {
    padding: 0.95rem 1rem;
  }

  .pg-contact-support-block {
    padding: 0.95rem 1rem;
  }

  .pg-contact-form-note {
    font-size: 0.92rem;
    line-height: 1.64;
  }

  .pg-form-title--tight {
    max-width: 12.4ch;
  }
}

.pg-doc-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: #ffffff;
  border: 1px solid rgba(15, 38, 67, 0.08);
  box-shadow: 0 18px 34px rgba(8, 33, 61, 0.06);
}

.pg-doc-meta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.95rem;
  margin-bottom: 1.8rem;
  background: #eef5fb;
  color: var(--pg-navy);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-doc-prose h2 {
  margin: 2.1rem 0 0.7rem;
  color: var(--pg-navy);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.pg-doc-prose h2:first-of-type {
  margin-top: 0;
}

.pg-doc-prose p,
.pg-doc-prose ul {
  margin: 0 0 1rem;
  color: var(--pg-ink-soft);
  font-size: 0.98rem;
  line-height: 1.78;
}

.pg-doc-prose a {
  color: var(--pg-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pg-doc-prose ul {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pg-doc-prose li {
  position: relative;
  padding-left: 1rem;
}

.pg-doc-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pg-blue);
}

.pg-doc-divider {
  border: none;
  border-top: 1px solid rgba(15, 38, 67, 0.1);
  margin: 1.8rem 0;
}

.pg-doc-note {
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  background: #f5f8fc;
  border: 1px solid rgba(15, 38, 67, 0.08);
}

.pg-doc-note h3 {
  margin: 0 0 0.55rem;
  color: var(--pg-navy);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.pg-doc-note p {
  margin-bottom: 0.35rem;
}

.pg-doc-note p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .pg-doc-shell {
    padding: 1.2rem;
  }

  .pg-doc-prose p,
  .pg-doc-prose ul {
    font-size: 0.94rem;
  }
}

/* ======================================================================
   V16 INNER PAGE MOBILE TYPE CLEANUP
   ====================================================================== */

.pg-inner-hero-copy,
.pg-about-overview,
.pg-about-leadership,
.pg-contact-layout,
.pg-region-grid,
.pg-founder-note,
.pg-region-closing-note,
.pg-contact-support-block {
  min-width: 0;
}

.pg-inner-hero-copy .pg-title,
.pg-about-overview .pg-title,
.pg-about-leadership .pg-title,
.pg-panel h2,
.pg-panel h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .pg-inner-hero-copy .pg-title,
  .pg-about-overview .pg-title {
    max-width: 9.6ch;
    font-size: clamp(1.34rem, 6vw, 1.7rem);
    line-height: 1.12;
    letter-spacing: -0.018em;
  }

  .pg-inner-hero-copy .pg-lead,
  .pg-about-overview .pg-lead,
  .pg-panel p,
  .pg-location-card p {
    font-size: 0.95rem;
    line-height: 1.62;
  }
}

/* ======================================================================
   V17 CONTACT SUPPORT READABILITY FIX
   ====================================================================== */

.pg-contact-support-block {
  gap: 0.95rem !important;
  padding: 1.05rem 1.15rem !important;
  border: 1px solid rgba(15, 38, 67, 0.1) !important;
  border-left: 4px solid var(--pg-blue) !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.pg-contact-support-block .pg-kicker {
  margin: 0 !important;
  color: var(--pg-navy) !important;
}

.pg-contact-support-list {
  display: grid !important;
  gap: 0.9rem !important;
}

.pg-contact-support-list li {
  display: grid !important;
  grid-template-columns: 12px minmax(0, 1fr) !important;
  align-items: center !important;
  justify-items: start !important;
  gap: 0.85rem !important;
  padding: 0 !important;
  color: var(--pg-navy) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.pg-contact-support-list li::before {
  position: static !important;
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: var(--pg-blue) !important;
  transform: none !important;
}

/* ======================================================================
   V18 FINAL INNER PAGE MOBILE / CONTACT CLEANUP
   ====================================================================== */

.pg-contact-support-block,
.pg-contact-support-block .pg-kicker,
.pg-contact-support-list,
.pg-contact-support-list li,
.pg-contact-intro {
  text-align: left !important;
}

.pg-contact-support-list {
  justify-items: start !important;
}

.pg-contact-support-list li {
  color: var(--pg-navy) !important;
}

.pg-inner-hero-copy .pg-title,
.pg-about-overview .pg-title,
.pg-about-leadership .pg-title,
.pg-panel h2,
.pg-panel h3 {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  text-wrap: balance;
}

@media (max-width: 980px) {
  .pg-inner-hero-copy .pg-title {
    max-width: 11.2ch !important;
  }

  .pg-about-overview .pg-title {
    max-width: 11ch !important;
  }
}

@media (max-width: 640px) {
  .pg-inner-hero-copy .pg-title {
    max-width: 10.8ch !important;
    font-size: clamp(1.48rem, 6.8vw, 1.86rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
  }

  .pg-about-overview .pg-title {
    max-width: 10.6ch !important;
    font-size: clamp(1.42rem, 6.5vw, 1.82rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
  }
}

/* ======================================================================
   V19 FINAL CONTACT BLOCK / MOBILE HEADING HARDENING
   ====================================================================== */

.pg-contact-support-list {
  display: grid !important;
  gap: 0.85rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.pg-contact-support-list li {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0.8rem !important;
  padding: 0 !important;
  text-align: left !important;
  color: var(--pg-navy) !important;
}

.pg-contact-support-list li::before {
  content: "" !important;
  position: static !important;
  flex: 0 0 10px !important;
  width: 10px !important;
  height: 10px !important;
  margin-top: 0.45rem !important;
  transform: none !important;
  border-radius: 999px !important;
  background: var(--pg-blue) !important;
}

@media (max-width: 640px) {
  .pg-inner-hero-copy .pg-title {
    max-width: 10.2ch !important;
    font-size: clamp(1.34rem, 6.1vw, 1.7rem) !important;
    line-height: 1.12 !important;
  }
}

/* ======================================================================
   V20 FINAL CONTACT / MOBILE TYPOGRAPHY LOCK
   ====================================================================== */

.pg-contact-support-block {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(15, 38, 67, 0.1) !important;
  border-left: 4px solid var(--pg-blue) !important;
  box-shadow: none !important;
}

.pg-contact-support-block .pg-kicker {
  display: block !important;
  margin: 0 0 0.2rem !important;
  padding: 0 !important;
  background: none !important;
  color: var(--pg-navy) !important;
  text-align: left !important;
}

.pg-contact-support-list {
  display: grid !important;
  gap: 0.95rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.pg-contact-support-list li {
  display: grid !important;
  grid-template-columns: 12px minmax(0, 1fr) !important;
  align-items: start !important;
  justify-items: start !important;
  gap: 0.85rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pg-navy) !important;
  text-align: left !important;
}

.pg-contact-support-list li::before {
  content: "" !important;
  position: static !important;
  width: 10px !important;
  height: 10px !important;
  margin-top: 0.45rem !important;
  border-radius: 999px !important;
  background: var(--pg-blue) !important;
  transform: none !important;
}

@media (max-width: 640px) {
  .pg-inner-hero-copy .pg-title,
  .pg-about-overview .pg-title {
    max-width: 14ch !important;
    font-size: clamp(1.2rem, 5.2vw, 1.56rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.016em !important;
  }
}

/* ======================================================================
   V21 FINAL MOBILE TITLE / CONTACT ALIGNMENT
   ====================================================================== */

.pg-inner-hero-copy .pg-title,
.pg-about-overview .pg-title,
.pg-about-leadership .pg-title,
.pg-form-shell h2 {
  text-wrap: balance;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.pg-form-shell h2 {
  max-width: 18ch;
}

@media (max-width: 640px) {
  .pg-inner-hero-copy .pg-title,
  .pg-about-overview .pg-title,
  .pg-about-leadership .pg-title {
    max-width: 13.2ch !important;
    font-size: clamp(1.18rem, 5.1vw, 1.52rem) !important;
    line-height: 1.08 !important;
  }

  .pg-form-shell h2 {
    max-width: 13ch !important;
    font-size: clamp(1.18rem, 5vw, 1.46rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.015em !important;
  }
}

/* V22 final lock for contact list alignment and button wrapping */
.pg-contact-support-block {
  display: block !important;
}

.pg-contact-support-block .pg-kicker {
  display: block !important;
  width: 100% !important;
  margin: 0 0 0.7rem !important;
  padding: 0 !important;
  background: none !important;
  text-align: left !important;
}

.pg-contact-support-list {
  display: grid !important;
  gap: 0.95rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  justify-items: stretch !important;
}

.pg-contact-support-list li {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0.8rem !important;
  width: 100% !important;
  padding: 0 !important;
  color: var(--pg-navy) !important;
  text-align: left !important;
}

.pg-contact-support-list li::before {
  content: "" !important;
  flex: 0 0 10px !important;
  width: 10px !important;
  height: 10px !important;
  margin-top: 0.45rem !important;
  border-radius: 999px !important;
  background: var(--pg-blue) !important;
}

.pg-button,
.pg-form-submit {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .pg-form-shell h2 {
    max-width: 12ch !important;
  }

  .pg-office-list span,
  .pg-office-list a {
    font-size: 0.94rem;
  }
}

/* ======================================================================
   PG-PAGE-HERO — reusable cinematic network hero for inner pages
   Shared by about, regions, contact, capability-statement, privacy-policy
   Driven by js/global.js initHomeNetworkHero via [data-network-hero]
   ====================================================================== */

.pg-page-hero {
  position: relative;
  overflow: hidden;
  background: #05162c;
  perspective: 1400px;
  isolation: isolate;
}

.pg-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(47, 134, 198, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(5, 22, 44, 0.0) 0%, rgba(5, 22, 44, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

.pg-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pg-page-hero-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
}

.pg-page-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 58%;
  transform: scale(1.06);
  filter: saturate(0.9) brightness(0.78) contrast(1.04);
  animation: pg-page-hero-zoom 22s ease-out both;
}

@keyframes pg-page-hero-zoom {
  from { transform: scale(1.14); }
  to   { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .pg-page-hero-bg {
    animation: none;
    transform: scale(1.04);
  }
}

.pg-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(7, 25, 47, 0.94) 0%, rgba(7, 25, 47, 0.88) 28%, rgba(7, 25, 47, 0.7) 46%, rgba(7, 25, 47, 0.42) 68%, rgba(7, 25, 47, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 43, 79, 0.06) 0%, rgba(11, 43, 79, 0.28) 100%);
}

.pg-page-hero-tech,
.pg-page-hero-network {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pg-page-hero-tech::before,
.pg-page-hero-tech::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pg-page-hero-tech::before {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(133, 191, 244, 0.28) 1.4px, transparent 2.2px);
  background-size: 28px 28px;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent 0, transparent 24%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 24%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
}

.pg-page-hero-tech::after {
  top: 9%;
  right: 2%;
  width: min(44vw, 520px);
  height: min(58vh, 450px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='148' viewBox='0 0 170 148'%3E%3Cg fill='none' stroke='rgba(124,178,222,0.22)' stroke-width='1.2'%3E%3Cpath d='M42.5 1 L84.5 25 L84.5 73 L42.5 97 L0.5 73 L0.5 25 Z'/%3E%3Cpath d='M127.5 1 L169.5 25 L169.5 73 L127.5 97 L85.5 73 L85.5 25 Z'/%3E%3Cpath d='M84.5 50 L126.5 74 L126.5 122 L84.5 146 L42.5 122 L42.5 74 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 184px 160px;
  background-repeat: repeat;
  opacity: 0.62;
  transform: translateZ(24px);
}

.pg-page-hero-network {
  opacity: 0.92;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.02) 16%, rgba(0, 0, 0, 0.58) 30%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.02) 16%, rgba(0, 0, 0, 0.58) 30%, rgba(0, 0, 0, 1) 100%);
}

.pg-page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px) saturate(0.96);
  -webkit-backdrop-filter: blur(10px) saturate(0.96);
  mask-image: radial-gradient(circle at 45% 49%, transparent 22%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.9) 100%);
  -webkit-mask-image: radial-gradient(circle at 45% 49%, transparent 22%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}

.pg-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  min-height: clamp(520px, 62vh, 620px);
  padding: clamp(4.4rem, 7vw, 5.7rem) 0 clamp(1.6rem, 3vw, 2.3rem);
}

.pg-page-hero .container {
  width: min(1460px, calc(100% - 84px));
}

.pg-page-hero-shell {
  max-width: 680px;
}

.pg-page-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 680px;
}

.pg-page-hero-copy .pg-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.pg-page-hero-copy .pg-title {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(2.6rem, 4.3vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: pretty;
}

.pg-page-hero-copy .pg-lead {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.pg-page-hero-note {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.64;
}

.pg-page-hero .pg-button {
  box-shadow: 0 18px 36px rgba(8, 33, 61, 0.28);
}

.pg-page-hero .pg-button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.pg-page-hero .pg-button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.pg-page-hero-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 1100px;
}

.pg-page-hero-summary span {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 43, 79, 0.1);
  box-shadow: 0 18px 34px rgba(8, 33, 61, 0.1);
  color: var(--pg-navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pg-page-hero-summary span:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 108, 232, 0.22);
  box-shadow: 0 22px 40px rgba(8, 33, 61, 0.12);
}

@media (max-width: 1100px) {
  .pg-page-hero-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pg-page-hero .container {
    width: min(1460px, calc(100% - 48px));
  }
}

@media (max-width: 760px) {
  .pg-page-hero-bg {
    object-position: 58% 58%;
  }

  .pg-page-hero-inner {
    min-height: clamp(420px, 72vh, 560px);
    padding: clamp(3.4rem, 12vw, 4.6rem) 0 clamp(1.4rem, 4vw, 2rem);
  }

  .pg-page-hero-copy .pg-title {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .pg-page-hero-copy .pg-lead {
    font-size: 0.96rem;
  }

  .pg-page-hero-note {
    font-size: 0.86rem;
  }

  .pg-page-hero-network {
    opacity: 0.75;
  }

  .pg-page-hero-summary {
    grid-template-columns: 1fr;
  }
}

/* Cinematic staged entrance — hero children stage-in on load */
.pg-page-hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.15, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.15, 1);
  transition-delay: var(--pg-stage-delay, 0ms);
}

.pg-page-hero-copy.is-staged > *,
.pg-page-hero-copy[data-reveal].in-view > * {
  opacity: 1;
  transform: none;
}

.pg-page-hero-copy > *:nth-child(1) { --pg-stage-delay: 80ms; }
.pg-page-hero-copy > *:nth-child(2) { --pg-stage-delay: 220ms; }
.pg-page-hero-copy > *:nth-child(3) { --pg-stage-delay: 360ms; }
.pg-page-hero-copy > *:nth-child(4) { --pg-stage-delay: 500ms; }
.pg-page-hero-copy > *:nth-child(5) { --pg-stage-delay: 640ms; }

@media (prefers-reduced-motion: reduce) {
  .pg-page-hero-copy > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Contact page direct-info 3-up grid (sits below the new hero) */
.pg-contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.pg-contact-direct-grid .pg-panel {
  display: grid;
  gap: 0.6rem;
}

@media (max-width: 980px) {
  .pg-contact-direct-grid {
    grid-template-columns: 1fr;
  }
}
