:root {
  --bg: #f7f8fc;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #1d212b;
  --muted: #667086;
  --line: rgba(20, 31, 50, 0.08);
  --cyan: #14c8e6;
  --cyan-deep: #0096c2;
  --lavender: #cfc3ff;
  --lavender-soft: rgba(207, 195, 255, 0.22);
  --shadow-lg: 0 32px 80px rgba(27, 47, 82, 0.16);
  --shadow-md: 0 20px 55px rgba(27, 47, 82, 0.1);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(207, 195, 255, 0.33), transparent 18%),
    radial-gradient(circle at 85% 18%, rgba(20, 200, 230, 0.18), transparent 14%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

body::before {
  top: 90px;
  left: -70px;
  background:
    linear-gradient(140deg, rgba(20, 200, 230, 0.9), rgba(20, 200, 230, 0.35));
  clip-path: polygon(0 0, 34% 0, 100% 100%, 66% 100%);
}

body::after {
  top: 420px;
  right: -78px;
  border-radius: 50%;
  border: 2px solid rgba(207, 195, 255, 0.45);
  box-shadow:
    0 0 0 14px rgba(207, 195, 255, 0.08),
    0 0 0 28px rgba(207, 195, 255, 0.06),
    0 0 0 42px rgba(207, 195, 255, 0.05);
}

.page-shell {
  position: relative;
  z-index: 1;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(28, 43, 72, 0.08);
}

.brand,
.site-nav a,
.button,
.cta-mail,
.site-footer a,
.accent-card a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #141414 0 30%, transparent 31%),
    conic-gradient(from 0deg, var(--cyan) 0 25%, transparent 25% 50%, var(--cyan) 50% 75%, transparent 75% 100%);
}

.brand-text,
.section-heading h2,
.hero h1,
.cta-panel h2,
.floating-card strong,
.fleet-card h3,
.service-card h3,
.feature-item h3,
.feature-panel h3,
.case-copy h3,
.accent-card h3,
.timeline-item h3 {
  font-family: "Unbounded", sans-serif;
}

.brand-text {
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.accent-card a:hover,
.site-footer a:hover {
  color: var(--cyan-deep);
}

.nav-mail {
  padding: 10px 14px;
  color: var(--text) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20, 200, 230, 0.18), rgba(207, 195, 255, 0.3));
}

.section {
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding-top: 42px;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cyan-deep);
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.3vw, 5.2rem);
}

.hero-lead {
  max-width: 61ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.cta-mail:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  box-shadow: 0 16px 40px rgba(0, 150, 194, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 31, 50, 0.09);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 26px 0 0;
  margin: 30px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-points li,
.fleet-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
  color: var(--text);
}

.hero-points li::before,
.fleet-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-orbit {
  position: absolute;
  inset: 36px 0 32px 60px;
  border-radius: 52% 48% 56% 44% / 48% 47% 53% 52%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.58)),
    url("./assets/hero-building.webp") center right / cover no-repeat;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-orbit::before {
  inset: -16px;
  border: 12px solid rgba(20, 200, 230, 0.9);
  mix-blend-mode: multiply;
}

.hero-orbit::after {
  width: 280px;
  height: 280px;
  left: -84px;
  bottom: 42px;
  border: 2px solid rgba(207, 195, 255, 0.38);
  box-shadow:
    0 0 0 14px rgba(207, 195, 255, 0.08),
    0 0 0 28px rgba(207, 195, 255, 0.05),
    0 0 0 42px rgba(207, 195, 255, 0.03);
}

.hero-drone {
  position: absolute;
  top: 182px;
  left: -18px;
  width: min(46%, 320px);
  filter: drop-shadow(0 26px 35px rgba(21, 35, 56, 0.18));
  animation: droneFloat 6.4s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 6px;
  max-width: 265px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.floating-card-top {
  top: 56px;
  right: 10px;
}

.floating-card-bottom {
  bottom: 48px;
  left: 16px;
}

.card-kicker,
.fleet-label,
.feature-badge {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-deep);
}

.floating-card span:last-child,
.feature-panel p,
.feature-item p,
.service-card p,
.case-copy p,
.accent-card p,
.timeline-item p,
.fleet-card li,
.cta-panel .eyebrow,
.cta-panel h2 + p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.4rem);
}

.capability-layout,
.cases-grid,
.fleet-grid,
.permits-grid {
  display: grid;
  gap: 24px;
}

