:root {
  --blue: #0065a8;
  --blue-bright: #1f87d1;
  --blue-soft: rgba(0, 101, 168, 0.12);
  --blue-line: rgba(0, 101, 168, 0.3);
  --navy: #0b2138;
  --navy-2: #12314f;
  --ink: #132638;
  --text: #30485b;
  --muted: #667988;
  --paper: #f7fafc;
  --mist: #eef3f8;
  --white: #ffffff;
  --line: rgba(19, 38, 56, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --max: 1440px;
  --header: 86px;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

h1,
h2,
h3,
.nav a,
.button,
.contact-link,
.menu-button,
.filters button {
  font-family: "Segoe UI Variable Display", "Aptos Display", "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 300;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: grid;
  grid-template-columns: 248px 1fr auto;
  align-items: center;
  gap: 30px;
  height: var(--header);
  padding: 0 max(28px, calc((100% - var(--max)) / 2));
  background: rgba(248, 251, 253, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  width: 236px;
}

.nav {
  display: flex;
  justify-content: center;
  height: 100%;
}

.nav a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:last-child {
  border-right: 1px solid var(--line);
}

.nav-utility {
  display: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--white);
  background: var(--navy);
}

.header-tools {
  display: flex;
  align-items: stretch;
  height: 46px;
}

.lang-switch {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
  min-width: 144px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-link,
.menu-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.lang-switch span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lang-switch select {
  min-width: 62px;
  height: 100%;
  padding: 0 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: auto;
}

.lang-switch:hover,
.lang-switch:focus-within {
  border-color: rgba(0, 101, 168, 0.34);
  background: rgba(255, 255, 255, 0.98);
}

.contact-link {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.menu-button {
  display: none;
}

main {
  padding-top: var(--header);
}

.home-hero,
.page-hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.home-hero {
  min-height: calc(100vh - var(--header));
}

.page-hero {
  min-height: 72vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.hero-overlay,
.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 33, 56, 0.95) 0%, rgba(11, 33, 56, 0.84) 38%, rgba(11, 33, 56, 0.48) 66%, rgba(11, 33, 56, 0.16) 100%),
    linear-gradient(0deg, rgba(11, 33, 56, 0.72), rgba(11, 33, 56, 0.08));
}

.home-hero__inner,
.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  box-sizing: border-box;
}

.home-hero__inner {
  min-height: calc(100vh - var(--header));
  padding: clamp(52px, 6vw, 84px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 40px;
  align-items: center;
  align-content: center;
}

.page-hero__content {
  min-height: 72vh;
  padding: clamp(48px, 6vw, 80px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-hero__content .eyebrow,
.page-hero__content h1 {
  margin-inline: auto;
}

.page-hero__content .hero-lead {
  margin-inline: auto;
  text-align: center;
}

.hero-main {
  max-width: 780px;
  text-align: left;
}

.eyebrow {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.7vw, 5.6rem);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1.02;
  font-weight: 720;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.32vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
}

.button-secondary {
  color: var(--white);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.cta-band .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.cta-band .button-secondary:hover,
.cta-band .button-secondary:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.hero-rail {
  align-self: center;
  background: rgba(11, 33, 56, 0.84);
  border: 1px solid var(--line-light);
  padding: 28px;
  backdrop-filter: blur(12px);
}

.rail-label {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.hero-metrics article {
  min-height: 120px;
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  font-weight: 780;
}

.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-sectors {
  margin-top: 24px;
  border-top: 1px solid var(--line-light);
}

.hero-sectors article {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.hero-sectors span,
.company-cluster__head span,
.ecosystem-core__intro span,
.ecosystem-branch__copy span,
.feature-points span,
.footer-label,
.contact-summary span,
.route-entry span,
.license-company {
  display: block;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-sectors span {
  color: var(--white);
  margin-bottom: 6px;
}

.hero-sectors p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-intro {
  border-bottom: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.two-column > div:first-child,
.two-column .body-copy {
  display: grid;
  align-content: center;
  justify-items: center;
}

.section .eyebrow,
.section-head .eyebrow,
.contact-intro .eyebrow,
.feature-copy .eyebrow,
.cta-band .eyebrow {
  color: var(--blue);
}

.section-head {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p,
.body-copy p,
.feature-copy > p,
.contact-intro p,
.cta-band p,
.company-cluster__head p,
.ecosystem-core__intro p,
.ecosystem-branch__copy p,
.contact-summary p {
  color: var(--muted);
}

.body-copy p + p {
  margin-top: 20px;
}

.body-copy {
  max-width: 780px;
  margin: 0 auto;
}

.statement-band {
  background: var(--navy);
  color: var(--white);
}

.statement-band .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.statement-band h2 {
  color: var(--white);
  margin-bottom: 0;
}

.statement-band__inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: 22px;
  align-items: center;
  text-align: center;
}

.statement-band__inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
  line-height: 1.8;
  max-width: 760px;
  margin-inline: auto;
}

.statement-band__inner > div {
  display: grid;
  align-content: center;
  justify-items: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.pillar-card {
  min-height: 276px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.ecosystem-map {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ecosystem-core,
.ecosystem-branch {
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecosystem-core {
  padding: 38px;
  display: grid;
  gap: 30px;
}

.ecosystem-core__intro span,
.ecosystem-branch__copy span,
.feature-points span,
.contact-summary span,
.route-entry span,
.footer-label,
.license-company {
  margin-bottom: 10px;
}

.ecosystem-core__intro p,
.ecosystem-branch__copy p {
  margin: 0;
}

.ecosystem-core__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ecosystem-logo {
  min-height: 128px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecosystem-logo img {
  max-height: 54px;
  max-width: 176px;
  width: auto;
  object-fit: contain;
}

.ecosystem-branches {
  display: grid;
}

.ecosystem-branch {
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
}

.ecosystem-branch__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
  justify-content: center;
}

.ecosystem-chip {
  min-height: 66px;
  min-width: 148px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
}

.ecosystem-chip img {
  max-width: 160px;
  max-height: 36px;
  object-fit: contain;
}

.ecosystem-chip--publiline,
.ecosystem-chip--radiosoure,
.ecosystem-chip--rfmondego,
.company-mark--publiline,
.company-mark--radiosoure,
.company-mark--rfmondego {
  justify-content: center;
}

.ecosystem-chip--rfmondego,
.company-mark--rfmondego {
  background: var(--white);
}

.ecosystem-chip__img--publiline,
.ecosystem-chip__img--radiosoure {
  max-height: 40px;
}

.ecosystem-chip__img--rfmondego {
  width: 128px;
  max-width: 176px;
  max-height: 48px;
  height: auto;
}

.section-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 0;
  padding-top: 0;
  padding-bottom: 108px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.section-feature--reverse {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.section-feature--reverse .feature-media {
  order: 2;
}

.section-feature--reverse .feature-copy {
  order: 1;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.feature-copy {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.feature-points {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.feature-points article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.feature-points h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

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

.cta-band {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto 118px;
  padding: 52px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-band p {
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
}

.cta-band > div {
  display: grid;
  align-content: center;
  justify-items: center;
}

.cta-band .hero-actions {
  justify-content: center;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.capability-card {
  min-height: 250px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.section-directory {
  padding-top: 88px;
}

.filter-shell {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.filter-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.filters button {
  appearance: none;
  min-width: 0;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.filters button span,
.filters button small {
  display: block;
}

.filters button small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.filters button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.filters button.is-active small {
  color: rgba(255, 255, 255, 0.68);
}

.company-directory {
  display: grid;
  gap: 42px;
}

.company-cluster {
  display: grid;
  gap: 20px;
}

.company-cluster__head {
  max-width: 760px;
}

.company-cluster__head h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.9rem);
  margin-bottom: 16px;
}

.company-cluster__head p {
  margin: 0;
}

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

.company-card {
  min-height: 320px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.company-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 101, 168, 0.24);
  box-shadow: 0 24px 44px rgba(11, 33, 56, 0.08);
}

.company-mark {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.company-mark img {
  max-width: 184px;
  max-height: 56px;
  object-fit: contain;
  margin: 0 auto;
}

.company-mark__img--rfmondego {
  width: 164px;
  max-width: 190px;
  max-height: 64px;
  height: auto;
}

.company-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.company-card h3 {
  margin-bottom: 14px;
}

.company-sector {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.company-meta {
  margin-top: 20px;
}

.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-cta {
  margin-top: 24px;
}

.company-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.company-link:hover,
.company-link:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.timeline-card {
  min-height: 240px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.license-ledger {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.license-entry {
  display: grid;
  grid-template-columns: 240px minmax(0, 340px) 1fr;
  gap: 26px;
  align-items: center;
  min-height: 144px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.license-entry h3 {
  margin: 0;
  font-size: 1.14rem;
}

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

.contact-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 36px;
  align-items: center;
}

.contact-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.contact-summary article {
  min-height: 232px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-summary strong,
.contact-summary a {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 700;
}

.contact-summary strong + strong {
  margin-top: 2px;
}

.contact-summary p {
  margin: 0;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.route-entry {
  min-height: 240px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 101, 168, 0.03), rgba(0, 101, 168, 0)),
    var(--white);
}

.route-entry strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.3rem;
}

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

.signal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.signal-panel__intro,
.signal-panel__points article {
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signal-panel__intro p:last-child,
.signal-panel__points p {
  margin-bottom: 0;
}

.signal-panel__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-panel__points article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(0, 101, 168, 0.03), rgba(0, 101, 168, 0)),
    var(--white);
}

.site-footer {
  margin-top: 96px;
  background: linear-gradient(180deg, #10263d 0%, #081829 100%);
  color: var(--white);
}

.footer-ribbon {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.footer-ribbon span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.58fr) minmax(0, 0.92fr);
  gap: 56px;
}

.footer-brand {
  max-width: 520px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: 266px;
  margin: 0 auto 24px;
}

.footer-logo--mono {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-label {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line-light);
}

.footer-contact span {
  align-items: flex-start;
  min-height: 72px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

@media (max-width: 1240px) {
  .statement-band__inner,
  .cta-band,
  .contact-overview,
  .two-column,
  .signal-panel {
    grid-template-columns: 1fr;
  }

  .home-hero__inner {
    gap: 28px;
    align-content: center;
  }

  .section-feature,
  .section-feature--reverse {
    grid-template-columns: 1fr;
  }

  .section-feature--reverse .feature-media,
  .section-feature--reverse .feature-copy {
    order: initial;
  }

  .feature-media img {
    min-height: 460px;
  }

  .ecosystem-map {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .timeline-track,
  .signal-panel__points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    gap: 0;
    padding: 0 16px;
  }

  .brand {
    width: 184px;
    grid-column: 2;
    justify-self: center;
  }

  .menu-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--white);
    grid-column: 1;
  }

  .menu-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .menu-button i,
  .menu-button i::before,
  .menu-button i::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .menu-button i::before {
    transform: translateY(-6px);
  }

  .menu-button i::after {
    transform: translateY(4px);
  }

  .nav {
    position: fixed;
    inset: calc(var(--header) + 10px) 16px auto 16px;
    display: grid;
    height: auto;
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
    background: rgba(247, 250, 252, 0.985);
    border: 1px solid var(--line);
    visibility: hidden;
    transform: translateY(calc(-100% - 24px));
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  body.nav-open .nav {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a,
  .nav a:last-child {
    min-height: 60px;
    justify-content: flex-start;
    text-align: left;
    padding: 0 18px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-utility {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .nav-language {
    display: grid;
    gap: 8px;
  }

  .nav-language span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 820;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .nav-language select {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    appearance: auto;
    cursor: pointer;
  }

  .header-tools {
    display: none;
  }

  .home-hero__inner,
  .page-hero__content,
  .section,
  .statement-band__inner,
  .footer-ribbon,
  .footer-grid,
  .footer-bottom,
  .cta-band {
    width: min(var(--max), calc(100% - 40px));
  }

  .hero-rail {
    max-width: 760px;
  }

  .ecosystem-branch {
    grid-template-columns: 1fr;
  }

  .ecosystem-logo,
  .ecosystem-chip,
  .company-mark {
    justify-content: center;
  }

  .company-mark {
    padding-left: 0;
  }

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

  .license-entry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-summary,
  .route-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-hero__inner,
  .page-hero__content,
  .section,
  .statement-band__inner,
  .footer-ribbon,
  .footer-grid,
  .footer-bottom,
  .cta-band {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .hero-metrics,
  .pillar-grid,
  .capability-grid,
  .timeline-track,
  .contact-summary {
    grid-template-columns: 1fr;
  }

  .company-cluster__list {
    grid-template-columns: 1fr;
  }

  .ecosystem-core__logos {
    grid-template-columns: 1fr;
  }

  .signal-panel__points {
    grid-template-columns: 1fr;
  }

  .filters {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters button {
    min-height: 76px;
    padding: 16px 14px;
  }

  .filters button[data-filter="investment"] {
    grid-column: 1 / -1;
  }

  .hero-main,
  .page-hero__content,
  .hero-rail,
  .hero-sectors article,
  .hero-metrics article,
  .statement-band__inner,
  .cta-band,
  .cta-band > div,
  .section-intro,
  .two-column,
  .contact-overview,
  .signal-panel,
  .signal-panel__intro,
  .signal-panel__points article {
    text-align: center;
    align-items: center;
  }

  .section-head,
  .company-cluster__head,
  .contact-intro,
  .footer-brand,
  .footer-links,
  .footer-contact,
  .feature-copy,
  .ecosystem-core__intro,
  .ecosystem-branch__copy,
  .route-entry,
  .contact-summary article,
  .capability-card,
  .pillar-card,
  .timeline-card,
  .license-entry,
  .signal-panel__intro,
  .signal-panel__points article {
    text-align: center;
    align-items: center;
  }

  .ecosystem-logo,
  .ecosystem-chip {
    min-height: 74px;
    padding-left: 0;
    justify-content: center;
  }

  .ecosystem-logo img,
  .ecosystem-chip img {
    margin: 0 auto;
  }

  .company-mark,
  .company-tags,
  .company-cta,
  .hero-actions,
  .footer-bottom,
  .footer-ribbon span {
    justify-content: center;
  }

  .company-mark {
    padding-left: 0;
  }

  .company-mark img {
    margin: 0 auto;
  }

  .company-tags {
    justify-content: center;
  }

  .filters button,
  .nav a,
  .contact-summary strong,
  .contact-summary a,
  .contact-summary p,
  .route-entry strong,
  .route-entry p,
  .license-entry p,
  .license-entry h3 {
    text-align: center;
  }

  .filters button {
    align-items: center;
  }

  .company-main,
  .company-meta,
  .company-cta,
  .hero-sectors,
  .footer-brand p {
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact span {
    justify-content: center;
    text-align: center;
  }

  .footer-contact span {
    align-items: center;
    padding-top: 14px;
  }

  .footer-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}
