:root {
  --surface: #ffffff;
  --surface-2: #f6f7f9;
  --surface-3: #eef1f4;
  --text: #101316;
  --muted: #515f74;
  --border: #c4c6cf;
  --border-2: rgba(196, 198, 207, 0.55);
  --blue: #001a3d;
  --rose: #d10056;
  --white: #ffffff;
  --ink: rgba(0, 26, 61, 0.85);
  --hero-ink: #0a0f18;
  --hero-overlay: linear-gradient(90deg, rgba(10, 15, 24, 0.78) 0%, rgba(10, 15, 24, 0.36) 52%, rgba(10, 15, 24, 0.18) 100%);
  --shadow-sm: 0 10px 30px rgba(10, 20, 35, 0.06);
  --shadow-md: 0 18px 48px rgba(10, 20, 35, 0.1);
  --radius: 12px;
  --radius-sm: 10px;
  --container: 1440px;
  --gutter: 48px;
  --stack-1: 8px;
  --stack-2: 16px;
  --stack-3: 32px;
  --stack-4: 48px;
  --section: 120px;
  --focus: 0 0 0 3px rgba(209, 0, 86, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(0, 26, 61, 0.16);
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: radial-gradient(1100px 700px at 15% -10%, rgba(0, 26, 61, 0.06), transparent 55%),
    radial-gradient(900px 600px at 85% 0%, rgba(209, 0, 86, 0.05), transparent 55%), var(--surface);
  color: var(--text);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-rail {
  position: fixed;
  left: 28px;
  top: 112px;
  bottom: 40px;
  width: 14px;
  z-index: 52;
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.scroll-rail:active {
  cursor: grabbing;
}

.scroll-rail:focus-visible {
  border-radius: 999px;
}

.scroll-rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(0, 26, 61, 0.14);
}

.scroll-rail[data-variant="dark"]::before {
  background: rgba(255, 255, 255, 0.22);
}

.scroll-rail-fill {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 2px;
  height: calc(100% - 16px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 26, 61, 0.12), rgba(209, 0, 86, 1));
  box-shadow: 0 10px 26px rgba(209, 0, 86, 0.18);
  transform: translateX(-50%) scaleY(var(--scroll-progress, 0));
  transform-origin: top;
  transition: transform 120ms linear;
  will-change: transform;
}

.scroll-rail-thumb {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translateX(-50%);
  top: calc(var(--scroll-progress, 0) * (100% - 16px) + 8px);
  background: rgba(0, 26, 61, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(10, 20, 35, 0.18);
  transition: top 120ms linear, background-color 160ms ease, border-color 160ms ease;
}

.scroll-rail[data-variant="dark"] .scroll-rail-thumb {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.max-w-2 {
  max-width: 56ch;
}

.italic {
  font-style: italic;
}

.icon {
  display: inline-block;
  fill: currentColor;
}

.icon-18 {
  width: 18px;
  height: 18px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-22 {
  width: 22px;
  height: 22px;
}

.h1 {
  font-size: clamp(40px, 3.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--stack-2);
}

.h2 {
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--stack-2);
}

.h3 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(0, 26, 61, 0.8);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 140ms ease, background-color 160ms ease, border-color 160ms ease,
    color 160ms ease, opacity 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn .icon {
  transition: transform 200ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.btn:hover .icon {
  transform: translateX(2px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.98), rgba(0, 26, 61, 0.78));
  border-color: rgba(0, 26, 61, 0.9);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 26, 61, 0.18);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 44%, rgba(255, 255, 255, 0) 78%);
  transform: translateX(-120%);
  transition: transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(1, 27, 62, 0.98), rgba(0, 42, 99, 0.82));
  border-color: rgba(1, 27, 62, 0.96);
  box-shadow: 0 18px 46px rgba(0, 26, 61, 0.22);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-outline {
  background: transparent;
  border-color: rgba(116, 119, 127, 0.6);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 34px rgba(10, 20, 35, 0.1);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 198, 207, 0.4);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(10, 20, 35, 0.08);
  border-bottom-color: rgba(196, 198, 207, 0.65);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  transition: padding 180ms ease;
}

.site-header.is-scrolled .header-inner {
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(196, 198, 207, 0.55);
  background: rgba(247, 249, 251, 0.7);
}

