/* =====================================================
   SCOUT . drone intelligence terminal.
   palette  : void #050a18 + Base-blue #0052ff + electric-eye #4ab9ff
   type     : Sora display + Inter Tight body + JetBrains Mono codes
   ===================================================== */

:root{
  --void:       #050a18;
  --void-2:     #0a1228;
  --void-3:     #0f1a36;
  --steel:      #1d2d50;
  --steel-2:    #2a3e6a;
  --base-blue:  #0052ff;
  --base-hi:    #2d6dff;
  --eye:        #4ab9ff;
  --eye-hi:     #88dcff;
  --signal:     #4ddc9d;
  --amber:      #ffb84a;
  --red:        #ff5775;
  --bone:       #c8d4ec;
  --bone-dim:   rgba(200,212,236,0.65);
  --bone-fade:  rgba(200,212,236,0.32);

  --f-display:  'Sora', -apple-system, sans-serif;
  --f-body:     'Inter Tight', 'Inter', system-ui, sans-serif;
  --f-mono:     'JetBrains Mono', 'Menlo', monospace;

  --pad-x:      clamp(20px, 4vw, 56px);
  --pad-y:      clamp(56px, 9vw, 110px);
  --container:  1320px;
}

[hidden]{ display: none !important; }
*{ box-sizing: border-box; }
html, body{
  margin: 0; padding: 0;
  background: var(--void);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body[data-state="loading"]{ opacity: 0; }
body[data-state="ready"]{ opacity: 1; transition: opacity 320ms ease; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }

/* ============ BACKGROUND ============ */
.bg{
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.bg-glow{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 28%, rgba(74,185,255,0.18), transparent 70%);
}
.bg-pulse{
  position: absolute;
  border: 1px solid rgba(74,185,255,0.18);
  border-radius: 50%;
  left: 50%; top: 35%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  animation: pulseRing 6s ease-out infinite;
  pointer-events: none;
}
.bg-pulse-2{ animation-delay: 3s; }
@keyframes pulseRing{
  0%{ transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  50%{ opacity: 0.5; }
  100%{ transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
.bg-floor{
  position: absolute; left: -10%; right: -10%; bottom: -10%; height: 60vh;
  background:
    repeating-linear-gradient(0deg, rgba(74,185,255,0.18) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(74,185,255,0.18) 0 1px, transparent 1px 48px);
  transform: perspective(900px) rotateX(60deg);
  transform-origin: 50% 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 70%);
  opacity: 0.7;
}
@media (prefers-reduced-motion: reduce){
  .bg-pulse{ animation: none; opacity: 0.06; }
  .bg-floor{ transform: none; height: 25vh; opacity: 0.18; }
}

main, header, footer, section{ position: relative; z-index: 1; }

/* ============ NAV ============ */
.nav{
  position: sticky; top: 0;
  display: grid; grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px var(--pad-x);
  background: rgba(5, 10, 24, 0.78);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(74,185,255,0.18);
  z-index: 30;
}
.nav-brand{
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--bone);
}
.nav-eye{
  width: 28px; height: 28px;
  color: var(--eye);
  filter: drop-shadow(0 0 8px rgba(74,185,255,0.55));
}
.nav-eye svg{ width: 100%; height: 100%; }
.nav-name{
  font-family: var(--f-display); font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em;
  color: var(--bone);
}
.nav-ver{
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--bone-fade);
  margin-left: 4px;
  letter-spacing: 0.04em;
}

.nav-right{
  justify-self: end;
  display: inline-flex; align-items: center; gap: 16px;
}
.nav-scan{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}
.nav-scan b{ color: var(--eye); font-weight: 500; }
.nav-scan-led{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
  animation: ledBlink 2.4s ease-in-out infinite;
}
@keyframes ledBlink{ 0%,100%{ opacity: 1; } 50%{ opacity: 0.5; } }
.nav-cta{
  padding: 9px 18px;
  background: var(--base-blue);
  color: white;
  font-family: var(--f-display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em;
  border-radius: 8px;
  border: 1px solid var(--base-hi);
  box-shadow: 0 0 16px rgba(0,82,255,0.4);
  transition: background 160ms, box-shadow 200ms;
}
.nav-cta:hover{ background: var(--base-hi); box-shadow: 0 0 24px rgba(45,109,255,0.6); }

@media (max-width: 720px){
  .nav-scan{ display: none; }
}

/* ============ HERO + DASHBOARD ============ */
.hero{
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(36px, 5vw, 60px);
  text-align: center;
}
.hero-head{
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.hero-kicker{
  font-family: var(--f-mono); font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--eye);
  margin: 0 0 16px;
}
.hero-title{
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: 1; letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0 0 16px;
  text-shadow: 0 0 32px rgba(74,185,255,0.18);
}
.hero-sub{
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--bone-dim);
  margin: 0;
}

/* dashboard */
.dash{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 22px);
  text-align: left;
  margin-bottom: clamp(28px, 4vw, 44px);
}
@media (min-width: 1080px){
  .dash{
    grid-template-columns: 300px 1fr 300px;
  }
}
.dash-col{
  display: flex; flex-direction: column;
  gap: 18px;
}
.dash-col-c{
  position: relative;
  min-height: 540px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding-top: 6px;
}

