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

  :root {
    --bg: #070c0e;
    --bg2: #0a1014;
    --bg3: #0d1518;
    --teal: #1c585b;
    --teal-dim: #174748;
    --teal-dark: #0f2f31;
    --orange: #f97316;
    --text: #e2e8f0;
    --text-dim: #b8c4d4;
    --text-muted: #7a8a9e;
    --border: rgba(28,88,91,0.25);
    --border-bright: rgba(28,88,91,0.55);
  }

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  html {
    scrollbar-width: auto;
    scrollbar-color: var(--teal-dark) var(--bg);
  }
  ::-webkit-scrollbar { width: 14px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--teal-dark); border-radius: 7px; border: 3px solid var(--bg); }

  /* ── NOISE OVERLAY ── */
  body::before {
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid var(--border);
    background: rgba(7,12,14,0.92);
    backdrop-filter: blur(12px);
  }

  .nav-brand { display: flex; flex-direction: column; gap: 4px; }
  .nav-logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
  }
  .nav-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: var(--teal-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
  }

  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a.active { color: var(--teal); }

  .btn-nav {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #39ff6a;
    border: 1px solid #39ff6a;
    padding: 8px 18px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 0 8px rgba(57,255,106,0.25);
  }
  .btn-nav:hover { background: rgba(57,255,106,0.08); box-shadow: 0 0 16px rgba(57,255,106,0.4); }

  /* Mobile CTA in nav menu - hidden on desktop */
  .nav-links .mobile-cta { display: none; }

  /* ── HERO ── */
  #hero {
    min-height: 0;
    height: calc(100vh - 57px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 48px 60px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-left {
    flex: 1;
    max-width: 560px;
    display: flex;
    flex-direction: column;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(45,212,191,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 90% 20%, rgba(45,212,191,0.04) 0%, transparent 60%),
                linear-gradient(180deg, #070c0e 0%, #0a1014 100%);
  }

  /* Canvas Radar */
  #radar-canvas {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    display: block;
  }

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

  .hero-tag-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
  }
  .hero-tag-line { width: 36px; height: 1px; background: var(--teal); }
  .hero-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    padding: 4px 10px;
    border: 1px solid var(--teal-dark);
    color: var(--teal);
  }
  .hero-tag-plain {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
  }

  .hero-logo-card {
    width: 200px; height: 180px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 36px;
    position: relative; z-index: 2;
    background: rgba(10,16,20,0.6);
  }
  .hero-logo-card-text {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.3em;
    color: var(--text);
    text-transform: uppercase;
  }

  .hero-headline {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 3.5vw, 48px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--text);
  }

  .hero-body {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 36px;
    position: relative; z-index: 2;
  }
  .hero-body strong { color: var(--text); font-weight: 600; }

  .hero-cta-row {
    display: flex; align-items: center; gap: 28px;
    position: relative; z-index: 2;
  }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 28px;
    background: #39ff6a;
    color: #040a0c;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 0 12px rgba(57,255,106,0.35);
  }
  .btn-primary:hover { background: #2edb5a; box-shadow: 0 0 20px rgba(57,255,106,0.55); }
  .btn-glow {
    transition: all 0.3s ease;
  }
  .btn-glow:hover {
    box-shadow: 0 0 20px rgba(57,255,106,0.6), 0 0 40px rgba(57,255,106,0.35), 0 0 60px rgba(57,255,106,0.15);
    text-shadow: 0 0 8px rgba(57,255,106,0.4);
  }

  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #39ff6a;
    text-decoration: none;
    border: 1px solid rgba(57,255,106,0.4);
    padding: 14px 24px;
    transition: all 0.2s;
    box-shadow: 0 0 8px rgba(57,255,106,0.15);
  }
  .btn-ghost:hover { border-color: #39ff6a; box-shadow: 0 0 16px rgba(57,255,106,0.35); }

  /* ── STATS BAR ── */
  .stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item {
    padding: 28px 36px;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1;
    font-style: normal;
  }
  .stat-value span { color: var(--teal); }
  .stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* ── SECTIONS ── */
  section { padding: 100px 48px; }

  .section-eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
  }
  .section-eyebrow-line { width: 28px; height: 1px; background: var(--teal); }
  .section-eyebrow-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--teal-dim);
    text-transform: uppercase;
  }

  .display-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 72px);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.02em;
  }
  .display-heading .solid { color: var(--text); }
  .display-heading .outline {
    color: transparent;
    -webkit-text-stroke: 2px #1c585b;
  }

  /* ── ABOUT ── */
  #about { background: var(--bg2); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-top: 60px;
  }
  .about-text p {
    font-size: 14px; line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 20px;
  }
  .about-text p strong { color: var(--text); }
  .subsidiary-badge {
    display: inline-flex; flex-direction: column;
    border: 1px solid var(--border);
    padding: 14px 20px;
    margin-top: 20px;
  }
  .subsidiary-badge .label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px; letter-spacing: 0.2em;
    color: var(--text-muted); text-transform: uppercase;
    margin-bottom: 4px;
  }
  .subsidiary-badge .value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 14px;
    letter-spacing: 0.15em; color: var(--teal);
    text-transform: uppercase;
  }

  /* System status panel */
  .status-panel {
    border: 1px solid var(--border);
    background: rgba(13,21,24,0.8);
    padding: 0;
  }
  .status-panel-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .status-panel-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px; letter-spacing: 0.2em;
    color: var(--text-muted); text-transform: uppercase;
  }
  .status-dot-green { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; }
  .status-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(45,212,191,0.06);
  }
  .status-row:last-child { border-bottom: none; }
  .status-key {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px; letter-spacing: 0.15em;
    color: var(--text-muted); text-transform: uppercase;
  }
  .status-val {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px; color: var(--text-dim);
    text-align: right;
  }
  .status-val.active { color: #22c55e; }
  .status-val.teal { color: var(--teal); }
  .status-val.orange { color: var(--orange); }

  /* ── CAPABILITIES ── */
  #capabilities { background: var(--bg); }
  .caps-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; margin: 40px 0 60px;
  }
  .caps-intro p { font-size: 14px; line-height: 1.7; color: var(--text-dim); }

  .caps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
  }
  .cap-card {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background 0.3s;
    text-align: center;
  }
  .cap-card:hover { background: rgba(57,255,20,0.03); }
  .cap-card:nth-child(3n) { border-right: none; }
  .cap-card:nth-last-child(-n+3) { border-bottom: none; }

  @keyframes neonPulse {
    0%, 100% {
      filter: drop-shadow(0 0 4px #39FF14) drop-shadow(0 0 8px #39FF14);
    }
    50% {
      filter: drop-shadow(0 0 10px #39FF14) drop-shadow(0 0 22px #39FF14) drop-shadow(0 0 40px rgba(57,255,20,0.3));
    }
  }
  @keyframes neonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
  .cap-icon {
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(57,255,20,0.06);
    border: 1px solid rgba(57,255,20,0.15);
    animation: neonPulse 3s ease-in-out infinite, neonFloat 4s ease-in-out infinite;
    color: #39FF14;
  }
  .cap-icon svg {
    width: 28px; height: 28px;
    stroke: #39FF14;
  }
  .cap-card:nth-child(1) .cap-icon { animation-delay: 0s, 0s; }
  .cap-card:nth-child(2) .cap-icon { animation-delay: 0.5s, 0.6s; }
  .cap-card:nth-child(3) .cap-icon { animation-delay: 1s, 1.2s; }
  .cap-card:nth-child(4) .cap-icon { animation-delay: 1.5s, 0.3s; }
  .cap-card:nth-child(5) .cap-icon { animation-delay: 2s, 0.9s; }
  .cap-card:nth-child(6) .cap-icon { animation-delay: 2.5s, 1.5s; }
  .cap-card:hover .cap-icon {
    filter: drop-shadow(0 0 14px #39FF14) drop-shadow(0 0 30px #39FF14) drop-shadow(0 0 50px rgba(57,255,20,0.4));
    background: rgba(57,255,20,0.12);
    border-color: rgba(57,255,20,0.4);
  }
  .cap-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 300; font-size: 18px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text); margin-bottom: 14px;
  }
  .cap-desc {
    font-size: 12px; line-height: 1.7;
    color: var(--text-muted); margin-bottom: 24px;
  }
  .cap-badge {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px; letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(57,255,106,0.6);
    color: #39ff6a;
    padding: 5px 10px;
    box-shadow: 0 0 6px rgba(57,255,106,0.2);
  }

  /* ── MISSIONS ── */
  #missions { background: var(--bg2); }
  .missions-list { margin-top: 48px; counter-reset: mission-counter; }
  .mission-row {
    display: grid; grid-template-columns: 40px 320px 1fr auto;
    align-items: center; gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    counter-increment: mission-counter;
  }
  .mission-row:first-child { border-top: 1px solid var(--border); }
  .mission-row:hover { background: rgba(45,212,191,0.02); box-shadow: 0 0 20px rgba(57,255,106,0.04); }
  .mission-row::before {
    content: "#" counter(mission-counter);
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(34,197,94,0.3);
    background: rgba(34,197,94,0.05);
    box-shadow: 0 0 8px rgba(34,197,94,0.2), 0 0 16px rgba(34,197,94,0.08);
    text-shadow: 0 0 6px rgba(34,197,94,0.5);
  }
  .mission-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 300; font-size: 14px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text);
    text-shadow: 0 0 8px rgba(226,232,240,0.15);
  }
  .mission-desc {
    font-size: 12px; color: var(--text-muted);
    line-height: 1.5;
  }
  .mission-status {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px; letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    white-space: nowrap;
  }
  .mission-status.operational {
    border: 1px solid rgba(34,197,94,0.4);
    color: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.3), 0 0 14px rgba(34,197,94,0.15), inset 0 0 6px rgba(34,197,94,0.08);
    text-shadow: 0 0 6px rgba(34,197,94,0.5);
  }
  .mission-status.restricted {
    border: 1px solid rgba(249,115,22,0.4);
    color: var(--orange);
    box-shadow: 0 0 6px rgba(249,115,22,0.3), 0 0 14px rgba(249,115,22,0.15), inset 0 0 6px rgba(249,115,22,0.08);
    text-shadow: 0 0 6px rgba(249,115,22,0.5);
  }

  /* ── PANORAMA AERO ── */
  #panorama { background: var(--bg3); }
  .panorama-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-top: 60px;
  }
  .panorama-text p {
    font-size: 14px; line-height: 1.8;
    color: var(--text-dim); margin-bottom: 20px;
  }
  .panorama-text .quote {
    font-style: italic; color: var(--text-dim);
  }
  .panorama-text .quote em { font-style: italic; color: var(--text); }
  .client-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 28px;
  }
  .client-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px; letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(57,255,106,0.6);
    color: #39ff6a;
    padding: 6px 12px;
    box-shadow: 0 0 6px rgba(57,255,106,0.15);
  }

  .panorama-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 12px 28px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #C9A84C;
    border: 1px solid #C9A84C;
    background: transparent;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  }
  .panorama-learn-more:hover {
    box-shadow: 0 0 12px rgba(201,168,76,0.6), 0 0 30px rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.1);
    color: #e0c560;
    border-color: #e0c560;
  }
  .panorama-learn-more svg {
    transition: transform 0.3s ease;
  }
  .panorama-learn-more:hover svg {
    transform: translateX(4px);
  }

  .panorama-services { display: flex; flex-direction: column; gap: 2px; }
  .service-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 2px;
  }
  .service-item:hover { border-color: var(--border-bright); background: rgba(45,212,191,0.02); }
  .service-icon { font-size: 18px; color: #C9A84C; margin-top: 2px; flex-shrink: 0; }
  .service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text); margin-bottom: 4px;
  }
  .service-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

  /* ── CONTACT ── */
  #contact { background: var(--bg); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-top: 60px;
  }
  .contact-left p {
    font-size: 14px; line-height: 1.7;
    color: var(--text-dim); margin-bottom: 36px;
  }
  .address-block { margin-bottom: 28px; }
  .address-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px; letter-spacing: 0.2em;
    text-transform: uppercase; color: #39ff6a;
    margin-bottom: 6px;
  }
  .address-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 15px;
    letter-spacing: 0.05em; color: var(--text);
  }
  .address-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
  .classified-notice {
    margin-top: 24px;
    display: inline-block;
    font-family: 'Barlow', sans-serif;
  }
  .classified-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
  }
  .classified-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 14px;
    letter-spacing: 0.1em; color: var(--orange);
    text-transform: uppercase;
  }
  .classified-sub { font-family: 'Barlow', sans-serif; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

  /* Form */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
  }
  .form-input, .form-select, .form-textarea {
    background: rgba(13,21,24,0.8);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--teal-dark);
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-muted);
  }
  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23475569'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
  }
  .form-select option { background: #0a1014; }
  .form-textarea { resize: vertical; min-height: 120px; }
  .btn-submit {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 16px;
    background: #1c585b;
    color: #e2e8f0;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s;
    width: 100%;
  }
  .btn-submit:hover { background: #174748; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg);
  }
  .footer-dash { width: 28px; height: 1px; background: var(--text-muted); }
  .footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px; color: var(--text-muted);
    letter-spacing: 0.1em; text-align: center;
    line-height: 1.8;
  }
  .footer-links {
    display: flex; gap: 28px; list-style: none;
  }
  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--teal); }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }

  /* Scanline effect on hero */
  #hero::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
    pointer-events: none;
  }

  /* Glow line top of each section */
  .section-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--teal-dark) 30%, var(--teal) 50%, var(--teal-dark) 70%, transparent 100%);
    opacity: 0.4;
  }

  /* ── BIOS ── */
  /* ── CITY DOME ── */
  .city-dome-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: transparent;
  }
  #city-canvas {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* ── BUBBLE MAP ── */
  .bubble-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
  }
  .bubble-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .bubble-sector-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: clamp(9px, 1.25vw, 18px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .sector-slashes {
    color: #39ff6a;
  }
  .bubble-sector-heading::before {
    display: none;
  }
  .bubble-sector-heading::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39ff6a;
    box-shadow: 0 0 8px #39ff6a, 0 0 16px #39ff6a, 0 0 32px rgba(57,255,106,0.5);
    flex-shrink: 0;
  }
  .bubble-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .bubble-item {
    padding: 14px 22px;
    border: 1px solid rgba(57,255,106,0.35);
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(57,255,106,0.1) 0%, rgba(57,255,106,0.03) 70%, transparent 100%);
    box-shadow: 0 0 12px rgba(57,255,106,0.25), 0 0 30px rgba(57,255,106,0.1), inset 0 0 12px rgba(57,255,106,0.06);
    font-family: 'Liberation Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    text-align: center;
    text-shadow: 0 0 8px rgba(57,255,106,0.15);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .bubble-column.visible .bubble-item {
    opacity: 1;
    transform: translateY(0);
    animation: bubbleFloat 4s ease-in-out infinite;
  }
  .bubble-item:nth-child(1) { transition-delay: 0s; }
  .bubble-item:nth-child(2) { transition-delay: 0.1s; margin-left: 30px; }
  .bubble-item:nth-child(3) { transition-delay: 0.2s; margin-left: 8px; }
  .bubble-item:nth-child(4) { transition-delay: 0.3s; margin-left: 36px; }
  .bubble-item:nth-child(5) { transition-delay: 0.4s; margin-left: 14px; }
  .bubble-item:nth-child(6) { transition-delay: 0.5s; margin-left: 28px; }
  .bubble-column.visible .bubble-item:nth-child(1) { animation-delay: 0s; }
  .bubble-column.visible .bubble-item:nth-child(2) { animation-delay: 0.6s; }
  .bubble-column.visible .bubble-item:nth-child(3) { animation-delay: 1.2s; }
  .bubble-column.visible .bubble-item:nth-child(4) { animation-delay: 1.8s; }
  .bubble-column.visible .bubble-item:nth-child(5) { animation-delay: 0.3s; }
  .bubble-column.visible .bubble-item:nth-child(6) { animation-delay: 0.9s; }
  @keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .bubble-item:hover {
    box-shadow: 0 0 20px rgba(57,255,106,0.45), 0 0 50px rgba(57,255,106,0.2), inset 0 0 18px rgba(57,255,106,0.1);
    border-color: rgba(57,255,106,0.6);
  }
  /* ── HAMBURGER BUTTON ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── TABLET ── */
  @media (max-width: 1024px) {
    nav { padding: 16px 24px; }
    section { padding: 60px 24px; }
    #hero { padding: 80px 24px 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .panorama-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .caps-intro { grid-template-columns: 1fr; gap: 24px; }
    .caps-grid { grid-template-columns: repeat(2, 1fr); }
    .cap-card:nth-child(2n) { border-right: none; }
    .cap-card:nth-child(3n) { border-right: 1px solid var(--border); }
    .cap-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
    .cap-card:nth-last-child(-n+2) { border-bottom: none; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
    .footer-dash { display: none; }
    .mission-row { grid-template-columns: 36px 1fr 1fr auto; gap: 16px; }
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 28px;
      background: #000000;
      backdrop-filter: none;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 150;
    }
    .nav-links.open { opacity: 1; pointer-events: auto; }

    nav { background: #070c0e; backdrop-filter: none; }
    .nav-links a {
      font-size: 18px;
      letter-spacing: 0.25em;
      padding: 12px 24px;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    /* Show CTA in mobile menu overlay */
    .btn-nav { display: none; }
    .nav-links .mobile-cta {
      display: list-item;
      list-style: none;
      margin-top: 8px;
    }
    .nav-links .mobile-cta a {
      color: #39ff6a;
      border: 1px solid #39ff6a;
      padding: 12px 24px;
      box-shadow: 0 0 8px rgba(57,255,106,0.25);
      font-size: 14px;
    }

    nav { padding: 14px 20px; }
    section { padding: 48px 20px; }
    #hero { padding: 80px 20px 40px; height: auto; min-height: auto; }

    .hero-inner { flex-direction: column; text-align: center; }
    .hero-left { max-width: 100%; align-items: center; }
    .hero-tag-row { justify-content: center; flex-wrap: wrap; }
    .hero-body { text-align: center; }
    .hero-cta-row { flex-direction: column; gap: 16px; width: 100%; align-items: center; }
    .btn-primary, .btn-ghost {
      width: 100%;
      max-width: 320px;
      text-align: center;
      justify-content: center;
      min-height: 48px;
      font-size: 12px;
    }
    .hero-logo-card { width: 160px; height: 140px; margin: 0 auto 28px; }
    #radar-canvas { width: 220px; height: 220px; margin: 0 auto; }

    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 20px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    .stat-value { font-size: 28px; }
    .stat-label { font-size: 10px; letter-spacing: 0.15em; }

    .about-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
    .about-text p { font-size: 15px; line-height: 1.9; }

    .caps-intro { grid-template-columns: 1fr; gap: 20px; margin: 24px 0 36px; }
    .caps-intro p { font-size: 15px; }
    .caps-grid { grid-template-columns: 1fr; }
    .cap-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .cap-card:last-child { border-bottom: none !important; }
    .cap-desc { font-size: 13px; line-height: 1.8; }

    .mission-row {
      grid-template-columns: 36px 1fr;
      gap: 8px 12px;
      padding: 16px 0;
    }
    .mission-row::before { width: 28px; height: 28px; font-size: 10px; grid-row: 1 / 3; }
    .mission-desc {
      grid-column: 2;
      font-size: 12px;
      line-height: 1.6;
    }
    .mission-title { white-space: normal; font-size: 13px; }
    .mission-status {
      grid-column: 2;
      justify-self: start;
      margin-top: -2px;
    }

    .bubble-map-container { grid-template-columns: 1fr; gap: 40px; }
    .bubble-item:nth-child(n) { margin-left: 0; }
    .bubble-item { font-size: 13px; padding: 14px 20px; }

    .panorama-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
    .panorama-text p { font-size: 15px; }
    .service-title { font-size: 13px; }
    .service-desc { font-size: 13px; line-height: 1.6; }

    .contact-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
    .contact-left p { font-size: 15px; }
    .form-row { grid-template-columns: 1fr; }
    .form-input, .form-select, .form-textarea {
      font-size: 16px;
      padding: 14px 16px;
      min-height: 48px;
    }
    .btn-submit { min-height: 48px; font-size: 12px; }
    .form-label { font-size: 10px; }

    .display-heading { font-size: clamp(28px, 8vw, 48px); }

    /* Improve section eyebrow readability */
    .section-eyebrow-text { font-size: 10px; }

    /* Status panel mobile */
    .status-key { font-size: 10px; }
    .status-val { font-size: 11px; }

    /* Address blocks */
    .address-label { font-size: 10px; }
    .address-value { font-size: 16px; }

    footer { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }
    .footer-dash { display: none; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .footer-links a { font-size: 11px; min-height: 44px; display: flex; align-items: center; }
    .footer-copy { font-size: 10px; }

    .city-dome-wrapper { height: 180px; }

    /* Client tags wrap better */
    .client-tag { font-size: 10px; padding: 8px 14px; }

    /* Subsidiary badge */
    .subsidiary-badge .label { font-size: 10px; }
    .subsidiary-badge .value { font-size: 15px; }

    /* Classified notice */
    .classified-label { font-size: 10px; }
    .classified-value { font-size: 15px; }
    .classified-sub { font-size: 12px; }
  }

  /* ── SMALL MOBILE ── */
  @media (max-width: 480px) {
    nav { padding: 12px 16px; }
    section { padding: 36px 16px; }
    #hero { padding: 70px 16px 32px; }
    .hero-headline { margin-bottom: 16px; }
    .hero-body { font-size: 14px; margin-bottom: 24px; }
    .stat-value { font-size: 24px; }
    .stat-item { padding: 16px 12px; }
    .cap-card { padding: 28px 20px; }
    .bubble-sector-heading { font-size: clamp(11px, 3vw, 14px); }
    .mission-status { font-size: 8px; padding: 5px 10px; }
    .mission-title { font-size: 12px; }
    #radar-canvas { width: 180px; height: 180px; }
    .hero-logo-card { width: 140px; height: 120px; }
    .hero-logo-card-text { font-size: 15px; }
    .panorama-learn-more { font-size: 10px; padding: 10px 20px; }
    .nav-links a { font-size: 16px; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .service-item { gap: 12px; padding: 16px; }
    .client-tag { font-size: 9px; padding: 6px 10px; }
    .bubble-item { font-size: 12px; padding: 12px 16px; }
  }
