:root {
  --wpb-navy: #0b2f4f;
  --wpb-navy-deep: #06223a;
  --wpb-mint: #2d6fb5;
  --wpb-lime: #1f8cff;
  --wpb-sand: #f5f8fc;
  --wpb-ink: #102436;
  --wpb-muted: #5f7285;
  --wpb-border: rgba(16, 36, 54, 0.12);
  --wpb-shadow: 0 18px 60px rgba(7, 28, 46, 0.12);
  --wpb-radius: 28px;
  --wpb-radius-sm: 18px;
  --wpb-container: min(1200px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--wpb-ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: var(--wpb-container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(6, 34, 58, 0.98), rgba(6, 34, 58, 0.94));
  color: #fff;
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(4, 19, 33, 0.28);
}

.home .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: linear-gradient(180deg, rgba(4, 21, 36, 0.92), rgba(4, 21, 36, 0.62) 68%, transparent);
  box-shadow: none;
}

.home .site-header.is-scrolled {
  box-shadow: none;
}

.home .utility-bar,
.home .header-actions {
  display: none;
}

.home .header-main__inner {
  min-height: 108px;
  gap: 28px;
}

.home .nav-link {
  min-height: 108px;
}

.home .site-brand__text,
.home .custom-logo-link {
  font-size: 1.45rem;
  letter-spacing: 0.18em;
}

