/* ================================================================
   LIMINAL NETWORK — styles/style.css
   Glassmorphism / Dark / ARG aesthetic
   ================================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base:       #060810;
  --bg-deep:       #08090f;
  --bg-mid:        #0d1017;
  --glass-bg:      rgba(255, 255, 255, 0.035);
  --glass-bg-2:    rgba(255, 255, 255, 0.06);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --glass-border-2:rgba(255, 255, 255, 0.14);
  --blur:          blur(16px);
  --blur-heavy:    blur(28px);

  --accent:        #00e5ff;
  --accent-dim:    rgba(0, 229, 255, 0.18);
  --accent-glow:   rgba(0, 229, 255, 0.35);
  --accent2:       #7c4dff;
  --accent2-dim:   rgba(124, 77, 255, 0.2);
  --green:         #00e676;
  --red:           #ff1744;
  --yellow:        #ffd740;
  --orange:        #ff6d00;

  --text-primary:  #e8ecf0;
  --text-secondary:#8a9bb0;
  --text-dim:      #4a5568;
  --text-accent:   #00e5ff;

  --font-display:  'Syne', sans-serif;
  --font-mono:     'Share Tech Mono', monospace;
  --font-alt-mono: 'Syne Mono', monospace;

  --radius:        12px;
  --radius-lg:     20px;
  --radius-sm:     8px;
  --transition:    0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:         68px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- BACKGROUND EFFECTS ---- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.55;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
}

body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.07) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: driftA 20s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.055) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: driftB 25s ease-in-out infinite alternate;
}

@keyframes driftA {
  from { transform: translate(0, 0); }
  to   { transform: translate(8vw, 6vh); }
}
@keyframes driftB {
  from { transform: translate(0, 0); }
  to   { transform: translate(-6vw, -8vh); }
}

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}

.glass-inner {
  background: var(--glass-bg-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.glass {
  background: rgba(8, 9, 15, 0.75);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border: 1px solid var(--glass-border);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  gap: 32px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition);
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-bracket { color: var(--accent); }
.brand-text { color: var(--text-primary); }
.brand-dot { color: var(--accent2); margin: 0 2px; }
.brand-sub { color: var(--text-secondary); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
  display: block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(0, 229, 255, 0.2);
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.status-dot.pulse {
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.1em;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- MAIN / PAGES ---- */
main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.page {
  display: none;
  padding: clamp(32px, 6vw, 80px) clamp(16px, 6vw, 80px) 80px;
  max-width: 1280px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease forwards;
}

.page.active {
  display: block;
}

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

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  min-height: calc(90vh - var(--nav-h));
  padding: 32px 0 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* GLITCH */
.glitch-wrapper {
  position: relative;
}

.glitch {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glitch::before {
  color: var(--accent);
  animation: glitchA 3s infinite linear;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  opacity: 0.7;
}

.glitch::after {
  color: var(--accent2);
  animation: glitchB 3s infinite linear;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  opacity: 0.6;
}

@keyframes glitchA {
  0%,86%,100% { transform: translate(0); opacity: 0; }
  87%          { transform: translate(-3px, 1px); opacity: 0.7; }
  89%          { transform: translate(3px, -1px); opacity: 0.7; }
  91%          { transform: translate(0); opacity: 0; }
}

@keyframes glitchB {
  0%,90%,100% { transform: translate(0); opacity: 0; }
  91%          { transform: translate(3px, 2px); opacity: 0.6; }
  93%          { transform: translate(-3px, -1px); opacity: 0.6; }
  95%          { transform: translate(0); opacity: 0; }
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--text-secondary);
  min-height: 2.2em;
  border-right: 2px solid var(--accent);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 4px;
  padding: 4px 10px;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-dim);
  border-color: rgba(0, 229, 255, 0.4);
  color: var(--accent);
}

.btn-primary:hover {
  background: rgba(0, 229, 255, 0.22);
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--glass-border-2);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--glass-bg-2);
  border-color: var(--text-secondary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ---- RADAR ---- */
.radar-container {
  width: 280px;
  height: 280px;
  position: relative;
  margin: 0 auto;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.r1 { width: 100%; height: 100%; }
.r2 { width: 67%;  height: 67%; }
.r3 { width: 34%;  height: 34%; }

.radar-sweep {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(0, 229, 255, 0.25) 60%, transparent 100%);
  animation: sweepRotate 4s linear infinite;
  border-radius: 0 100% 0 0;
}

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

.radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent-glow);
  animation: blipPulse 2s ease-in-out infinite;
}

