@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500;1,600;1,700&display=swap');

:root {
  --blue: #0062fe;
  --blue-600: #0757dc;
  --blue-700: #0648bd;
  --blue-900: #062b69;
  --orange: #f36434;
  --orange-strong: #f06230;
  --navy: #0b172b;
  --navy-2: #132034;
  --navy-3: #182337;
  --slate: #2b3a52;
  --ink: #161616;
  --body: #595f69;
  --muted: #8c96a5;
  --light-blue: #eff7fe;
  --soft-orange: #ffe3da;
  --line: #e3e3e3;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(11, 23, 43, 0.08);
  --shadow-md: 0 22px 65px rgba(11, 23, 43, 0.14);
  --shadow-dark: 0 26px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 54px;
  --container: 1380px;
  --section-y: clamp(4.75rem, 8vw, 7.5rem);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

::selection {
  background: rgba(0, 98, 254, 0.22);
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid rgba(243, 100, 52, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 0.7rem 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 2.5rem), 950px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-y);
  isolation: isolate;
}

.section--compact {
  padding-block: clamp(3.25rem, 6vw, 5rem);
}

.section--light {
  background: var(--light-blue);
}

.section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 98, 254, 0.16), transparent 25rem),
    radial-gradient(circle at 12% 82%, rgba(243, 100, 52, 0.11), transparent 24rem),
    var(--navy);
  color: var(--white);
}

.section--navy-soft {
  background: var(--navy-2);
  color: var(--white);
}

.section--white {
  background: var(--white);
}

.section--pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading--center {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-bottom: 0;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0.35rem rgba(243, 100, 52, 0.12);
}

.eyebrow--line::before {
  width: 2.5rem;
  height: 2px;
  border-radius: 999px;
  box-shadow: none;
}

.eyebrow--blue {
  color: var(--blue);
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.9);
}

.section-title,
.display-title {
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-title {
  max-width: 980px;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
}

.section-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--body);
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.section--dark .section-copy,
.section--navy-soft .section-copy {
  color: #b4bfce;
}

.lead {
  color: var(--body);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(92deg, var(--blue) 15%, var(--orange) 78%);
  background-clip: text;
  -webkit-background-clip: text;
}

.orange {
  color: var(--orange);
}

.blue {
  color: var(--blue);
}

.muted {
  color: var(--muted);
}

.no-margin {
  margin: 0;
}

.stack {
  display: grid;
  gap: var(--stack-gap, 1.25rem);
}

.flow > * + * {
  margin-top: var(--flow-space, 1.25rem);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.split--top {
  align-items: start;
}

.split--wide-left {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.split--wide-right {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

/* Header */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(11, 23, 43, 0.07);
}

.utility-bar {
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
}

.utility-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-links,
.utility-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.94;
  transition: opacity var(--transition);
}

.utility-link:hover {
  opacity: 1;
}

.utility-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--orange);
}

.main-nav {
  position: relative;
  background: var(--white);
}

.main-nav__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(210px, 18vw, 285px);
  aspect-ratio: 4 / 1;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 1.65rem);
  flex: 1 1 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1vw, 1.05rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-dropdown__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 0.45rem 0.55rem;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link::after,