/* HUD panel base */
.panel{
  background: linear-gradient(180deg, rgba(15,26,54,0.85) 0%, rgba(10,18,40,0.85) 100%);
  border: 1px solid var(--steel-2);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(74,185,255,0.12), 0 0 28px rgba(74,185,255,0.06);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.panel-head{
  padding: 10px 14px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--eye);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(74,185,255,0.18);
  background: rgba(74,185,255,0.05);
}
.panel-body{ padding: 14px; }

/* SCAN CYCLE */
.panel-scan-body{
  display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: center;
}
.scan-radar{ width: 120px; height: 120px; }
#radarSweepGroup{ transform-origin: 60px 60px; animation: radarSpin 6s linear infinite; }
@keyframes radarSpin{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ #radarSweepGroup{ animation: none; } }
.scan-radar circle.contact{ fill: var(--eye-hi); filter: drop-shadow(0 0 4px var(--eye-hi)); animation: contactBlink 0.8s ease-out forwards; }
@keyframes contactBlink{ 0%{ opacity: 1; transform: scale(1.6); } 100%{ opacity: 0; transform: scale(1); } }

.scan-meta-big{
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; color: var(--bone); letter-spacing: -0.01em;
}
.scan-meta-sub{
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--bone-fade); text-transform: uppercase;
  margin-top: 2px; margin-bottom: 8px;
}
.scan-times{ list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.scan-times li{
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--bone-dim);
  display: inline-flex; align-items: center; gap: 6px;
}
.scan-dot{
  width: 6px; height: 6px; border-radius: 50%; background: var(--bone-fade);
}
.scan-dot-active{ background: var(--eye-hi); box-shadow: 0 0 6px var(--eye-hi); animation: ledBlink 1.4s ease-in-out infinite; }

/* ANALYZING */
.ana-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ana-row{ display: grid; grid-template-columns: 130px 1fr; gap: 10px; align-items: center; }
.ana-name{
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--bone-dim); text-transform: uppercase;
}
.ana-bar{
  position: relative; height: 5px;
  background: rgba(74,185,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.ana-bar-fill{
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--base-blue), var(--eye));
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(74,185,255,0.4);
  transition: width 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* INTELLIGENCE LAYERS */
.lay-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.lay-row{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--bone-dim); text-transform: uppercase;
}
.lay-tick{
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(74,185,255,0.4);
  position: relative;
  flex-shrink: 0;
}
.lay-tick::after{
  content: ""; position: absolute; inset: 3px;
  background: var(--bone-fade);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 300ms ease, background 300ms ease;
}
.lay-row.is-on .lay-tick::after{ background: var(--eye); transform: scale(1); box-shadow: 0 0 6px var(--eye); }
.lay-row.is-on{ color: var(--bone); }

