/* ── OrbitWorks Aerospace · Global Styles ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg:      #0a0c10;
  --bg2:     #10131a;
  --bg3:     #161b26;
  --bg4:     #1e2535;
  --accent:  #00d4ff;
  --accent2: #0084a0;
  --adim:    rgba(0,212,255,0.12);
  --adim2:   rgba(0,212,255,0.06);
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --text:    #e8edf5;
  --text2:   #8b97aa;
  --text3:   #4a5568;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger:  #ef4444;
  --purple:  #a78bfa;
  --orange:  #fb923c;
  --coral:   #fb7185;
  --green:   #4ade80;
  --mono:    'Space Mono', monospace;
  --sans:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

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

/* ── SCROLLBAR ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,12,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex; align-items: center;
  padding: 0 24px;
  gap: 0;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--adim);
  border: 1px solid var(--accent2);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg3); opacity: 1; }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  margin-left: 12px;
  background: var(--adim) !important;
  border: 1px solid var(--accent2) !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  padding: 7px 16px !important;
}
.nav-cta:hover { background: rgba(0,212,255,0.2) !important; opacity: 1 !important; }

.nav-defense {
  margin-left: 8px;
  background: rgba(239,68,68,0.1) !important;
  border: 1px solid rgba(239,68,68,0.3) !important;
  color: var(--danger) !important;
  font-weight: 700 !important;
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.05em;
  padding: 7px 14px !important;
}
.nav-defense:hover { background: rgba(239,68,68,0.18) !important; opacity: 1 !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  margin-left: auto;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── LAYOUT ───────────────────────────────────────────────────────────────── */
.page-wrap { padding-top: 60px; min-height: 100vh; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }
section.tight { padding: 48px 0; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

.lead { font-size: 1.1rem; color: var(--text2); line-height: 1.7; }
.text-muted { color: var(--text2); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mono { font-family: var(--mono); }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border2);
  background: var(--bg3);
  color: var(--text);
  transition: all 0.15s;
  font-family: var(--sans);
  text-decoration: none;
}
.btn:hover { background: var(--bg4); opacity: 1; transform: translateY(-1px); }

.btn-primary {
  background: var(--adim);
  border-color: var(--accent2);
  color: var(--accent);
}
.btn-primary:hover { background: rgba(0,212,255,0.2); }

.btn-danger {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.35);
  color: var(--danger);
}
.btn-danger:hover { background: rgba(239,68,68,0.18); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 7px 14px; font-size: 12px; }

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border2); transform: translateY(-2px); }
.card-sm { padding: 16px; border-radius: 10px; }

.card-accent-top { border-top: 2px solid var(--accent); }
.card-accent-left { border-left: 3px solid var(--accent); }

/* ── GRID ─────────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ── BADGES ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid;
}
.badge-accent { background: var(--adim); color: var(--accent); border-color: var(--accent2); }
.badge-success { background: rgba(34,197,94,0.1); color: var(--success); border-color: rgba(34,197,94,0.3); }
.badge-warning { background: rgba(245,158,11,0.1); color: var(--warning); border-color: rgba(245,158,11,0.3); }
.badge-danger { background: rgba(239,68,68,0.1); color: var(--danger); border-color: rgba(239,68,68,0.3); }
.badge-purple { background: rgba(167,139,250,0.1); color: var(--purple); border-color: rgba(167,139,250,0.3); }

/* ── SECTION HEADER ───────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text2); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,132,160,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(167,139,250,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--adim);
  border: 1px solid var(--accent2);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label { font-size: 12px; color: var(--text2); margin-top: 2px; }

/* ── PRODUCT CARD ─────────────────────────────────────────────────────────── */
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.product-img {
  height: 200px;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.product-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,132,160,0.15), transparent 70%);
}