.nav-dropdown__toggle::after {
  content: '';
  position: absolute;
  right: 0.5rem;
  bottom: 0;
  left: 0.5rem;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link[aria-current='page']::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle[aria-expanded='true']::after,
.nav-dropdown__toggle.is-active::after {
  transform: scaleX(1);
}

.nav-link[aria-current='page'],
.nav-dropdown__toggle.is-active {
  color: var(--blue);
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}

.nav-dropdown__toggle[aria-expanded='true'] .nav-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  width: min(820px, calc(100vw - 3rem));
  padding: 1.25rem;
  transform: translate(-38%, 12px);
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(11, 23, 43, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.mega-menu.is-open {
  transform: translate(-38%, 0);
  visibility: visible;
  opacity: 1;
}

.mega-menu__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.mega-menu__title {
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
}

.mega-menu__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.mega-link {
  display: grid;
  gap: 0.2rem;
  min-height: 76px;
  padding: 0.8rem;
  border-radius: 14px;
  transition: background var(--transition), transform var(--transition);
}

.mega-link:hover,
.mega-link[aria-current='page'] {
  transform: translateY(-2px);
  background: var(--light-blue);
}

.mega-link__title {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.mega-link__copy {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.nav-cta {
  flex: 0 0 auto;
}

.service-strip {
  background: var(--navy);
  color: var(--white);
}

.service-strip__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-strip__inner::-webkit-scrollbar {
  display: none;
}

.service-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  padding-block: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-strip__link::after {
  content: '→';
  color: var(--orange);
}

/* Buttons */
.button,
.button-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover,
.button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 23, 43, 0.16);
}

.button:active,
.button-link:active {
  transform: translateY(0);
}

.button--orange {
  background: var(--orange);
  color: var(--white);
}

.button--blue {
  background: var(--blue);
  color: var(--white);
}

.button--navy {
  background: var(--navy);
  color: var(--white);
}

.button--white {
  background: var(--white);
  color: var(--navy);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button--outline-dark {
  border-color: rgba(11, 23, 43, 0.2);
  background: var(--white);
  color: var(--navy);
}

.button--sm {
  min-height: 46px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.button--wide {
  width: 100%;
}

.button__arrow {
  font-size: 1.25em;
  line-height: 1;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 15%, rgba(0, 98, 254, 0.31), transparent 28rem),
    radial-gradient(circle at 92% 82%, rgba(243, 100, 52, 0.22), transparent 22rem),
    linear-gradient(118deg, #070e1b 0%, #0b172b 50%, #15335d 100%);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(circle at 70% 46%, #000, transparent 72%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -9rem;
  bottom: -15rem;
  z-index: -1;
  width: 44rem;
  height: 44rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(0, 98, 254, 0.05),
    0 0 0 8rem rgba(243, 100, 52, 0.035);
}

.hero__inner {
  min-height: clamp(660px, 78vh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  max-width: 900px;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero__title--compact {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
}

.hero__copy {
  max-width: 760px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.5rem;
  color: #cbd4e0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__meta span::before {
  content: '';
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--orange);
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-panel {
  position: relative;
  width: min(100%, 530px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(26px, 4vw, 48px);
  background: rgba(43, 58, 82, 0.68);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: -7rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 98, 254, 0.65), transparent 68%);
  filter: blur(8px);
}

.hero-panel__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-panel__kicker {
  margin-bottom: 0.2rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-panel__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.25;
}

.hero-panel__badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 98, 254, 0.3);
}

.hero-quote {
  position: relative;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(11, 23, 43, 0.72);
  padding: 1.25rem 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.55;
}

.hero-quote small {
  display: block;
  margin-top: 0.8rem;
  color: #b9c2d0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(11, 23, 43, 0.54);
  padding: 1rem;
}

.metric__label {
  margin-bottom: 0.35rem;
  color: #9faabc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric__value {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.metric__value--orange {
  color: var(--orange);
}

.hero-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 52px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.hero-orbit::after {
  width: 14px;
  height: 14px;
  top: 54px;
  right: 58px;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(243, 100, 52, 0.14);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.78); opacity: 0.62; }
}

.hero-profile {
  position: relative;
  width: min(100%, 520px);
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 98, 254, 0.34), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.hero-profile__monogram {
  width: min(66vw, 290px);
  height: min(66vw, 290px);
  max-width: 290px;
  max-height: 290px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--navy-2));
  color: var(--white);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.04),
    0 0 0 36px rgba(243, 100, 52, 0.05);
}

.hero-profile__caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(11, 23, 43, 0.82);
  padding: 1rem 1.1rem;
  color: #e7edf5;
  backdrop-filter: blur(10px);
}

.hero-profile__caption strong {
  display: block;
  color: var(--white);
}

.hero-profile__caption span {
  color: #abb6c6;
  font-size: 0.78rem;
}

/* Cards and content */
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 98, 254, 0.2);
  box-shadow: var(--shadow-sm);
}

.card--dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--navy-3);
  color: var(--white);
}

.card--blue {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, var(--blue-700), var(--blue));
  color: var(--white);
}

.card--orange {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, #df4d20, var(--orange));
  color: var(--white);
}

.card--soft {
  background: var(--light-blue);
}