.home .site-brand__logo,
.home .wpb-brand-logo--full {
  height: 46px;
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar__inner,
.header-main__inner,
.footer-main,
.footer-meta,
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar__inner {
  min-height: 42px;
  font-size: 13px;
}

.utility-links,
.utility-actions,
.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.utility-links a,
.utility-actions button,
.utility-language {
  color: rgba(255, 255, 255, 0.78);
}

.utility-action {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.utility-action--search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-meta__search,
.header-meta__language {
  min-height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font: 700 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-meta__search {
  width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
}

.header-meta__search-icon {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
}

.header-meta__search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.header-meta__language {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-meta__language::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.language-switcher {
  position: relative;
  display: inline-flex;
}

.language-switcher__toggle {
  gap: 6px;
  transition: color 0.18s ease, background 0.18s ease;
}

.language-switcher.is-open .language-switcher__toggle {
  color: #fff;
}

.language-switcher.is-open .language-switcher__toggle::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  min-width: 126px;
  padding: 8px;
  border: 1px solid rgba(223, 231, 240, 0.96);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 20, 34, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(223, 231, 240, 0.96);
  border-left: 1px solid rgba(223, 231, 240, 0.96);
  background: #fff;
  transform: rotate(45deg);
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switcher__link {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 4px;
  color: #0b223d;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible,
.language-switcher__link.is-current {
  background: #eef5fc;
  color: #075fc9;
}

.header-main__inner {
  min-height: 88px;
}

.header-main {
  position: relative;
}

.site-brand__text,
.custom-logo-link {
  font: 800 2rem/1 "Manrope", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}

.site-brand__logo-link {
  display: inline-flex;
  align-items: center;
}

.site-brand__logo,
.wpb-brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.site-brand__logo,
.wpb-brand-logo--full {
  height: 42px;
  max-width: min(220px, 26vw);
}

.wpb-brand-logo--mark {
  height: 36px;
}

.primary-navigation {
  flex: 1;
}

.nav-list,
.nav-list ul,
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: static;
}

.nav-item {
  position: relative;
}

.nav-item--has-panel {
  position: static;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  font: 700 0.93rem/1 "Manrope", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.nav-link--has-panel::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-item--has-panel.is-open > .nav-link {
  color: var(--wpb-lime);
}

.nav-item--has-panel.is-open > .nav-link--has-panel::after {
  transform: rotate(-135deg) translateY(1px);
}

.nav-item__toggle,
.mobile-menu-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.nav-item__toggle {
  display: none;
}

.mega-panel {
  position: absolute;
  inset: calc(100% - 1px) 0 auto 0;
  min-width: 0;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  background: #fff;
  box-shadow: 0 28px 50px rgba(7, 28, 46, 0.12);
}

.nav-item.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-panel__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: start;
  gap: 24px 56px;
  width: var(--wpb-container);
  margin: 0 auto;
  padding: 30px 0 38px;
  background: transparent;
  color: var(--wpb-ink);
  border-radius: 0;
  box-shadow: none;
}

.mega-panel__heading {
  margin: 0 0 16px;
  font: 800 0.92rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0;
  text-transform: none;
  color: #0a69b8;
}

.mega-panel__heading a {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid #0a7fd8;
  color: inherit;
}

.mega-panel__links {
  display: grid;
  gap: 16px;
}

.mega-panel__links a {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #173f66;
}

.mega-panel__image {
  display: block;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(0, 68, 124, 0.08);
  aspect-ratio: 16 / 9;
}

.mega-panel__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.mega-panel__image:hover img,
.mega-panel__image:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.mega-panel__lead {
  display: none;
}

.mega-panel__lead-kicker {
  display: none;
}

.mega-panel__lead-title {
  display: none;
}

.mega-panel__lead-body {
  display: none;
}

.mega-panel__description {
  display: block;
  margin: -6px 0 16px;
  color: rgba(23, 63, 102, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mega-panel__link-description {
  display: block;
  margin-top: 4px;
  color: rgba(23, 63, 102, 0.62);
  font-size: 0.8rem;
  font-weight: 500;
}

.wpb-mirror-footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.wpb-mirror-footer-contact__item {
  color: currentColor;
  opacity: 0.84;
}

.header-search {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 21, 36, 0.94);
}

.header-search__inner {
  display: grid;
  gap: 14px;
  padding: 20px 0 26px;
}

.header-search__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.header-search__input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: 500 1rem/1 "IBM Plex Sans", sans-serif;
}

.header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.header-search__input--light {
  border-color: var(--wpb-border);
  background: #fff;
  color: var(--wpb-ink);
}

.header-search__input--light::placeholder {
  color: var(--wpb-muted);
}

.header-search__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.header-actions {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 700 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: #065fd3;
  color: #fff;
}

.button--ghost {
  border-color: rgba(11, 47, 79, 0.18);
  color: var(--wpb-navy);
}

.button--text {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--wpb-navy);
}

.section-shell {
  padding: 88px 0;
}

.section-shell--light { background: #fff; }
.section-shell--white { background: #fff; }
.section-shell--neutral { background: var(--wpb-sand); }
.section-shell--dark { background: var(--wpb-navy-deep); color: #fff; }
.section-shell--dark-accent { background: linear-gradient(160deg, var(--wpb-navy), var(--wpb-navy-deep)); color: #fff; }
.section-shell--contact { background: linear-gradient(135deg, #eef5fc, #f8fbfe); }
.section-shell--industry-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 27, 49, 0.78), rgba(3, 27, 49, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #123b60 0%, #0d2e4f 44%, #071c31 100%);
  background-size: auto, 104px 104px, 104px 104px, auto;
  color: #fff;
}

.section-shell--industry-showcase::before,
.section-shell--industry-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-shell--industry-showcase::before {
  background:
    linear-gradient(118deg, transparent 16%, rgba(111, 207, 255, 0.22) 34%, transparent 46%),
    linear-gradient(132deg, transparent 58%, rgba(47, 140, 255, 0.16) 66%, transparent 74%);
  opacity: 0.58;
}

.section-shell--industry-showcase::after {
  display: none;
}

.section-kicker {
  margin: 0 0 16px;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #075fc9;
}

.section-shell--dark .section-kicker,
.section-shell--dark-accent .section-kicker,
.section-shell--industry-showcase .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.section-shell--industry-showcase .section-title,
.section-shell--industry-showcase .section-text,
.section-shell--industry-showcase .button--text {
  color: #fff;
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(2.9rem, 4.7vw, 5rem);
  line-height: 0.98;
  color: #fff;
}

.section-title,
.page-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.section-text,
.hero-body p,
.contact-band__body,
.content-shell {
  font-size: 1.06rem;
  line-height: 1.8;
  color: inherit;
}

.section-text--narrow {
  max-width: 760px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading__copy {
  flex: 1;
  min-width: 0;
}

.section-heading__actions {
  flex-shrink: 0;
}

.page-summary {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.archive-meta,
.archive-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.archive-meta {
  margin-top: 24px;
}

.archive-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.archive-meta__label {
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.archive-meta__value {
  font: 700 0.9rem/1 "IBM Plex Sans", sans-serif;
  color: #fff;
}

.archive-pills {
  margin-top: 18px;
}

.archive-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font: 700 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.archive-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 140, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.archive-pill--active {
  border-color: transparent;
  background: #065fd3;
  color: #fff;
}

.hero-section {
  padding: 38px 0 76px;
  background: linear-gradient(160deg, #061d33 0%, #0b2f4f 52%, #082641 100%);
  color: #fff;
}

.home .hero-section {
  padding-top: 122px;
}

.hero-grid,
.split-section,
.cta-feature,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1fr;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  min-height: auto;
  margin: 92px 0 72px 64px;
  padding: 0;
  background: none;
  clip-path: none;
  box-shadow: none;
  text-shadow: 0 18px 42px rgba(4, 20, 34, 0.34);
}

.hero-copy .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero-body {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-section .button-row {
  margin-top: 30px;
}

.hero-media,
.split-visual,
.cta-feature__visual {
  min-height: 520px;
}

.hero-media--stack {
  display: block;
  grid-column: 1;
  grid-row: 1;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--wpb-radius);
  background: linear-gradient(145deg, #d7e1e8 0%, #f8fbfd 56%, #c8d6df 100%);
  box-shadow: var(--wpb-shadow);
  isolation: isolate;
}

.visual-panel__caption:empty {
  display: none;
}

.visual-panel__mesh,
.visual-panel__backdrop,
.visual-panel__subject,
.visual-panel__foreground,
.visual-panel__cut,
.visual-panel__caption {
  position: absolute;
}

.hero-section .visual-panel {
  min-height: 700px;
  border-radius: 0 0 var(--wpb-radius) var(--wpb-radius);
}

.visual-panel__mesh {
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.visual-panel__backdrop {
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, rgba(13, 37, 58, 0.08), rgba(255, 255, 255, 0.08));
}

.visual-panel__subject {
  inset: auto 7% 12% auto;
  width: min(56%, 360px);
  height: 70%;
  z-index: 2;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 18%),
    linear-gradient(145deg, #8aa0b1 0%, #566f82 42%, #30475a 100%);
  box-shadow: -18px 28px 80px rgba(8, 24, 36, 0.28);
}

.visual-panel__foreground {
  inset: auto -8% -4% -6%;
  height: 28%;
  z-index: 2;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06) 54%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(145deg, #dfe8ee 0%, #96abbb 42%, #627989 100%);
  transform: rotate(-8deg);
}

.visual-panel__cut {
  inset: auto auto 10% -16%;
  width: 74%;
  height: 24%;
  z-index: 3;
  border-radius: 0 28px 28px 0;
  background: rgba(255, 255, 255, 0.48);
  transform: rotate(-14deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.visual-panel__caption {
  left: 28px;
  right: auto;
  bottom: 24px;
  max-width: 280px;
  z-index: 4;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(6, 34, 58, 0.9);
  color: #fff;
  font: 600 0.95rem/1.5 "IBM Plex Sans", sans-serif;
}

.visual-panel--hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(90deg, rgba(47, 140, 255, 0.08), transparent 34%),
    linear-gradient(145deg, #2a4054 0%, #6a8396 42%, #1a2c3d 100%);
}

.visual-panel--hero .visual-panel__mesh {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.14;
}

.visual-panel--hero .visual-panel__backdrop {
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 255, 255, 0.22), transparent 14%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(4, 21, 36, 0.06), rgba(4, 21, 36, 0.28)),
    linear-gradient(150deg, #31495c 0%, #7d95a7 36%, #102333 100%);
}

.visual-panel--hero .visual-panel__subject {
  inset: auto 4% 8% auto;
  width: 46%;
  height: 78%;
  border-radius: 34px 34px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 16%),
    linear-gradient(145deg, #70889b 0%, #32475a 44%, #182937 100%);
  box-shadow: -24px 34px 88px rgba(2, 12, 20, 0.48);
}

.visual-panel--hero .visual-panel__foreground {
  inset: auto -8% 7% 18%;
  height: 18%;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 74%),
    linear-gradient(135deg, #8498a8 0%, #2a4053 100%);
  transform: skewX(-18deg);
}

.visual-panel--hero .visual-panel__cut {
  inset: 11% 10% auto auto;
  width: 28%;
  height: 54%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.visual-panel--hero::before,
.visual-panel--split::before,
.visual-panel--careers::before,
.visual-panel--contact::before {
  content: "";
  position: absolute;
  inset: 36px 34px auto auto;
  width: 148px;
  height: 148px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.visual-panel--split {
  background:
    linear-gradient(160deg, rgba(8, 31, 51, 0.08), rgba(8, 31, 51, 0.32)),
    linear-gradient(120deg, rgba(47, 140, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #d2dde5 0%, #8aa0b1 38%, #33495c 100%);
}

.visual-panel--split .visual-panel__backdrop {
  background:
    linear-gradient(180deg, rgba(5, 22, 36, 0.08), rgba(5, 22, 36, 0.36)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(145deg, #d8e2ea 0%, #93a8b8 42%, #355064 100%);
}

.visual-panel--split .visual-panel__subject {
  inset: auto 8% 14% auto;
  width: 42%;
  height: 66%;
  border-radius: 30px 30px 20px 20px;
  background:
    radial-gradient(circle at 54% 18%, rgba(255, 244, 236, 0.48), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 16%),
    linear-gradient(145deg, #a4b6c2 0%, #61798b 42%, #344c60 100%);
}

.visual-panel--split .visual-panel__foreground {
  inset: auto 14% -3% -12%;
  height: 22%;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(135deg, #eff4f7 0%, #b4c3ce 40%, #708493 100%);
  transform: rotate(-11deg);
}

.visual-panel--split .visual-panel__cut,
.visual-panel--careers .visual-panel__cut,
.visual-panel--contact .visual-panel__cut {
  inset: auto auto 0 -12%;
  width: 92%;
  height: 42%;
  border-radius: 0 26px 0 0;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(-12deg);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.visual-panel--careers {
  background:
    linear-gradient(150deg, rgba(5, 30, 48, 0.08), rgba(5, 30, 48, 0.46)),
    linear-gradient(120deg, rgba(47, 140, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #d4e0e8 0%, #99afbe 42%, #3a5163 100%);
}

.visual-panel--careers .visual-panel__backdrop {
  background:
    linear-gradient(180deg, rgba(5, 22, 36, 0.12), rgba(5, 22, 36, 0.44)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 14%),
    linear-gradient(145deg, #dae3ea 0%, #9cb0be 40%, #3d5667 100%);
}

.visual-panel--careers .visual-panel__subject {
  inset: auto auto 13% 10%;
  width: 72%;
  height: 58%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 34%, rgba(248, 225, 207, 0.92) 0 7%, transparent 8%),
    radial-gradient(circle at 34% 26%, rgba(248, 225, 207, 0.92) 0 7%, transparent 8%),
    radial-gradient(circle at 53% 38%, rgba(248, 225, 207, 0.9) 0 7%, transparent 8%),
    radial-gradient(circle at 73% 26%, rgba(248, 225, 207, 0.92) 0 7%, transparent 8%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 16%),
    linear-gradient(145deg, #9eafba 0%, #5f7381 42%, #334c5e 100%);
  box-shadow: -14px 26px 72px rgba(5, 20, 31, 0.32);
}

.visual-panel--careers .visual-panel__foreground {
  inset: auto -10% -2% 20%;
  height: 20%;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(145deg, #edf3f6 0%, #b9c7d1 40%, #738897 100%);
  transform: rotate(-8deg);
}

.visual-panel--contact {
  background:
    linear-gradient(150deg, rgba(5, 30, 48, 0.12), rgba(5, 30, 48, 0.42)),
    linear-gradient(120deg, rgba(47, 140, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #d6e1e8 0%, #8ea5b6 46%, #31475a 100%);
}

.visual-panel--contact .visual-panel__backdrop {
  background:
    linear-gradient(180deg, rgba(5, 22, 36, 0.1), rgba(5, 22, 36, 0.36)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(145deg, #d7e2ea 0%, #93aaba 42%, #324a5e 100%);
}

.visual-panel--contact .visual-panel__subject {
  inset: auto 8% 14% auto;
  width: 56%;
  height: 54%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 18%),
    linear-gradient(145deg, #a9bac6 0%, #627888 42%, #354d61 100%);
}

.visual-panel--contact .visual-panel__foreground {
  inset: auto -10% 0 -6%;
  height: 24%;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(145deg, #ecf2f5 0%, #b5c5cf 38%, #718593 100%);
  transform: rotate(-7deg);
}

.hero-signal-panel {
  padding: 24px;
  border-radius: var(--wpb-radius-sm);
  background: linear-gradient(160deg, rgba(6, 34, 58, 0.96), rgba(11, 47, 79, 0.92));
  color: #fff;
  box-shadow: var(--wpb-shadow);
}

.hero-signal-panel__eyebrow,
.story-card__eyebrow,
.card-sequence {
  margin: 0 0 14px;
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signal-panel__eyebrow,
.story-card__eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-signal-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-signal-card__value {
  font: 800 1.8rem/1 "Manrope", sans-serif;
}

.hero-signal-card__label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.hero-signal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-signal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font: 700 0.78rem/1 "Manrope", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-section .button--ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.hero-section .button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid,
.archive-grid,
.card-grid,
.link-columns {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.section-shell--stats .section-kicker {
  color: var(--wpb-navy);
}

.section-shell--stats .stat-card {
  padding: 12px 0 22px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--wpb-border);
  border-radius: 0;
  box-shadow: none;
}

.section-shell--stats .stat-card::before {
  display: none;
}

.section-shell--stats .stat-card__value {
  color: var(--wpb-navy-deep);
  font-size: clamp(2.3rem, 3vw, 3.4rem);
}

.section-shell--stats .stat-card__label {
  color: var(--wpb-muted);
}

.card-grid--capabilities,
.card-grid--stories,
.archive-grid,
.link-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.capability-slider {
  margin-top: 34px;
}

.capability-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.capability-slider__viewport::-webkit-scrollbar {
  display: none;
}

.capability-slider__track {
  display: flex;
  gap: 22px;
}

.capability-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.capability-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 18px;
}

.capability-slider__control {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wpb-muted);
  cursor: pointer;
  font: 800 0.76rem/1 "Manrope", sans-serif;
  letter-spacing: 0.06em;
}

.capability-slider__control:hover {
  color: var(--wpb-navy-deep);
}

.stat-card,
.feature-card,
.industry-card,
.story-card,
.content-shell,
.redirect-panel,
.footer-contact,
.page-hero,
.link-column {
  border-radius: var(--wpb-radius-sm);
}

.stat-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card__value {
  font: 800 clamp(2rem, 3vw, 3rem)/1 "Manrope", sans-serif;
}

.stat-card__label {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-card,
.industry-card,
.story-card,
.content-shell,
.redirect-panel,
.link-column {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.card-sequence {
  color: rgba(11, 47, 79, 0.42);
}

.feature-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-top: 0;
  color: #fff;
  background: #112b41;
}

.feature-card--plain {
  min-height: 0;
  color: var(--wpb-ink);
  background: #fff;
  border-top: 1px solid var(--wpb-border);
}

.feature-card--plain .feature-card__content {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.feature-card--plain p {
  color: var(--wpb-muted);
}

.feature-card--plain .button--text {
  color: var(--wpb-navy);
}

.feature-card__media,
.feature-card__content {
  position: relative;
  z-index: 1;
}

.feature-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(7, 29, 46, 0.08), rgba(7, 29, 46, 0.32)),
    linear-gradient(145deg, #698397 0%, #264761 100%);
}

.feature-card__media::before,
.feature-card__media::after,
.story-card__media::before,
.story-card__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.feature-card__media::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 24%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.08) 100%);
}

.feature-card__media::after {
  inset: auto -8% 12% auto;
  width: 52%;
  height: 28%;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  transform: skewX(-18deg);
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 184px 30px 30px;
  background: linear-gradient(180deg, rgba(7, 29, 46, 0.02) 0%, rgba(7, 29, 46, 0.14) 30%, rgba(7, 29, 46, 0.92) 100%);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card .button--text {
  color: #fff;
}

.feature-card:nth-child(2) .feature-card__media {
  background:
    linear-gradient(180deg, rgba(7, 29, 46, 0.12), rgba(7, 29, 46, 0.9)),
    linear-gradient(145deg, #61778b 0%, #1f3d58 100%);
}

.feature-card:nth-child(3) .feature-card__media {
  background:
    linear-gradient(180deg, rgba(7, 29, 46, 0.12), rgba(7, 29, 46, 0.9)),
    linear-gradient(145deg, #7991a0 0%, #31536f 100%);
}

.feature-card:nth-child(4) .feature-card__media {
  background:
    linear-gradient(180deg, rgba(7, 29, 46, 0.12), rgba(7, 29, 46, 0.9)),
    linear-gradient(145deg, #788ea4 0%, #223e57 100%);
}

.feature-card,
.industry-card,
.story-card,
.redirect-panel,
.link-column,
.contact-band,
.entry-stat-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover,
.industry-card:hover,
.story-card:hover,
.redirect-panel:hover,
.link-column:hover,
.contact-band:hover,
.entry-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 140, 255, 0.34);
  box-shadow: 0 24px 70px rgba(7, 28, 46, 0.16);
}

.feature-card h3,
.industry-card h3,
.story-card h3,
.story-card h2,
.link-column h3 {
  margin: 0 0 14px;
  font: 800 1.35rem/1.2 "Manrope", sans-serif;
}

.industry-card__icon {
  position: relative;
  width: 86px;
  height: 86px;
  margin-bottom: 34px;
  color: #35d0ff;
}

.industry-card__icon::before,
.industry-card__icon::after,
.industry-index__icon::before,
.industry-index__icon::after,
.industry-showcase__eyebrow-icon::before,
.industry-showcase__eyebrow-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.industry-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  grid-template-areas:
    "eyebrow featured"
    "index featured";
  gap: 20px 40px;
  margin-top: 34px;
}

.industry-showcase__eyebrow {
  grid-area: eyebrow;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  margin: 0;
  padding: 0 26px;
  border: 1px solid rgba(53, 208, 255, 0.48);
  background: rgba(5, 39, 67, 0.44);
  font: 800 1rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #35d0ff;
}

.industry-showcase__eyebrow-icon {
  position: relative;
  width: 46px;
  height: 46px;
  color: #35d0ff;
  flex-shrink: 0;
}

.industry-showcase__eyebrow-icon::before {
  inset: 2px 8px 10px;
  border: 2px solid currentColor;
  border-radius: 24px 24px 20px 20px;
  clip-path: polygon(50% 0, 82% 26%, 76% 58%, 56% 100%, 22% 72%, 18% 30%);
}

.industry-showcase__eyebrow-icon::after {
  inset: 14px 16px 14px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 16px 16px;
  clip-path: polygon(50% 0, 80% 36%, 54% 100%, 26% 58%);
}

.industry-showcase__eyebrow-text {
  flex: 1;
}

.industry-showcase__eyebrow-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.industry-showcase__featured {
  grid-area: featured;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.industry-card--featured {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 36px 40px 34px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), calc(100% - 44px) 100%, 0 100%);
  background: rgba(6, 40, 68, 0.74);
  color: #fff;
  border: 1px solid rgba(53, 208, 255, 0.42);
  box-shadow: none;
}

.industry-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(8, 31, 51, 0.02), rgba(8, 31, 51, 0.22)),
    linear-gradient(155deg, rgba(17, 59, 92, 0.12) 0%, rgba(17, 59, 92, 0.02) 100%);
}

.industry-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(53, 208, 255, 0.42);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), calc(100% - 44px) 100%, 0 100%);
}

.industry-card--featured > * {
  position: relative;
  z-index: 1;
}

.industry-card--featured .card-sequence {
  color: rgba(255, 255, 255, 0.46);
}

.industry-card--featured h3 {
  max-width: 280px;
  margin-bottom: 26px;
  font-size: clamp(1.85rem, 2.1vw, 2.35rem);
  line-height: 1.16;
}

.industry-card--featured .button--text {
  color: var(--wpb-lime);
  letter-spacing: 0.03em;
}

.industry-card--featured .button--text::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 8px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.industry-index {
  grid-area: index;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: start;
}

.industry-index__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 0 24px 0 0;
  border-top: 1px solid rgba(53, 208, 255, 0.34);
  color: #fff;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.industry-index__item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(53, 208, 255, 0.48);
}

.industry-index__icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-left: 4px;
  color: #27c8ff;
  flex-shrink: 0;
}

.industry-index__chevron {
  position: relative;
  width: 15px;
  height: 15px;
  margin-left: auto;
  color: var(--wpb-lime);
  flex-shrink: 0;
}

.industry-index__chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.industry-index__label {
  font: 700 1.15rem/1.3 "IBM Plex Sans", sans-serif;
  color: #fff;
}

.industry-card__icon--1::before,
.industry-card__icon--1::after,
.industry-index__icon--1::before,
.industry-index__icon--1::after {
  border: 4px solid currentColor;
  border-radius: 4px;
}

.industry-card__icon--1::before,
.industry-index__icon--1::before {
  inset: 14px 24px 14px 24px;
}

.industry-card__icon--1::after,
.industry-index__icon--1::after {
  inset: 22px 12px 22px 12px;
}

.industry-card__icon--2::before,
.industry-index__icon--2::before {
  inset: 10px 12px 10px 12px;
  border: 4px solid currentColor;
  border-radius: 50%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
}

.industry-card__icon--2::after,
.industry-index__icon--2::after {
  left: 48%;
  top: 34px;
  width: 22px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.industry-card__icon--3::before,
.industry-index__icon--3::before {
  inset: 18px 18px 22px 20px;
  border: 4px solid currentColor;
  border-radius: 4px;
}

.industry-card__icon--3::after,
.industry-index__icon--3::after {
  left: 42px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(45deg);
}

.industry-card__icon--4::before,
.industry-index__icon--4::before {
  inset: 18px 20px 20px 20px;
  border: 4px solid currentColor;
  border-radius: 4px;
  transform: skewY(-12deg);
}

.industry-card__icon--4::after,
.industry-index__icon--4::after {
  inset: 6px 30px 42px 30px;
  border: 4px solid currentColor;
  border-radius: 4px;
}

.industry-index__icon--5::before {
  inset: 20px 16px 24px;
  border: 4px solid currentColor;
  border-radius: 999px;
}

.industry-index__icon--5::after {
  left: 28px;
  top: 16px;
  width: 20px;
  height: 28px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.industry-index__icon--6::before {
  inset: 20px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.industry-index__icon--6::after {
  left: 16px;
  right: 16px;
  top: 34px;
  height: 4px;
  background: currentColor;
}

.story-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(11, 47, 79, 0.96), rgba(47, 87, 122, 0.88));
}

.story-card__media::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.08) 100%);
}

.story-card__media::after {
  inset: auto -6% 10% auto;
  width: 42%;
  height: 30%;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
  transform: skewX(-18deg);
}

.story-card__meta,
.story-card__date,
.page-meta,
.redirect-note {
  margin: 0 0 12px;
  color: var(--wpb-muted);
  font-size: 0.92rem;
}

.story-card__eyebrow {
  color: #2f8cff;
}

.story-card__meta {
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card__date {
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.story-card__link {
  display: block;
  color: inherit;
  border-radius: inherit;
  overflow: hidden;
  background: #fff;
}

.story-card__content {
  padding: 22px 22px 26px;
}

.story-card--newsroom {
  padding: 0;
  overflow: hidden;
}

.story-card--newsroom .story-card__link {
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.story-card--newsroom .story-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 140, 255, 0.34);
  box-shadow: 0 24px 70px rgba(7, 28, 46, 0.16);
}

.story-card--newsroom .story-card__meta {
  color: var(--wpb-navy);
}

.story-card--newsroom h3 {
  margin-bottom: 0;
  color: var(--wpb-navy-deep);
}

.story-card--newsroom .story-card__media {
  aspect-ratio: 16 / 9;
}

.story-card--newsroom:nth-child(2) .story-card__media {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(11, 47, 79, 0.92), rgba(61, 98, 126, 0.86));
}

.story-card--newsroom:nth-child(3) .story-card__media {
  background:
    linear-gradient(120deg, rgba(47, 140, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(23, 57, 82, 0.96), rgba(102, 132, 154, 0.78));
}

.story-card--newsroom:nth-child(4) .story-card__media {
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(145deg, rgba(10, 42, 67, 0.96), rgba(50, 79, 106, 0.82));
}

.story-card--newsroom:nth-child(5) .story-card__media {
  background:
    linear-gradient(120deg, rgba(47, 140, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(12, 44, 67, 0.96), rgba(34, 86, 112, 0.8));
}

.story-card--newsroom:nth-child(6) .story-card__media {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.16), transparent 16%),
    linear-gradient(145deg, rgba(7, 33, 53, 0.96), rgba(74, 120, 146, 0.78));
}

.story-card--archive .story-card__media {
  position: relative;
  overflow: hidden;
}

.story-card--archive .story-card__media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: #065fd3;
}

.cta-feature {
  align-items: center;
}

.section-shell--people {
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
}

.contact-band {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 340px) auto;
  gap: 30px;
}

.contact-band,
.footer-contact {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.page-hero {
  margin: 28px auto 0;
  padding: 40px;
  width: var(--wpb-container);
  background: linear-gradient(135deg, var(--wpb-navy), var(--wpb-navy-deep));
  color: #fff;
}

.page-main .page-hero,
.archive-main .page-hero,
.single-main .page-hero {
  margin-bottom: 24px;
}

.content-shell {
  max-width: 880px;
}

.content-shell p {
  line-height: 1.9;
}

.link-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.link-column__list a {
  color: var(--wpb-navy);
  font-weight: 600;
}

.link-column__pending {
  display: inline-flex;
  color: var(--wpb-muted);
  font-weight: 600;
}

.split-photo,
.entry-gallery__lead,
.entry-gallery__tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #eef4f6;
}

.split-photo {
  min-height: 420px;
  border-radius: var(--wpb-radius-sm);
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.split-photo img,
.entry-gallery__lead img,
.entry-gallery__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-photo figcaption,
.entry-gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.45;
}

.split-photo::after,
.entry-gallery__lead::after,
.entry-gallery__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 15, 26, 0.02), rgba(4, 15, 26, 0.42));
  pointer-events: none;
}

.archive-pagination {
  margin-top: 34px;
}

.archive-empty {
  grid-column: 1 / -1;
  padding: 42px;
  border-radius: var(--wpb-radius-sm);
  border: 1px solid var(--wpb-border);
  background: linear-gradient(160deg, #f4f9f8, #ffffff);
  box-shadow: var(--wpb-shadow);
}

.archive-empty h2 {
  margin: 0;
  font: 800 clamp(1.8rem, 3vw, 2.5rem)/1.08 "Manrope", sans-serif;
  letter-spacing: 0;
  color: var(--wpb-navy-deep);
}

.archive-empty p:not(.section-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--wpb-muted);
  line-height: 1.8;
}

.archive-empty .button {
  margin-top: 24px;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--wpb-border);
  background: #fff;
  box-shadow: var(--wpb-shadow);
}

.archive-pagination .current {
  background: var(--wpb-navy-deep);
  color: #fff;
}

.single-featured-image {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: var(--wpb-radius-sm);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.form-shell__copy,
.form-shell__panel {
  padding: 32px;
  border-radius: var(--wpb-radius-sm);
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.form-shell__copy {
  background: linear-gradient(160deg, #f3f8f7, #ffffff);
}

.form-shell__panel {
  background: #fff;
}

.form-shell__note {
  margin: 20px 0 0;
  color: var(--wpb-muted);
  line-height: 1.8;
}

.form-shell__empty {
  min-height: 240px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 12px;
  color: var(--wpb-muted);
}

.form-shell .ff-default .ff-el-form-control,
.form-shell .ff-default select {
  min-height: 52px;
  border-radius: 14px;
  border-color: rgba(16, 36, 54, 0.14);
}

.form-shell .ff-default textarea.ff-el-form-control {
  min-height: 160px;
}

.form-shell .ff-btn-submit,
.form-shell .ff-btn {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  font: 700 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.03em;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.single-layout--solo {
  grid-template-columns: minmax(0, 1fr);
}

.entry-anchor-targets {
  position: relative;
  height: 0;
}

.entry-anchor-target {
  display: block;
  position: relative;
  top: -118px;
  height: 0;
  overflow: hidden;
}

.entry-sidebar {
  position: sticky;
  top: 126px;
}

.entry-panel {
  padding: 28px;
  border-radius: var(--wpb-radius-sm);
  background: var(--wpb-sand);
  border: 1px solid var(--wpb-border);
}

.entry-fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.entry-fact {
  display: grid;
  gap: 6px;
}

.entry-fact__label {
  font: 800 0.76rem/1 "Manrope", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--wpb-muted);
}

.entry-fact__value {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wpb-ink);
}

.entry-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.entry-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: 700 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
}

.entry-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 34px;
}

.entry-gallery__lead {
  min-height: 520px;
  border-radius: 24px;
}

.entry-gallery__trail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.entry-gallery__tile {
  min-height: 250px;
  border-radius: 18px;
}

.entry-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.entry-stat-card {
  padding: 28px;
  border-radius: var(--wpb-radius-sm);
  background: #fff;
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.entry-stat-card__value {
  font: 800 clamp(1.8rem, 3vw, 2.8rem)/1 "Manrope", sans-serif;
  color: var(--wpb-navy-deep);
}

.entry-stat-card__label {
  margin-top: 12px;
  color: var(--wpb-muted);
  line-height: 1.6;
}

.site-footer {
  padding: 0 0 36px;
  background: #081f33;
  color: rgba(255, 255, 255, 0.82);
}

.home .site-footer {
  padding-top: 20px;
}

.home .footer-brand p {
  display: none;
}

.footer-contact {
  transform: translateY(-44px);
}

.footer-main {
  align-items: start;
  padding-top: 10px;
}

.footer-main--home {
  display: block;
}

.footer-brand {
  max-width: 340px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  flex: 1;
}

.footer-home {
  display: grid;
  gap: 26px;
  width: 100%;
}

.footer-home__social,
.footer-home__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-home__social a,
.footer-home__links a {
  color: rgba(255, 255, 255, 0.84);
  font: 700 0.84rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-home__links {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links h3 {
  margin: 0 0 12px;
  color: #fff;
  font: 800 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links li + li,
.mega-panel__links li + li {
  margin-top: 10px;
}

.footer-meta {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .nav-list {
    gap: 20px;
  }

  .hero-grid,
  .split-section,
  .cta-feature,
  .contact-band,
  .form-shell,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .hero-media,
  .split-visual,
  .cta-feature__visual {
    min-height: 360px;
  }

  .hero-copy {
    max-width: 100%;
    margin: 28px;
    padding: 0;
  }

  .hero-section .visual-panel {
    min-height: 560px;
  }

  .hero-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--capabilities,
  .card-grid--stories,
  .archive-grid,
  .link-columns,
  .stats-grid,
  .entry-stat-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-slide {
    flex-basis: 100%;
  }

  .industry-showcase__featured,
  .industry-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "featured"
      "index";
  }

  .industry-index {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
  }

  .industry-index__item {
    border-bottom: 1px solid rgba(53, 208, 255, 0.28);
  }

  .footer-main--home {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .single-layout {
    grid-template-columns: 1fr;
  }

  .entry-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .utility-bar {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .primary-navigation {
    position: fixed;
    inset: 88px 0 0 auto;
    width: min(420px, 100vw);
    padding: 22px 24px 40px;
    background: #071d31;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
  }

  .header-actions {
    display: none;
  }

  .header-meta {
    display: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    min-height: 58px;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item--has-panel {
    position: relative;
  }

  .nav-item__toggle {
    position: absolute;
    top: 10px;
    right: 0;
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item__toggle::before {
    content: "+";
    margin: auto;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
  }

  .nav-item.is-open .nav-item__toggle::before {
    content: "-";
  }

  .mega-panel {
    position: static;
    min-width: 0;
    padding: 0 0 16px;
    max-height: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
  }

  .nav-item.is-open .mega-panel {
    max-height: 1200px;
  }

  .mega-panel__inner {
    grid-template-columns: 1fr;
    width: auto;
    padding: 10px 0 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.88);
  }

  .mega-panel__heading {
    color: rgba(255, 255, 255, 0.54);
  }

  .mega-panel__heading a {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .mega-panel__links a {
    color: rgba(255, 255, 255, 0.88);
  }

  .mega-panel__description {
    color: rgba(255, 255, 255, 0.64);
  }

  .mega-panel__image {
    max-width: 260px;
    margin-bottom: 12px;
  }

  .mega-panel__link-description {
    color: rgba(255, 255, 255, 0.58);
  }

  .mega-panel__lead {
    padding: 18px 0 0;
    border-radius: 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-search__form {
    grid-template-columns: 1fr;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  :root {
    --wpb-container: min(100vw - 28px, 100vw - 28px);
  }

  .card-grid--capabilities,
  .card-grid--stories,
  .archive-grid,
  .link-columns,
  .stats-grid,
  .entry-stat-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 64px 0;
  }

  .hero-copy {
    margin: 16px;
    padding: 0;
    clip-path: none;
  }

  .hero-section .visual-panel {
    min-height: 460px;
  }

  .industry-showcase__featured,
  .industry-index {
    grid-template-columns: 1fr;
  }

  .industry-card--featured {
    min-height: 340px;
    padding: 28px 28px 26px;
  }

  .industry-showcase__eyebrow {
    min-height: 72px;
    padding: 0 20px;
  }

  .industry-index__item {
    min-height: 74px;
    padding-right: 16px;
  }

  .industry-index__label {
    font-size: 1rem;
  }

  .hero-signal-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .contact-band,
  .footer-contact,
  .feature-card,
  .industry-card,
  .story-card,
  .content-shell,
  .redirect-panel,
  .link-column {
    padding: 22px;
  }

  .footer-home__social,
  .footer-home__links {
    gap: 14px 18px;
  }

  .hero-copy {
    padding-top: 54px;
  }

  .hero-media,
  .split-visual,
  .cta-feature__visual {
    min-height: 280px;
  }
}

.media-groups {
  display: grid;
  gap: 48px;
}

.media-group {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: stretch;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(12, 44, 71, 0.96), rgba(7, 24, 40, 0.94));
  border: 1px solid rgba(47, 140, 255, 0.18);
  box-shadow: 0 24px 60px rgba(8, 19, 32, 0.22);
}

.media-group--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.media-group--reverse .media-group__copy {
  order: 2;
}

.media-group--reverse .media-group__visuals {
  order: 1;
}

.media-group__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.media-group__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.media-group__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}

.media-group__visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  min-height: 420px;
}

.media-group__lead,
.media-group__tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.media-group__lead {
  min-height: 420px;
}

.media-group__trail {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
}

.media-group__tile:last-child:nth-child(odd) {
  grid-column: span 2;
}

.media-group__lead img,
.media-group__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-group__lead::after,
.media-group__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 15, 26, 0.04), rgba(4, 15, 26, 0.44));
}

.media-group__lead figcaption,
.media-group__tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .media-group,
  .media-group--reverse {
    grid-template-columns: 1fr;
  }

  .media-group--reverse .media-group__copy,
  .media-group--reverse .media-group__visuals {
    order: initial;
  }
}

@media (max-width: 720px) {
  .media-group {
    padding: 24px;
  }

  .media-group__visuals {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .media-group__lead {
    min-height: 280px;
  }

  .media-group__trail {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .media-group__tile:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .media-group__trail {
    grid-template-columns: 1fr;
  }

  .media-group__tile {
    min-height: 180px;
  }
}

@media (max-width: 900px) {
  .entry-gallery {
    grid-template-columns: 1fr;
  }

  .entry-gallery__lead {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .entry-gallery__trail {
    grid-template-columns: 1fr;
  }

  .entry-gallery__tile {
    min-height: 210px;
  }

  .split-photo {
    min-height: 300px;
  }
}

/* Block template compatibility
   Keeps the new templates/*.html and templates/page/*.html files visually aligned
   with the original WPB Corporate theme shell. */
.wpb-block-template {
  background: #fff;
}

.wpb-block-header .wp-block-navigation,
.wpb-block-header .wp-block-navigation__container {
  gap: 22px;
}

.wpb-block-header .wp-block-navigation a {
  color: rgba(255, 255, 255, 0.88);
  font: 700 0.86rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wpb-block-header .wp-block-site-title,
.wpb-block-header .wp-block-site-title a,
.wpb-block-footer .wp-block-site-title,
.wpb-block-footer .wp-block-site-title a {
  color: inherit;
  text-decoration: none;
}

.wpb-block-header .wp-block-button__link {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wpb-block-page-hero {
  color: var(--wpb-ink);
}

.wpb-block-page-title {
  overflow-wrap: anywhere;
}

.wpb-block-page-content > .wp-block-post-content {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.wpb-block-page-content .wp-block-post-content > * + * {
  margin-block-start: 1.25em;
}

.wpb-block-page-content .wp-block-post-content a {
  color: var(--wpb-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.wpb-block-query-grid {
  width: var(--wpb-container);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.wpb-block-query-grid .wp-block-post-title {
  margin: 0 0 14px;
  font: 800 1.24rem/1.18 "Manrope", sans-serif;
  color: var(--wpb-navy-deep);
}

.wpb-block-query-grid .wp-block-post-title a {
  color: inherit;
}

.wpb-block-query-grid .wp-block-post-excerpt {
  color: var(--wpb-muted);
}

.wpb-block-query-grid .wp-block-post-excerpt__more-link {
  color: var(--wpb-navy);
  font-weight: 800;
}

.wpb-block-footer .wp-block-site-title {
  margin: 0 0 18px;
}

.wpb-block-footer__links {
  width: min(760px, 100%);
  margin: 0;
}

.wpb-block-footer__links .wp-block-column {
  min-width: 0;
}

.wpb-block-footer__links h3 {
  margin: 0 0 12px;
}

.wpb-block-footer__links ul {
  padding: 0;
}

.wpb-block-footer__links li {
  list-style: none;
}

.wpb-block-footer__links a {
  color: rgba(255, 255, 255, 0.74);
}

.wpb-block-front-hero {
  color: #fff;
}

.wpb-block-front-hero .wp-block-cover__inner-container {
  width: var(--wpb-container);
}

@media (max-width: 900px) {
  .wpb-block-header__inner {
    align-items: flex-start;
  }

  .wpb-block-header .wp-block-navigation {
    flex-basis: 100%;
    order: 3;
  }

  .wpb-block-header-actions {
    display: none;
  }
}

/* NEXA screenshot-style front page
   Keeps the previous WordPress/ACF home content but renders it through the
   block-template front page as a compact industrial homepage. */
.home .nexa-site-header,
.is-wpb-front-page .nexa-site-header {
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #06223d 0%, #061c33 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home .nexa-site-header.is-scrolled,
.is-wpb-front-page .nexa-site-header.is-scrolled {
  box-shadow: 0 18px 38px rgba(4, 18, 31, 0.22);
}

.home .nexa-site-header .header-main__inner,
.is-wpb-front-page .nexa-site-header .header-main__inner {
  min-height: 78px;
  gap: 30px;
}

.home .nexa-site-header .site-brand,
.is-wpb-front-page .nexa-site-header .site-brand {
  flex: 0 0 auto;
}

.home .nexa-site-header .site-brand__logo,
.is-wpb-front-page .nexa-site-header .site-brand__logo,
.home .nexa-site-header .wpb-brand-logo--full,
.is-wpb-front-page .nexa-site-header .wpb-brand-logo--full {
  height: 46px;
  width: auto;
}

.home .nexa-site-header .primary-navigation,
.is-wpb-front-page .nexa-site-header .primary-navigation {
  flex: 1 1 auto;
  justify-content: center;
}

.nexa-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.nexa-nav-list .nav-link {
  min-height: 78px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.nexa-nav-list .nav-link:hover,
.nexa-nav-list .nav-link:focus-visible {
  color: #fff;
}

.nexa-nav-list .nav-link--has-panel::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.8px solid #1f8cff;
  border-bottom: 1.8px solid #1f8cff;
  transform: rotate(45deg) translateY(-2px);
}

.home .nexa-site-header .header-actions,
.is-wpb-front-page .nexa-site-header .header-actions {
  display: flex;
  flex: 0 0 auto;
}

.home .nexa-site-header .header-actions .button,
.is-wpb-front-page .nexa-site-header .header-actions .button {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  box-shadow: none;
  text-transform: uppercase;
}

.nexa-header-meta {
  gap: 8px;
}

.nexa-header-meta .header-meta__language {
  min-height: 40px;
  color: #fff;
  text-decoration: none;
}

.nexa-home-main {
  overflow: hidden;
  background: #f4f7fb;
}

.nexa-home-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 52vw, 620px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #061d33;
}

.nexa-home-hero__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #061d33;
}

.nexa-home-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.78s ease, transform 6s ease;
}

.nexa-home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.nexa-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.9) 0%, rgba(4, 20, 34, 0.7) 38%, rgba(4, 20, 34, 0.24) 73%, rgba(4, 20, 34, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.18), rgba(5, 21, 36, 0.26));
}

.nexa-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 78%, rgba(245, 248, 252, 0.12) 100%);
}

.nexa-home-hero__inner {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.nexa-home-hero__copy {
  width: min(700px, 100%);
  padding: 48px 0 54px;
  text-shadow: 0 18px 42px rgba(4, 20, 34, 0.36);
}

.nexa-home-hero .section-kicker {
  color: #2488f7;
}

.nexa-home-hero .hero-title {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.3rem, 3.45vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.nexa-home-hero .hero-body {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.nexa-home-hero .button-row {
  margin-top: 34px;
  gap: 16px;
}

.nexa-home-hero .button {
  min-height: 52px;
  min-width: 184px;
  justify-content: center;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nexa-home-hero .button--ghost {
  background: rgba(6, 24, 40, 0.22);
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff;
}

.nexa-home-hero__dots {
  position: absolute;
  right: max(24px, calc((100vw - var(--wpb-container)) / 2));
  bottom: 28px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.nexa-home-hero__dot {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.nexa-home-hero__dot.is-active {
  width: 54px;
  background: #2f8cff;
}

.nexa-home-intro {
  padding: 54px 0;
}

.nexa-home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.nexa-home-intro .section-text {
  margin-top: 0;
  color: #384a5f;
}

.nexa-home-positioning {
  padding: 44px 0 42px;
  background: #fff;
}

.nexa-home-positioning__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.65fr);
  gap: 42px;
  align-items: center;
}

.nexa-home-positioning__heading .section-title {
  max-width: 390px;
  font-size: clamp(1.78rem, 2.35vw, 2.35rem);
  letter-spacing: 0;
}

.nexa-home-positioning__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.nexa-positioning-card {
  min-height: 166px;
  padding: 10px 26px 4px;
  border-left: 1px solid #dbe4ee;
}

.nexa-positioning-card__icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: #2d6fb5;
}

.nexa-positioning-card__icon::before,
.nexa-positioning-card__icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
}

.nexa-positioning-card--1 .nexa-positioning-card__icon::before {
  transform: rotate(30deg) skewY(25deg);
}

.nexa-positioning-card--2 .nexa-positioning-card__icon::before {
  border-radius: 11px;
}

.nexa-positioning-card--2 .nexa-positioning-card__icon::after {
  inset: 20px;
  border-radius: 6px;
  background: #fff;
}

.nexa-positioning-card--3 .nexa-positioning-card__icon::before {
  border-radius: 999px;
}

.nexa-positioning-card--3 .nexa-positioning-card__icon::after {
  inset: 8px 22px;
  border-width: 0 2px;
}

.nexa-positioning-card--4 .nexa-positioning-card__icon::before {
  clip-path: polygon(50% 0, 86% 14%, 80% 76%, 50% 100%, 20% 76%, 14% 14%);
  border-radius: 6px;
}

.nexa-positioning-card h3 {
  margin: 0 0 10px;
  text-align: center;
  color: #0b223d;
  font: 800 1.02rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0;
}

.nexa-positioning-card p {
  margin: 0;
  text-align: center;
  color: #536477;
  font-size: 0.88rem;
  line-height: 1.56;
}

.nexa-home-solutions,
.nexa-home-products {
  padding: 54px 0 58px;
}

.nexa-home-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.nexa-home-section-heading .section-title {
  max-width: 520px;
  font-size: clamp(1.85rem, 2.55vw, 2.55rem);
  letter-spacing: 0;
}

.nexa-home-link,
.nexa-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #075fc9;
  font: 800 0.82rem/1.1 "Manrope", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}

.nexa-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.nexa-solution-card {
  overflow: hidden;
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.06);
}

.nexa-solution-card__media {
  height: 224px;
  margin: 0;
  overflow: hidden;
  background: #dfe8f1;
}

.nexa-solution-card__media img,
.nexa-product-tile__media img,
.nexa-insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nexa-solution-card__media img,
.nexa-product-tile__media img,
.nexa-insight-card__media img,
.nexa-listing-card .wp-block-post-featured-image img,
.nexa-content-shell .wp-block-image img,
.nexa-content-shell img,
.nexa-single-featured-image img,
.nexa-page-module-stack .split-photo img,
.nexa-page-module-stack .media-group__lead img,
.nexa-page-module-stack .media-group__tile img {
  transition: transform 0.42s ease, filter 0.42s ease;
  will-change: transform;
}

.nexa-solution-card:hover .nexa-solution-card__media img,
.nexa-product-tile:hover .nexa-product-tile__media img,
.nexa-insight-card:hover .nexa-insight-card__media img,
.nexa-listing-card:hover .wp-block-post-featured-image img,
.nexa-content-shell .wp-block-image:hover img,
.nexa-single-featured-image:hover img,
.nexa-page-module-stack .split-photo:hover img,
.nexa-page-module-stack .media-group__lead:hover img,
.nexa-page-module-stack .media-group__tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.nexa-solution-card,
.nexa-insight-card,
.nexa-listing-card,
.nexa-page-module-stack .feature-card,
.nexa-page-module-stack .story-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nexa-solution-card:hover,
.nexa-insight-card:hover,
.nexa-listing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 140, 255, 0.3);
  box-shadow: 0 18px 42px rgba(12, 35, 58, 0.12);
}

.nexa-solution-card__body {
  min-height: 190px;
  padding: 26px 30px 26px;
}

.nexa-solution-card h3 {
  margin: 0 0 15px;
  color: #075fc9;
  font: 800 1rem/1.25 "Manrope", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nexa-solution-card p {
  min-height: 58px;
  margin: 0 0 22px;
  color: #3e5063;
  line-height: 1.6;
}

.nexa-home-products {
  background: #f3f6fa;
}

.nexa-product-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.nexa-product-tile {
  display: block;
  color: #0b223d;
  text-decoration: none;
}

.nexa-product-tile__media {
  display: block;
  height: 104px;
  overflow: hidden;
  border-radius: 5px;
  background: #dce6ef;
  box-shadow: 0 8px 18px rgba(12, 35, 58, 0.08);
}

.nexa-product-tile__title {
  display: block;
  margin-top: 14px;
  font: 800 0.98rem/1.18 "Manrope", sans-serif;
}

.nexa-product-tile__body {
  display: none;
  margin-top: 8px;
  color: #536477;
  font-size: 0.9rem;
  line-height: 1.5;
}

.nexa-home-insights {
  padding: 58px 0 72px;
  background:
    linear-gradient(135deg, #061d33 0%, #04233e 60%, #031727 100%);
  color: #fff;
}

.nexa-home-insights .section-kicker,
.nexa-home-insights .nexa-home-link {
  color: #2f8cff;
}

.nexa-home-insights .section-title,
.nexa-home-insights .section-text {
  color: #fff;
}

.nexa-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nexa-insight-card {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.nexa-insight-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.nexa-insight-card__media {
  display: block;
  height: 156px;
  overflow: hidden;
  background: #dce6ef;
}

.nexa-insight-card__body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 22px 22px 20px;
  color: #0b223d;
}

.nexa-insight-card .story-card__meta {
  margin: 0 0 10px;
  color: #075fc9;
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nexa-insight-card strong {
  color: #0b223d;
  font: 800 1rem/1.34 "Manrope", sans-serif;
}

.nexa-insight-card .story-card__date {
  margin-top: 16px;
  color: #69788a;
  font-size: 0.84rem;
}

.nexa-insight-card .nexa-card-link {
  margin-top: auto;
  justify-content: flex-end;
}

.nexa-home-cta {
  padding: 56px 0;
  background: #fff;
}

.nexa-home-cta--contact {
  background: #eef5fc;
}

.nexa-home-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 42px;
  border-radius: 6px;
  background: #06223d;
  color: #fff;
}

.nexa-home-cta__panel .section-title,
.nexa-home-cta__panel .section-text {
  color: #fff;
}

.nexa-home-cta__panel .section-text {
  max-width: 700px;
}

.nexa-home-downloads {
  padding: 58px 0 64px;
  background: #fff;
}

.nexa-home-downloads__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.nexa-home-downloads__copy .section-title {
  max-width: 620px;
}

.nexa-download-list {
  display: grid;
  gap: 16px;
}

.nexa-download-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 26px 28px;
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: linear-gradient(135deg, #f7fbff 0%, #fff 100%);
  color: #0b223d;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(12, 35, 58, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nexa-download-card:hover,
.nexa-download-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(47, 140, 255, 0.36);
  box-shadow: 0 20px 46px rgba(12, 35, 58, 0.13);
}

.nexa-download-card__type {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 3px;
  background: #075fc9;
  color: #fff;
  font: 800 0.72rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nexa-download-card__title {
  color: #0b223d;
  font: 800 1.14rem/1.25 "Manrope", sans-serif;
}

.nexa-download-card__description {
  color: #536477;
  line-height: 1.58;
}

.nexa-home-meta {
  padding: 56px 0 70px;
}

.nexa-home-meta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1100px) {
  .nexa-nav-list {
    gap: 16px;
  }

  .nexa-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home .nexa-site-header .header-main__inner,
  .is-wpb-front-page .nexa-site-header .header-main__inner {
    min-height: 72px;
  }

  .nexa-site-header .primary-navigation {
    display: none;
    inset: 72px 0 0 auto;
    width: min(360px, 100vw);
    justify-content: flex-start;
    transform: none;
  }

  .nexa-site-header .primary-navigation.is-open {
    display: block;
  }

  .nexa-site-header .primary-navigation.is-open .nexa-nav-list {
    display: block;
  }

  .nexa-nav-list {
    display: none;
  }

  .nexa-site-header .nexa-header-meta {
    display: flex;
    margin-left: auto;
  }

  .nexa-site-header .language-switcher__menu {
    right: -8px;
  }

  .nexa-home-positioning__grid,
  .nexa-home-intro__grid {
    grid-template-columns: 1fr;
  }

  .nexa-home-positioning__cards,
  .nexa-solution-grid,
  .nexa-product-strip,
  .nexa-home-meta__grid,
  .nexa-home-downloads__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nexa-home-section-heading,
  .nexa-home-cta__panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nexa-site-header .header-main__inner {
    gap: 10px;
  }

  .nexa-site-header .nexa-brand {
    gap: 8px;
  }

  .nexa-site-header .nexa-brand__mark {
    width: 38px;
    height: 38px;
  }

  .nexa-site-header .nexa-brand__name {
    font-size: 1.45rem;
  }

  .home .nexa-site-header .header-actions .button,
  .is-wpb-front-page .nexa-site-header .header-actions .button,
  body:not(.home) .nexa-site-header .header-actions .button {
    min-width: 0;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .nexa-site-header .nexa-header-actions {
    display: none;
  }

  .nexa-home-hero {
    min-height: 580px;
  }

  .nexa-home-hero__copy {
    padding-top: 64px;
  }

  .nexa-home-hero .hero-title {
    max-width: 350px;
    font-size: 2.18rem;
    line-height: 1.1;
  }

  .nexa-home-hero__dots {
    right: 24px;
    bottom: 22px;
  }

  .nexa-home-hero__dot {
    width: 26px;
  }

  .nexa-home-hero__dot.is-active {
    width: 38px;
  }

  .nexa-home-positioning__cards,
  .nexa-solution-grid,
  .nexa-product-strip,
  .nexa-insight-grid,
  .nexa-home-meta__grid,
  .nexa-home-downloads__grid {
    grid-template-columns: 1fr;
  }

  .nexa-positioning-card {
    border-left: 0;
    border-top: 1px solid #dbe4ee;
  }
}

.nexa-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.nexa-brand__mark {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 10px;
}

.nexa-brand__text {
  display: grid;
  gap: 4px;
  text-transform: uppercase;
}

.nexa-brand__name {
  color: #fff;
  font: 850 1.74rem/0.82 "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

.nexa-brand__descriptor {
  color: rgba(255, 255, 255, 0.86);
  font: 800 0.62rem/1 "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.nexa-site-footer .nexa-brand__mark {
  width: 34px;
  height: 34px;
}

.nexa-site-footer .nexa-brand__name {
  font-size: 1.34rem;
}

.nexa-home-main .button--primary {
  background: #065fd3;
  color: #fff;
  box-shadow: 0 16px 30px rgba(6, 95, 211, 0.2);
}

.nexa-home-main .button--primary:hover,
.nexa-home-main .button--primary:focus-visible {
  background: #0b70ee;
  color: #fff;
}

/* NEXA unified inner page, archive, search and single templates */
.nexa-page-main {
  overflow: hidden;
  background: #f5f8fc;
}

.nexa-page-hero {
  position: relative;
  min-height: clamp(330px, 34vw, 460px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.9) 0%, rgba(4, 20, 34, 0.72) 42%, rgba(4, 20, 34, 0.22) 78%, rgba(4, 20, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.16), rgba(5, 21, 36, 0.34)),
    url("../branding/home/industrial-module.jpg") center center / cover no-repeat;
}

.nexa-page-hero--archive,
.nexa-page-hero--search,
.nexa-page-hero--single {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.9) 0%, rgba(4, 20, 34, 0.72) 42%, rgba(4, 20, 34, 0.22) 78%, rgba(4, 20, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.16), rgba(5, 21, 36, 0.34)),
    url("../branding/home/data-center-module.jpg");
}

.nexa-page-hero--error {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.92) 0%, rgba(4, 20, 34, 0.78) 48%, rgba(4, 20, 34, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.16), rgba(5, 21, 36, 0.34)),
    url("../branding/home/energy-storage-overview.jpg");
}

.nexa-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 140, 255, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 72%, rgba(245, 248, 252, 0.12) 100%);
}

.nexa-page-hero__inner {
  padding: clamp(58px, 8vw, 92px) 0;
}

.nexa-page-hero .section-kicker {
  color: #2a9dff;
}

.nexa-page-hero .section-title {
  max-width: 820px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2.25rem, 4.25vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(4, 20, 34, 0.36);
}

.nexa-page-hero .section-text {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
}

.nexa-page-content-section,
.nexa-listing-section {
  padding: clamp(58px, 7vw, 88px) 0;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}

.nexa-content-shell {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(12, 35, 58, 0.08);
}

.nexa-content-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: #065fd3;
}

.nexa-content-shell > * {
  position: relative;
}

.nexa-content-shell h1,
.nexa-content-shell h2,
.nexa-content-shell h3,
.nexa-content-shell h4,
.nexa-content-shell .wp-block-heading {
  color: #0b223d;
  letter-spacing: 0;
}

.nexa-content-shell p,
.nexa-content-shell li,
.nexa-content-shell figcaption {
  color: #3e5063;
  line-height: 1.75;
}

.nexa-content-shell a {
  color: #075fc9;
  font-weight: 800;
}

.nexa-content-shell .wp-block-image img,
.nexa-content-shell img {
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.1);
}

.nexa-single-featured-image {
  margin: 0 0 34px;
}

.nexa-single-featured-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(12, 35, 58, 0.16);
}

.nexa-archive-grid,
.wpb-block-query-grid.nexa-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: var(--wpb-container);
  max-width: none;
  margin: 0 auto;
}

.nexa-listing-card {
  overflow: hidden;
  min-height: 360px;
  padding: 0 0 24px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 35, 58, 0.07);
}

.nexa-listing-card .nexa-listing-card__image,
.nexa-listing-card .wp-block-post-featured-image {
  height: 190px;
  margin: 0 0 24px;
  background:
    linear-gradient(135deg, rgba(6, 95, 211, 0.08), rgba(47, 140, 255, 0.1)),
    #dce6ef;
}

.nexa-listing-card .wp-block-post-featured-image a,
.nexa-listing-card .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.nexa-listing-card .wp-block-post-featured-image img {
  object-fit: cover;
}

.nexa-listing-card .wp-block-post-title,
.nexa-listing-card .wp-block-post-excerpt {
  padding-right: 24px;
  padding-left: 24px;
}

.nexa-listing-card .wp-block-post-title {
  margin: 0 0 14px;
  color: #0b223d;
  font: 800 1.14rem/1.28 "Manrope", sans-serif;
  letter-spacing: 0;
}

.nexa-listing-card .wp-block-post-title a {
  color: inherit;
  text-decoration: none;
}

.nexa-listing-card .wp-block-post-excerpt,
.nexa-listing-card .wp-block-post-excerpt p {
  color: #536477;
  line-height: 1.62;
}

.nexa-listing-card .wp-block-post-excerpt__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #075fc9;
  font: 800 0.78rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nexa-listing-card .wp-block-post-excerpt__more-link::after {
  content: "→";
}

.nexa-pagination {
  margin-top: 42px;
  gap: 12px;
}

.nexa-pagination a,
.nexa-pagination .page-numbers,
.nexa-pagination .wp-block-query-pagination-previous,
.nexa-pagination .wp-block-query-pagination-next {
  min-height: 42px;
  padding: 12px 16px;
  border: 1px solid #dbe4ee;
  border-radius: 999px;
  background: #fff;
  color: #075fc9;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(12, 35, 58, 0.06);
}

.nexa-search-panel,
.nexa-empty-state {
  margin-bottom: 34px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 35, 58, 0.07);
}

.nexa-search-section .wp-block-search__inside-wrapper {
  display: flex;
  gap: 12px;
}

.nexa-search-section .wp-block-search__input {
  min-height: 52px;
  border: 1px solid #cfdae6;
  border-radius: 6px;
  padding: 0 16px;
  color: #0b223d;
  font: 600 1rem/1.2 "Manrope", sans-serif;
}

.nexa-search-section .wp-block-search__button {
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  padding: 0 24px;
  background: #065fd3;
  color: #fff;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nexa-empty-state h2 {
  margin-top: 0;
  color: #0b223d;
}

.nexa-empty-state p {
  color: #536477;
}

body:not(.home) .nexa-site-header .header-main__inner {
  min-height: 78px;
}

body:not(.home) .nexa-site-header .header-actions {
  display: flex;
}

body:not(.home) .nexa-site-header .header-actions .button {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  box-shadow: none;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nexa-page-hero__inner {
    padding: 56px 0;
  }

  .nexa-archive-grid,
  .wpb-block-query-grid.nexa-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nexa-search-section .wp-block-search__inside-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nexa-page-hero {
    min-height: 380px;
  }

  body:not(.home) .nexa-site-header .nexa-header-actions,
  .home .nexa-site-header .nexa-header-actions,
  .is-wpb-front-page .nexa-site-header .nexa-header-actions {
    display: none;
  }

  .nexa-archive-grid,
  .wpb-block-query-grid.nexa-archive-grid {
    grid-template-columns: 1fr;
  }

  .nexa-content-shell {
    padding: 30px 24px;
  }
}

/* NEXA inner-page module rendering
   The block templates call the original ACF-style page modules so existing
   page content stays intact while the presentation matches the new home page. */
.nexa-page-module-stack {
  background: #f5f8fc;
}

.nexa-page-module-stack > .section-shell {
  padding: clamp(54px, 6.5vw, 78px) 0;
}

.nexa-page-module-stack > .section-shell:nth-child(odd) {
  background: #fff;
}

.nexa-page-module-stack > .section-shell:nth-child(even),
.nexa-page-module-stack .section-shell--light,
.nexa-page-module-stack .section-shell--industry-showcase {
  background: linear-gradient(180deg, #f8fbfe 0%, #eef5fc 100%);
}

.nexa-page-module-stack .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.nexa-page-module-stack .section-kicker {
  color: #075fc9;
}

.nexa-page-module-stack .section-title {
  max-width: 720px;
  color: #0b223d;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.nexa-page-module-stack .section-text {
  color: #3e5063;
  line-height: 1.7;
}

.nexa-page-module-stack .button--primary,
.nexa-page-module-stack .form-shell button,
.nexa-page-module-stack .fluentform .ff-btn-submit {
  border-radius: 4px;
  background: #065fd3;
  color: #fff;
  box-shadow: 0 14px 30px rgba(6, 95, 211, 0.18);
}

.nexa-page-module-stack .button--text {
  color: #075fc9;
}

.nexa-page-module-stack .split-section,
.nexa-page-module-stack .form-shell,
.nexa-page-module-stack .contact-band,
.nexa-page-module-stack .redirect-panel {
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(12, 35, 58, 0.08);
}

.nexa-page-module-stack .split-section {
  align-items: start;
}

.nexa-page-module-stack .split-copy {
  max-width: 680px;
}

.nexa-page-module-stack .split-visual {
  min-height: clamp(260px, 30vw, 360px);
}

.nexa-page-module-stack .split-photo,
.nexa-page-module-stack .media-group__lead,
.nexa-page-module-stack .media-group__tile {
  overflow: hidden;
  border-radius: 6px;
  background: #dce6ef;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.1);
}

.nexa-page-module-stack .split-photo img,
.nexa-page-module-stack .media-group__lead img,
.nexa-page-module-stack .media-group__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nexa-page-module-stack .visual-panel {
  min-height: clamp(260px, 30vw, 360px);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.55), rgba(4, 20, 34, 0.08)),
    url("../branding/home/data-center-module.jpg") center center / cover no-repeat;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.1);
}

.nexa-page-module-stack .visual-panel > * {
  opacity: 0.08;
}

.nexa-page-module-stack .stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.nexa-page-module-stack .stat-card {
  min-height: 150px;
  padding: 28px;
  border: 1px solid #dfe7f0;
  border-top: 4px solid #0b70ee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.07);
}

.nexa-page-module-stack .stat-card__value {
  color: #075fc9;
  font-size: clamp(2rem, 3vw, 3rem);
}

.nexa-page-module-stack .stat-card__label {
  color: #536477;
}

.nexa-page-module-stack .capability-slider__track,
.nexa-page-module-stack .card-grid--capabilities,
.nexa-page-module-stack .card-grid--stories,
.nexa-page-module-stack .link-columns {
  gap: 24px;
}

.nexa-page-module-stack .feature-card,
.nexa-page-module-stack .industry-card,
.nexa-page-module-stack .story-card,
.nexa-page-module-stack .link-column {
  overflow: hidden;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  color: #0b223d;
  box-shadow: 0 12px 32px rgba(12, 35, 58, 0.07);
}

.nexa-page-module-stack .feature-card {
  min-height: 0;
  padding: 0;
}

.nexa-page-module-stack .feature-card__media {
  position: relative;
  inset: auto;
  height: 190px;
  transform-origin: center;
  transition: transform 0.42s ease, filter 0.42s ease;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.2), rgba(4, 20, 34, 0.02)),
    url("../branding/home/solution-energy-infrastructure.jpg") center center / cover no-repeat;
}

.nexa-page-module-stack .story-card--newsroom .story-card__media {
  transform-origin: center;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.nexa-page-module-stack .feature-card:hover .feature-card__media,
.nexa-page-module-stack .story-card:hover .story-card__media {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.nexa-page-module-stack .feature-card:nth-child(2n) .feature-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.2), rgba(4, 20, 34, 0.02)),
    url("../branding/home/solution-data-center-infrastructure.jpg");
}

