/* ==========================================================================
   SHADOW AI // CYBERPUNK MILITARY HUD THEME & RADAR STYLING
   ========================================================================== */

:root {
  --bg-pitch: #030508;
  --bg-panel: #070c0a;
  --bg-panel-header: #0a140f;
  --land-fill: #080f0a;
  --land-border: #00ff66;
  --accent-green: #00ff66;
  --accent-green-dim: rgba(0, 255, 102, 0.15);
  --accent-green-glow: rgba(0, 255, 102, 0.4);
  --accent-cyan: #00e5ff;
  --accent-cyan-glow: rgba(0, 229, 255, 0.5);
  --accent-magenta: #a855f7;
  --accent-magenta-glow: rgba(168, 85, 247, 0.5);
  --text-main: #e2fced;
  --text-dim: #7ca88e;
  --text-muted: #436351;
  --border-subtle: rgba(0, 255, 102, 0.2);
  --border-bright: rgba(0, 255, 102, 0.6);
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Orbitron', monospace;
}

/* Reset & Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-pitch);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ──────────────────────────────────────────────────────────────────────────
   CRT SCANLINES & BACKGROUND GRID
   ────────────────────────────────────────────────────────────────────────── */
.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.03),
    rgba(0, 255, 0, 0.01),
    rgba(0, 0, 255, 0.03)
  );
  background-size: 100% 3px, 3px 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

.tactical-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(var(--accent-green-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-green-dim) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   TOP HUD BAR
   ────────────────────────────────────────────────────────────────────────── */
.hud-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: rgba(4, 8, 6, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-emblem {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.75));
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
  vertical-align: middle;
  flex-shrink: 0;
}

.brand-logo-emblem:hover {
  transform: scale(1.15) rotate(4deg);
  filter: drop-shadow(0 0 14px #00e5ff) drop-shadow(0 0 22px rgba(0, 255, 102, 0.9));
}

.status-blip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-blip 1.8s infinite;
}

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

.brand-glitch {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.hud-badge {
  font-size: 11px;
  color: var(--text-dim);
  background: rgba(0, 255, 102, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid rgba(0, 255, 102, 0.2);
}

.hud-telemetry-cluster {
  display: flex;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .hud-telemetry-cluster { display: none; }
}

.dim { color: var(--text-muted); }
.accent-green { color: var(--accent-green); }
.accent-cyan { color: var(--accent-cyan); }
.accent-magenta { color: var(--accent-magenta); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent-green);
  text-shadow: 0 0 8px var(--accent-green-glow);
}

.btn-terminal-sm {
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-terminal-sm:hover {
  background: rgba(0, 255, 102, 0.2);
  border-color: var(--accent-green);
  box-shadow: 0 0 12px var(--accent-green-dim);
}

/* ──────────────────────────────────────────────────────────────────────────
   MAIN CONTAINER & HERO
   ────────────────────────────────────────────────────────────────────────── */
.main-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.hero-section {
  text-align: center;
  padding: 40px 0 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-green);
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--border-subtle);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 0 25px rgba(0, 255, 102, 0.25);
}

@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
}

.gradient-text {
  background: linear-gradient(90deg, #00ff66 0%, #00e5ff 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 15px;
  color: var(--text-dim);
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--accent-green);
  color: #030508;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 24px rgba(0, 255, 102, 0.5);
  transition: all 0.25s;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.8);
}