.card__icon,
.icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border-radius: 17px;
  background: var(--soft-orange);
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 800;
}

.card__icon--blue,
.icon-box--blue {
  background: var(--light-blue);
  color: var(--blue);
}

.card--dark .card__icon,
.card--blue .card__icon,
.card--orange .card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.card__title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.25;
}

.card__copy {
  margin-bottom: 0;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.75;
}

.card--dark .card__copy,
.card--blue .card__copy,
.card--orange .card__copy {
  color: rgba(255, 255, 255, 0.78);
}

.card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__tag::after {
  content: '›';
  font-size: 1.4em;
}

.card--blue .card__tag,
.card--orange .card__tag,
.card--dark .card__tag {
  color: var(--white);
}

.feature-card {
  min-height: 100%;
}

.feature-card__number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 700;
}

.feature-card--blue .feature-card__number {
  border-color: var(--blue);
  color: var(--blue);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  border-left: 6px solid var(--orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--navy-3);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote-panel::before {
  content: '“';
  position: absolute;
  top: -2.4rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.055);
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
}

.quote-panel blockquote {
  position: relative;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3.1vw, 2.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.quote-panel cite {
  display: block;
  margin-top: 1.2rem;
  color: #aeb8c7;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.statement-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}

.statement-box--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.statement-box__title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 2.7vw, 2.25rem);
}

.statement-box__copy {
  margin: 0;
  color: var(--body);
  font-size: 1.05rem;
}

.statement-box--dark .statement-box__copy {
  color: #b7c1cf;
}

/* Lists */
.check-list,
.arrow-list,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list,
.arrow-list {
  display: grid;
  gap: 0.9rem;
}

.check-list li,
.arrow-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 98, 254, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.section--dark .check-list li::before,
.card--dark .check-list li::before,
.card--blue .check-list li::before {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange);
}

/* Visuals */
.vision-visual,
.map-visual,
.network-visual,
.system-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 28% 18%, rgba(0, 98, 254, 0.48), transparent 18rem),
    radial-gradient(circle at 76% 80%, rgba(243, 100, 52, 0.28), transparent 16rem),
    var(--navy);
  box-shadow: var(--shadow-md);
}

.vision-visual::before,
.map-visual::before,
.network-visual::before,
.system-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(135deg, #000, transparent 86%);
}

.visual-node {
  position: absolute;
  width: var(--node-size, 22px);
  height: var(--node-size, 22px);
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  box-shadow: 0 0 0 9px rgba(0, 98, 254, 0.12);
}

.visual-node--orange {
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(243, 100, 52, 0.12);
}

.visual-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.1));
}

.visual-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(11, 23, 43, 0.82);
  padding: 1.25rem;
  color: var(--white);
  backdrop-filter: blur(12px);
}

.visual-caption strong {
  font-size: 1.15rem;
}

.visual-caption span {
  color: #aab5c4;
  font-size: 0.83rem;
}

.africa-shape {
  position: absolute;
  inset: 50% auto auto 52%;
  width: min(58%, 320px);
  aspect-ratio: 0.82;
  transform: translate(-50%, -50%) rotate(-4deg);
  background: linear-gradient(145deg, rgba(0, 98, 254, 0.9), rgba(243, 100, 52, 0.78));
  clip-path: polygon(42% 1%, 59% 5%, 68% 13%, 78% 18%, 83% 29%, 92% 38%, 90% 53%, 80% 62%, 73% 70%, 66% 83%, 55% 98%, 44% 88%, 35% 78%, 25% 70%, 18% 58%, 10% 46%, 15% 33%, 21% 21%, 31% 14%);
  opacity: 0.92;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.4));
}

.africa-shape::before {
  content: '';
  position: absolute;
  inset: 8%;
  clip-path: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent);
}

.globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 350px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48.8%, rgba(255, 255, 255, 0.23) 49%, rgba(255, 255, 255, 0.23) 51%, transparent 51.2%),
    linear-gradient(transparent 48.8%, rgba(255, 255, 255, 0.23) 49%, rgba(255, 255, 255, 0.23) 51%, transparent 51.2%);
  box-shadow:
    inset 0 0 60px rgba(0, 98, 254, 0.2),
    0 0 0 28px rgba(255, 255, 255, 0.03);
}