.nexa-page-module-stack .feature-card:nth-child(3n) .feature-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.2), rgba(4, 20, 34, 0.02)),
    url("../branding/home/solution-industrial-modular-systems.jpg");
}

.nexa-page-module-stack .feature-card__content {
  min-height: 220px;
  padding: 28px;
  background: transparent;
}

.nexa-page-module-stack .feature-card__content h3,
.nexa-page-module-stack .industry-card h3,
.nexa-page-module-stack .story-card h3,
.nexa-page-module-stack .link-column h3 {
  color: #0b223d;
}

.nexa-page-module-stack .feature-card__content p,
.nexa-page-module-stack .industry-card p,
.nexa-page-module-stack .story-card p {
  color: #536477;
}

.nexa-page-module-stack .industry-showcase {
  grid-template-columns: 1fr;
}

.nexa-page-module-stack .industry-showcase__eyebrow {
  border-color: #dfe7f0;
  border-radius: 6px;
  background: #fff;
  color: #075fc9;
  box-shadow: 0 10px 24px rgba(12, 35, 58, 0.06);
}

.nexa-page-module-stack .industry-showcase__featured,
.nexa-page-module-stack .industry-index {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.nexa-page-module-stack .industry-card--featured {
  min-height: 260px;
  clip-path: none;
  color: #0b223d;
  border-color: #dfe7f0;
  background: #fff;
}

.nexa-page-module-stack .media-group {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 35, 58, 0.08);
}

