/* BESONG Group enterprise website - dependency-free design system */
:root {
  --ink-950: #06101f;
  --ink-900: #0a1628;
  --ink-850: #0d1b30;
  --ink-800: #14233a;
  --ink-700: #263850;
  --ink-600: #40536b;
  --ink-500: #66778d;
  --ink-300: #a7b3c2;
  --ink-200: #cdd5df;
  --ink-150: #dfe5ec;
  --ink-100: #edf1f5;
  --ink-50: #f6f8fb;
  --white: #ffffff;
  --blue: #0b62ff;
  --blue-600: #004ee5;
  --blue-100: #e9f1ff;
  --orange: #ff5b21;
  --orange-600: #e64810;
  --orange-100: #fff0e9;
  --purple: #5222b8;
  --purple-100: #f1ebff;
  --teal: #067684;
  --teal-100: #e5f7f8;
  --green: #0d8850;
  --green-100: #e8f7ef;
  --cocoa: #79310c;
  --cocoa-100: #f8ece4;
  --gold: #a87400;
  --gold-100: #fff6d9;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(9, 26, 51, 0.08);
  --shadow-md: 0 20px 55px rgba(9, 26, 51, 0.14);
  --shadow-lg: 0 36px 90px rgba(3, 15, 35, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --container: 1380px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(11, 98, 255, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(11, 98, 255, .45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink-950);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.shell--wide {
  width: min(calc(100% - 40px), 1440px);
  margin-inline: auto;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section--compact {
  padding: 72px 0;
}

.section--soft {
  background: var(--ink-50);
}

.section--dark {
  background: var(--ink-950);
  color: var(--white);
}

.section--navy {
  background:
    radial-gradient(circle at 80% 20%, rgba(11, 98, 255, .24), transparent 32%),
    radial-gradient(circle at 16% 85%, rgba(255, 91, 33, .14), transparent 28%),
    var(--ink-950);
  color: var(--white);
}

.section--orange-soft {
  background: linear-gradient(180deg, #fff 0, var(--orange-100) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.eyebrow--orange {
  color: var(--orange);
}

.eyebrow--white {
  color: rgba(255, 255, 255, .76);
}

.eyebrow--white::before {
  background: var(--orange);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  font-weight: 740;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 720;
}

h4 {
  font-size: 1.1rem;
  font-weight: 760;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.12rem, 1.55vw, 1.36rem);
  line-height: 1.65;
  color: var(--ink-600);
}

.section--dark .lead,
.section--navy .lead {
  color: rgba(255, 255, 255, .72);
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  margin-top: 24px;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .eyebrow::before {
  display: none;
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 50px;
}

.section-topline .section-heading {
  margin: 0;
}

.kicker {
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.muted {
  color: var(--ink-500);
}

.small {
  font-size: .9rem;
}

.text-white {
  color: var(--white);
}

.text-blue {
  color: var(--blue);
}

.text-orange {
  color: var(--orange);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 760;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(11, 98, 255, .26);
}

.button--primary:hover {
  background: var(--blue-600);
  box-shadow: 0 16px 34px rgba(11, 98, 255, .32);
}

.button--orange {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(255, 91, 33, .25);
}

.button--orange:hover {
  background: var(--orange-600);
}

.button--ghost {
  color: var(--ink-900);
  background: transparent;
  border-color: var(--ink-200);
}

.button--ghost:hover {
  border-color: var(--ink-700);
  background: var(--white);
}

.button--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .22);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .44);
}

.button--text {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  color: var(--blue);
}

.button--text:hover {
  transform: none;
  gap: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 760;
  color: var(--blue);
}

.icon-link svg {
  width: 17px;
  height: 17px;
  transition: transform .25s var(--ease);
}

.icon-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.announcement {
  position: relative;
  z-index: 102;
  background: var(--ink-950);
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  letter-spacing: .01em;
}

.announcement .shell {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement a {
  color: var(--white);
  font-weight: 730;
}

.announcement .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 91, 33, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(12, 27, 48, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(5, 18, 40, .08);
  background: rgba(255, 255, 255, .97);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  justify-self: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: .94rem;
  font-weight: 690;
  cursor: pointer;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link[aria-current="page"] {
  color: var(--ink-950);
  background: var(--ink-50);
}

.nav-trigger svg {
  width: 14px;
  transition: transform .2s var(--ease);
}

.nav-item.is-open .nav-trigger svg {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ink-150);
  background: var(--white);
  cursor: pointer;
}

.header-icon:hover {
  background: var(--ink-50);
}

.header-icon svg {
  width: 19px;
  height: 19px;
}

.language-button {
  min-width: 58px;
  border-radius: 999px;
  font-weight: 750;
  font-size: .84rem;
}

.header-cta {
  min-height: 44px;
  padding-inline: 18px;
}

.menu-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 15px);
  width: min(880px, calc(100vw - 40px));
  transform: translate(-50%, -8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 26px;
  background: rgba(255, 255, 255, .985);
  border: 1px solid var(--ink-150);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}

.nav-item.is-open .mega-menu,
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mega-col h4 {
  margin-bottom: 12px;
  color: var(--ink-500);
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mega-col a {
  display: block;
  padding: 7px 9px;
  margin-left: -9px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 650;
  color: var(--ink-700);
}

.mega-col a:hover {
  color: var(--blue);
  background: var(--blue-100);
}

.mega-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-150);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.mega-footer p {
  color: var(--ink-500);
  font-size: .86rem;
}

/* Mobile navigation */
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(5, 16, 31, .58);
  backdrop-filter: blur(8px);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-drawer {
  margin-left: auto;
  width: min(440px, 100%);
  min-height: 100%;
  background: var(--white);
  padding: 18px 22px 28px;
  overflow-y: auto;
  animation: drawerIn .32s var(--ease) both;
}

@keyframes drawerIn {
  from {
    transform: translateX(100%);
  }
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mobile-top .brand {
  width: 170px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-150);
  background: var(--white);
  cursor: pointer;
}

.mobile-nav {
  border-top: 1px solid var(--ink-150);
}

.mobile-nav details {
  border-bottom: 1px solid var(--ink-150);
}

.mobile-nav summary,
.mobile-nav>a {
  list-style: none;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 760;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-500);
}

.mobile-nav details[open] summary::after {
  content: "−";
}

.mobile-subnav {
  padding: 0 0 16px 14px;
  display: grid;
  gap: 8px;
}

.mobile-subnav a {
  color: var(--ink-600);
  font-weight: 620;
}

.mobile-actions {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

/* Search */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  padding: 84px 20px 20px;
  background: rgba(4, 13, 27, .82);
  backdrop-filter: blur(16px);
}

.search-overlay.is-open {
  display: block;
}

.search-modal {
  width: min(760px, 100%);
  max-height: calc(100vh - 110px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--ink-150);
}

.search-head svg {
  width: 22px;
  color: var(--ink-500);
}

.search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  font-size: 1.1rem;
  color: var(--ink-950);
}

.search-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--ink-50);
  cursor: pointer;
}