/* SCORE GAUGE */
.gauge{ position: relative; width: 120px; height: 120px; margin: 0 auto 12px; }
.gauge-svg{ width: 100%; height: 100%; transition: stroke-dashoffset 1500ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.gauge-num{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; color: var(--bone);
  font-size: 30px; letter-spacing: -0.01em;
}
.gauge-num i{ font-size: 11px; font-style: normal; color: var(--bone-fade); margin-left: 4px; align-self: flex-end; padding-bottom: 6px; }

.score-bars{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.score-bars li{
  display: grid; grid-template-columns: 78px 1fr 38px; gap: 8px; align-items: center;
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--bone-dim); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.score-bars li b{ text-align: right; color: var(--bone); font-weight: 600; font-size: 12.5px; }
.score-bar{
  position: relative; height: 5px;
  background: rgba(74,185,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill{
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--base-blue), var(--eye-hi));
  box-shadow: 0 0 6px rgba(74,185,255,0.5);
  border-radius: 3px;
  transition: width 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* CENTER: target + drone + floor */
.target{
  margin-bottom: 16px;
  display: inline-grid; gap: 4px; justify-items: center;
}
.target-tag{
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--eye); text-transform: uppercase;
}
.target-ca{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(5,10,24,0.85);
  border: 1px solid var(--eye);
  border-radius: 6px;
  font-family: var(--f-mono); font-size: 12.5px;
  color: var(--bone);
  box-shadow: 0 0 14px rgba(74,185,255,0.2);
  transition: box-shadow 160ms;
}
.target-ca:hover{ box-shadow: 0 0 22px rgba(74,185,255,0.42); }
.target-ca.is-copied{ border-color: var(--signal); color: var(--signal); }
.target-ca-tick{ width: 12px; height: 12px; color: var(--eye); }
.target-hint{
  font-family: var(--f-mono); font-size: 10px;
  color: var(--bone-fade); letter-spacing: 0.04em;
}

.drone-wrap{
  position: relative;
  width: clamp(220px, 28vw, 320px);
  height: clamp(220px, 28vw, 320px);
  display: flex; align-items: center; justify-content: center;
  margin: 8px 0 0;
}
.drone-img{
  width: 100%; height: auto;
  filter: drop-shadow(0 0 32px rgba(74,185,255,0.4));
  animation: droneHover 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes droneHover{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce){ .drone-img{ animation: none; } }

.drone-beam{
  position: absolute;
  left: 50%; top: 60%;
  width: 70%; height: 240px;
  background: linear-gradient(180deg, rgba(74,185,255,0.6) 0%, rgba(74,185,255,0) 100%);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  transform: translate(-50%, 0);
  opacity: 0.78;
  z-index: 1;
  animation: beamPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes beamPulse{ 0%,100%{ opacity: 0.65; } 50%{ opacity: 0.9; } }
.drone-ring{
  position: absolute;
  left: 50%; top: calc(60% + 200px);
  width: 220px; height: 60px;
  border: 1.4px solid var(--eye);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  box-shadow: 0 0 24px rgba(74,185,255,0.4);
  pointer-events: none;
}

.floor{
  position: relative;
  width: 100%;
  height: 160px;
  margin-top: -20px;
}
.floor-grid{
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(74,185,255,0.18) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(74,185,255,0.18) 0 1px, transparent 1px 32px);
  transform: perspective(420px) rotateX(70deg);
  transform-origin: 50% 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 90%);
}
.floor-docs{
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: center;
  gap: 14px;
  padding-top: 30px;
  transform: perspective(560px) rotateX(56deg);
  transform-origin: 50% 0;
}
.floor-doc{
  width: 38px; height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(220,232,255,0.85));
  border: 1px solid rgba(74,185,255,0.3);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 14px rgba(74,185,255,0.18);
  flex-shrink: 0;
}
.floor-doc::before{
  content: "";
  position: absolute; left: 6px; top: 12px; right: 6px; height: 1px;
  background: var(--base-blue); opacity: 0.45;
  box-shadow: 0 4px 0 -0.6px var(--base-blue), 0 8px 0 -0.6px var(--base-blue);
}
.floor-doc::after{
  content: ""; position: absolute; left: 8px; top: 4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--base-blue);
}
.floor-doc.is-flag::after{ background: var(--red); }