.nexa-page-module-stack .media-group + .media-group {
  margin-top: 28px;
}

.nexa-page-module-stack .form-shell__panel {
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: #f8fbfe;
  box-shadow: none;
}

.nexa-page-module-stack .fluentform input,
.nexa-page-module-stack .fluentform textarea,
.nexa-page-module-stack .fluentform select {
  border-color: #cfdae6;
  border-radius: 6px;
}

.nexa-page-module-stack .contact-band,
.nexa-page-module-stack .section-shell--contact .contact-band {
  background: linear-gradient(135deg, #061d33 0%, #04233e 70%, #031727 100%);
  color: #fff;
}

.nexa-page-module-stack .contact-band .contact-band__title,
.nexa-page-module-stack .contact-band .contact-band__body {
  color: #fff;
}

.nexa-page-module-stack .link-column {
  padding: 28px;
}

.nexa-page-module-stack .link-column__list a {
  color: #075fc9;
}

.nexa-page-module-stack .story-card--newsroom .story-card__media {
  height: 170px;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.18), rgba(4, 20, 34, 0.02)),
    url("../branding/home/industrial-module.jpg") center center / cover no-repeat;
}

.nexa-page-module-stack .story-card--newsroom:nth-child(2n) .story-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.18), rgba(4, 20, 34, 0.02)),
    url("../branding/home/data-center-module.jpg");
}

