:root {
  color-scheme: light;
  --ink: #0b0d10;
  --muted: #5e6875;
  --soft: #8b96a4;
  --line: #dce2e9;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #1473e6;
  --blue-dark: #0757b8;
  --shadow: 0 28px 80px rgba(61, 74, 92, .16);
  --max: 1180px;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 248, 251, .92) 36%, rgba(255, 255, 255, .98)),
    radial-gradient(circle at 78% 20%, rgba(20, 115, 230, .12), transparent 30%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(210, 218, 228, .52);
  background: rgba(247, 249, 251, .74);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 650;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #cfd7e2;
  border-radius: 50%;
  background: #fff;
  color: #111821;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(32, 45, 62, .08);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  color: #2b323c;
  font-size: 13px;
  font-weight: 560;
}

.nav-links a,
.language-switcher a {
  opacity: .72;
  transition: opacity .2s ease, color .2s ease;
}

.nav-links a:hover,
.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--blue);
  opacity: 1;
}

.language-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: #2b323c;
  font-size: 12px;
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  padding: 110px max(22px, calc((100vw - var(--max)) / 2)) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(247, 249, 251, .98) 0%, rgba(247, 249, 251, .84) 34%, rgba(247, 249, 251, .24) 62%, rgba(247, 249, 251, .08) 100%),
    url("assets/hero-uav.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 249, 251, 0), var(--paper) 78%);
  z-index: -1;
}

.hero-copy {
  align-self: end;
  width: min(610px, 100%);
  padding-bottom: clamp(8px, 2vw, 32px);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .96;
  font-weight: 720;
}

h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1;
  font-weight: 700;
}

h3 {
  color: #12171f;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 660;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 30px;
  color: #2e3743;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.22;
  font-weight: 430;
}

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

.button,
.contact-actions a,
.contact-actions button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 640;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(20, 115, 230, .22);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(12, 18, 26, .14);
  background: rgba(255, 255, 255, .64);
  color: #111820;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) 0;
}

.section-intro {
  padding-top: clamp(28px, 5vw, 48px);
}

.section-intro,
.section-lead {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(32px, 8vw, 104px);
}

.section-lead {
  grid-template-columns: 1fr;
  gap: 0;
}

.section-lead h2,
.capability h2,
.contact h2,
.compliance h2 {
  margin-bottom: 24px;
}

.section-lead p,
.capability p,
.feature-grid p,
.region-grid p,
.compliance p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.section-lead p {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

.feature-grid,
.region-grid {
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.feature-grid article,
.region-grid article {
  min-height: 290px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, .76);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 80px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.feature-grid h3,
.region-grid h3 {
  margin-bottom: 14px;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.capability-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-list div {
  padding: 28px;
  background: rgba(255, 255, 255, .78);
}

.capability-list h3,
.capability-list p {
  margin-bottom: 0;
}

.capability-list h3 {
  margin-bottom: 10px;
}

.global {
  padding-bottom: 44px;
}

.compact {
  max-width: 820px;
  margin-top: 18px;
}

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

.region-grid article {
  min-height: 250px;
}

.compliance {
  width: 100%;
  max-width: none;
  margin-top: 58px;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(10, 13, 18, .92), rgba(18, 25, 34, .86)),
    url("assets/hero-uav.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.compliance-copy {
  max-width: 680px;
}

.compliance .eyebrow {
  color: #8dc8ff;
}

.compliance p {
  color: rgba(255, 255, 255, .72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 0;
}

.contact h2 {
  max-width: 680px;
}

.legal-name {
  margin: -8px 0 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 650;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-actions a,
.contact-actions button {
  display: grid;
  min-width: 224px;
  padding: 17px 22px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 14px 44px rgba(55, 68, 84, .08);
}

.contact-actions span {
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  transform: translateX(-50%);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(247, 249, 251, .95) 0%, rgba(247, 249, 251, .68) 42%, rgba(247, 249, 251, .96) 100%),
      url("assets/hero-uav.png");
    background-size: auto 72%, auto 72%;
    background-position: center top 58px;
    background-repeat: no-repeat;
  }

  .hero-copy {
    align-self: end;
  }

  .section-intro,
  .capability-layout,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    gap: 10px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .language-switcher {
    gap: 10px;
  }

  .hero {
    min-height: 760px;
    padding: 92px 18px 48px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .section,
  .feature-grid,
  .region-grid,
  .contact,
  .site-footer {
    width: calc(100% - 36px);
  }

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

  .feature-grid article,
  .region-grid article {
    min-height: auto;
  }

  .feature-grid span {
    margin-bottom: 42px;
  }

  .capability-list div {
    padding: 24px;
  }

  .contact-actions,
  .contact-actions a,
  .contact-actions button,
  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media {
    animation: settle 900ms ease-out both;
  }

  .hero-copy,
  .section,
  .feature-grid,
  .region-grid,
  .contact {
    animation: rise 700ms ease-out both;
  }

  @keyframes settle {
    from {
      opacity: .72;
      transform: scale(1.035);
    }
    to {
      opacity: 1;
      transform: scale(1.01);
    }
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