/* CTA row */
.hero-cta-row{
  display: inline-flex; align-items: center; gap: 22px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-primary{
  padding: 14px 30px;
  background: var(--base-blue);
  color: white;
  font-family: var(--f-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em;
  border-radius: 10px;
  border: 1px solid var(--base-hi);
  box-shadow: 0 0 28px rgba(0,82,255,0.4);
  transition: background 160ms, box-shadow 200ms, transform 160ms;
}
.cta-primary:hover{ background: var(--base-hi); box-shadow: 0 0 38px rgba(45,109,255,0.6); transform: translateY(-2px); }
.cta-ghost{
  font-family: var(--f-mono); font-size: 12.5px;
  color: var(--eye);
  border-bottom: 1px dashed rgba(74,185,255,0.5);
  padding-bottom: 2px;
  transition: color 160ms, border-color 160ms;
}
.cta-ghost:hover{ color: var(--eye-hi); border-color: var(--eye-hi); }

/* ============ SECTION CHROME ============ */
.section{
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}
.section::before{
  content: "";
  position: absolute;
  top: 0; left: var(--pad-x); right: var(--pad-x);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,185,255,0.35) 30%, rgba(74,185,255,0.35) 70%, transparent);
}
.section-head{ margin-bottom: clamp(32px, 5vw, 56px); }
.section-tag{
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--eye);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title{
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 0 12px;
}
.section-sub{
  font-size: clamp(15px, 1.2vw, 16px);
  color: var(--bone-dim);
  margin: 0;
  max-width: 760px;
}
.section-foot{
  margin-top: 24px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--bone-fade);
}

