:root {
  --ink: #101114;
  --muted: #636b77;
  --line: #e3e7ec;
  --soft: #f6f8fb;
  --blue: #1767d8;
  --blue-dark: #0b3f91;
  --aqua: #12a89d;
  --lime: #a8c94a;
  --night: #111827;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(27, 43, 70, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(227, 231, 236, 0.72);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.06rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  font-size: 0.78rem;
}

.site-nav {
  gap: clamp(16px, 3vw, 36px);
  color: #22252b;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta {
  padding: 0 22px;
  color: var(--white);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section,
.section-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.hero {
  min-height: calc(100vh - 75px);
  padding: clamp(56px, 9vw, 116px) 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid #dbe8f8;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eef6ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span,
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.25rem);
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.global p,
.contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
}

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

.button {
  min-width: 156px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(23, 103, 216, 0.25);
}

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

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric-strip div {
  padding: 18px;
}

.metric-strip div + div {
  border-left: 1px solid var(--line);
}

.metric-strip strong,
.case-card strong,
.timezone-card strong {
  display: block;
  color: var(--blue);
  font-size: 1.55rem;
  line-height: 1;
}

.metric-strip span,
.timezone-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.intel-panel {
  min-height: 580px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-top p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6ff;
}

.panel-top > span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6ff;
}

.pulse {
  box-shadow: 0 0 0 7px rgba(23, 103, 216, 0.13);
  animation: pulse 2s infinite;
}

.radar-card {
  position: relative;
  min-height: 520px;
  margin-top: 26px;
}

.radar {
  position: absolute;
  inset: 70px 48px 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(23, 103, 216, 0.13), rgba(23, 103, 216, 0.03) 48%, transparent 49%),
    repeating-radial-gradient(circle, rgba(17, 24, 39, 0.08) 0 2px, transparent 2px 28px);
  border: 1px solid rgba(23, 103, 216, 0.18);
  overflow: hidden;
}

.ring,
.axis,
.blip {
  position: absolute;
}

.ring {
  inset: 18%;
  border: 1px solid rgba(23, 103, 216, 0.18);
  border-radius: 50%;
}

.ring-two {
  inset: 33%;
}

.ring-three {
  inset: 48%;
}

.axis {
  background: rgba(23, 103, 216, 0.18);
}

.axis-x {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.axis-y {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.blip {
  width: 22px;
  height: 22px;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(23, 103, 216, 0.23);
}

.b1 { top: 26%; left: 35%; }
.b2 { top: 28%; right: 25%; }
.b3 { left: 29%; bottom: 27%; background: var(--aqua); }
.b4 { right: 26%; bottom: 31%; background: var(--lime); }

.signal {
  position: absolute;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  width: min(230px, 44%);
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: #4e5663;
  font-size: 0.9rem;
}

.signal small {
  color: var(--blue);
  font-weight: 800;
}

.signal-one { top: 34px; left: 8px; }
.signal-two { top: 18px; right: 0; }
.signal-three { right: 2px; bottom: 0; }
.signal-four { left: 0; bottom: 10px; }

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.capability-grid,
.case-grid,
.testimonial-band,
.timeline {
  display: grid;
  gap: 18px;
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-card,
.case-card,
.testimonial-band article,
.timeline article,
.contact-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(27, 43, 70, 0.06);
}

.capability-card {
  min-height: 260px;
  padding: 24px;
}

.card-index {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.82rem;
}

.capability-card p,
.case-card p,
.timeline p,
.faq p {
  color: var(--muted);
}

.dark-section {
  width: 100%;
  max-width: none;
  margin: 40px 0;
  padding: 96px max(20px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(17, 24, 39, 0.98), rgba(11, 63, 145, 0.92)),
    var(--night);
}

.dark-section .eyebrow {
  color: #d6f2ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.75);
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.region-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

.world-card {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: 44px 44px;
  overflow: hidden;
}

.map-line {
  position: absolute;
  inset: 23% 9%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 45% 55% 48% 52%;
}

.pin {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(18, 168, 157, 0.88);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.pin-us { left: 12%; top: 35%; }
.pin-eu { left: 44%; top: 24%; background: rgba(23, 103, 216, 0.9); }
.pin-me { left: 56%; top: 48%; background: rgba(168, 201, 74, 0.88); color: #17200c; }
.pin-in { right: 25%; top: 58%; }
.pin-apac { right: 9%; top: 38%; background: rgba(23, 103, 216, 0.9); }

.timezone-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(260px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

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

.case-card {
  padding: 28px;
}

.case-card strong {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.testimonial-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.testimonial-band article {
  padding: 26px;
}

.testimonial-band p {
  margin-top: 0;
  color: #2d333c;
  font-weight: 600;
}

.testimonial-band span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.timeline article {
  padding: 26px;
}

.timeline span {
  display: block;
  margin-bottom: 36px;
  color: var(--blue);
  font-weight: 800;
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.faq details {
  padding: 20px 22px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.contact-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(23, 103, 216, 0.08), rgba(18, 168, 157, 0.1)),
    var(--white);
}

.contact-card .button {
  width: 100%;
  margin-top: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(23, 103, 216, 0);
  }
}

@media (max-width: 980px) {
  .section-grid,
  .faq-contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .intel-panel {
    min-height: 560px;
  }

  .capability-grid,
  .case-grid,
  .testimonial-band,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .metric-strip,
  .capability-grid,
  .case-grid,
  .testimonial-band,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metric-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .intel-panel {
    min-height: 620px;
  }

  .panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .radar {
    inset: 96px 0 80px;
  }

  .signal {
    width: calc(50% - 8px);
    padding: 13px;
    font-size: 0.78rem;
  }

  .signal-one { left: 0; top: 0; }
  .signal-two { right: 0; top: 26px; }
  .signal-three { right: 0; bottom: 0; }
  .signal-four { left: 0; bottom: 28px; }
}

@media (max-width: 480px) {
  .section,
  .section-grid {
    width: min(100% - 28px, 1200px);
  }

  .brand span:last-child {
    max-width: 150px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .world-card {
    min-height: 360px;
  }

  .pin {
    min-width: 40px;
    height: 40px;
    font-size: 0.68rem;
  }
}
