@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --void: #030304;
  --black: #07080b;
  --panel: rgba(14, 16, 22, .78);
  --panel-strong: #10131a;
  --red: #e60014;
  --red-hot: #ff3131;
  --red-deep: #610007;
  --cyan: #13f2ff;
  --silver: #d8dde7;
  --muted: #9da5b4;
  --ink: #f7f8fb;
  --gold: #ffe17d;
  --line: rgba(255, 255, 255, .13);
  --shadow: 0 24px 90px rgba(0, 0, 0, .56);
  --radius: 8px;
  --z-top: 50;
  --z-nav: 40;
  --z-base: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(230, 0, 20, .13), transparent 18rem),
    linear-gradient(90deg, rgba(255, 49, 49, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    var(--void);
  background-size: auto, 54px 54px, 54px 54px, auto;
  color: var(--ink);
  font-family: "Sora", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  background: var(--red-hot);
  color: #fff;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .16) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 49, 49, .2) 0 1px, transparent 1px);
  background-size: 18px 18px, 29px 29px;
  mix-blend-mode: screen;
}

#flightCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-top);
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, .05);
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan), var(--red-hot));
  box-shadow: 0 0 24px rgba(255, 49, 49, .75);
}

.site-header {
  position: sticky;
  top: 4px;
  z-index: var(--z-nav);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 4, .72);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .035);
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(230, 0, 20, .78), rgba(105, 0, 9, .82));
}

.nav-cta,
.btn,
.icon-btn {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #fff;
  color: #050506;
  cursor: pointer;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 16px 45px rgba(230, 0, 20, .25);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(230, 0, 20, .42);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-red {
  border-color: rgba(255, 49, 49, .78);
  background: linear-gradient(135deg, var(--red), #ff5151);
  color: white;
}

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 80px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(3, 3, 4, .94) 0 28%, rgba(3, 3, 4, .42) 56%, rgba(230, 0, 20, .12)),
    url("../images/hero-command.svg") right 4vw center / min(68vw, 880px) auto no-repeat;
  transform: translate3d(0, var(--parallax, 0), 0);
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--void));
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: var(--z-base);
}

.hero-copy {
  width: min(650px, 100%);
  padding: 80px 0 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--red-hot);
  box-shadow: 0 0 16px rgba(255, 49, 49, .75);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Audiowide", Impact, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
  max-width: 12ch;
}

h2 {
  font-size: 3.1rem;
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy p {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1.1rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(760px, calc(100% - 32px));
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 16px;
  background: rgba(8, 9, 12, .76);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.section-red {
  background:
    linear-gradient(135deg, rgba(230, 0, 20, .2), rgba(3, 3, 4, .96) 58%),
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, .06) 44% 45%, transparent 45%);
}

.section-metal {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent),
    #08090d;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 32px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head p {
  font-size: 1.02rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 14px;
}

.drone-card {
  position: relative;
  min-height: 438px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.drone-card::before {
  content: attr(data-code);
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, .22);
  font-family: "Audiowide", Impact, sans-serif;
}

.drone-card:hover .drone-art {
  transform: translateY(-10px) scale(1.04) rotateX(4deg);
}

.drone-art {
  aspect-ratio: 1.42;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.drone-info {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.price-row,
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--cyan);
  background: rgba(19, 242, 255, .07);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .08);
}

.specs span {
  padding: 10px 8px;
  background: rgba(0, 0, 0, .36);
  color: var(--silver);
  font-size: .76rem;
  text-align: center;
}

.deal-ribbon {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  padding: 9px 14px;
  background: #fff;
  color: #060608;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(255, 255, 255, .28);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.mission-panel {
  display: grid;
  gap: 16px;
}

.mission-line {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .05);
}

.mission-line strong {
  color: #fff;
  font-family: "Audiowide", Impact, sans-serif;
}

.scan-stage {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(230, 0, 20, .16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(19, 242, 255, .16), transparent 34%),
    #050609;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.scan-stage img {
  width: 88%;
  position: absolute;
  left: 6%;
  top: 18%;
  filter: drop-shadow(0 38px 40px rgba(0, 0, 0, .8));
  animation: floatDrone 5.5s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 34px rgba(19, 242, 255, .85);
  animation: scanSweep 3.4s linear infinite;
}

.telemetry {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.telemetry span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .52);
  color: var(--silver);
  font-size: .8rem;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  padding: 22px;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(230, 0, 20, .16), rgba(255, 255, 255, .035));
}

.timeline-item strong {
  color: var(--gold);
}

.page-hero {
  padding: 92px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(230, 0, 20, .22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 38px;
  align-items: center;
}

.page-hero h1 {
  font-size: 4rem;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.compare-table {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .13);
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, .035);
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-align: left;
}

th {
  color: #fff;
  background: rgba(230, 0, 20, .22);
  font-size: .8rem;
  text-transform: uppercase;
}

td {
  color: var(--silver);
}

.deal-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
}

.deal-block {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(230, 0, 20, .38), rgba(255, 255, 255, .04)),
    #08090c;
}

.deal-block h2 {
  font-size: 2.4rem;
}

.deal-block img {
  position: absolute;
  right: -70px;
  bottom: -46px;
  width: min(460px, 58%);
  opacity: .88;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
}

.contact-card,
.form-panel,
.tech-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
}

.contact-card,
.form-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--silver);
  background: rgba(0, 0, 0, .25);
  word-break: break-word;
}

form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(0, 0, 0, .44);
  color: #fff;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tech-card {
  padding: 22px;
  min-height: 220px;
}

.tech-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Audiowide", Impact, sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.985);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .85, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 3;
  width: 46px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: .78rem;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  overflow: hidden;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: -20px;
  width: 2px;
  height: 38px;
  background: var(--red-hot);
  animation: cueDrop 1.45s linear infinite;
}

.footer {
  padding: 42px 0;
  background: #030304;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .9rem;
}

.footer img {
  width: 150px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: var(--z-top);
  max-width: min(360px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #fff;
  color: #050506;
  font-weight: 800;
  transform: translateY(120%);
  transition: transform .28s ease;
}

.toast.show {
  transform: translateY(0);
}

@keyframes floatDrone {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -20px, 0) rotate(1deg); }
}

@keyframes scanSweep {
  from { transform: translateY(-10px); }
  to { transform: translateY(580px); }
}

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

@media (max-width: 1180px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .brand img {
    width: 144px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    cursor: pointer;
  }

  .nav-links {
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 3, 4, .96), rgba(3, 3, 4, .54)),
      url("../images/hero-command.svg") center bottom 90px / 720px auto no-repeat;
  }

  .hero-copy {
    padding: 58px 0 330px;
  }

  .hero-stats,
  .section-head,
  .split,
  .page-hero .section-inner,
  .deal-grid,
  .contact-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .scan-stage {
    min-height: 430px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 72px 0;
  }

  .fleet-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: -40px;
  }

  .hero-stats div {
    padding: 12px;
  }

  .price-row,
  .meta-row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .deal-block img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
  }
}

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