.search-results {
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding: 14px;
}

.search-result {
  display: block;
  padding: 14px;
  border-radius: 12px;
}

.search-result:hover {
  background: var(--ink-50);
}

.search-result strong {
  display: block;
  margin-bottom: 4px;
}

.search-result span {
  color: var(--ink-500);
  font-size: .9rem;
}

.search-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--ink-500);
}

/* Homepage hero */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(5, 16, 31, .98) 0%, rgba(7, 24, 49, .98) 48%, rgba(7, 27, 58, .95) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, transparent, #000 28%, #000 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  right: -180px;
  top: -210px;
  background: radial-gradient(circle, rgba(11, 98, 255, .32), rgba(11, 98, 255, 0) 68%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  align-items: center;
  gap: 70px;
  padding: 100px 0 108px;
}

.hero-copy {
  max-width: 750px;
}

.hero h1 {
  max-width: 760px;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero .lead {
  margin-top: 26px;
  max-width: 720px;
  color: rgba(255, 255, 255, .74);
}

.hero .button-row {
  margin-top: 34px;
}

.hero-support {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  font-weight: 680;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.hero-support::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--orange);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orbit {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(circle at center, rgba(11, 98, 255, .16), rgba(255, 255, 255, .02) 58%, transparent 59%);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, .14);
}

