/* ===== CYBER MAP ===== */

#cyber-map {
  position: relative;
  overflow: visible;
}

.cyber-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cyber-left {
  flex: 1;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.cyber-right {
  flex: 1;
}

/* Globe container — explicit height so globe.gl has something to render into */
#globeViz {
  width: 100%;
  height: 480px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

/* Disable pointer-events on the canvas so page scroll is not blocked.
   The JS also does this after init, but the CSS rule acts as a fallback. */
#globeViz canvas {
  pointer-events: none !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Responsive: stack globe below text on small screens */
@media (max-width: 900px) {
  .cyber-wrap {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .cyber-left {
    max-width: 100%;
    width: 100%;
  }
  #globeViz {
    height: 320px;
  }
}

/* ===== DOCUMENT PAGES (privacy / offer) ===== */

/* Reusable label used on sub-pages */
.page-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--matrix-dim, #00a82e);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-label::before {
  content: '//';
  color: var(--matrix, #00ff46);
  opacity: 0.55;
}

.page-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-date {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-dim, #1e3a22);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

/* Document section blocks */
.doc-section {
  margin-bottom: 44px;
}

.doc-section h2 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--matrix-bright, #7fff8f);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border, rgba(0,255,70,0.12));
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-section h2::before {
  content: attr(data-n);
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--matrix-dim, #00a82e);
  opacity: 0.7;
}

.doc-section p {
  font-size: 15px;
  color: var(--text-muted, #4a7a52);
  line-height: 1.78;
  margin-bottom: 12px;
}

.doc-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.doc-section ul li {
  font-size: 15px;
  color: var(--text-muted, #4a7a52);
  line-height: 1.75;
  padding: 5px 0 5px 22px;
  position: relative;
}

.doc-section ul li::before {
  content: '▸';
  color: var(--matrix-dim, #00a82e);
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 7px;
}

.doc-section a {
  color: var(--matrix-dim, #00a82e);
  text-decoration: underline;
  transition: color 0.2s;
}
.doc-section a:hover {
  color: var(--matrix, #00ff46);
}

/* Highlighted info box */
.doc-box {
  background: rgba(0,255,70,0.03);
  border: 1px solid var(--border, rgba(0,255,70,0.12));
  border-left: 2px solid var(--matrix, #00ff46);
  padding: 16px 20px;
  margin: 16px 0;
}
.doc-box p {
  margin-bottom: 0;
}
