:root {
  --bg: #070915;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.15);
  --accent: #6c7dff;
  --accent-2: #49e0ff;
  --accent-3: #a04dff;
  --text: #e8ecff;
  --muted: #a3adc6;
  --line: rgba(255, 255, 255, 0.12);
  --success: #4ef3c2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(120% 80% at 20% 20%, rgba(76, 89, 255, 0.15), transparent 50%),
              radial-gradient(120% 80% at 80% 10%, rgba(73, 224, 255, 0.14), transparent 40%),
              radial-gradient(140% 100% at 50% 90%, rgba(160, 77, 255, 0.17), transparent 50%),
              var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: screen;
  z-index: 1;
}

.grid {
  position: fixed;
  inset: 0;
  background: linear-gradient(transparent 65%, rgba(255, 255, 255, 0.05)),
              repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 70px),
              repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 80px);
  mask-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  z-index: 0;
  pointer-events: none;
}

.tech-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(76, 89, 255, 0.06), transparent 60%),
    repeating-linear-gradient(120deg, rgba(73, 224, 255, 0.08), rgba(73, 224, 255, 0.08) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(60deg, rgba(160, 77, 255, 0.05), rgba(160, 77, 255, 0.05) 1px, transparent 1px, transparent 16px);
  mix-blend-mode: screen;
  opacity: 0.35;
  animation: drift 18s ease-in-out infinite alternate;
  z-index: 1;
}

.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(30% 30% at 15% 20%, rgba(73, 224, 255, 0.16), transparent 50%),
    radial-gradient(25% 25% at 80% 30%, rgba(160, 77, 255, 0.16), transparent 55%),
    radial-gradient(20% 20% at 60% 70%, rgba(78, 243, 194, 0.12), transparent 60%);
  filter: blur(22px);
  opacity: 0.8;
  mix-blend-mode: screen;
  z-index: 1;
}

.ribbon {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 10%, rgba(73, 224, 255, 0.05) 45%, transparent 60%),
    linear-gradient(80deg, transparent 30%, rgba(160, 77, 255, 0.06) 60%, transparent 80%),
    linear-gradient(160deg, transparent 25%, rgba(110, 245, 195, 0.05) 55%, transparent 75%);
  mix-blend-mode: screen;
  z-index: 0;
  animation: drift 16s ease-in-out infinite alternate;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 96px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 108px;
  height: auto;
  display: block;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  align-items: center;
  padding: 12px 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 13px;
  margin-bottom: 8px;
}

.hero-left h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

.sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(108, 125, 255, 0.5);
  background: linear-gradient(135deg, rgba(73, 224, 255, 0.12), rgba(160, 77, 255, 0.12));
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, rgba(73, 224, 255, 0.25), rgba(160, 77, 255, 0.32), rgba(110, 245, 195, 0.25));
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 0;
  filter: blur(12px);
}

.btn span,
.btn svg,
.btn img {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25), 0 0 30px rgba(111, 146, 255, 0.3);
  border-color: rgba(160, 77, 255, 0.8);
}

.btn:hover::after {
  opacity: 1;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(73, 224, 255, 0.4);
}

.meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.pill {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  padding: 18px;
}

.drone-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  overflow: hidden;
  min-height: 320px;
}

.drone-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(73, 224, 255, 0.16), transparent 42%),
              radial-gradient(circle at 80% 40%, rgba(160, 77, 255, 0.18), transparent 42%),
              radial-gradient(circle at 50% 80%, rgba(110, 245, 195, 0.16), transparent 45%);
  filter: blur(30px);
  z-index: 0;
  opacity: 0.8;
}

.drone-graphic {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.1;
  display: grid;
  place-items: center;
  margin: 4px auto 14px;
}

.drone-graphic svg {
  width: 100%;
  height: 100%;
}

.radar {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: pulse 8s linear infinite;
}

.radar:nth-child(1) { animation-delay: 0s; }
.radar:nth-child(2) { animation-delay: 1.4s; width: 220px; height: 220px; }
.radar:nth-child(3) { animation-delay: 2.8s; width: 280px; height: 280px; }

.floating {
  position: absolute;
  top: 12%;
  right: 6%;
  width: 90px;
  height: 90px;
  background: linear-gradient(145deg, rgba(73, 224, 255, 0.25), rgba(160, 77, 255, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.8px;
  animation: float 6s ease-in-out infinite;
}

.floating small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.stat {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 6px;
}

.platforms {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.platform-card {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(73, 224, 255, 0.12), rgba(160, 77, 255, 0.12));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 30%, rgba(73, 224, 255, 0.18), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(160, 77, 255, 0.18), transparent 45%);
  filter: blur(18px);
  opacity: 0.65;
  pointer-events: none;
}

.platform-card:hover::before {
  opacity: 1;
}

.domain-guard {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 21, 0.85);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: var(--text);
  z-index: 30;
}

.domain-guard .guard-box {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  max-width: 420px;
  text-align: center;
  line-height: 1.5;
  font-size: 15px;
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.platform-header img {
  width: 38px;
  height: 38px;
}

.platform-name {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.platform-desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.tagline {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.section {
  margin-top: 48px;
  padding: 22px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.card {
  position: relative;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  min-height: 150px;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(120deg, rgba(73, 224, 255, 0.12), rgba(160, 77, 255, 0.12), rgba(78, 243, 194, 0.1));
  transform: rotate(8deg);
  animation: beamMove 8s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(73, 224, 255, 0.08), rgba(160, 77, 255, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  opacity: 0.9;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s ease, opacity 0.2s ease;
  animation: floatIcon 5s ease-in-out infinite alternate, glowIcon 6s ease-in-out infinite;
}

.card:hover .card-icon {
  transform: translateY(-2px) scale(1.03);
  opacity: 1;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.step {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 14px;
}

.step strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 15px;
}

.cta-panel {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(73, 224, 255, 0.12), rgba(160, 77, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-panel h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

footer {
  margin-top: 44px;
  padding: 18px 4px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.web3-orb {
  position: absolute;
  width: 160px;
  top: -40px;
  left: -40px;
  opacity: 0.4;
  filter: blur(2px);
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes drift {
  from { transform: translateX(-20px) translateY(0); }
  to { transform: translateX(20px) translateY(-10px); }
}

@keyframes beamMove {
  0% { transform: translateX(-20%) rotate(8deg); opacity: 0.7; }
  50% { opacity: 0.9; }
  100% { transform: translateX(20%) rotate(8deg); opacity: 0.7; }
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

@keyframes glowIcon {
  0% { filter: drop-shadow(0 6px 14px rgba(73, 224, 255, 0.25)); }
  50% { filter: drop-shadow(0 10px 18px rgba(160, 77, 255, 0.35)); }
  100% { filter: drop-shadow(0 6px 14px rgba(73, 224, 255, 0.25)); }
}

@media (max-width: 640px) {
  header { flex-direction: column; align-items: flex-start; }
  nav { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .hero-left h1 { font-size: 32px; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .floating { display: none; }
  .brand img { width: 92px; }
}
