/* ============================================================
   HOME PAGE
============================================================ */

.hero {
  min-height: 760px;
  height: 100vh;
  position: relative;
  color: white;
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
  animation: hero-intro 1.5s ease both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(24, 168, 255, 0.08),
      transparent 34%
    ),
    rgba(2, 7, 14, 0.08);

  transition:
    background 0.4s ease,
    opacity 0.4s ease;
}

.hero-image {
  position: absolute;
  inset: -4%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  animation: hero-camera-drift 18s ease-in-out infinite alternate;
}

html[data-theme="dark"] .hero-media::after {
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(24, 168, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      rgba(1, 5, 11, 0.58),
      rgba(1, 6, 13, 0.38) 55%,
      rgba(1, 6, 13, 0.48)
    );
}

.hero .scan-lines {
  z-index: 1;

  background-position: 0 0;

  opacity: 0.75;

  animation: hero-grid-drift 14s linear infinite;
}

.hero-scan-beam {
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: 45%;

  width: 2px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(131, 220, 255, 0.15) 20%,
    rgba(131, 220, 255, 0.8) 50%,
    rgba(131, 220, 255, 0.15) 80%,
    transparent
  );

  box-shadow:
    0 0 12px rgba(24, 168, 255, 0.55),
    0 0 40px rgba(24, 168, 255, 0.25);

  opacity: 0;
  transform: rotate(22deg) translateX(-35vw);

  pointer-events: none;

  animation: hero-scan 8s ease-in-out infinite;
}
@keyframes hero-intro {
  from {
    opacity: 0;
    filter: brightness(0.6);
  }

  to {
    opacity: 1;
    filter: brightness(1);
  }
}

@keyframes hero-camera-drift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  45% {
    transform: scale(1.075) translate3d(-1.25%, -0.5%, 0);
  }

  100% {
    transform: scale(1.12) translate3d(-2.5%, -1.25%, 0);
  }
}

@keyframes hero-grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 64px 64px;
  }
}

@keyframes hero-scan {
  0% {
    opacity: 0;
    transform: rotate(22deg) translateX(-45vw);
  }

  12% {
    opacity: 0;
  }

  25% {
    opacity: 0.55;
  }

  70% {
    opacity: 0.55;
  }

  85% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: rotate(22deg) translateX(55vw);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(98, 196, 255, 0.26);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.flight-card {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 70px;
  width: 218px;
  padding: 18px;
  border: 1px solid rgba(126, 211, 255, 0.35);
  background: rgba(5, 13, 23, 0.75);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 16px 1fr;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.flight-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -60%;

  width: 35%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(131, 220, 255, 0.1),
    transparent
  );

  transform: skewX(-18deg);

  transition: left 0.7s ease;

  pointer-events: none;
}

.flight-card:hover::after {
  left: 130%;
}

.flight-card > * {
  position: relative;
  z-index: 1;
}

.flight-card:hover {
  background: rgba(5, 18, 30, 0.9);
  border-color: rgba(126, 211, 255, 0.7);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(24, 168, 255, 0.12);

  transform: translateY(-5px);
}