.orbit::after {
  inset: 28%;
  border-style: solid;
  border-color: rgba(255, 91, 33, .24);
}

.orbit-core {
  position: absolute;
  inset: 35%;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.orbit-core strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.orbit-core span {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.orbit-node {
  position: absolute;
  z-index: 4;
  width: 156px;
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(9, 25, 51, .82);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
  backdrop-filter: blur(12px);
  animation: float 5.5s ease-in-out infinite;
}

.orbit-node:nth-child(even) {
  animation-delay: -2.3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.orbit-node .number {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--node, var(--blue));
  font-size: .76rem;
  font-weight: 820;
}

.orbit-node strong {
  display: block;
  margin-top: 8px;
  font-size: .87rem;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.orbit-node small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .54);
  font-size: .68rem;
}

.orbit-node--1 {
  top: 1%;
  left: 35%;
}

.orbit-node--2 {
  top: 22%;
  right: -6%;
}

.orbit-node--3 {
  bottom: 16%;
  right: 0;
}

.orbit-node--4 {
  bottom: -1%;
  left: 33%;
}

.orbit-node--5 {
  bottom: 18%;
  left: -7%;
}

.orbit-node--6 {
  top: 20%;
  left: -6%;
}

.orbit-chip {
  position: absolute;
  right: 7%;
  top: 6%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 91, 33, .13);
  border: 1px solid rgba(255, 91, 33, .3);
  color: #ffb59a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-bottom: 1px solid var(--ink-150);
  background: var(--white);
}

.trust-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
  color: var(--ink-700);
  font-weight: 730;
}

.trust-item+.trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 38px;
  background: var(--ink-150);
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-100);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

/* Ecosystem stage switcher */
.stage-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  align-items: stretch;
  margin-top: 56px;
}

.stage-tabs {
  display: grid;
  gap: 8px;
}

.stage-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid var(--ink-150);
  border-radius: 14px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.stage-tab:hover {
  transform: translateX(4px);
  border-color: var(--ink-300);
}

.stage-tab.is-active {
  border-color: color-mix(in srgb, var(--stage-color) 48%, white);
  background: color-mix(in srgb, var(--stage-color) 8%, white);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--stage-color) 12%, transparent);
}

.stage-tab-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--stage-color);
  font-size: .8rem;
  font-weight: 840;
}

.stage-tab strong {
  display: block;
  font-size: .96rem;
}

.stage-tab small {
  display: block;
  margin-top: 2px;
  color: var(--ink-500);
  font-size: .76rem;
}

.stage-tab .arrow {
  color: var(--ink-300);
}

.stage-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--ink-950);
  box-shadow: var(--shadow-md);
}

.stage-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--stage-color) 40%, transparent), transparent 38%);
}

.stage-panel::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -100px;
  bottom: -100px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 255, 255, .025), 0 0 0 94px rgba(255, 255, 255, .02);
}

.stage-panel-inner {
  position: relative;
  z-index: 2;
}

.stage-panel .stage-number {
  color: color-mix(in srgb, var(--stage-color) 75%, white);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.stage-panel h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  max-width: 620px;
}

.stage-panel .lead {
  margin-top: 20px;
  max-width: 630px;
  color: rgba(255, 255, 255, .7);
}

.stage-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stage-meta-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
}

.stage-meta-card span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stage-meta-card strong {
  font-size: .98rem;
  line-height: 1.45;
}

.stage-unit-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stage-unit-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
  font-size: .78rem;
  font-weight: 700;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--ink-150);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink-300);
  box-shadow: var(--shadow-md);
}

.feature-card .icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: var(--accent, var(--blue));
  background: color-mix(in srgb, var(--accent, var(--blue)) 10%, white);
}

.feature-card .icon-box svg {
  width: 25px;
  height: 25px;
}

.feature-card h3 {
  font-size: 1.34rem;
}

.feature-card p {
  margin-top: 14px;
  color: var(--ink-600);
}

.feature-card .icon-link {
  margin-top: 22px;
}

.unit-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-button {
  border: 1px solid var(--ink-150);
  border-radius: 999px;
  padding: 9px 15px;
  background: var(--white);
  color: var(--ink-600);
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--ink-950);
  background: var(--ink-950);
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.unit-card {
  --accent: var(--blue);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--ink-150);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.unit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.unit-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  top: -90px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.unit-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--ink-150));
  box-shadow: var(--shadow-md);
}

