
/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #0A0B07;
  --bg-2:      #11130D;
  --bg-3:      #181A12;
  --surface:   rgba(220,210,170,0.04);
  --border:    rgba(220,210,170,0.10);
  --border-hi: rgba(220,210,170,0.22);
  --text:      #EDE7D2;
  --muted:     #8C8970;
  --faint:     #4A4838;
  --olive:     #4F5A2E;
  --olive-hi:  #6F7E40;
  --accent:    #C86028;
  --accent-dim: #7A3A18;
  --accent-glow: rgba(200,96,40,0.20);
  --red:       #B83A2A;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Barlow', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── SCANLINE OVERLAY ───────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.12) 2px,
    rgba(0,0,0,0.12) 4px
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── NOISE TEXTURE ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9998;
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(7, 9, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  position: relative;
}
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-wordmark {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-wordmark span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  opacity: 0.85;
  box-shadow: 0 0 24px var(--accent-glow);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Glow */
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,96,40,0.10) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Targeting reticle */
.reticle {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  opacity: 0.55;
}
.reticle-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  animation: reticle-rotate 20s linear infinite;
}
.reticle-outer::before,
.reticle-outer::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.reticle-outer::before {
  width: 20px; height: 1px;
  top: 50%; left: -20px;
  transform: translateY(-50%);
}
.reticle-outer::after {
  height: 20px; width: 1px;
  top: -20px; left: 50%;
  transform: translateX(-50%);
}
.reticle-mid {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200,96,40,0.50);
  animation: reticle-rotate 12s linear infinite reverse;
}
.reticle-inner {
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(200,96,40,0.70);
}
.reticle-core {
  position: absolute;
  inset: 200px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reticle-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 32px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
/* Tick marks */
.reticle-ticks {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: reticle-rotate 30s linear infinite;
}
.reticle-tick {
  position: absolute;
  width: 1px;
  height: 10px;
  background: var(--accent-dim);
  left: 50%;
  transform-origin: bottom center;
}
/* Sweep line */
.reticle-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}
.reticle-sweep::after {
  content: '';
  position: absolute;
  width: 50%; height: 50%;
  bottom: 50%; right: 50%;
  background: conic-gradient(from 0deg, transparent 300deg, rgba(200,96,40,0.40) 360deg);
  transform-origin: bottom right;
  animation: sweep 4s linear infinite;
}
/* Crosshairs */
.reticle-cross-h, .reticle-cross-v {
  position: absolute;
  background: rgba(200,96,40,0.20);
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.reticle-cross-v {
  width: 1px; height: 100%;
  top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
}
/* Data readouts */
.reticle-data {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.reticle-data.tl { top: 90px; left: 90px; }
.reticle-data.tr { top: 90px; right: 70px; text-align: right; }
.reticle-data.bl { bottom: 90px; left: 90px; }
.reticle-data.br { bottom: 90px; right: 70px; text-align: right; }

@keyframes reticle-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 48px;
  max-width: 780px;
  margin-top: 64px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.2s;
}
.hero-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.hero-h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(72px, 8.6vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.4s;
  text-shadow: 0 0 60px rgba(0,0,0,0.4);
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: #B8C0D0;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.6s;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.8s;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px var(--accent-glow);
}
.btn-primary:active { transform: translateY(1px); }
.btn-primary:hover {
  opacity: 0.85;
  box-shadow: 0 0 36px var(--accent-glow);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--border-hi);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.04); }
.btn-secondary:hover {
  color: var(--text);
  border-color: var(--text);
}
.btn-arrow {
  font-size: 14px;
}
/* Trust strip */
.hero-trust {
  position: absolute;
  bottom: 40px;
  left: 48px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 1.1s;
}
.trust-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--olive-hi);
  box-shadow: 0 0 8px var(--olive-hi);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION COMMONS ────────────────────────────────────── */