.btn-cta-secondary {
  background: rgba(0, 255, 102, 0.05);
  border: 1px solid var(--border-bright);
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta-secondary:hover {
  background: rgba(0, 255, 102, 0.15);
  box-shadow: 0 0 16px var(--accent-green-dim);
}

/* ──────────────────────────────────────────────────────────────────────────
   CYBERPUNK GEO-LOCATION RADAR SECTION (SPECIFICATION)
   ────────────────────────────────────────────────────────────────────────── */
.radar-wrapper-section {
  margin: 40px 0 80px;
}

.terminal-panel {
  background: var(--bg-panel);
  border: 1px solid rgba(0, 255, 102, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

/* Top bar styled like: //SYSTEM HUD: GEO-VECTOR TRACKER [ACTIVE SESSION] // PROTOCOL: ENCRYPTED */
.terminal-header {
  height: 44px;
  background: var(--bg-panel-header);
  border-bottom: 1px solid rgba(0, 255, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.term-lights {
  display: flex;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot.red { background: #ff4757; }
.dot.yellow { background: #ffa502; }
.dot.green { background: #2ed573; box-shadow: 0 0 6px #2ed573; }

.terminal-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-green);
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}

@media (max-width: 768px) {
  .terminal-title { font-size: 10px; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.freq-tag {
  font-size: 11px;
  color: var(--text-dim);
}

.btn-hud-locate {
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-hud-locate:hover {
  background: var(--accent-green);
  color: #030508;
  box-shadow: 0 0 12px var(--accent-green);
}

/* VIEWPORT CONTAINER */
.radar-viewport {
  position: relative;
  width: 100%;
  height: 480px;
  background: #020403;
  overflow: hidden;
}

/* Map Grid Overlay inside the terminal */
.map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--accent-green-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-green-dim) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* Rotating Radar Sweep Beam */
.radar-sweep-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  margin-top: -450px;
  margin-left: -450px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(0, 255, 102, 0.15) 0deg,
    rgba(0, 255, 102, 0.05) 30deg,
    transparent 60deg
  );
  pointer-events: none;
  z-index: 2;
  animation: radarSweep 8s linear infinite;
  opacity: 0.7;
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* SVG D3 Canvas */
#world-map-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* SVG Land styling: Dark monochrome world map vector (#050505 to #0a0f0a) with glowing phosphor green borders (#00ff66, 1px stroke) */
.country-path {
  fill: #060e08;
  stroke: #00ff66;
  stroke-width: 0.8px;
  transition: fill 0.3s, stroke 0.3s;
}

.country-path:hover {
  fill: #0c1a10;
  stroke: #33ff88;
}

/* Flight / Data Arcs: flowing dashed strokes */
.data-arc {
  fill: none;
  stroke: var(--accent-cyan);
  stroke-width: 1.4px;
  stroke-dasharray: 6, 6;
  animation: dashArc 2.5s linear infinite;
  opacity: 0.75;
}

@keyframes dashArc {
  to {
    stroke-dashoffset: -24;
  }
}

.data-arc.secondary {
  stroke: var(--accent-magenta);
  stroke-width: 1.2px;
  animation-duration: 3.5s;
}

/* Global Tech Hub Nodes */
.hub-node {
  fill: var(--accent-magenta);
  cursor: pointer;
  transition: transform 0.2s;
}

.hub-pulse {
  fill: none;
  stroke: var(--accent-magenta);
  stroke-width: 1.5px;
  opacity: 0.8;
  animation: hubPing 2.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes hubPing {
  0% { r: 3px; opacity: 1; }
  100% { r: 18px; opacity: 0; }
}

/* USER LOCATION MARKER: Concentric radar ripple rings */
.user-radar-ping {
  fill: var(--accent-cyan);
}

.user-radar-ring {
  fill: none;
  stroke: var(--accent-cyan);
  stroke-width: 2px;
  animation: userPing 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.user-radar-ring.ring-2 {
  stroke: var(--accent-magenta);
  animation-delay: 0.7s;
}

.user-radar-ring.ring-3 {
  stroke: var(--accent-green);
  animation-delay: 1.4s;
}

@keyframes userPing {
  0% { r: 4px; opacity: 1; }
  100% { r: 36px; opacity: 0; }
}

/* TELEMETRY HUD CALLOUT: Float angled HUD data callout box tethered by thin line */
.hud-telemetry-callout {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-out;
  opacity: 1;
}

.tether-anchor {
  width: 24px;
  height: 24px;
  position: absolute;
  top: -12px;
  left: -12px;
  border: 1px dashed var(--accent-cyan);
  border-radius: 50%;
  animation: rotateAnchor 6s linear infinite;
}

@keyframes rotateAnchor {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.callout-box {
  background: rgba(3, 8, 6, 0.88);
  border: 1px solid var(--accent-cyan);
  border-left: 3px solid var(--accent-cyan);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.5;
  width: 260px;
  position: relative;
  transform: translate(24px, -40px);
}

.callout-box::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -24px;
  width: 24px;
  height: 1px;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

.callout-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 4px;
}

.blip-cyan {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.callout-row {
  color: var(--text-main);
  font-family: var(--font-mono);
}

.callout-footer {
  font-size: 9px;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  margin-top: 6px;
  padding-top: 4px;
}

/* Radar Bottom Bar */
.radar-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: rgba(4, 10, 7, 0.9);
  border-top: 1px solid rgba(0, 255, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 11px;
  z-index: 5;
}

.radar-stat {
  display: flex;
  gap: 8px;
}

.radar-stat .lbl { color: var(--text-muted); }
.radar-stat .val { color: var(--text-main); font-weight: 600; }

/* ──────────────────────────────────────────────────────────────────────────
   DOWNLOADS SECTION
   ────────────────────────────────────────────────────────────────────────── */
.downloads-section {
  padding: 60px 0;
}

.section-tag {
  color: var(--accent-green);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 40px;
}

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

.download-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
}

.download-card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 0 24px var(--accent-green-dim);
  transform: translateY(-3px);
}

.card-os-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  align-self: flex-start;
  margin-bottom: 16px;
}

.card-os-badge.win {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.card-os-badge.mac {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-magenta);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.download-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 6px;
}

.card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.feature-bullets {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.feature-bullets li {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.btn-download.primary {
  background: var(--accent-green);
  color: #030508;
}

.btn-download.primary:hover {
  box-shadow: 0 0 20px var(--accent-green);
}

.btn-download.secondary {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--accent-magenta);
  color: var(--accent-magenta);
}

.btn-download.secondary:hover {
  background: var(--accent-magenta);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-magenta-glow);
}

.sub-download-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────────────────
   DUAL PRICING / ACCESS MATRIX (OPTION A & B)
   ────────────────────────────────────────────────────────────────────────── */
.pricing-section {
  padding: 60px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent-green);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-green);
  color: #030508;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 12px;
}

.plan-type {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.plan-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.plan-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 24px;
}

.plan-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--accent-green);
  font-weight: 800;
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: none;
}

.btn-plan.free {
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}

.btn-plan.free:hover {
  background: var(--accent-green);
  color: #030508;
  box-shadow: 0 0 20px var(--accent-green);
}

.btn-plan.pro {
  background: var(--accent-green);
  color: #030508;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.btn-plan.pro:hover {
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.8);
  transform: translateY(-2px);
}

.helper-text {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ──────────────────────────────────────────────────────────────────────────
   IN-BROWSER LICENSE VERIFIER TESTER
   ────────────────────────────────────────────────────────────────────────── */
.license-tester-box {
  background: #050b07;
  border: 1px solid rgba(0, 255, 102, 0.3);
  border-radius: 8px;
  padding: 20px 24px;
}

.tester-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
}

.terminal-prompt {
  color: var(--accent-green);
  font-weight: 800;
}

.badge-live {
  background: rgba(0, 255, 102, 0.15);
  color: var(--accent-green);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: auto;
}

.input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

#license-input {
  flex-grow: 1;
  background: #020503;
  border: 1px solid var(--border-subtle);
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 4px;
  outline: none;
}

#license-input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green-dim);
}

.tester-result {
  font-size: 12px;
  color: var(--text-dim);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  border-left: 2px solid var(--accent-green);
}

/* ──────────────────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────────────────── */
.hud-footer {
  border-top: 1px solid var(--border-subtle);
  background: #020503;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.dot-sep { margin: 0 8px; color: var(--border-subtle); }
.protocol-tag { color: var(--accent-green); }

/* ──────────────────────────────────────────────────────────────────────────
   AUTH MODAL (GOOGLE SSO)
   ────────────────────────────────────────────────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 4, 3, 0.88);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 12px;
  box-sizing: border-box;
}

.modal-backdrop.open {
  display: flex;
}

.modal-card {
  background: #070e0a;
  border: 1px solid var(--accent-green);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.3);
  border-radius: 10px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: auto;
}

.modal-header {
  background: #0c1712;
  border-bottom: 1px solid rgba(0, 255, 102, 0.2);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #ff4757;
}

.modal-body {
  padding: 18px 22px;
  overflow-y: auto;
  max-height: calc(92vh - 55px);
  scrollbar-width: thin;
  scrollbar-color: var(--accent-green) #070e0a;
}

.modal-body p {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 20px;
}

.btn-google-sign-in {
  width: 100%;
  background: #ffffff;
  color: #1f1f1f;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.btn-google-sign-in:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.auth-status-log {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 4px;
}

/* ── UPI Checkout Modal ─────────────────────────────────────── */
.upi-modal-card {
  max-width: 480px;
  border: 1px solid var(--accent-green);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.25);
  text-align: center;
}

.upi-pricing-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 255, 102, 0.08);
  border: 1px dashed var(--accent-green);
  border-radius: 4px;
  padding: 10px 16px;
  margin-bottom: 14px;
}