.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.product-desc { font-size: 12px; color: var(--text2); margin-bottom: 12px; flex: 1; line-height: 1.5; }
.product-price { font-family: var(--mono); font-size: 18px; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.product-footer { display: flex; gap: 8px; align-items: center; }

/* ── SERVICE CARD ─────────────────────────────────────────────────────────── */
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-desc { color: var(--text2); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.service-price { font-family: var(--mono); font-size: 13px; color: var(--accent); }

/* ── MERCH ────────────────────────────────────────────────────────────────── */
.merch-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}
.merch-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.merch-img {
  height: 220px;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  border-bottom: 1px solid var(--border);
}
.merch-body { padding: 16px; }
.merch-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.merch-price { font-family: var(--mono); color: var(--accent); font-size: 16px; margin-bottom: 12px; }

/* ── CART ─────────────────────────────────────────────────────────────────── */
.cart-icon {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,212,255,0.35);
  transition: transform 0.2s;
}
.cart-icon:hover { transform: scale(1.08); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--danger);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}

.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 400px;
  background: var(--bg2);
  border-left: 1px solid var(--border2);
  z-index: 300;
  transition: right 0.3s ease;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { font-size: 16px; }
.cart-close { font-size: 22px; cursor: pointer; color: var(--text2); background: none; border: none; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item {
  display: flex; gap: 12px; align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}
.cart-item-icon { font-size: 30px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; }
.cart-item-price { font-family: var(--mono); color: var(--accent); font-size: 13px; }
.cart-item-remove { color: var(--danger); font-size: 16px; cursor: pointer; background: none; border: none; }
.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 16px; font-weight: 700;
}
.cart-total span { font-family: var(--mono); color: var(--accent); font-size: 20px; }
.cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 250;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

/* ── STAT ROW ─────────────────────────────────────────────────────────────── */
.stat-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stat-strip .grid-4 { text-align: center; }
.stat-big { font-family: var(--mono); font-size: 2.4rem; font-weight: 700; color: var(--accent); }
.stat-label { color: var(--text2); font-size: 13px; margin-top: 4px; }

/* ── DEFENSE PORTAL ───────────────────────────────────────────────────────── */
.defense-hero {
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(10,12,16,0) 70%);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.defense-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--danger), rgba(239,68,68,0));
}

.live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--success);
  font-family: var(--mono);
}
.live-dot::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.data-row {
  display: flex; align-items: center;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  gap: 12px;
  font-size: 13px;
}
.data-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.data-row-label { color: var(--text); flex: 1; font-weight: 500; }
.data-row-val { font-family: var(--mono); font-size: 12px; color: var(--text2); }
.data-row-badge { padding: 2px 8px; border-radius: 8px; font-size: 10px; font-weight: 700; }

/* ── CONTACT FORM ─────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 6px;
  font-family: var(--mono);
}
.form-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 9px;
  color: var(--text);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent2); }
.form-input::placeholder { color: var(--text3); }
textarea.form-input { height: 120px; resize: vertical; }
select.form-input { cursor: pointer; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text2); font-size: 13px; margin-top: 12px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text2); font-size: 13px; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--accent); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text3); font-size: 12px; }
.footer-bottom .mono { font-size: 11px; color: var(--text3); }

/* ── NOTIFICATION TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 100px; right: 28px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text);
  z-index: 400;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s;
  max-width: 280px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-accent { border-left: 3px solid var(--accent); }

/* ── DRONE AID ────────────────────────────────────────────────────────────── */
.aid-banner {
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(10,12,16,0));
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.aid-banner h2 { color: var(--success); }
.progress-track {
  height: 8px; background: var(--bg4);
  border-radius: 8px; overflow: hidden;
  margin: 16px 0 8px;
}
.progress-fill { height: 100%; border-radius: 8px; background: var(--success); transition: width 1s ease; }

/* ── ABOUT TIMELINE ───────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute; left: -28px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.2);
}
.timeline-date { font-family: var(--mono); font-size: 11px; color: var(--accent); margin-bottom: 4px; }
.timeline-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.timeline-desc { color: var(--text2); font-size: 13px; line-height: 1.6; }

/* ── UTILITY ──────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-cta, .nav-defense { margin-left: 0; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .defense-hero { padding: 28px; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 80px 0 48px; }
  .cart-drawer { width: 100%; right: -100%; }
  .hero-btns { flex-direction: column; }
}