.globe::before,
.globe::after {
  content: '';
  position: absolute;
  inset: 10% 26%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.globe::after {
  inset: 27% 6%;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding: 1.5rem;
  counter-increment: process;
}

.process-step::after {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 0.85rem;
  right: 1.1rem;
  color: rgba(0, 98, 254, 0.1);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
}

.process-step__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 800;
}

.process-step:nth-child(even) .process-step__icon {
  background: var(--soft-orange);
  color: var(--orange);
}

.process-step h3 {
  position: relative;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.process-step p {
  position: relative;
  margin-bottom: 0;
  color: var(--body);
  font-size: 0.94rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding: 1.65rem;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(0, 98, 254, 0.08);
}

.stat-card:nth-child(even)::after {
  background: rgba(243, 100, 52, 0.1);
}

.stat-card__value {
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.stat-card:nth-child(even) .stat-card__value {
  color: var(--orange);
}

.stat-card__label {
  margin: 0;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.section--dark .stat-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.section--dark .stat-card__label {
  color: #bac4d2;
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 83px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--orange));
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  align-items: start;
}

.timeline-year {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 2px solid var(--blue);
  border-radius: 16px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-year {
  border-color: var(--orange);
  color: var(--orange);
}

.timeline-content {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 1.35rem 1.5rem;
}

.timeline-content h3 {
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--body);
}

/* Leadership */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.person-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  padding: 1.35rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.person-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.person-card__avatar {
  position: relative;
  height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 35%),
    linear-gradient(145deg, var(--blue), var(--navy-2));
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.person-card:nth-child(3n + 2) .person-card__avatar {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 35%),
    linear-gradient(145deg, var(--orange), #9f3212);
}

.person-card:nth-child(3n) .person-card__avatar {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 35%),
    linear-gradient(145deg, var(--slate), var(--navy));
}

.person-card__name {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.person-card__role {
  margin-bottom: 0;
  color: var(--body);
  font-size: 0.82rem;
  line-height: 1.45;
}

.person-card__link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.person-card__link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Tabs / accordions */
.tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.tabs__list {
  display: grid;
  gap: 0.65rem;
}

.tab-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  padding: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.tab-button:hover,
.tab-button[aria-selected='true'] {
  transform: translateX(4px);
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.tab-panel {
  display: none;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.tab-panel.is-active {
  display: block;
}

/* AI panel */
.ai-lab {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 98, 254, 0.32), transparent 22rem),
    radial-gradient(circle at 5% 94%, rgba(243, 100, 52, 0.18), transparent 20rem),
    var(--navy);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.ai-lab::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.ai-lab__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ai-lab__title {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.08;
}

.ai-lab__copy {
  color: #aeb9c8;
  font-size: 1.05rem;
}

.ai-console {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(19, 32, 52, 0.82);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(15px);
}

.ai-form {
  display: grid;
  gap: 1rem;
}

.ai-form label {
  color: #dce4ee;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ai-input,
.form-control {
  width: 100%;
  border: 1px solid #34465e;
  border-radius: 14px;
  background: #1b293e;
  color: var(--white);
  padding: 1rem 1.05rem;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea.ai-input,
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.ai-input::placeholder,
.form-control::placeholder {
  color: #8995a6;
}

.ai-input:focus,
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 98, 254, 0.15);
}

.ai-output {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #0f1b2d;
  padding: 1.25rem;
  color: #b8c2d0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.65;
}

.ai-output strong {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
}

.ai-output ul {
  margin: 0;
  padding-left: 1.15rem;
}

.ai-output.is-loading {
  opacity: 0.7;
}

.ai-note {
  margin-top: 0.75rem;
  color: #8290a2;
  font-size: 0.7rem;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.15), transparent 24rem),
    linear-gradient(110deg, var(--blue) 0%, var(--blue-600) 48%, #174caa 100%);
  color: var(--white);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.cta-band::after {
  content: '';
  position: absolute;
  right: -7rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.03), 0 0 0 8rem rgba(255, 255, 255, 0.02);
}

.cta-band__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cta-band__title {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.7vw, 4.5rem);
  line-height: 1.05;
}