.unit-logo-panel {
  position: relative;
  z-index: 2;
  height: 76px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.unit-logo-panel img {
  max-width: 230px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.unit-logo-panel .wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.unit-logo-panel .mini-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--accent);
  font-weight: 900;
  font-size: 1.05rem;
}

.unit-logo-panel .wordmark strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -.025em;
}

.unit-logo-panel .wordmark small {
  display: block;
  color: var(--ink-500);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.unit-card h3 {
  font-size: 1.35rem;
}

.unit-card p {
  margin-top: 13px;
  color: var(--ink-600);
}

.unit-card .unit-meta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.unit-card .category {
  color: var(--ink-500);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.unit-card[hidden] {
  display: none;
}

/* Outcomes */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .12);
}

.outcome {
  min-height: 275px;
  padding: 28px;
  background: rgba(6, 16, 31, .92);
}

.outcome-number {
  color: var(--orange);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.outcome h3 {
  margin-top: 54px;
  font-size: 1.35rem;
}

.outcome p {
  margin-top: 13px;
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

/* Markets */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.market-card {
  --accent: var(--blue);
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink-900);
  isolation: isolate;
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent) 48%, transparent), transparent 43%), linear-gradient(145deg, rgba(255, 255, 255, .04), transparent);
}

.market-card::after {
  content: "";
  position: absolute;
  right: -65px;
  top: -65px;
  width: 210px;
  height: 210px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .025), 0 0 0 70px rgba(255, 255, 255, .02);
}

.market-card .market-icon {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .13);
}

.market-card .market-icon svg {
  width: 25px;
  height: 25px;
}

.market-card h3 {
  max-width: 250px;
  font-size: 1.55rem;
}

.market-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.market-card .icon-link {
  margin-top: 18px;
  color: var(--white);
}

.market-card:hover .icon-link svg {
  transform: translateX(5px);
}

/* Tech spotlight */
.tech-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.tech-stack {
  position: relative;
  min-height: 520px;
}

.tech-panel {
  position: absolute;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.tech-panel--back {
  inset: 55px 0 30px 110px;
  background: linear-gradient(150deg, #152a4e, #0a1628);
  transform: rotate(4deg);
}

.tech-panel--mid {
  inset: 20px 70px 70px 30px;
  background: linear-gradient(150deg, #0c5df0, #0c3f9d);
  transform: rotate(-3deg);
}

.tech-panel--front {
  inset: 60px 25px 15px 70px;
  padding: 26px;
  background: rgba(255, 255, 255, .98);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-150);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.dashboard-status {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-100);
  font-size: .72rem;
  font-weight: 800;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  margin-top: 18px;
}

.dashboard-card {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--ink-150);
  border-radius: 14px;
  background: var(--ink-50);
}

.dashboard-card--wide {
  grid-column: 1 / -1;
  min-height: 132px;
}

.dashboard-label {
  color: var(--ink-500);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dashboard-value {
  margin-top: 10px;
  font-size: 1.55rem;
  font-weight: 820;
  letter-spacing: -.04em;
}

.dashboard-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 62px;
  margin-top: 10px;
}

.dashboard-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
  opacity: .78;
}

.dashboard-bars span:nth-child(2n) {
  background: var(--orange);
}

.tech-copy .lead {
  margin-top: 24px;
}

.tech-copy .button-row {
  margin-top: 30px;
}

.tech-points {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.tech-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .72);
}

.tech-points .check {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 98, 255, .25);
  color: #8eb8ff;
}

/* Africa to global */
.global-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 68px;
  align-items: center;
}

.global-copy .lead {
  margin-top: 24px;
}

.global-copy .button-row {
  margin-top: 30px;
}

.network-map {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-950);
  box-shadow: var(--shadow-md);
}

.network-map svg {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.network-map .map-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: rgba(255, 255, 255, .64);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Insights */
.insight-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 22px;
  margin-top: 48px;
}

.insight-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink-150);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.insight-card--featured {
  color: var(--white);
  background: var(--ink-950);
  border-color: var(--ink-950);
}