.flight-card b {
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.flight-card:hover b {
  color: #9dffda;
  text-shadow: 0 0 15px rgba(99, 255, 190, 0.3);
}

.flight-card div span {
  transition: color 0.3s ease;
}

.flight-card:hover div span {
  color: var(--cyan);
}

.flight-card .pulse {
  position: relative;

  width: 8px;
  height: 8px;
  margin-top: 3px;

  background: #63ffbe;
  border-radius: 50%;

  box-shadow:
    0 0 8px rgba(99, 255, 190, 0.8),
    0 0 18px rgba(99, 255, 190, 0.35);

  animation: status-dot-pulse 1.8s ease-in-out infinite;
}

.flight-card .pulse::before,
.flight-card .pulse::after {
  content: "";
  position: absolute;
  inset: 50%;

  border: 1px solid rgba(99, 255, 190, 0.7);
  border-radius: 50%;

  transform: translate(-50%, -50%) scale(1);
  opacity: 0;

  animation: status-ring 1.8s ease-out infinite;
}

.flight-card .pulse::after {
  animation-delay: 0.6s;
}

@keyframes status-dot-pulse {
  0%,
  100% {
    background: #63ffbe;

    box-shadow:
      0 0 6px rgba(99, 255, 190, 0.65),
      0 0 14px rgba(99, 255, 190, 0.25);
  }

  50% {
    background: #a1ffda;

    box-shadow:
      0 0 10px rgba(99, 255, 190, 1),
      0 0 24px rgba(99, 255, 190, 0.55);
  }
}

@keyframes status-ring {
  0% {
    width: 8px;
    height: 8px;

    opacity: 0.8;
  }

  70% {
    opacity: 0;
  }

  100% {
    width: 28px;
    height: 28px;

    opacity: 0;
  }
}

.flight-card small {
  font-size: 8px;
  letter-spacing: 0.17em;
  color: #8295a5;
}

.flight-card b {
  grid-column: 2;
  font: 500 18px "Manrope";
  margin: 6px 0 15px;
}

.flight-card div {
  grid-column: 1/3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #8795a2;
}

.scroll-cue {
  position: absolute;
  left: 28px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #8a9baa;
  display: flex;
  gap: 12px;
  align-items: center;
}

.scroll-cue span {
  height: 30px;
  width: 1px;
  background: var(--blue);
}

/* Short landscape screens */
@media (orientation: landscape) and (max-height: 31.25rem) {
  .flight-card {
    display: none;
  }
  .hero-visual {
    display: none;
  }
}

/* Tablet landscape hero spacing */
@media (min-width: 48rem) and (max-width: 74rem) and (orientation: landscape) {
  .hero {
    min-height: 51.25rem;
    padding-bottom: 7rem;
  }

  .scroll-explore {
    bottom: 1.5rem;
  }
}

.trust-strip {
  background: #07111c;
  color: white;
  border-top: 1px solid #183046;
  border-bottom: 1px solid #183046;
}

.trust-grid {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  align-items: center;
  gap: 32px;
}

.trust-grid p {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #637586;
}

.trust-grid b {
  font: 500 16px "Manrope";
  letter-spacing: 0.1em;
  color: #8394a3;
}

.trust-grid b span {
  display: block;
  font-size: 7px;
  color: #4b6171;
  letter-spacing: 0.24em;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  align-items: end;
}

.intro-copy > p {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 34px;
}

.service-panels {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 275px 275px;
  gap: 10px;
}

.service-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 32px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.service-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: 0.3s;
}

.service-panel:hover:after {
  inset: 10px;
  border-color: rgba(108, 208, 255, 0.55);
}

.service-panel.big {
  grid-row: 1/3;
}

.service-panel span {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #8cd6ff;
}

.service-panel h3 {
  font-size: 32px;
  margin: 10px 0;
}

.service-panel p {
  font-size: 13px;
  color: #b9c4cc;
  max-width: 370px;
  margin: 0;
}