.d1 { top: 22%; left: 60%; animation-delay: 0s; }
.d2 { top: 55%; left: 28%; animation-delay: 0.7s; }
.d3 { top: 68%; left: 70%; animation-delay: 1.4s; }

@keyframes blipPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  gap: 2px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 32px;
  margin: 48px 0;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: var(--glass-border);
  margin: 8px 0;
}

/* ---- SECTION HEADER ---- */
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 32px;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-2));
}

.section-line:first-child {
  background: linear-gradient(90deg, var(--glass-border-2), transparent);
}

.section-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ---- CARD GRID ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.glass-card[data-page] {
  cursor: pointer;
}

.glass-card {
  padding: 24px;
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: var(--glass-border-2);
  background: var(--glass-bg-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 12px;
}

.urbex-badge { color: var(--green); background: rgba(0, 230, 118, 0.12); border-color: rgba(0, 230, 118, 0.2); }
.report-badge { color: var(--yellow); background: rgba(255, 215, 64, 0.12); border-color: rgba(255, 215, 64, 0.2); }

.card-img-placeholder {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.arg-img {
  background: linear-gradient(135deg, #0d0b1a 0%, #1a0b2e 100%);
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.arg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(124, 77, 255, 0.05) 2px,
    rgba(124, 77, 255, 0.05) 4px
  );
}

.urbex-img {
  background: linear-gradient(135deg, #0a1409 0%, #1a2a0e 100%);
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.urbex-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 3px,
    rgba(0, 230, 118, 0.04) 3px,
    rgba(0, 230, 118, 0.04) 6px
  );
}

.report-img {
  background: linear-gradient(135deg, #141007 0%, #29200a 100%);
  border: 1px solid rgba(255, 215, 64, 0.15);
}

.card-img-text {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.15em;
  z-index: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.1em;
}

.urbex-tag { color: var(--green); background: rgba(0, 230, 118, 0.12); }
.report-tag { color: var(--yellow); background: rgba(255, 215, 64, 0.1); }

.card-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

/* ---- TERMINAL ---- */
.terminal-block {
  padding: 0;
  overflow: hidden;
  margin-top: 48px;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--glass-border);
}

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

.tdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.tdot.red    { background: #ff5f57; }
.tdot.yellow { background: #febc2e; }
.tdot.green  { background: #28c840; }

.term-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-left: auto;
}

.terminal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.term-line {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.term-prompt { color: var(--accent); margin-right: 8px; }
.term-cmd    { color: var(--text-primary); }
.term-ok     { color: var(--green); }
.term-warn   { color: var(--yellow); }

.term-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ---- PAGE HEADER ---- */
.page-header {
  position: relative;
  padding: 40px 0 56px;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-dim), transparent 70%);
}

.page-category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 12px;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.accent { color: var(--accent); }

.page-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- CONTENT BLOCKS ---- */
.content-block {
  padding: 36px;
  margin: 32px 0;
}

.block-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.block-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: rgba(0, 229, 255, 0.18);
  font-weight: 600;
  line-height: 1;
  min-width: 48px;
}

.block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.block-content.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.col-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.col-text p strong {
  color: var(--text-primary);
}

.info-card {
  padding: 24px;
}

.info-card h4 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ---- TIMELINE ---- */
.arg-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 40px;
}

.arg-timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-dim), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 28px;
  transition: all var(--transition);
}

.timeline-item:hover {
  border-color: var(--glass-border-2);
}

.timeline-item.active-arg {
  border-color: rgba(0, 229, 255, 0.15);
  background: rgba(0, 229, 255, 0.03);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  padding-top: 4px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tl-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  padding: 2px 7px;
}

.active-tag {
  color: var(--accent);
  border-color: rgba(0, 229, 255, 0.3);
  background: var(--accent-dim);
}

.blink-text {
  color: var(--accent);
  animation: blink 1.2s ease-in-out infinite;
}

/* ---- STEPS GRID ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step-item {
  padding: 24px;
}

.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: rgba(0, 229, 255, 0.15);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- URBEX CATEGORIES ---- */
.urbex-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.cat-card {
  padding: 28px 24px;
  transition: all var(--transition);
}

.cat-card:hover {
  border-color: var(--glass-border-2);
  transform: translateY(-3px);
}