.insight-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(11, 98, 255, .42), transparent 38%), radial-gradient(circle at 18% 90%, rgba(255, 91, 33, .2), transparent 35%);
}

.insight-card>* {
  position: relative;
  z-index: 1;
}

.insight-tag {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-100);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-card--featured .insight-tag {
  color: #bcd1ff;
  background: rgba(11, 98, 255, .2);
}

.insight-card h3 {
  margin-top: auto;
  font-size: 1.62rem;
}

.insight-card p {
  margin-top: 13px;
  color: var(--ink-600);
}

.insight-card--featured p {
  color: rgba(255, 255, 255, .62);
}

.insight-meta {
  margin-top: 22px;
  color: var(--ink-500);
  font-size: .78rem;
  font-weight: 700;
}

.insight-card--featured .insight-meta {
  color: rgba(255, 255, 255, .48);
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-600), #073b9e 58%, var(--ink-950));
  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -100px;
  top: -210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .19);
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .035), 0 0 0 115px rgba(255, 255, 255, .02);
}

.cta-panel::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -240px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 91, 33, .23);
  filter: blur(20px);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.cta-panel h2 {
  max-width: 800px;
}

.cta-panel p {
  margin-top: 22px;
  max-width: 680px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.cta-panel .button-row {
  margin-top: 30px;
}

/* Page heroes and interior layouts */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  color: var(--white);
  background: var(--ink-950);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 28%, color-mix(in srgb, var(--page-accent, var(--blue)) 36%, transparent), transparent 36%), linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  font-weight: 690;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span:last-child {
  color: rgba(255, 255, 255, .82);
}

.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  max-width: 900px;
}

.page-hero .lead {
  margin-top: 24px;
  max-width: 760px;
  color: rgba(255, 255, 255, .7);
}

.page-hero .button-row {
  margin-top: 30px;
}

.page-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
}

.page-visual-card {
  width: min(410px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.page-visual-card .visual-kicker {
  color: rgba(255, 255, 255, .46);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-visual-card .visual-title {
  margin-top: 12px;
  font-size: 1.55rem;
  font-weight: 780;
  letter-spacing: -.03em;
}

.visual-steps {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.visual-step {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .065);
}

.visual-step i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: color-mix(in srgb, var(--page-accent, var(--blue)) 50%, transparent);
  color: var(--white);
  font-style: normal;
  font-size: .72rem;
  font-weight: 850;
}

.visual-step span {
  font-size: .88rem;
  font-weight: 680;
}

.subnav {
  border-bottom: 1px solid var(--ink-150);
  background: var(--white);
}

.subnav .shell {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.subnav .shell::-webkit-scrollbar {
  display: none;
}

.subnav a {
  flex: 0 0 auto;
  padding: 18px 14px;
  color: var(--ink-600);
  font-size: .88rem;
  font-weight: 690;
  border-bottom: 2px solid transparent;
}

.subnav a:hover,
.subnav a[aria-current="page"] {
  color: var(--ink-950);
  border-bottom-color: var(--blue);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col--wide-left {
  grid-template-columns: 1.2fr .8fr;
}

.two-col--wide-right {
  grid-template-columns: .8fr 1.2fr;
}

.copy-block h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.8rem);
}

.copy-block h3 {
  margin-top: 28px;
}

.copy-block p {
  margin-top: 20px;
  color: var(--ink-600);
}

.copy-block .button-row {
  margin-top: 28px;
}

.fact-panel {
  padding: 32px;
  border: 1px solid var(--ink-150);
  border-radius: var(--radius-lg);
  background: var(--ink-50);
}

.fact-panel h3 {
  font-size: 1.45rem;
}

.fact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.fact-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.fact-list .fact-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--blue-100);
  font-weight: 850;
  font-size: .78rem;
}

.fact-list strong {
  display: block;
  font-size: .95rem;
}

.fact-list span {
  display: block;
  margin-top: 4px;
  color: var(--ink-500);
  font-size: .86rem;
}

.logo-hero-panel {
  width: min(440px, 100%);
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.logo-hero-panel img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.fallback-unit-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fallback-unit-logo .mini-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--page-accent);
  background: color-mix(in srgb, var(--page-accent) 12%, white);
  font-size: 1.5rem;
  font-weight: 900;
}