.nexa-page-module-stack .story-card--newsroom:nth-child(3n) .story-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.18), rgba(4, 20, 34, 0.02)),
    url("../branding/home/energy-storage-overview.jpg");
}

@media (max-width: 900px) {
  .nexa-page-module-stack .section-heading,
  .nexa-page-module-stack .split-section,
  .nexa-page-module-stack .form-shell,
  .nexa-page-module-stack .contact-band {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
  }

  .nexa-page-module-stack .card-grid--capabilities,
  .nexa-page-module-stack .card-grid--stories,
  .nexa-page-module-stack .link-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nexa-page-module-stack .card-grid--capabilities,
  .nexa-page-module-stack .card-grid--stories,
  .nexa-page-module-stack .link-columns {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nexa-solution-card,
  .nexa-insight-card,
  .nexa-listing-card,
  .nexa-page-module-stack .feature-card,
  .nexa-page-module-stack .story-card,
  .nexa-solution-card__media img,
  .nexa-product-tile__media img,
  .nexa-insight-card__media img,
  .nexa-listing-card .wp-block-post-featured-image img,
  .nexa-content-shell .wp-block-image img,
  .nexa-content-shell img,
  .nexa-single-featured-image img,
  .nexa-page-module-stack .split-photo img,
  .nexa-page-module-stack .media-group__lead img,
  .nexa-page-module-stack .media-group__tile img,
  .nexa-page-module-stack .feature-card__media,
  .nexa-page-module-stack .story-card--newsroom .story-card__media {
    transition: none;
  }
}

/* Backend-managed module media */
.module-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 34vw, 520px);
  margin: 0;
  border: 1px solid var(--wpb-border);
  border-radius: var(--wpb-radius-sm);
  background: #e6eef5;
  box-shadow: var(--wpb-shadow);
}