.cta-band__copy {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cta-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  padding: 1.35rem;
  color: var(--white);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.cta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.19);
}

.cta-card__arrow {
  align-self: flex-end;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--white);
  color: var(--orange);
  font-weight: 800;
}

.cta-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.cta-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--white);
  color: var(--ink);
}

.footer-main {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.footer-brandline {
  margin-bottom: 2.75rem;
  color: var(--orange);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 1.15fr;
  gap: 2.5rem;
}

.footer-column h3 {
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 1.15rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--body);
  padding: 0;
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a::before,
.footer-links button::before {
  content: '›';
  color: var(--orange);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links button:hover {
  transform: translateX(3px);
  color: var(--blue);
}

.footer-connect {
  display: grid;
  gap: 1.25rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #747474;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--blue);
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.app-badge {
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 9px;
  background: #0b0b0b;
  color: var(--white);
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
  line-height: 1.15;
}

.app-badge strong {
  display: block;
  font-size: 0.86rem;
}

.footer-ribbon {
  position: relative;
  height: 70px;
  overflow: hidden;
  background: var(--blue-700);
}

.footer-ribbon::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -2rem;
  width: 36%;
  background: repeating-linear-gradient(135deg, var(--orange) 0 14px, var(--white) 14px 28px, var(--blue) 28px 42px, var(--white) 42px 56px);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
}

.footer-bottom {
  padding-block: 1rem 1.5rem;
}

.footer-bottom__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  width: 190px;
}

.footer-companies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.25rem;
  color: var(--orange);
  font-weight: 700;
}

.footer-legal {
  color: var(--body);
  font-size: 0.75rem;
  text-align: right;
}

.footer-copyright {
  margin-top: 0.8rem;
  color: var(--body);
  font-size: 0.75rem;
  text-align: center;
}

/* Forms/dialog/toast */
.dialog {
  width: min(720px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: var(--white);
  padding: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.dialog::backdrop {
  background: rgba(4, 12, 24, 0.75);
  backdrop-filter: blur(5px);
}

.dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.6rem 1.8rem;
}

.dialog__header h2 {
  margin-bottom: 0.25rem;
  font-size: 1.65rem;
}

.dialog__header p {
  margin-bottom: 0;
  color: #aab6c6;
  font-size: 0.86rem;
}

.dialog__close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}

.dialog__body {
  padding: 1.8rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form .form-control {
  border-color: var(--line);
  background: #f8fafc;
  color: var(--ink);
}

.contact-form .form-control::placeholder {
  color: #9aa3af;
}

.form-status {
  display: none;
  border-radius: 14px;
  background: var(--light-blue);
  color: var(--navy);
  padding: 1rem;
  font-size: 0.88rem;
}

.form-status.is-visible {
  display: block;
}

.toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 3000;
  max-width: min(420px, calc(100% - 2.4rem));
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-dark);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.toast.is-visible {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Extra components */
.marquee-regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  color: rgba(89, 95, 105, 0.38);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.pill::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.section--dark .pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.logo-chip {
  min-height: 110px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--slate);
  padding: 1rem;
  font-weight: 700;
  text-align: center;
}

.risk-list {
  display: grid;
  gap: 0.8rem;
}

.risk-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--slate);
  color: #b7c1cf;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
}

.risk-item::after {
  content: '↗';
  color: var(--orange);
  font-size: 1.1rem;
}

.progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #414d5c;
}

.progress__bar {
  height: 100%;
  width: var(--progress, 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.profile-credentials {
  display: grid;
  gap: 1rem;
}

.credential {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 1.25rem;
}

.credential__mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 800;
}

.credential:nth-child(even) .credential__mark {
  background: var(--soft-orange);
  color: var(--orange);
}

.credential h3 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.credential p {
  margin: 0;
  color: var(--body);
  font-size: 0.86rem;
}

.profile-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-weight: 700;
}