.capability-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.feature-panel,
.service-card,
.case-card,
.timeline-item,
.fleet-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.feature-panel {
  min-height: 100%;
  padding: 34px;
  background:
    linear-gradient(148deg, rgba(20, 200, 230, 0.13), rgba(207, 195, 255, 0.16)),
    rgba(255, 255, 255, 0.92);
}

.feature-panel::before,
.service-card::before,
.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(140deg, rgba(20, 200, 230, 0.14), rgba(20, 200, 230, 0));
  clip-path: polygon(34% 0, 100% 0, 100% 70%, 74% 70%);
}

.feature-panel h3,
.feature-item h3,
.service-card h3,
.case-copy h3,
.accent-card h3,
.timeline-item h3,
.fleet-card h3 {
  margin: 12px 0 12px;
  font-size: 1.2rem;
  line-height: 1.35;
}

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

.feature-item,
.service-card,
.timeline-item,
.fleet-card {
  padding: 28px;
}

.feature-item span,
.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20, 200, 230, 0.18), rgba(207, 195, 255, 0.28));
  font-weight: 800;
  color: var(--cyan-deep);
}

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

.service-card {
  min-height: 220px;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  transform: translateY(18px);
}

.cases-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.case-card {
  background: rgba(255, 255, 255, 0.93);
}

.case-card-large {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  grid-row: span 2;
}

.case-media {
  min-height: 310px;
  padding: 18px;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.case-media-hero {
  min-height: 100%;
}

.case-copy,
.accent-card {
  padding: 30px;
}

.case-copy .fleet-label,
.accent-card .fleet-label {
  display: inline-block;
  margin-bottom: 6px;
}

.case-copy strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--cyan-deep);
  font-weight: 800;
}

.accent-card {
  display: grid;
  align-content: start;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(20, 200, 230, 0.16), rgba(207, 195, 255, 0.18)),
    rgba(255, 255, 255, 0.94);
}

.case-accent-line {
  width: 110px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), #6ae0f2);
}

.accent-card a {
  color: var(--cyan-deep);
  font-weight: 800;
}

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

.permits-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.permit-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.permit-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 132px;
  height: 132px;
  background: linear-gradient(140deg, rgba(20, 200, 230, 0.16), rgba(20, 200, 230, 0));
  clip-path: polygon(0 0, 62% 0, 100% 100%, 0 100%);
}

.permit-panel-intro {
  background:
    linear-gradient(145deg, rgba(20, 200, 230, 0.14), rgba(207, 195, 255, 0.18)),
    rgba(255, 255, 255, 0.93);
}

.permit-panel h3 {
  margin: 14px 0 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 1.18rem;
  line-height: 1.4;
}

.permit-panel p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.permit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.permit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 200, 230, 0.1), rgba(207, 195, 255, 0.16));
  border: 1px solid rgba(20, 31, 50, 0.06);
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

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

.fleet-card {
  min-height: 280px;
}

.fleet-card ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.fleet-card-primary {
  background:
    linear-gradient(155deg, rgba(20, 200, 230, 0.16), rgba(207, 195, 255, 0.22)),
    rgba(255, 255, 255, 0.94);
}

.cta-section {
  padding-bottom: 96px;
}

.cta-panel {
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(20, 200, 230, 0.2), rgba(207, 195, 255, 0.22)),
    rgba(255, 255, 255, 0.96);
}

.cta-panel h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-top: 10px;
}

.cta-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 22px;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 800;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(28, 43, 72, 0.09);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 34px;
  color: var(--muted);
}

.site-footer span {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
}

@keyframes droneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(2deg);
  }
}

@media (max-width: 1080px) {
  .hero,
  .capability-layout,
  .case-card-large,
  .cases-grid,
  .timeline,
  .fleet-grid,
  .permits-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 620px;
  }

  .feature-list,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(2),
  .service-card:nth-child(5) {
    transform: none;
  }

  .cta-panel h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    margin-top: 12px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    gap: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.2vw, 2.7rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-points,
  .feature-list,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-orbit {
    inset: 46px 0 16px;
  }

  .hero-drone {
    top: 8px;
    left: 10px;
    width: 42%;
  }

  .floating-card {
    position: relative;
    max-width: none;
  }

  .floating-card-top,
  .floating-card-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 14px;
  }

  .feature-panel,
  .feature-item,
  .service-card,
  .case-copy,
  .accent-card,
  .timeline-item,
  .fleet-card,
  .cta-panel {
    padding: 24px;
  }

  .case-media {
    min-height: 240px;
    padding: 14px;
  }

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