.fallback-unit-logo strong {
  color: var(--ink-950);
  font-size: 2rem;
  letter-spacing: -.04em;
}

.fallback-unit-logo small {
  display: block;
  color: var(--ink-500);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  padding: 26px;
  border: 1px solid var(--ink-150);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.service-card__media {
  margin: -26px -26px 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-100, #eef1f5);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card .service-number {
  color: var(--blue);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.service-card h3 {
  margin-top: 28px;
  font-size: 1.2rem;
}

.service-card p {
  margin-top: 12px;
  color: var(--ink-600);
  font-size: .92rem;
}

.service-card:hover {
  border-color: var(--ink-300);
  box-shadow: var(--shadow-sm);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink-700);
  background: var(--ink-100);
  font-size: .83rem;
  font-weight: 690;
}

.pill--dark {
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 24px 20px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink-900);
}

.process-step::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 48px;
  width: 20px;
  height: 2px;
  background: var(--orange);
  z-index: 2;
}

.process-step:last-child::after {
  display: none;
}

.process-step .step-index {
  color: var(--orange);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.process-step h3 {
  margin-top: 44px;
  font-size: 1.15rem;
}

.process-step p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: .84rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.value-card {
  padding: 28px;
  border-radius: 18px;
  background: var(--ink-50);
}

.value-card .value-letter {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.value-card h3 {
  margin-top: 26px;
  font-size: 1.3rem;
}

.value-card p {
  margin-top: 12px;
  color: var(--ink-600);
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.connection-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
}

.connection-card span {
  color: rgba(255, 255, 255, .44);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.connection-card strong {
  display: block;
  margin-top: 8px;
}

.connection-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: .87rem;
}

/* Forms */
.form-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 50px;
  align-items: start;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink-950);
}

.contact-card h3 {
  font-size: 1.5rem;
}

.contact-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .62);
}

.contact-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.contact-list .contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #a8c6ff;
  background: rgba(11, 98, 255, .2);
}

.contact-list strong {
  display: block;
  font-size: .9rem;
}

.contact-list span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: .85rem;
}

.enterprise-form {
  padding: 34px;
  border: 1px solid var(--ink-150);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-700);
  font-size: .82rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--ink-200);
  border-radius: 11px;
  padding: 13px 14px;
  color: var(--ink-950);
  background: var(--white);
  outline: 0;
  transition: border-color .2s, box-shadow .2s;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 98, 255, .1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.consent {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-500);
  font-size: .82rem;
}