section { position: relative; }
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}
.section-h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}
.section-body {
  font-size: 17px;
  font-weight: 400;
  color: #B8C0D0;
  line-height: 1.65;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── CAPABILITIES STRIP ─────────────────────────────────── */
.cap-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.cap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  flex: 1;
}
.cap-item:first-child { padding-left: 0; }
.cap-item:last-child { border-right: none; }
.cap-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cap-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.cap-text-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.cap-text-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 2px;
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats-section {
  padding: 100px 48px;
  background: var(--bg);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-copy { max-width: 500px; }
.stats-copy .section-h2 { margin-bottom: 20px; }
.stats-copy .section-body { margin-bottom: 36px; max-width: 420px; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-card {
  background: var(--bg-2);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.4s;
}
.stat-card:hover::before {
  background: var(--accent);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 76px;
  line-height: 0.9;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.stat-num span {
  color: var(--accent);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── SOLUTIONS ──────────────────────────────────────────── */
.solutions-section {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.solutions-inner { max-width: 1280px; margin: 0 auto; }
.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.sol-card {
  background: var(--bg-2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.sol-card:hover {
  background: var(--bg-3);
  border-bottom-color: var(--accent);
}
.sol-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--faint);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.sol-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.sol-card:hover .sol-icon-wrap { border-color: var(--accent); }
.sol-icon-wrap svg { width: 22px; height: 22px; stroke: var(--muted); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.sol-card:hover .sol-icon-wrap svg { stroke: var(--accent); }
.sol-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1;
}
.sol-desc {
  font-size: 15px;
  font-weight: 400;
  color: #B8C0D0;
  line-height: 1.6;
}
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sol-card:hover .sol-link { opacity: 1; }

/* ─── TECHNOLOGY ─────────────────────────────────────────── */
.tech-section {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.tech-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.tech-copy .section-h2 { margin-bottom: 20px; }
.tech-copy .section-body { margin-bottom: 36px; }
.tech-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.tech-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.tech-spec-row:last-child { border-bottom: none; }
.spec-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-val {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Architecture diagram */
.arch-diagram {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
}
.arch-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.arch-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.arch-layers {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.arch-layer {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  align-items: stretch;
}
.arch-layer-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.arch-layer-cells {
  display: flex;
  gap: 4px;
}
.arch-cell {
  flex: 1;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: default;
}
.arch-cell:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.arch-cell.hi {
  background: rgba(200,96,40,0.14);
  border-color: rgba(200,96,40,0.40);
  color: #E08148;
}
.arch-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  margin-left: 100px;
}
.arch-connector-line {
  width: 1px;
  height: 12px;
  background: var(--border-hi);
}
.arch-connector-arrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--faint);
  margin: 0 4px;
}

/* ─── PRODUCTS ───────────────────────────────────────────── */
.products-section {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.products-inner { max-width: 1280px; margin: 0 auto; }
.products-header { margin-bottom: 60px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: default;
}
.product-card:hover { border-color: var(--accent-dim); }
.product-visual {
  height: 200px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product-placeholder-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
/* SVG drone placeholders — simple geometric */
.product-card-body { padding: 28px; }
.product-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 0.95;
}
.product-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-specs-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.prod-spec {
  flex: 1;
  padding-right: 12px;
  border-right: 1px solid var(--border);
  margin-right: 12px;
}
.prod-spec:last-child { border-right: none; margin-right: 0; }
.prod-spec-k {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 2px;
}
.prod-spec-v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,96,40,0.09) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta-label::before, .cta-label::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--accent);
}
.cta-h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(56px, 6.4vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 48px 40px;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-brand-tag {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  max-width: 240px;
  margin-bottom: 24px;
}
.footer-clearance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--border);
  padding: 6px 12px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--faint);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-legal {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--faint);
  line-height: 1.6;
}
.footer-clearance-2 {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-indicator {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-hi);
  box-shadow: 0 0 8px var(--olive-hi);
}

/* ─── TWEAKS PANEL ───────────────────────────────────────── */
#tweaks-panel {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  width: 260px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
#tweaks-panel.open { display: block; }
.tweaks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.tweaks-close {
  background: none; border: none; color: var(--muted); cursor: pointer; font-size: 16px; line-height: 1;
}
.tweaks-close:hover { color: var(--text); }
.tweaks-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.tweak-row label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}
.tweak-accent-row {
  display: flex;
  gap: 8px;
}
.tweak-swatch {
  width: 28px; height: 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.tweak-swatch.active { border-color: var(--text); }
.tweak-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-hi);
  color: var(--text);
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  appearance: none;
}
.tweak-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tweak-toggle {
  width: 36px; height: 20px;
  background: var(--border);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.tweak-toggle.on { background: var(--accent); }
.tweak-toggle::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  top: 3px; left: 3px;
  transition: left 0.2s;
}
.tweak-toggle.on::after { left: 19px; }