.nav-link {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(81, 95, 116, 0.95);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.nav-link.is-active {
  color: var(--text);
  background: rgba(0, 26, 61, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header .btn-primary {
  box-shadow: 0 10px 24px rgba(0, 26, 61, 0.18);
}

.site-header .btn-primary:hover {
  box-shadow: 0 14px 34px rgba(0, 26, 61, 0.22);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.86);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.menu-button:hover {
  border-color: rgba(0, 26, 61, 0.4);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 22, 0.5);
  backdrop-filter: blur(2px);
  z-index: 70;
  opacity: 0;
  transition: opacity 180ms ease;
}

.menu-overlay:not([hidden]) {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  inset: auto 12px 12px 12px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(196, 198, 207, 0.7);
  box-shadow: var(--shadow-md);
  z-index: 80;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.mobile-menu:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-inner {
  padding: 18px;
  display: grid;
  gap: 18px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

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

.mobile-nav-link {
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(196, 198, 207, 0.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--muted);
  background: rgba(247, 249, 251, 0.8);
}

.mobile-nav-link.is-active {
  color: var(--text);
  border-color: rgba(0, 26, 61, 0.35);
}

.hero {
  position: relative;
  min-height: min(880px, 92vh);
  display: grid;
  align-items: center;
  overflow: clip;
  background: var(--hero-ink);
}

.hero::before {
  display: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-overlay), var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 1600ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.01);
}

.hero-dots {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  justify-items: end;
  z-index: 2;
}

.hero-dot {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.72;
  line-height: 1;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-dot-index {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.58);
  transition: color 180ms ease;
}

.hero-dot-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-dot:hover {
  transform: translateX(-1px);
}

.hero-dot.is-active {
  opacity: 1;
}

.hero-dot:hover .hero-dot-dot {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.92);
}

.hero-dot.is-active .hero-dot-dot {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.98);
}

.hero-dot.is-active .hero-dot-index {
  color: rgba(255, 255, 255, 0.96);
}

.hero-connector {
  position: relative;
  width: 2px;
  height: 34px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-4px);
}

.hero-connector-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.98));
  border-radius: 999px;
  transform: scaleY(0);
  transform-origin: top;
}

.hero-connector.is-progressing .hero-connector-fill {
  animation: hero-connector-progress var(--hero-interval, 6500ms) linear forwards;
}

.hero.is-paused .hero-connector-fill {
  animation-play-state: paused;
}

@keyframes hero-connector-progress {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--section) 0 calc(var(--section) + 150px);
}

.fab-stack {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: grid;
  gap: 12px;
  z-index: 55;
}

.fab {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, color 180ms ease, opacity 180ms ease;
  box-shadow: 0 18px 44px rgba(10, 20, 35, 0.14);
}

.fab[data-variant="dark"] {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.fab[data-variant="dark"]:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.fab[data-variant="light"] {
  border-color: rgba(196, 198, 207, 0.85);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(0, 26, 61, 0.95);
  box-shadow: 0 18px 44px rgba(10, 20, 35, 0.12);
}

.fab[data-variant="light"]:hover {
  border-color: rgba(0, 26, 61, 0.35);
  background: rgba(255, 255, 255, 0.96);
}

.fab:hover {
  transform: translateY(1px);
}

.fab .icon {
  transition: transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.fab:hover .icon {
  transform: translateY(2px);
}

.fab-next[data-direction="up"] .icon {
  transform: rotate(180deg);
}

.fab-next[data-direction="up"]:hover .icon {
  transform: rotate(180deg) translateY(2px);
}

.fab-top .icon {
  transform: rotate(180deg);
}

.fab-top:hover .icon {
  transform: rotate(180deg) translateY(2px);
}

.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.hero-content {
  max-width: 640px;
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
}

.hero-content.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.hero-title {
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 var(--stack-2);
  color: rgba(255, 255, 255, 0.98);
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 var(--stack-3);
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-outline {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 2;
}

.hero-stats .stats-card {
  width: 100%;
  max-width: min(100%, calc(var(--container) - 140px));
  margin-inline: auto;
}

.stats-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.stat {
  padding: 22px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.96);
}

.stat-label {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: var(--section) 0;
}

.section-plain {
  background: var(--surface);
}

.section-tinted {
  background: rgba(236, 238, 240, 0.45);
}

.section-soft {
  background: rgba(236, 238, 240, 0.6);
}

.section-head {
  margin-bottom: var(--stack-4);
}

.section-head .muted {
  max-width: 60ch;
}

.row-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--blue);
  padding: 10px 0;
  position: relative;
}