.consent input {
  margin-top: 4px;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-note {
  color: var(--ink-500);
  font-size: .8rem;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 11px;
  color: #05603a;
  background: var(--green-100);
  font-weight: 690;
}

.form-success.is-visible {
  display: block;
}

/* Legal content */
.prose {
  max-width: 860px;
}

.prose h2 {
  margin-top: 46px;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 32px;
  font-size: 1.35rem;
}

.prose p {
  margin-top: 16px;
  color: var(--ink-600);
}

.prose ul,
.prose ol {
  margin: 16px 0 0;
  padding-left: 24px;
  color: var(--ink-600);
}

.prose li+li {
  margin-top: 8px;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  padding: 78px 0 26px;
  color: rgba(255, 255, 255, .68);
  background: var(--ink-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1.2fr;
  gap: 48px;
}

.footer-brand img {
  width: 230px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.footer-brand p {
  margin-top: 22px;
  max-width: 340px;
  color: rgba(255, 255, 255, .56);
}

.footer-socials {
  margin-top: 22px;
  display: flex;
  gap: 9px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .06);
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-links a {
  font-size: .9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-address {
  font-size: .9rem;
  line-height: 1.7;
}

.footer-address strong {
  color: var(--white);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: .78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Cookie banner and toast */
.cookie-banner {
  position: fixed;
  z-index: 160;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  width: min(660px, calc(100% - 40px));
  margin-left: auto;
  padding: 20px;
  border: 1px solid var(--ink-150);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  color: var(--ink-600);
  font-size: .88rem;
}

.cookie-banner .button-row {
  margin-top: 14px;
}

.cookie-banner .button {
  min-height: 40px;
  font-size: .83rem;
}

.toast {
  position: fixed;
  z-index: 180;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink-950);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .25s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions .language-button,
  .header-actions .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .stage-layout {
    grid-template-columns: 1fr;
  }

  .stage-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .stage-tab {
    grid-template-columns: 38px 1fr;
  }

  .stage-tab .arrow {
    display: none;
  }

  .unit-grid,
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcome-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .outcome:nth-child(n+4) {
    min-height: 230px;
  }

  .tech-layout,
  .global-layout {
    grid-template-columns: 1fr;
  }

  .tech-stack {
    order: 2;
  }

  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .insight-card--featured {
    grid-column: 1 / -1;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-visual {
    min-height: auto;
    justify-items: start;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3)::after {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .shell,
  .shell--wide {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section--compact {
    padding: 58px 0;
  }

  .announcement .shell {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .brand {
    width: 155px;
  }

  .hero-inner {
    padding: 72px 0 80px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 5.4rem);
  }

  .hero-visual {
    min-height: 480px;
  }

  .orbit {
    width: min(430px, 92vw);
  }

  .orbit-node {
    width: 132px;
    min-height: 75px;
    padding: 11px 12px;
  }

  .orbit-node small {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3)::before {
    display: none;
  }

  .section-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .stage-panel {
    padding: 34px;
    min-height: 500px;
  }

  .card-grid,
  .value-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcome {
    min-height: 230px;
  }

  .outcome:last-child {
    grid-column: 1 / -1;
  }

  .tech-stack {
    min-height: 450px;
  }

  .cta-panel {
    padding: 46px 32px;
  }

  .two-col,
  .two-col--wide-left,
  .two-col--wide-right {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-hero {
    padding: 62px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2n)::after {
    display: none;
  }

  .form-shell {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .announcement {
    display: none;
  }

  .header-icon:not(.menu-toggle) {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero .lead {
    font-size: 1.04rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-support {
    font-size: .75rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 10px 0 24px;
  }

  .orbit {
    aspect-ratio: auto;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .orbit::before,
  .orbit::after,
  .orbit-core,
  .orbit-chip {
    display: none;
  }

  .orbit-node {
    position: static;
    width: auto;
    min-height: 92px;
    animation: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    text-align: left;
    min-height: 68px;
  }

  .trust-item+.trust-item::before {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
  }

  .stage-tabs {
    grid-template-columns: 1fr;
  }

  .stage-tab {
    grid-template-columns: 38px 1fr auto;
  }

  .stage-tab .arrow {
    display: block;
  }

  .stage-panel {
    padding: 26px;
    min-height: 540px;
  }

  .stage-meta {
    grid-template-columns: 1fr;
  }

  .unit-grid,
  .market-grid,
  .card-grid,
  .value-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .unit-card {
    min-height: 330px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome:last-child {
    grid-column: auto;
  }

  .tech-stack {
    min-height: 390px;
  }

  .tech-panel--back {
    inset: 42px 0 24px 45px;
  }

  .tech-panel--mid {
    inset: 10px 35px 55px 5px;
  }

  .tech-panel--front {
    inset: 38px 5px 5px 24px;
    padding: 18px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card--wide {
    grid-column: auto;
  }

  .network-map,
  .network-map svg {
    min-height: 380px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight-card--featured {
    grid-column: auto;
  }

  .cta-panel {
    padding: 38px 24px;
  }

  .page-visual-card {
    padding: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .connection-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .enterprise-form {
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto;
  }

  .footer-legal {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {

  .announcement,
  .site-header,
  .mobile-panel,
  .search-overlay,
  .cookie-banner,
  .site-footer,
  .button-row {
    display: none !important;
  }

  .section,
  .page-hero {
    padding: 36px 0;
  }

  .page-hero {
    color: #000;
    background: #fff;
  }

  .page-hero::before {
    display: none;
  }

  .page-hero .lead,
  .breadcrumbs {
    color: #444;
  }

  a {
    text-decoration: none;
  }
}

/* Header language switcher */
.language-switcher {
  position: relative;
}

.language-switcher summary {
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 190px;
  padding: 8px;
  border: 1px solid var(--ink-150);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.language-popover button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-700);
  text-align: left;
  cursor: pointer;
}

.language-popover button:hover {
  color: var(--blue);
  background: var(--blue-100);
}

.language-popover small {
  color: var(--ink-400, #8291a4);
}

.mobile-language {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-150);
}

.mobile-language strong {
  display: block;
  margin-bottom: 10px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.mobile-language-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mobile-language-buttons button {
  min-height: 42px;
  border: 1px solid var(--ink-150);
  border-radius: 10px;
  background: var(--white);
  font-weight: 750;
  cursor: pointer;
}

.mobile-language-buttons button:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-100);
}

/* BESONG COMPLETE SITE EXTENSIONS */
.nav-trigger.is-current {
  color: var(--ink-950);
  background: var(--ink-50);
}

.footer-top {
  grid-template-columns: 1.3fr .78fr .86fr 1.18fr 1.08fr;
  gap: 36px;
}

.footer-brand img {
  width: 230px;
  filter: none;
  opacity: 1;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--white);
}

.footer-links--units {
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
}

.footer-office {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .86rem;
  line-height: 1.65;
}

.footer-office strong {
  color: var(--white);
}

.insight-card {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

a.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink-300);
  box-shadow: var(--shadow-md);
}

.insight-grid--library {
  grid-template-columns: repeat(3, 1fr);
}

.insight-grid--library .insight-card--featured {
  grid-column: span 2;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: start;
}

.article-body {
  max-width: 780px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.article-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink-600);
  background: var(--ink-100);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-intro {
  margin-top: 0 !important;
  color: var(--ink-900) !important;
  font-size: 1.28rem;
  line-height: 1.65;
  font-weight: 620;
}

.article-note {
  margin-top: 44px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: var(--orange-100);
}

.article-note p {
  margin-top: 8px;
}

.article-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.article-aside .fact-panel p {
  margin-top: 14px;
  color: var(--ink-600);
}

.article-aside .button-row {
  margin-top: 22px;
}

.article-share {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--ink-150);
  border-radius: 18px;
}

.article-share strong {
  margin-bottom: 4px;
}

.article-share a {
  color: var(--blue);
  font-weight: 700;
}

.empty-state {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 38px;
  border: 1px dashed var(--ink-300);
  border-radius: var(--radius-lg);
  background: var(--ink-50);
}

.empty-state .empty-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--purple);
  background: var(--purple-100);
}

.empty-state .empty-icon svg {
  width: 30px;
  height: 30px;
}

.empty-state h3 {
  margin-top: 22px;
}

.empty-state p {
  max-width: 430px;
  margin-top: 12px;
  color: var(--ink-600);
}

.form-help {
  color: var(--ink-500);
  font-size: .72rem;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-map {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-map span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
  font-weight: 750;
}

.legal-status {
  margin-bottom: 34px;
  padding: 15px 18px;
  border: 1px solid #f3cbbd;
  border-radius: 12px;
  color: #7b2e10;
  background: var(--orange-100);
  font-size: .9rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sitemap-group {
  padding: 28px;
  border: 1px solid var(--ink-150);
  border-radius: 18px;
  background: var(--white);
}

.sitemap-group h2 {
  font-size: 1.45rem;
}

.sitemap-group ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.sitemap-group a {
  color: var(--ink-600);
  font-weight: 650;
}

.sitemap-group a:hover {
  color: var(--blue);
}

.error-page {
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 75% 20%, rgba(11, 98, 255, .34), transparent 36%), var(--ink-950);
}

.error-inner {
  padding: 100px 0;
}

.error-code {
  display: block;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 850;
  letter-spacing: .2em;
}

.error-page h1 {
  margin-top: 18px;
  max-width: 850px;
}

.error-page .lead {
  margin-top: 24px;
  color: rgba(255, 255, 255, .7);
}

.error-page .button-row {
  margin-top: 34px;
}

@media (max-width: 1180px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .insight-grid--library {
    grid-template-columns: 1fr 1fr;
  }

  .insight-grid--library .insight-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .article-aside {
    position: static;
  }

  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-links--units {
    grid-template-columns: 1fr;
  }

  .insight-grid--library,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    grid-template-columns: 1fr;
  }
}