/* ─── MOBILE MENU ────────────────────────────────────────── */
.nav-burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--border-hi);
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav-burger span:nth-child(1) { top: 11px; }
.nav-burger span:nth-child(2) { top: 17px; }
.nav-burger span:nth-child(3) { top: 23px; }
.nav-burger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-inner, .tech-inner { grid-template-columns: 1fr !important; gap: 60px !important; }
  .solutions-grid, .products-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr !important; }
  .reticle { width: 360px; height: 360px; opacity: 0.45; }
  .cap-strip { flex-wrap: wrap; gap: 20px; }
  .cap-item { flex: 1 1 45%; border-right: none; padding: 0 16px; }
}

@media (max-width: 820px) {
  nav { padding: 0 24px; height: 56px; }
  .nav-links {
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: var(--bg-2);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li a { display: block; padding: 18px 24px; font-size: 12px; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }

  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero-content { padding: 0 24px; max-width: 100%; margin-top: 0; }
  .reticle {
    position: relative;
    right: auto; top: auto;
    transform: none;
    margin: 40px auto 0;
    width: 280px; height: 280px;
    opacity: 0.7;
  }
  .reticle-data { font-size: 8px; }
  .reticle-data.tl { top: 50px; left: 50px; }
  .reticle-data.tr { top: 50px; right: 40px; }
  .reticle-data.bl { bottom: 50px; left: 50px; }
  .reticle-data.br { bottom: 50px; right: 40px; }

  .hero-trust {
    position: relative;
    bottom: auto; left: auto; right: auto;
    padding: 32px 24px 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  .trust-divider { display: none; }
  .hero-h1 { font-size: clamp(48px, 12vw, 72px) !important; }

  .stats-section, .solutions-section, .tech-section, .products-section, .cta-section {
    padding: 64px 24px !important;
  }
  .solutions-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .solutions-grid, .products-grid, .stats-grid { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; gap: 32px !important; }
  footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  .cap-strip { padding: 20px 24px; flex-direction: column; align-items: stretch; }
  .cap-item { flex: 1 1 100%; padding: 8px 0; border-right: none; }

  .arch-layer { grid-template-columns: 80px 1fr; }
  .arch-layer-cells { flex-wrap: wrap; }
  .arch-cell { flex: 1 1 45%; font-size: 8.5px; padding: 8px 10px; }
  .arch-connector { margin-left: 80px; }

  .tech-specs .spec-key, .tech-specs .spec-val { font-size: 9px; }

  .stat-num { font-size: 56px !important; }
  .section-h2 { font-size: clamp(36px, 9vw, 56px) !important; }
  .cta-h2 { font-size: clamp(40px, 11vw, 64px) !important; }

  .btn-primary, .btn-secondary { padding: 14px 22px; font-size: 11px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas button { justify-content: center; }
  .cta-btns { flex-direction: column; }
}

@media (max-width: 480px) {
  .reticle { width: 240px; height: 240px; }
  .reticle-data.tl, .reticle-data.tr, .reticle-data.bl, .reticle-data.br { display: none; }
  .product-visual { height: 160px; }
  .product-card-body { padding: 22px; }
  .footer-brand-name { font-size: 20px; }
}

.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); padding: 8px 14px; border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-link:hover { color: var(--accent); border-color: var(--accent-dim); background: rgba(200,96,40,0.06); }
.footer-social-link svg { flex-shrink: 0; }
.footer-bottom { gap: 20px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .footer-social { width: 100%; }
}