.link-cta .icon {
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.link-cta:hover .icon {
  transform: translateX(3px);
}

.link-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.link-cta:hover::after {
  transform: scaleX(1);
}

.link-cta.is-inline {
  margin-top: 28px;
}

.presence {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: center;
}

.presence-map {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 198, 207, 0.45);
  background: rgba(246, 247, 249, 0.9);
  padding: 22px;
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 14px 46px rgba(10, 20, 35, 0.07);
}

.uae-object {
  width: 100%;
  height: 100%;
  display: block;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--white);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  outline: none;
}

.map-pin::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(0, 26, 61, 0.18);
  transform: scale(0.6);
  opacity: 0;
}

.map-pin.is-primary {
  background: var(--rose);
}

.map-pin.is-primary::before {
  display: none;
}

.map-pin:focus-visible {
  box-shadow: 0 10px 30px rgba(10, 20, 35, 0.22), 0 0 0 4px rgba(0, 26, 61, 0.18);
}

.map-pin-label {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  background: rgba(0, 26, 61, 0.96);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.map-pin:hover .map-pin-label,
.map-pin:focus-visible .map-pin-label,
.map-pin:focus .map-pin-label,
.map-pin.is-show .map-pin-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.presence-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.presence-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 198, 207, 0.55);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(10, 20, 35, 0.05);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.presence-card:hover {
  border-color: rgba(0, 26, 61, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(10, 20, 35, 0.09);
}

.presence-card.is-primary {
  border-left: 3px solid var(--blue);
  background: rgba(242, 244, 246, 0.65);
}

.map-legend {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(196, 198, 207, 0.55);
  box-shadow: 0 12px 30px rgba(10, 20, 35, 0.08);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 26, 61, 0.8);
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 6px 16px rgba(10, 20, 35, 0.18);
}

.map-legend-diamond {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--rose);
  border-radius: 3px;
  transform: rotate(45deg);
  box-shadow: 0 6px 16px rgba(10, 20, 35, 0.18);
}

.map-dropdown {
  position: absolute;
  left: 16px;
  top: 56px;
  width: min(360px, calc(100% - 32px));
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 198, 207, 0.6);
  box-shadow: 0 18px 46px rgba(10, 20, 35, 0.14);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 3;
}

.map-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.map-dropdown-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.map-dropdown-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(0, 26, 61, 0.92);
}

.map-dropdown-close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(196, 198, 207, 0.6);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 26, 61, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.map-dropdown-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(10, 20, 35, 0.12);
}

.map-dropdown-meta {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 26, 61, 0.62);
}

.map-dropdown-body {
  margin-top: 8px;
  color: rgba(0, 26, 61, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.presence-tag {
  margin: 4px 0 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--blue);
}

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

.project-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  border: 1px solid rgba(196, 198, 207, 0.6);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 20, 35, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(0, 26, 61, 0.4);
  box-shadow: 0 18px 44px rgba(10, 20, 35, 0.1);
}

.project-card.is-flash {
  border-color: rgba(209, 0, 86, 0.65);
  box-shadow: 0 22px 66px rgba(10, 20, 35, 0.14), 0 0 0 6px rgba(209, 0, 86, 0.12);
}

.project-media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--surface-2);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0) 0%, rgba(10, 15, 24, 0.22) 100%);
  pointer-events: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease;
  filter: saturate(0.95) contrast(1.05);
}

.project-card:hover .project-media img,
.project-card:focus-within .project-media img {
  transform: scale(1.08);
}

.project-body {
  padding: 22px 22px 26px;
}

.project-card .kicker {
  color: rgba(0, 26, 61, 0.7);
  font-weight: 800;
}

.expertise {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 24px;
  align-items: start;
}

.expertise-intro {
  position: sticky;
  top: 110px;
  padding-right: 18px;
}