.service-panel svg {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.metrics {
  position: relative;
  color: white;
  background: var(--ink);
}

.metric-grid {
  display: grid;
}

.metric-grid > div {
  display: flex;
  padding: 32px 10px;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-top: 1px solid rgba(131, 220, 255, 0.14);
}

.metric-grid > div:first-child {
  border-top: 0;
}

.metric-grid strong {
  display: flex;

  align-items: flex-start;
  justify-content: center;

  margin-bottom: 14px;

  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.metric-number {
  display: inline-block;
  min-width: 1ch;

  font: inherit;
  color: white;

  font-variant-numeric: tabular-nums;
}

.metric-grid sup {
  position: relative;
  top: 0.1em;

  margin-left: 5px;

  color: var(--blue);

  font-family: "Manrope", sans-serif;
  font-size: 0.38em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.metric-grid > div > span:last-child {
  color: #8193a2;

  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 7vw;
  align-items: center;
}

.case-photo {
  min-height: 610px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: saturate(0.7);
}

.case-photo > span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #07111d;
  color: white;
  padding: 10px;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.target-1 {
  top: 27%;
  left: 31%;
}

.target-2 {
  bottom: 24%;
  right: 24%;
  transform: scale(0.7);
}

.case-copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.case-copy dl {
  margin: 35px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  padding: 22px 0;
}

.case-copy dt {
  font-size: 8px;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.case-copy dd {
  font-size: 12px;
  margin: 7px 0 0;
}

.hero .btn {
  position: relative;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

html[data-theme="dark"] .hero .btn.primary {
  border-color: rgba(131, 220, 255, 0.5);

  box-shadow:
    0 0 18px rgba(24, 168, 255, 0.24),
    0 8px 30px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .hero .btn.primary:hover {
  background: #53beff;

  box-shadow:
    0 0 24px rgba(24, 168, 255, 0.45),
    0 12px 35px rgba(0, 0, 0, 0.4);

  transform: translateY(-2px);
}

html[data-theme="dark"] .hero .btn.ghost {
  background: rgba(6, 17, 29, 0.42);
  border-color: rgba(131, 220, 255, 0.4);

  box-shadow:
    inset 0 0 20px rgba(24, 168, 255, 0.04),
    0 0 16px rgba(24, 168, 255, 0.08);

  backdrop-filter: blur(8px);
}

html[data-theme="dark"] .hero .btn.ghost:hover {
  color: var(--cyan);
  background: rgba(24, 168, 255, 0.12);
  border-color: rgba(131, 220, 255, 0.7);

  box-shadow:
    inset 0 0 22px rgba(24, 168, 255, 0.08),
    0 0 22px rgba(24, 168, 255, 0.2);

  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid p {
    grid-column: 1/3;
  }

  .service-panels {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 300px 300px;
  }

  .service-panel.big {
    grid-row: auto;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 700px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .flight-card {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .trust-grid {
    padding: 26px 0;
  }

  .intro-copy > p {
    font-size: 17px;
  }

  .service-panels {
    width: 100%;
    grid-template-rows: 420px 300px 300px;
  }

  .service-panel {
    padding: 24px;
  }

  .metrics {
    margin-top: 75px;
  }

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

  .metric-grid > div {
    border-left: 0;
    border-top: 1px solid #1c2d3a;
    padding: 24px 10px;
  }

  .metric-grid strong {
    font-size: 52px;
  }

  .case-photo {
    min-height: 420px;
  }
}

/* ============================================================
   HERO
============================================================ */

@media (min-width: 0rem) {
  .hero-copy {
    display: flex;
    padding-inline: 14px;

    flex-direction: column;
    align-items: center;

    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-copy .lede {
    margin-inline: auto;
  }

  .hero-copy .button-row {
    width: 100%;
    max-width: 280px;

    align-items: stretch;
  }

  .hero-copy .btn {
    width: 100%;
  }
}

@media (min-width: 48rem) {
  .hero-copy {
    padding-inline: 0;

    align-items: flex-start;

    text-align: left;
  }

  .hero-copy .eyebrow {
    justify-content: flex-start;
  }

  .hero-copy .lede {
    margin-inline: 0;
  }

  .hero-copy .button-row {
    width: auto;
    max-width: none;
  }

  .hero-copy .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-image,
  .hero .scan-lines,
  .hero-scan-beam {
    animation: none;
  }
  .hero-image {
    transform: none;
  }
  .hero-scan-beam {
    display: none;
  }
    .flight-card .pulse,
  .flight-card .pulse::before,
  .flight-card .pulse::after {
    animation: none;
  }

  .flight-card::after {
    display: none;
  }
}

/* ============================================================
   TRUST STRIP
============================================================ */

@media (min-width: 0rem) {
  .trust-grid {
    text-align: center;
  }

  .trust-grid > * {
    justify-self: center;
  }
}

@media (min-width: 48rem) {
  .trust-grid {
    text-align: center;
  }

  .trust-grid > * {
    justify-self: center;
  }
}

@media (min-width: 64rem) {
  .trust-grid {
    text-align: left;
  }

  .trust-grid > * {
    justify-self: stretch;
  }
}

/* ============================================================
   INTRO
============================================================ */

@media (min-width: 0rem) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;

    text-align: center;
  }

  .intro-grid > div {
    width: 100%;
  }

  .intro-grid .eyebrow {
    justify-content: center;
  }

  .intro-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-copy .text-link {
    justify-content: center;
  }

  .intro-copy .text-link {
    position: relative;
    padding: 14px 18px;
    gap: 24px;
    color: var(--text);
    background: rgba(24, 168, 255, 0.06);
    border: 1px solid rgba(24, 168, 255, 0.35);
    box-shadow:
      inset 0 0 18px rgba(24, 168, 255, 0.03),
      0 6px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition:
      color 0.3s ease,
      background 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
  }
  .intro-copy .text-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    box-shadow: 0 0 10px rgba(24, 168, 255, 0.55);
    transition: width 0.3s ease;
  }
  @media (hover: hover) {
    .intro-copy .text-link:hover {
      color: #03101a;
      background: var(--cyan);
      border-color: var(--cyan);
      box-shadow:
        0 0 20px rgba(24, 168, 255, 0.25),
        0 10px 26px rgba(0, 0, 0, 0.12);
      transform: translateY(-3px);
    }

    .intro-copy .text-link:hover::after {
      width: 100%;
    }

    .intro-copy .text-link:hover svg {
      transform: translateX(5px);
    }
  }
  .intro-copy .text-link svg {
    flex-shrink: 0;

    transition: transform 0.3s ease;
  }
  html[data-theme="dark"] .intro-copy .text-link {
    color: var(--cyan);
    background: rgba(24, 168, 255, 0.1);

    border-color: rgba(131, 220, 255, 0.45);

    box-shadow:
      inset 0 0 20px rgba(24, 168, 255, 0.05),
      0 0 18px rgba(24, 168, 255, 0.1);
  }
}

@media (min-width: 48rem) {
  .intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10vw;
    align-items: center;
    text-align: left;
  }

  .intro-grid .eyebrow {
    justify-content: flex-start;
  }

  .intro-copy {
    display: block;

    text-align: left;
  }

  .intro-copy .text-link {
    justify-content: flex-start;
  }

  .intro-grid > div:first-child {
    align-self: center;
  }
}

@media (min-width: 64rem) {
  .intro-grid {
    align-items: end;
  }

  .intro-grid > div:first-child {
    align-self: auto;
  }
}

/* ============================================================
   SERVICES
============================================================ */

/* ============================================================
   PERFORMANCE METRICS
============================================================ */

@media (min-width: 0rem) {
  .metrics {
    margin-top: 1rem;
  }

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

  .metric-grid strong {
    font-size: 4rem;
  }
}

@media (min-width: 48rem) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-grid > div {
    min-height: 220px;
    padding: 40px 24px;

    border-top: 1px solid rgba(131, 220, 255, 0.14);
    border-left: 1px solid rgba(131, 220, 255, 0.14);
  }

  .metric-grid > div:nth-child(1),
  .metric-grid > div:nth-child(2) {
    border-top: 0;
  }

  .metric-grid > div:nth-child(odd) {
    border-left: 0;
  }

  .metric-grid strong {
    font-size: 4.5rem;
  }
}

@media (min-width: 64rem) {
  .metric-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .metric-grid > div {
    min-height: 230px;
    padding: 30px 35px;

    border-top: 0;
    border-left: 1px solid rgba(131, 220, 255, 0.14);
  }

  .metric-grid > div:nth-child(odd) {
    border-left: 1px solid rgba(131, 220, 255, 0.14);
  }

  .metric-grid > div:first-child {
    border-left: 0;
  }

  .metric-grid strong {
    font-size: 5rem;
  }
}

/* ============================================================
   FEATURED CASE STUDY
============================================================ */

@media (min-width: 0rem) {
  .case-feature {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .case-copy {
    display: flex;

    flex-direction: column;
    align-items: center;

    text-align: center;
  }

  .case-copy .eyebrow {
    justify-content: center;
  }

  .case-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .case-copy dl {
    width: 100%;
  }

  .case-copy dl > div {
    text-align: center;
  }

  .case-copy .btn {
    align-self: center;
  }

  .case-photo > span {
    right: auto;
    left: 50%;

    width: max-content;
    max-width: calc(100% - 40px);

    text-align: center;

    transform: translateX(-50%);
  }

  html[data-theme="dark"] .case-copy .btn.dark {
    color: var(--cyan);
    background: rgba(24, 168, 255, 0.08);

    border-color: rgba(131, 220, 255, 0.55);

    box-shadow:
      inset 0 0 18px rgba(24, 168, 255, 0.04),
      0 0 18px rgba(24, 168, 255, 0.12);
  }

  @media (hover: hover) {
    html[data-theme="dark"] .case-copy .btn.dark:hover {
      color: #03101a;
      background: var(--cyan);

      border-color: var(--cyan);

      text-shadow: none;

      box-shadow:
        0 0 20px rgba(131, 220, 255, 0.38),
        0 10px 28px rgba(0, 0, 0, 0.3);
    }
  }
}

@media (min-width: 48rem) {
  .case-feature {
    text-align: left;
  }

  .case-copy {
    display: block;

    text-align: left;
  }

  .case-copy .eyebrow {
    justify-content: flex-start;
  }

  .case-copy > p:not(.eyebrow) {
    margin-inline: 0;
  }

  .case-copy dl > div {
    text-align: left;
  }

  .case-copy .btn {
    align-self: auto;
  }

  .case-photo > span {
    right: auto;
    left: 20px;

    width: auto;
    max-width: none;

    text-align: left;

    transform: none;
  }
}

/* ============================================================
   FINAL CTA
============================================================ */

@media (min-width: 0rem) {
  .cta-band .wrap {
    text-align: center;
  }

  .cta-band .eyebrow {
    justify-content: center;
  }

  .cta-band .btn {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 48rem) {
  .cta-band .wrap {
    text-align: left;
  }

  .cta-band .eyebrow {
    justify-content: flex-start;
  }

  .cta-band .btn {
    margin-right: 0;
    margin-left: 0;
  }
}

/* ============================================================
   CTA DRONE LANDING
============================================================ */


/* ============================================================
   MOBILE
============================================================ */

@media (min-width: 0rem) {
  .landing-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .landing-cta > .wrap {
    position: relative;
    z-index: 2;
  }

  .drone-landing-scene {
    position: relative;
    z-index: 2;
    width: 13rem;
    height: 9rem;
    margin: 0 auto 1.5rem;
    pointer-events: none;
  }


  /* Drone */

  .landing-drone {
    position: absolute;
    z-index: 3;
    top: 3.15rem;
    left: 50%;
    width: 10rem;
    opacity: 0;
    filter: drop-shadow(0 0 1rem rgba(49, 196, 239, 0.35));
    transform:
      translate3d(6rem, -8rem, 0)
      translateX(-50%)
      rotate(-8deg)
      scale(0.8);
    transform-origin: center;
  }

  .landing-cta.is-landing .landing-drone {
    animation: drone-landing 3s cubic-bezier(0.22, 0.75, 0.2, 1) forwards;
  }


  /* Rotors */

  .drone-rotor {
    transform-box: fill-box;
    transform-origin: center;
  }

  .landing-cta.is-landing .drone-rotor {
    animation:
      drone-rotor-flight 0.12s linear 22,
      drone-rotor-idle 0.8s linear 2.65s infinite;
  }


  /* Landing pad */

  .landing-pad {
    position: absolute;
    z-index: 1;
    bottom: 0.45rem;
    left: 50%;
    width: 7rem;
    height: 2.3rem;
    opacity: 0.45;
    border: 1px solid rgba(117, 225, 255, 0.65);
    border-radius: 50%;
    background:
      radial-gradient(
        ellipse at center,
        rgba(69, 203, 245, 0.18) 0%,
        rgba(69, 203, 245, 0.05) 45%,
        transparent 70%
      );
    box-shadow:
      inset 0 0 1.2rem rgba(57, 202, 246, 0.25),
      0 0 1.5rem rgba(57, 202, 246, 0.15);
    transform: translateX(-50%);
  }

  .landing-pad::before,
  .landing-pad::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(115, 225, 255, 0.75);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }

  .landing-pad span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.25rem;
    height: 1rem;
    border: 1px solid rgba(137, 232, 255, 0.65);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .landing-pad i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #8deaff;
    box-shadow:
      0 0 0.5rem #45c9f2,
      0 0 1rem rgba(69, 201, 242, 0.9);
    transform: translate(-50%, -50%);
  }

  .landing-cta.is-landing .landing-pad {
    animation: pad-activate 0.6s ease 0.25s forwards;
  }

  .landing-cta.is-landing .landing-pad::before {
    animation: landing-ripple 1.1s ease-out 2.5s;
  }

  .landing-cta.is-landing .landing-pad::after {
    animation: landing-ripple 1.1s ease-out 2.72s;
  }

  /* Landing status */

  .landing-status {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .landing-status span {
    display: block;
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .status-landing {
    color: #8ddff7;
    opacity: 0;
    transform: translateY(0.5rem);
  }

  .status-complete {
    position: absolute;
    inset: 0;
    color: #8dffc2;
    opacity: 0;
    transform: translateY(0.5rem);
  }

  .landing-cta.is-landing .status-landing {
    animation:
      landing-message-in 0.4s ease 0.3s forwards,
      landing-message-out 0.35s ease 2.65s forwards;
  }

  .landing-cta.is-landing .status-complete {
    animation: landing-message-in 0.4s ease 2.85s forwards;
  }

  
  /* Drone lights */

  .landing-cta.is-landing .drone-status-light {
    animation: drone-light 0.7s ease-in-out 2.7s infinite;
  }

  .landing-cta.is-landing .drone-camera-lens {
    animation: camera-scan 1.6s ease-in-out 3s infinite;
  }


  /* Final state for reduced motion */

  .landing-cta.is-landed .landing-drone {
    opacity: 1;
    transform:
      translate3d(0, 0, 0)
      translateX(-50%)
      rotate(0)
      scale(1);
  }

  .landing-cta.is-landed .landing-pad {
    opacity: 1;
  }

  .landing-cta.is-landed .landing-status {
    opacity: 1;
  }

  .landing-cta.is-landed .landing-status::before {
    content: "LANDING COMPLETE";
    font-size: inherit;
  }

  .landing-cta.is-landed .landing-status {
    font-size: 0;
  }
}


/* ============================================================
   TABLET
============================================================ */

@media (min-width: 48rem) {
  .drone-landing-scene {
    width: 16rem;
    height: 10rem;
  }

  .landing-drone {
    top: 3.15rem;
    width: 12rem;
  }

  .landing-pad {
    width: 8.5rem;
    height: 2.75rem;
  }
}

/* Tablet landscape CTA */
@media (min-width: 64rem) and (max-width: 74rem) and (orientation: landscape) {
  .landing-cta {
    min-height: 36rem;
  }

  .landing-cta > .wrap {
    position: static;
    padding-right: 20rem;
  }

  .drone-landing-scene {
    top: 3rem;
    right: 2rem;
    bottom: auto;
    width: 18rem;
    height: 13rem;
    z-index: 3;
  }

  .landing-drone {
    top: 5rem;
    width: 12.5rem;
  }

  .landing-pad {
    width: 9rem;
    height: 3rem;
  }

  .landing-cta .btn {
    position: absolute;
    z-index: 4;
    top: 20.75rem;
    right: 2rem;
    bottom: auto;
    width: 18rem;
    justify-content: center;
  }
}


/* ============================================================
   DESKTOP CTA LAYOUT
============================================================ */

@media (min-width: 64rem) {
  .landing-cta {
    position: relative;
    min-height: 36rem;
  }

  .landing-cta > .wrap {
    position: static;
    width: 100%;
    padding-right: 22rem;
  }

  .drone-landing-scene {
    position: absolute;
    z-index: 3;
    top: 3rem;
    right: max(2rem, calc((100vw - var(--max)) / 2));
    bottom: auto;
    width: 20rem;
    height: 14rem;
    margin: 0;
  }

  .landing-drone {
    top: 5.5rem;
    width: 14rem;
  }

  .landing-pad {
    bottom: 0.75rem;
    width: 10rem;
    height: 3.25rem;
  }

  .landing-status {
    bottom: 0;
  }

  .landing-cta .btn {
    position: absolute;
    z-index: 4;
    top: 18rem;
    right: max(2rem, calc((100vw - var(--max)) / 2));
    bottom: auto;
    width: 20rem;
    justify-content: center;
  }
}


/* ============================================================
   ANIMATIONS
============================================================ */

@keyframes drone-landing {
  0% {
    opacity: 0;
    transform:
      translate3d(6rem, -8rem, 0)
      translateX(-50%)
      rotate(-8deg)
      scale(0.8);
  }

  18% {
    opacity: 1;
  }

  52% {
    opacity: 1;
    transform:
      translate3d(-0.75rem, -3.5rem, 0)
      translateX(-50%)
      rotate(2deg)
      scale(1);
  }

  68% {
    transform:
      translate3d(0.5rem, -3rem, 0)
      translateX(-50%)
      rotate(-1deg)
      scale(1);
  }

  82% {
    transform:
      translate3d(0, -1.25rem, 0)
      translateX(-50%)
      rotate(0)
      scale(1);
  }

  92% {
    transform:
      translate3d(0, 0.15rem, 0)
      translateX(-50%)
      rotate(0)
      scale(1);
  }

  100% {
    opacity: 1;
    transform:
      translate3d(0, 0, 0)
      translateX(-50%)
      rotate(0)
      scale(1);
  }
}

@keyframes drone-rotor-flight {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drone-rotor-idle {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pad-activate {
  from {
    opacity: 0.35;
  }

  to {
    opacity: 1;
    box-shadow:
      inset 0 0 1.5rem rgba(57, 202, 246, 0.4),
      0 0 2rem rgba(57, 202, 246, 0.35);
  }
}

@keyframes landing-ripple {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.7);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

@keyframes landing-status-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-status-complete {
  from {
    color: #8ddff7;
  }

  to {
    color: #8dffc2;
  }
}

@keyframes drone-light {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes camera-scan {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes landing-message-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-message-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
  .landing-drone,
  .drone-rotor,
  .landing-pad,
  .landing-pad::before,
  .landing-pad::after,
  .landing-status,
  .drone-status-light,
  .drone-camera-lens {
    animation: none !important;
  }
  .landing-cta.is-landed .status-landing {
    display: none;
  }

  .landing-cta.is-landed .status-complete {
    position: static;
    opacity: 1;
    transform: none;
  }
}