.profile-back::before {
  content: '←';
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .main-nav__inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 1100;
    width: min(440px, 92vw);
    height: 100dvh;
    display: block;
    overflow-y: auto;
    transform: translateX(105%);
    background: var(--white);
    padding: 5.5rem 1.25rem 2rem;
    box-shadow: -20px 0 70px rgba(0, 0, 0, 0.22);
    transition: transform 240ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav__close-zone {
    position: fixed;
    inset: 0;
    z-index: 990;
    display: none;
    background: rgba(4, 12, 24, 0.62);
    backdrop-filter: blur(3px);
  }

  body.menu-open .primary-nav__close-zone {
    display: block;
  }

  .nav-toggle {
    position: relative;
    z-index: 1200;
  }

  .nav-list {
    display: grid;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-link,
  .nav-dropdown__toggle {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 0.2rem;
    font-size: 1rem;
  }

  .nav-link::after,
  .nav-dropdown__toggle::after {
    display: none;
  }

  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    transform: none;
    visibility: visible;
    opacity: 1;
    margin-block: 0.4rem 0.8rem;
    padding: 0.65rem;
    border-radius: 16px;
    background: var(--light-blue);
    box-shadow: none;
  }

  .mega-menu.is-open {
    display: block;
    transform: none;
  }

  .mega-menu__header {
    display: none;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .mega-link {
    min-height: auto;
    padding: 0.75rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 1.25rem;
  }

  .nav-cta .button {
    width: 100%;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    max-width: 900px;
  }

  .hero__visual {
    min-height: 470px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .split,
  .split--wide-left,
  .split--wide-right {
    grid-template-columns: 1fr;
  }

  .grid--4,
  .stats-grid,
  .cta-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-lab__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom__row {
    flex-wrap: wrap;
  }

  .footer-legal {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 820px) {
  :root {
    --section-y: 4.5rem;
  }

  html {
    scroll-padding-top: 8rem;
  }

  .utility-links .utility-link:nth-child(n + 2),
  .utility-actions .utility-link:nth-child(1) {
    display: none;
  }

  .brand img {
    width: 220px;
  }

  .service-strip__inner {
    gap: 1.2rem;
  }

  .hero__inner {
    padding-block: 4.5rem;
  }

  .hero__title {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero-panel,
  .hero-profile {
    border-radius: 32px;
  }

  .grid--3,
  .people-grid,
  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .tabs__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tab-button:hover,
  .tab-button[aria-selected='true'] {
    transform: none;
  }

  .cta-band__header {
    margin-bottom: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom__row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container,
  .container--narrow {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .utility-bar__inner {
    min-height: 38px;
  }

  .main-nav__inner {
    min-height: 76px;
    gap: 0.75rem;
  }

  .brand img {
    width: min(190px, 58vw);
  }

  .hero__title {
    font-size: clamp(2.7rem, 15vw, 4.15rem);
  }

  .hero__copy {
    font-size: 1.03rem;
  }

  .button-group {
    display: grid;
  }

  .button-group .button,
  .button-group .button-link {
    width: 100%;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero-panel {
    padding: 1.2rem;
  }

  .hero-panel__badge {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .metric-row,
  .grid--2,
  .grid--3,
  .grid--4,
  .stats-grid,
  .cta-cards,
  .process,
  .people-grid,
  .logo-wall {
    grid-template-columns: 1fr;
  }

  .vision-visual,
  .map-visual,
  .network-visual,
  .system-visual {
    min-height: 390px;
    border-radius: 34px;
  }

  .card {
    border-radius: 24px;
  }

  .timeline::before {
    left: 27px;
  }

  .timeline-item {
    grid-template-columns: 54px 1fr;
    gap: 0.85rem;
  }

  .timeline-year {
    min-height: 48px;
    font-size: 0.78rem;
  }

  .tabs__list {
    grid-template-columns: 1fr;
  }

  .ai-lab {
    border-radius: 34px;
    padding: 1.25rem;
  }

  .ai-console {
    padding: 1rem;
  }

  .cta-band__title {
    font-size: 2.45rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-ribbon {
    height: 48px;
  }

  .footer-ribbon::before {
    width: 70%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .dialog__header,
  .dialog__body {
    padding: 1.2rem;
  }

  .marquee-regions {
    justify-content: flex-start;
  }
}

@media (hover: hover) and (min-width: 1181px) {
  .nav-item--dropdown:hover .mega-menu {
    transform: translate(-38%, 0);
    visibility: visible;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