.upi-pricing-badge .plan-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 1px;
}

.upi-pricing-badge .price-val {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.upi-pricing-badge .price-val small {
  font-size: 10px;
  color: var(--text-muted);
}

.upi-desc {
  font-size: 12px;
  color: #a0aec0;
  margin-bottom: 16px;
  line-height: 1.5;
}

.upi-qr-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.qr-glow-frame {
  position: relative;
  padding: 10px;
  background: #030508;
  border: 2px solid var(--accent-green);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.35);
  display: inline-block;
}

.upi-qr-img {
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 4px;
}

.upi-mobile-tap {
  margin-bottom: 14px;
}

.btn-upi-intent {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #00ff66, #00cc52);
  color: #030508;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.btn-upi-intent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.6);
}

.upi-id-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 102, 0.3);
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

.upi-id-box .upi-label {
  color: var(--text-muted);
  font-size: 11px;
}

.upi-id-box .upi-address {
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-copy-upi {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy-upi:hover {
  background: var(--accent-cyan);
  color: #030508;
}

.upi-divider {
  height: 1px;
  background: rgba(0, 255, 102, 0.2);
  margin: 16px 0;
}

.upi-claim-box {
  text-align: left;
}

.upi-claim-box .claim-title {
  display: block;
  font-size: 11px;
  color: var(--accent-green);
  margin-bottom: 8px;
  font-weight: 700;
}

.claim-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.claim-input-group input {
  width: 100%;
  box-sizing: border-box;
  background: #050a07;
  border: 1px solid rgba(0, 255, 102, 0.3);
  color: #ffffff;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  border-radius: 4px;
}

.claim-input-group input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.claim-input-group .btn-terminal-sm {
  width: 100%;
  padding: 12px;
  font-size: 12px;
  letter-spacing: 1px;
}

.claim-output {
  font-size: 11px;
  color: #a0aec0;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 4px;
  border-left: 2px solid var(--accent-green);
  line-height: 1.5;
}

/* WhatsApp 1-Tap Activation Button */
.whatsapp-activation-box {
  margin: 10px 0 14px 0;
  text-align: center;
}

.btn-whatsapp-pulse {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  border: 1px solid #25D366;
}

.btn-whatsapp-pulse:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.7);
  background: linear-gradient(135deg, #2bf075 0%, #15a392 100%);
}

.btn-whatsapp-pulse .wa-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-pulse .wa-icon {
  font-size: 16px;
}

.btn-whatsapp-pulse .wa-badge {
  display: inline-block;
  font-size: 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 10px;
  color: #e2fced;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.wa-note {
  font-size: 11px;
  color: #7ca88e;
  margin-top: 6px;
  line-height: 1.4;
  text-align: center;
}

.or-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 12px 0;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 1px;
}