.module-photo img,
.feature-card__media img,
.story-card__media img,
.industry-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-photo img,
.feature-card__media img,
.story-card__media img,
.industry-card__image img {
  transition: transform 0.42s ease, filter 0.42s ease;
  will-change: transform;
}

.module-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 15, 26, 0.02), rgba(4, 15, 26, 0.38));
}

.module-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.45;
}

.module-photo--hero {
  min-height: clamp(420px, 46vw, 700px);
  border-radius: 0 0 var(--wpb-radius) var(--wpb-radius);
}

.module-photo--contact,
.module-photo--redirect {
  min-height: 220px;
}

.feature-card__media img,
.story-card__media img,
.industry-card__image img {
  position: absolute;
  inset: 0;
}

.feature-card__media::before,
.feature-card__media::after,
.story-card__media::before,
.story-card__media::after {
  z-index: 1;
}

.story-card__excerpt {
  margin: 10px 0 0;
  color: var(--wpb-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.industry-card__image {
  position: relative;
  overflow: hidden;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #e9f2f8;
}

.redirect-panel__visual {
  min-width: min(280px, 100%);
}

.module-photo:hover img,
.feature-card:hover .feature-card__media img,
.story-card:hover .story-card__media img,
.industry-card:hover .industry-card__image img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

@media (max-width: 1024px) {
  .module-photo--hero {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .module-photo,
  .module-photo--hero {
    min-height: 280px;
  }
}