.cat-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.7;
}

.cat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cat-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cat-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.cat-stats span:first-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}

.cat-danger {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--yellow);
  letter-spacing: 0.06em;
}

.danger-high     { color: var(--orange); }
.danger-critical { color: var(--red); }
.danger-low      { color: var(--green); }

/* ---- GEAR ---- */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gear-cat-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}

.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.gear-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.gear-icon {
  color: var(--accent2);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ---- RULES ---- */
.rules-block {
  padding: 40px;
  margin: 32px 0;
  border-color: rgba(255, 109, 0, 0.15);
  background: rgba(255, 109, 0, 0.03);
}

.rules-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 28px;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rule-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.rule-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rule-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: rgba(255, 109, 0, 0.25);
  font-weight: 600;
  line-height: 1.5;
}

.rule-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- QUOTE ---- */
.quote-block {
  padding: 28px;
  position: relative;
}

.quote-mark {
  font-size: 5rem;
  color: rgba(0, 229, 255, 0.1);
  font-family: Georgia, serif;
  line-height: 0.8;
  display: block;
  margin-bottom: 8px;
}

.quote-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.quote-author {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-right: 4px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--accent);
  border-color: rgba(0, 229, 255, 0.3);
  background: var(--accent-dim);
}

.filter-search {
  margin-left: auto;
}

.search-input {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  width: 240px;
  transition: all var(--transition);
  outline: none;
}

.search-input::placeholder { color: var(--text-dim); }
.search-input:focus {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.04);
}

/* ---- REPORTS LIST ---- */
.reports-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-card {
  padding: 28px;
  transition: all var(--transition);
}

.report-card:hover {
  border-color: var(--glass-border-2);
  background: var(--glass-bg-2);
}

.report-card.hidden {
  display: none;
}

.report-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.report-id {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

.report-type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 2px 8px;
  border-radius: 3px;
}

.arg-type {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.urbex-type {
  color: var(--green);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.analysis-type {
  color: var(--yellow);
  background: rgba(255, 215, 64, 0.1);
  border: 1px solid rgba(255, 215, 64, 0.2);
}

.report-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-left: auto;
}

.report-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.report-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.r-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  padding: 2px 7px;
}

.report-author {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-top: 40px;
}

.about-main {
  padding: 40px;
}

.manifest-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  padding: 24px;
}

.sidebar-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}

.tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.tech-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.tech-dot.green { background: var(--green); }
.tech-dot.red   { background: var(--red); }

/* ---- ROLES ---- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.role-card {
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.role-card:hover {
  border-color: var(--glass-border-2);
  transform: translateY(-3px);
}

.role-icon {
  font-size: 1.8rem;
  color: var(--accent2);
  margin-bottom: 12px;
  opacity: 0.7;
}

.role-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.role-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- CONTACT ---- */
.contact-block {
  padding: 44px;
  margin: 40px 0;
  border-color: rgba(124, 77, 255, 0.2);
  background: rgba(124, 77, 255, 0.03);
  text-align: center;
}

.contact-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--accent2);
  margin-bottom: 12px;
}

.contact-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contact-hints {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hint {
  padding: 16px 24px;
  text-align: left;
  min-width: 280px;
}

.hint-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.hint-value {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent2);
  word-break: break-all;
  letter-spacing: 0.06em;
}

/* ---- FOOTER ---- */
.footer {
  position: relative;
  z-index: 1;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--glass-border);
  margin-top: 80px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px clamp(16px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 3px;
  transition: all var(--transition);
  cursor: pointer;
}

.footer-link:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sep { color: var(--glass-border-2); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(0, 229, 255, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 229, 255, 0.4); }

/* ---- SELECTION ---- */
::selection {
  background: rgba(0, 229, 255, 0.25);
  color: var(--text-primary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-divider { display: none; }
  .urbex-categories { grid-template-columns: repeat(2, 1fr); }
  .gear-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .block-content.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6, 8, 16, 0.97); border-bottom: 1px solid var(--glass-border); padding: 16px; flex-direction: column; gap: 4px; }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .nav-status { margin-left: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .urbex-categories { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .roles-grid { grid-template-columns: 1fr; }
  .contact-hints { flex-direction: column; }
  .hint { min-width: unset; width: 100%; }
  .filter-search { width: 100%; }
  .search-input { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-meta { margin-left: 0; }
}