.or-separator::before,
.or-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px dashed rgba(0, 255, 102, 0.2);
}

.or-separator span {
  padding: 0 10px;
}

/* Device Lock Notice Banner */
.device-lock-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 6px;
  padding: 10px 12px;
  margin: 12px 0 16px 0;
  font-size: 11px;
  line-height: 1.45;
  color: #c9f6ff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.device-lock-notice .lock-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.device-lock-notice strong {
  color: #00e5ff;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   MOBILE RESPONSIVE SYSTEM (TABLETS & SMARTPHONES: <= 768px)
   Proportionate typography, touch-friendly UI, and zero-overflow layout
   ========================================================================== */

@media (max-width: 768px) {
  /* Base typography scaling */
  body {
    font-size: 13px;
    line-height: 1.55;
  }

  /* Fixed HUD Navigation Bar */
  .hud-top-bar {
    height: 48px;
    padding: 0 12px;
  }

  .brand-cluster {
    gap: 8px;
  }

  .brand-glitch {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .hud-badge {
    display: none; /* Hide non-essential version badge on mobile nav */
  }

  .hud-telemetry-cluster {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  /* Hide raw text links on mobile to prevent navbar explosion */
  .nav-actions .nav-link {
    display: none;
  }

  .btn-terminal-sm {
    padding: 4px 8px;
    font-size: 10px;
    letter-spacing: 0.5px;
    gap: 5px;
  }

  .btn-terminal-sm svg {
    width: 12px;
    height: 12px;
  }

  /* Main Container Padding */
  .main-container {
    padding: 64px 14px 40px;
    width: 100%;
    overflow-x: hidden;
  }

  /* Hero Section Typography */
  .hero-section {
    padding: 16px 0 32px;
  }

  .hero-tag {
    font-size: 9.5px;
    letter-spacing: 1px;
    padding: 3px 10px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.22;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    word-break: break-word;
  }

  .hero-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 4px;
    max-width: 100%;
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 12px 18px;
    font-size: 11.5px;
    letter-spacing: 0.5px;
  }

  /* Radar HUD & Terminal Window */
  .radar-wrapper-section {
    margin: 24px 0 48px;
  }

  .terminal-header {
    height: auto;
    min-height: 42px;
    padding: 8px 10px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .header-left {
    gap: 8px;
  }

  .terminal-title {
    font-size: 9.5px;
    letter-spacing: 0.5px;
  }

  .header-right {
    gap: 6px;
    flex-wrap: wrap;
  }

  .user-counter-badge {
    padding: 3px 8px !important;
  }

  #active-users-counter {
    font-size: 9px !important;
    letter-spacing: 0.5px !important;
  }

  #radar-freq {
    display: none;
  }

  .radar-viewport {
    height: 280px;
  }

  .callout-box {
    width: calc(100vw - 48px);
    max-width: 230px;
    padding: 8px 10px;
    font-size: 9.5px;
    line-height: 1.4;
    transform: translate(10px, -20px);
  }

  .callout-header {
    font-size: 10px;
  }

  .callout-footer {
    font-size: 8.5px;
  }

  .radar-bottom-bar {
    position: relative;
    height: auto;
    padding: 8px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .radar-stat {
    font-size: 9px;
    line-height: 1.35;
    flex-wrap: wrap;
    gap: 4px;
  }

  /* Section Titles & Subtitles */
  .section-tag {
    font-size: 9.5px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .section-title {
    font-size: clamp(18px, 5.5vw, 22px);
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 11.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  /* Downloads Cards Grid */
  .downloads-section {
    padding: 24px 0;
  }

  .download-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .download-card {
    padding: 18px 14px;
  }

  .card-os-badge {
    font-size: 9px;
    letter-spacing: 1px;
    padding: 3px 8px;
    margin-bottom: 12px;
  }

  .download-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .card-meta {
    font-size: 10.5px;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .feature-bullets {
    margin-bottom: 16px;
  }

  .feature-bullets li {
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 6px;
  }

  .btn-download {
    padding: 11px 14px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .sub-download-note {
    font-size: 10px;
    margin-top: 8px;
  }

  /* Pricing Matrix Section */
  .pricing-section {
    padding: 24px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .pricing-card {
    padding: 20px 14px;
  }

  .popular-badge {
    font-size: 8px;
    padding: 2px 8px;
    top: -9px;
    right: 14px;
  }

  .plan-type {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .plan-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .plan-price {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .plan-price span {
    font-size: 11px;
  }

  .plan-desc {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .plan-divider {
    margin-bottom: 16px;
  }

  .plan-features {
    margin-bottom: 20px;
  }

  .plan-features li {
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 8px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .btn-plan {
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .helper-text {
    font-size: 9.5px;
    margin-top: 8px;
  }

  /* Automated License Verifier Tester Box */
  .license-tester-box {
    padding: 16px 12px;
    margin: 20px 0;
  }

  .tester-header {
    font-size: 9.5px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .badge-live {
    font-size: 8px;
    padding: 2px 5px;
  }

  .input-group {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  #license-input {
    width: 100%;
    font-size: 10.5px;
    padding: 10px 12px;
  }

  #btn-test-license {
    width: 100%;
    font-size: 11px;
    padding: 11px 14px;
    justify-content: center;
  }

  .tester-result {
    font-size: 10.5px;
    line-height: 1.5;
    padding: 10px 12px;
    margin-top: 10px;
  }

  /* HUD Footer */
  .hud-footer {
    padding: 18px 12px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    font-size: 9.5px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .dot-sep {
    display: none;
  }

  /* UPI Payment Modal */
  .upi-modal-card {
    padding: 20px 14px;
    width: 95%;
    max-width: 360px;
  }

  .modal-title {
    font-size: 14px;
  }

  .upi-qr-wrapper img {
    width: 135px;
    height: 135px;
  }

  .upi-vpa-text {
    font-size: 11.5px;
  }

  .upi-claim-box input {
    font-size: 11px;
    padding: 8px 10px;
  }

  .btn-whatsapp-pulse {
    font-size: 11.5px;
    padding: 10px 12px;
  }

  .device-lock-notice {
    font-size: 10px;
    padding: 8px 10px;
  }
}

/* ==========================================================================
   EXTRA SMALL SMARTPHONES (<= 480px: iPhone SE, compact Androids)
   ========================================================================== */

@media (max-width: 480px) {
  body {
    font-size: 12px;
  }

  .hero-title {
    font-size: 21px;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 11.5px;
  }

  .section-title {
    font-size: 19px;
  }

  .plan-title {
    font-size: 15px;
  }

  .plan-price {
    font-size: 24px;
  }

  .plan-features li {
    font-size: 10.5px;
  }

  .download-card h3 {
    font-size: 15px;
  }

  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-plan,
  .btn-download {
    font-size: 10.5px;
  }
}

/* ==========================================================================
   CYBERPUNK HUD FOOTER
   ========================================================================== */
.hud-footer {
  position: relative;
  z-index: 10;
  background: rgba(3, 7, 5, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -4px 20px rgba(0, 255, 102, 0.06);
  padding: 30px 24px 34px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-emblem {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.8));
  vertical-align: middle;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.footer-status-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
}

.footer-interactive-trigger {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: left;
}

.footer-interactive-trigger:hover {
  background: rgba(0, 255, 102, 0.08);
  border-color: var(--border-subtle);
  box-shadow: 0 0 10px var(--accent-green-dim);
  transform: translateX(2px);
}

.footer-micro-hint {
  font-size: 9px;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: 1px 4px;
  border-radius: 2px;
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.footer-links-col {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--accent-green);
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.6);
  transform: translateY(-1px);
}

.protocol-tag {
  font-size: 10px;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   LIVE PROOF & BENCHMARK SECTION STYLING
   ══════════════════════════════════════════════════════════════════════════ */
.proof-wrapper-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  position: relative;
}

.proof-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.proof-metric-box {
  background: rgba(7, 12, 10, 0.75);
  border: 1px solid rgba(0, 255, 102, 0.22);
  border-radius: 8px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.proof-metric-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  opacity: 0.5;
}

.proof-metric-box:hover {
  border-color: rgba(0, 255, 102, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.12);
  transform: translateY(-2px);
}

.proof-metric-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-green);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(0, 255, 102, 0.4);
}

.proof-metric-lbl {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

.proof-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.proof-terminal-frame {
  background: #070c0a;
  border: 1px solid rgba(0, 255, 102, 0.35);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.15), 0 20px 40px rgba(0,0,0,0.8);
  position: relative;
}

.proof-terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: #0a140f;
  border-bottom: 1px solid rgba(0, 255, 102, 0.2);
}

.proof-lights {
  display: flex;
  gap: 6px;
  align-items: center;
}

.proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.proof-dot.red { background: #ff4757; box-shadow: 0 0 6px rgba(255, 71, 87, 0.6); }
.proof-dot.yellow { background: #ffa502; box-shadow: 0 0 6px rgba(255, 165, 2, 0.6); }
.proof-dot.green { background: #00ff66; box-shadow: 0 0 6px rgba(0, 255, 102, 0.6); }

.proof-terminal-title {
  font-size: 11px;
  font-family: var(--font-display);
  color: var(--accent-green);
  letter-spacing: 1px;
}

.proof-status-tag {
  font-size: 10px;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.proof-img-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.proof-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.proof-img-container:hover .proof-main-img {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.proof-img-container .proof-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 102, 0.5), transparent);
  pointer-events: none;
  animation: proofScan 4s linear infinite;
}

@keyframes proofScan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

.proof-img-overlay-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 12, 10, 0.85);
  border: 1px solid rgba(0, 255, 102, 0.5);
  color: var(--accent-green);
  font-size: 10px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.proof-img-overlay-tag .pulse-dot {
  width: 6px;
  height: 6px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.proof-img-expand-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(7, 12, 10, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--accent-cyan);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-img-container:hover .proof-img-expand-hint {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--accent-cyan);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.proof-caption-bar {
  padding: 14px 18px;
  background: #070c0a;
  border-top: 1px solid rgba(0, 255, 102, 0.15);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

.proof-caption-bar strong {
  color: #fff;
}

.proof-points-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-point-card {
  background: rgba(7, 12, 10, 0.7);
  border: 1px solid rgba(0, 255, 102, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  transition: all 0.25s ease;
  position: relative;
}

.proof-point-card:hover {
  border-color: rgba(0, 255, 102, 0.5);
  background: rgba(10, 20, 15, 0.85);
  box-shadow: 0 0 16px rgba(0, 255, 102, 0.1);
  transform: translateX(4px);
}

.proof-point-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.proof-point-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.25);
  border-radius: 6px;
}

.proof-point-title {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent-green);
  letter-spacing: 1px;
}

.proof-point-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.proof-point-desc code {
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid rgba(0, 255, 102, 0.25);
  color: #00ff66;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
}

/* Lightbox Modal */
.proof-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 5, 8, 0.94);
  backdrop-filter: blur(12px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.proof-lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.proof-modal-box {
  max-width: 1100px;
  width: 100%;
  background: #070c0a;
  border: 1px solid var(--accent-green);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 255, 102, 0.25);
  animation: modalScaleIn 0.25s ease-out;
}

@keyframes modalScaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.proof-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #0a140f;
  border-bottom: 1px solid rgba(0, 255, 102, 0.25);
}

.proof-modal-title {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--accent-green);
  letter-spacing: 1px;
}

.proof-modal-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 71, 87, 0.4);
  color: #ff4757;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.proof-modal-close-btn:hover {
  background: #ff4757;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.6);
}

.proof-modal-img-wrap {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 78vh;
  overflow: hidden;
}

.proof-modal-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

.proof-modal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #0a140f;
  border-top: 1px solid rgba(0, 255, 102, 0.15);
  font-size: 11px;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .proof-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 550px) {
  .proof-metrics-strip {
    grid-template-columns: 1fr;
  }
  .proof-modal-foot {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   PLATFORM PILLS & EXPANDED ECOSYSTEM MODAL
   ══════════════════════════════════════════════════════════════════════════ */
.platform-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 22px auto 26px;
  max-width: 980px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 12, 10, 0.8);
  border: 1px solid rgba(0, 255, 102, 0.22);
  color: var(--text-main);
  font-size: 11px;
  font-family: var(--font-display);
  letter-spacing: 0.8px;
  padding: 6px 13px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  transition: all 0.22s ease;
  cursor: default;
  user-select: none;
}

.platform-pill svg, .platform-pill img {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.platform-pill:hover {
  border-color: var(--accent-green);
  background: rgba(0, 255, 102, 0.12);
  box-shadow: 0 0 14px rgba(0, 255, 102, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.platform-pill-more {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(168, 85, 247, 0.12));
  border: 1px solid rgba(0, 229, 255, 0.45);
  color: var(--accent-cyan);
  cursor: pointer;
  font-weight: 700;
}

.platform-pill-more:hover {
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(168, 85, 247, 0.25));
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.4);
  color: #fff;
}

.platform-pill-more .plus-arrow {
  transition: transform 0.2s ease;
  font-size: 10px;
}

.platform-pill-more:hover .plus-arrow {
  transform: translateX(3px);
}

/* Modal for +20 more platforms */
.platforms-eco-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 5, 8, 0.94);
  backdrop-filter: blur(12px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.platforms-eco-modal.active {
  display: flex;
  opacity: 1;
}

.platforms-eco-box {
  max-width: 820px;
  width: 100%;
  background: #070c0a;
  border: 1px solid var(--accent-green);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 255, 102, 0.25);
  animation: modalScaleIn 0.25s ease-out;
}

.platforms-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 24px;
  max-height: 65vh;
  overflow-y: auto;
}

.eco-platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 20, 15, 0.7);
  border: 1px solid rgba(0, 255, 102, 0.16);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 11.5px;
  color: #e2fced;
  transition: all 0.2s ease;
}

.eco-platform-item:hover {
  border-color: var(--accent-green);
  background: rgba(0, 255, 102, 0.1);
  transform: translateX(2px);
}

.eco-platform-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.eco-category-title {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent-cyan);
  letter-spacing: 1.5px;
  margin-top: 10px;
  margin-bottom: 2px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

@media (max-width: 768px) {
  .platforms-eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .platforms-eco-grid {
    grid-template-columns: 1fr;
  }
}