/* ============ FEED ============ */
.feed-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.feed-card{
  background: linear-gradient(180deg, rgba(15,26,54,0.85), rgba(10,18,40,0.85));
  border: 1px solid var(--steel-2);
  border-radius: 14px;
  padding: 18px 18px 16px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.feed-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(74,185,255,0.18);
  border-color: rgba(74,185,255,0.4);
}
.feed-card-head{
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.feed-id{
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--bone-fade);
  letter-spacing: 0.04em;
}
.feed-name{
  font-family: var(--f-display); font-weight: 700;
  font-size: 17px;
  color: var(--bone);
}
.feed-type{
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--eye);
  padding: 2px 6px;
  background: rgba(74,185,255,0.08);
  border-radius: 4px;
}
.feed-watch{
  margin-left: auto;
  font-family: var(--f-mono); font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feed-watch[data-watch="verified"]{ background: rgba(77,220,157,0.14); color: var(--signal); border: 1px solid rgba(77,220,157,0.42); }
.feed-watch[data-watch="follow"]{ background: rgba(74,185,255,0.14); color: var(--eye); border: 1px solid rgba(74,185,255,0.42); }
.feed-watch[data-watch="watch with caution"]{ background: rgba(255,184,74,0.14); color: var(--amber); border: 1px solid rgba(255,184,74,0.42); }
.feed-watch[data-watch="ignore"]{ background: rgba(255,87,117,0.14); color: var(--red); border: 1px solid rgba(255,87,117,0.42); }

.feed-overall{
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.feed-overall b{
  font-family: var(--f-display); font-weight: 700; font-size: 32px;
  color: var(--bone); letter-spacing: -0.015em;
}
.feed-overall i{
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--bone-fade); font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-bars{ list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 6px; }
.feed-bars li{
  display: grid; grid-template-columns: 64px 1fr 28px; gap: 8px; align-items: center;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feed-bars li b{ text-align: right; color: var(--bone); font-weight: 500; font-size: 11px; }
.feed-bar{ position: relative; height: 4px; background: rgba(74,185,255,0.08); border-radius: 2px; overflow: hidden; }
.feed-bar-fill{ display: block; height: 100%; background: linear-gradient(90deg, var(--base-blue), var(--eye-hi)); border-radius: 2px; box-shadow: 0 0 4px rgba(74,185,255,0.4); }

.feed-summary{
  font-size: 13px; color: var(--bone-dim); line-height: 1.55;
  margin: 0 0 12px;
  border-left: 2px solid var(--eye);
  padding-left: 10px;
}
.feed-flags{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  font-family: var(--f-mono); font-size: 11.5px;
}
.feed-flag-col h5{
  font-family: var(--f-mono); font-size: 10px;
  margin: 0 0 6px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.feed-flag-col.feed-flag-red h5{ color: var(--red); }
.feed-flag-col.feed-flag-green h5{ color: var(--signal); }
.feed-flag-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; color: var(--bone-dim); }
.feed-flag-list li{ position: relative; padding-left: 14px; font-size: 11.5px; }
.feed-flag-list li::before{ content: "."; position: absolute; left: 0; color: var(--bone-fade); }
.feed-flag-red li::before{ color: var(--red); content: "x"; }
.feed-flag-green li::before{ color: var(--signal); content: "+"; }

.feed-foot{
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(74,185,255,0.18);
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--bone-fade);
  letter-spacing: 0.04em;
}
.feed-foot-live[data-live="true"]{ color: var(--signal); }
.feed-foot-live[data-live="false"]{ color: var(--amber); }
.feed-foot-target{
  font-family: var(--f-mono); font-size: 10px;
  color: var(--bone-dim);
}

/* ============ HOW ============ */
.how-list{
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.how-step{
  background: rgba(10,18,40,0.65);
  border: 1px solid var(--steel-2);
  border-radius: 12px;
  padding: 20px 18px 18px;
}
.how-step-num{
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--eye); margin-bottom: 12px;
}
.how-step h3{
  font-family: var(--f-display); font-weight: 600;
  font-size: 17px; margin: 0 0 8px;
  color: var(--bone);
}
.how-step p{
  font-size: 13.5px; color: var(--bone-dim);
  margin: 0; line-height: 1.55;
}

/* ============ CHECKS ============ */
.checks-grid{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.check-col{
  background: rgba(10,18,40,0.65);
  border: 1px solid var(--steel-2);
  border-radius: 12px;
  padding: 22px 22px 20px;
}
.check-col h3{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em;
  color: var(--eye);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.check-col ul{
  list-style: none; padding: 0; margin: 0; display: grid; gap: 8px;
}
.check-col li{
  position: relative; padding-left: 18px;
  font-size: 13.5px; color: var(--bone-dim);
}
.check-col li::before{
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--eye);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--eye);
}

/* ============ ANATOMY ============ */
.ana-card{
  background: linear-gradient(180deg, rgba(15,26,54,0.92), rgba(10,18,40,0.92));
  border: 1px solid var(--steel-2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 32px rgba(74,185,255,0.06);
}
.ana-card-head{
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(74,185,255,0.18);
}
.ana-card-id{
  font-family: var(--f-mono); font-size: 11px; color: var(--bone-fade);
  letter-spacing: 0.06em;
}
.ana-card-name{
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px;
  color: var(--bone);
}
.ana-card-type{
  font-family: var(--f-mono); font-size: 11px;
  color: var(--eye);
  padding: 2px 8px;
  background: rgba(74,185,255,0.08);
  border-radius: 4px;
}
.ana-card-watch{
  margin-left: auto;
  font-family: var(--f-mono); font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ana-card-watch-watch{ background: rgba(255,184,74,0.14); color: var(--amber); border: 1px solid rgba(255,184,74,0.42); }
.ana-card-grid{
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 780px){ .ana-card-grid{ grid-template-columns: 240px 1fr; } }

.ana-score{
  font-family: var(--f-display); font-weight: 700;
  font-size: 56px;
  color: var(--bone);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.ana-score span{
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--bone-fade);
  letter-spacing: 0.1em;
  margin-left: 4px;
  vertical-align: top;
  padding-top: 8px;
}
.ana-score-bars{
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 8px;
}
.ana-score-bars li{
  display: grid; grid-template-columns: 70px 1fr 28px; gap: 8px; align-items: center;
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--bone-dim); letter-spacing: 0.04em;
}
.ana-score-bars li b{ text-align: right; color: var(--bone); }
.ana-sb{ position: relative; height: 4px; background: rgba(74,185,255,0.08); border-radius: 2px; overflow: hidden; }
.ana-sb-fill{ display: block; height: 100%; background: linear-gradient(90deg, var(--base-blue), var(--eye-hi)); border-radius: 2px; }

.ana-card-summary h4{
  font-family: var(--f-mono); font-size: 11px;
  color: var(--eye);
  margin: 0 0 8px;
  letter-spacing: 0.12em;
}
.ana-card-summary p{
  font-size: 14px; color: var(--bone-dim);
  margin: 0 0 18px; line-height: 1.55;
}
.ana-flags{
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.ana-flag-col h5{
  font-family: var(--f-mono); font-size: 10.5px;
  margin: 0 0 8px;
  letter-spacing: 0.12em;
}
.ana-flag-red h5{ color: var(--red); }
.ana-flag-green h5{ color: var(--signal); }
.ana-flag-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.ana-flag-list li{
  position: relative; padding-left: 16px;
  font-size: 13px; color: var(--bone-dim);
}
.ana-flag-list li::before{ content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; }
.ana-flag-red li::before{ background: var(--red); box-shadow: 0 0 4px var(--red); }
.ana-flag-green li::before{ background: var(--signal); box-shadow: 0 0 4px var(--signal); }

/* ============ TIERS ============ */
.tier-grid{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.tier{
  background: rgba(10,18,40,0.65);
  border: 1px solid var(--steel-2);
  border-radius: 12px;
  padding: 20px;
  display: grid; gap: 12px;
  position: relative;
}
.tier-num{
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--bone-fade);
  letter-spacing: 0.16em;
}
.tier h3{
  font-family: var(--f-display); font-weight: 700;
  font-size: 18px; color: var(--bone);
  margin: 0; letter-spacing: 0.04em;
}
.tier-thresh{
  font-family: var(--f-mono); font-size: 13px;
  color: var(--eye);
  margin: 0;
}
.tier ul{
  list-style: none; padding: 0; margin: 0; display: grid; gap: 6px;
  border-top: 1px dashed rgba(74,185,255,0.18);
  padding-top: 12px;
}
.tier li{
  position: relative; padding-left: 14px;
  font-size: 13px; color: var(--bone-dim);
}
.tier li::before{ content: "+"; position: absolute; left: 0; color: var(--eye); }

/* ============ WHY ============ */
.why-body{
  max-width: 820px;
}
.why-body p{
  font-size: 15.5px; color: var(--bone-dim); line-height: 1.7;
  margin: 0 0 14px;
}
.why-pull{
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px;
  color: var(--bone);
  border-left: 3px solid var(--eye);
  padding-left: 18px;
  margin-top: 24px;
  line-height: 1.35;
}

/* ============ FOOTER ============ */
.foot{
  max-width: var(--container);
  margin: clamp(40px, 6vw, 80px) auto 40px;
  padding: 32px var(--pad-x) 0;
  border-top: 1px solid rgba(74,185,255,0.18);
}
.foot-mark{
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.foot-mark-eye{
  width: 28px; height: 28px;
  color: var(--eye);
  filter: drop-shadow(0 0 8px rgba(74,185,255,0.55));
}
.foot-mark-eye svg{ width: 100%; height: 100%; }
.foot-mark-name{
  display: inline-flex; flex-direction: column;
}
.foot-mark-name b{ font-family: var(--f-display); font-size: 15px; letter-spacing: 0.04em; color: var(--bone); }
.foot-mark-name i{ font-style: normal; font-family: var(--f-mono); font-size: 11px; color: var(--bone-dim); letter-spacing: 0.04em; }
.foot-disc{
  font-size: 12px; color: var(--bone-fade); line-height: 1.6;
  margin: 0; max-width: 940px;
}

/* ============ COMMS CLUSTER (bottom-left fixed) ============ */
.comms{
  position: fixed;
  left: 20px; bottom: 20px;
  display: flex; flex-direction: column;
  gap: 10px;
  z-index: 40;
}
.comms-btn{
  width: 40px; height: 40px;
  background: rgba(10,18,40,0.85);
  border: 1px solid rgba(74,185,255,0.32);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: border-color 160ms, box-shadow 200ms, transform 160ms;
}
.comms-btn:hover{
  border-color: var(--eye-hi);
  box-shadow: 0 0 18px rgba(74,185,255,0.42);
  transform: scale(1.06);
}
.comms-btn svg{ width: 20px; height: 20px; }
@media (max-width: 720px){
  .comms{ left: 14px; bottom: 14px; gap: 8px; }
  .comms-btn{ width: 36px; height: 36px; }
}

/* ============ WAITLIST MODAL ============ */
.wmodal{
  position: fixed; inset: 0;
  background: rgba(2, 6, 16, 0.78);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
  z-index: 60;
}
.wmodal.is-on{ display: flex; }
.wmodal-inner{
  position: relative;
  max-width: 480px; width: 100%;
  background: var(--void-2);
  border: 1px solid var(--eye);
  border-radius: 16px;
  padding: 28px 28px 22px;
  box-shadow: 0 0 60px rgba(74,185,255,0.22);
}
.wmodal-close{
  position: absolute; right: 12px; top: 10px;
  width: 28px; height: 28px;
  color: var(--bone-dim);
}
.wmodal-close:hover{ color: var(--eye); }
.wmodal-close svg{ width: 16px; height: 16px; }
.wmodal-eyebrow{
  display: inline-block;
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--eye);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.wmodal-title{
  font-family: var(--f-display); font-weight: 700;
  font-size: 24px;
  color: var(--bone);
  margin: 0 0 12px;
}
.wmodal-sub{
  font-size: 14px; color: var(--bone-dim);
  margin: 0 0 18px;
}
.wmodal-form{ display: grid; gap: 10px; }
.wmodal-label{
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--bone-fade);
}
.wmodal-optional{ color: var(--bone-fade); }
.wmodal-input{
  width: 100%; padding: 11px 12px;
  background: var(--void);
  border: 1px solid var(--steel-2);
  border-radius: 8px;
  color: var(--bone);
  font-family: var(--f-mono); font-size: 14px;
}
.wmodal-input:focus{
  outline: none;
  border-color: var(--eye);
  box-shadow: 0 0 12px rgba(74,185,255,0.32);
}
.wmodal-submit{
  margin-top: 6px;
  padding: 12px 18px;
  background: var(--base-blue);
  color: white;
  font-family: var(--f-display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em;
  border-radius: 8px;
  border: 1px solid var(--base-hi);
  transition: background 160ms;
}
.wmodal-submit:hover{ background: var(--base-hi); }
.wmodal-submit:disabled{ opacity: 0.6; cursor: not-allowed; }
.wmodal-foot{
  margin: 16px 0 0;
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--bone-fade);
  letter-spacing: 0.04em;
}
.wmodal-success{
  display: grid; gap: 8px;
  padding: 14px 16px;
  background: rgba(77, 220, 157, 0.08);
  border: 1px solid var(--signal);
  border-radius: 8px;
}
.wmodal-success-tag{
  font-family: var(--f-mono); font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--signal);
}
.wmodal-success-line{ margin: 0; font-size: 14px; color: var(--bone); }

/* ============ TOAST ============ */
.toast{
  position: fixed;
  left: 50%; bottom: 24px;
  transform: translate(-50%, 24px);
  padding: 10px 18px;
  background: var(--void-3);
  border: 1px solid var(--eye);
  border-radius: 10px;
  color: var(--bone);
  font-family: var(--f-mono); font-size: 13px;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  z-index: 80;
  pointer-events: none;
}
.toast.is-on{ transform: translate(-50%, 0); opacity: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 720px){
  .hero-title{ font-size: 42px; }
  .dash-col-c{ min-height: auto; }
  .drone-wrap{ width: 220px; height: 220px; }
  .floor{ height: 80px; }
  .ana-card-grid{ grid-template-columns: 1fr; }
}


/* hero banner (the user's full dashboard PNG, dominant hero visual) */
.hero-banner{
  position: relative;
  max-width: var(--container);
  margin: 0 auto 22px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(74,185,255,0.16), inset 0 0 0 1px rgba(74,185,255,0.22);
}
.hero-banner img{
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(74,185,255,0.18));
}
.hero-banner-pulse{
  position: absolute;
  left: 50%; top: 50%;
  width: 50%; height: 50%;
  border: 1px solid rgba(74,185,255,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 6s ease-out infinite;
  pointer-events: none;
}
.hero-banner-corner{
  position: absolute;
  width: 22px; height: 22px;
  background:
    linear-gradient(var(--eye), var(--eye)) 50% 0 / 1.4px 100% no-repeat,
    linear-gradient(90deg, var(--eye), var(--eye)) 0 50% / 100% 1.4px no-repeat;
  pointer-events: none;
}
.hero-banner-corner-tl{ left: 8px; top: 8px; }
.hero-banner-corner-tr{ right: 8px; top: 8px; }
.hero-banner-corner-bl{ left: 8px; bottom: 8px; }
.hero-banner-corner-br{ right: 8px; bottom: 8px; }

.hero-live-row{
  max-width: var(--container);
  margin: 0 auto 30px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  text-align: center;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
  padding: 12px 20px;
  background: rgba(10,18,40,0.5);
  border: 1px solid rgba(74,185,255,0.2);
  border-radius: 10px;
}
.hero-live-row b{ color: var(--eye); font-weight: 500; }
.hero-live-text{ display: inline-flex; align-items: center; }
.hero-live-led{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
  animation: ledBlink 2.4s ease-in-out infinite;
  margin-right: 6px;
}
.hero-live-sep{ color: var(--bone-fade); }

/* live command center section frame */
.section-live .dash{
  max-width: none;
}