.rule {
  width: 48px;
  height: 4px;
  background: var(--blue);
  margin-bottom: 18px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cap-card {
  padding: 34px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 198, 207, 0.55);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(10, 20, 35, 0.05);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.cap-card:hover {
  border-color: rgba(0, 26, 61, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(10, 20, 35, 0.09);
}

.cap-card.is-offset {
  margin-top: 18px;
}

.cap-icon {
  width: 54px;
  height: 54px;
  color: var(--blue);
  margin-bottom: 26px;
}

.cap-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.leadership {
  overflow: hidden;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: center;
}

.leadership-portrait {
  position: relative;
}

.initial {
  position: absolute;
  left: -16px;
  top: -60px;
  font-size: 240px;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 26, 61, 0.05);
  pointer-events: none;
  user-select: none;
}

.portrait-frame {
  position: relative;
  border: 16px solid rgba(0, 26, 61, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 800ms ease, transform 800ms ease;
  transform: scale(1.02);
}

.portrait-frame:hover img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.06);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.eyebrow-rule {
  width: 48px;
  height: 1px;
  background: var(--blue);
}

.eyebrow-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--blue);
}

.accent {
  color: var(--blue);
}

.quote-block {
  position: relative;
  margin-top: 16px;
}

.quote-mark {
  position: absolute;
  left: -52px;
  top: -6px;
  width: 60px;
  height: 60px;
  fill: rgba(0, 26, 61, 0.08);
}

.quote {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.signature {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 198, 207, 0.55);
}

.sig-name {
  font-size: 38px;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.02em;
  font-family: ui-serif, "Times New Roman", serif;
  font-style: italic;
  margin-bottom: 12px;
}

.sig-role {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--muted);
}

.sig-rule {
  width: 18px;
  height: 1px;
  background: rgba(116, 119, 127, 0.8);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 22px;
  align-items: start;
}

.testimonials-head {
  position: sticky;
  top: 110px;
}

.testimonials-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(116, 119, 127, 0.55);
  background: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(10, 20, 35, 0.1);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.icon-button:hover {
  border-color: rgba(0, 26, 61, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(10, 20, 35, 0.14);
}

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

.icon-button.is-primary:hover {
  background: #011b3e;
  border-color: #011b3e;
  transform: translateY(-1px);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(196, 198, 207, 0.6);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(209, 0, 86, 0.12), rgba(0, 26, 61, 0));
  pointer-events: none;
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 22px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(236, 238, 240, 0.9);
  border: 1px solid rgba(196, 198, 207, 0.65);
  display: grid;
  place-items: center;
  color: var(--muted);
}

.person-name {
  font-weight: 700;
}

.footer {
  border-top: 1px solid rgba(196, 198, 207, 0.6);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.footer-brand {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.footer-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(0, 26, 61, 0.9);
  margin: 8px 0 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(81, 95, 116, 0.95);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: rgba(0, 26, 61, 0.95);
  transform: translateX(2px);
}

.footer-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-contact {
  color: rgba(0, 26, 61, 0.9);
  font-weight: 700;
}

.footer-cta {
  width: fit-content;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(196, 198, 207, 0.7);
  background: rgba(247, 249, 251, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 26, 61, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(196, 198, 207, 0.55);
  background: rgba(255, 255, 255, 0.68);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(81, 95, 116, 0.9);
  padding: 6px 0;
}

.footer-legal a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --gutter: 28px;
    --section: 96px;
  }

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

  .hero-title {
    font-size: 48px;
  }

  .presence {
    grid-template-columns: 1fr;
  }

  .expertise {
    grid-template-columns: 1fr;
  }

  .expertise-intro {
    position: static;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonials-head {
    position: static;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .initial {
    display: none;
  }

  .quote-mark {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 18px;
    --section: 80px;
  }

  .nav-shell {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-dots {
    right: 14px;
  }

  .hero::before {
    display: none;
  }

  .scroll-rail {
    display: none;
  }

  .fab-stack {
    right: 18px;
    bottom: 18px;
  }

  .fab {
    width: 52px;
    height: 52px;
  }

  .hero-stats {
    bottom: 92px;
  }

  .hero-stats .stats-card {
    max-width: none;
  }

  .hero-inner {
    padding-bottom: calc(var(--section) + 220px);
  }

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

  .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat:nth-child(2n) {
    border-right: none;
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .row-between {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .project-card {
    min-width: min(82vw, 420px);
    scroll-snap-align: start;
  }

  .presence-cards {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .cap-card.is-offset {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
