/* SpamAxe — Global Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #ff2a2a;
  --red-glow: #ff000088;
  --orange: #ff6a00;
  --amber: #ffaa00;
  --dark: #06060a;
  --dark2: #0a0a12;
  --gray: #1a1a2e;
  --light: #e8e6e3;
  --green: #00ff88;
  --cyan: #00e5ff;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'JetBrains Mono', monospace;
  overflow-x: hidden;
  cursor: crosshair;
  max-width: 100vw;
}

/* ============ SCANLINES ============ */
.scanlines {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 9999;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

/* ============ GRID BACKGROUND ============ */
.grid-bg {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; overflow: hidden;
}
.grid-bg canvas { width: 100%; height: 100%; }

/* ============ PARTICLES ============ */
.particle {
  position: fixed;
  width: 2px; height: 2px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0; opacity: 0;
  animation: particleDrift 8s linear infinite;
}
@keyframes particleDrift {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ============ NAV BAR ============ */
.site-nav {
  position: fixed; top: 0; left: 0;
  width: 100%; z-index: 101;
  background: rgba(6, 6, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 42, 42, 0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 48px;
  font-family: 'Orbitron', sans-serif;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--light);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
}
.nav-brand img { height: 28px; width: auto; }
.nav-brand .brand-spam { opacity: 0.6; }
.nav-brand .brand-axe { color: var(--red); }
.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  color: rgba(232, 230, 227, 0.6);
  text-decoration: none;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: color 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  font-size: 0.55rem !important;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 42, 42, 0.3);
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: rgba(255, 42, 42, 0.1) !important;
  border-color: var(--red) !important;
}

/* ============ THREAT BAR ============ */
.threat-bar {
  position: fixed; top: 48px; left: 0;
  width: 100%; z-index: 100;
  background: rgba(6, 6, 10, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 42, 42, 0.08);
  padding: 0.4rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.threat-bar .pulse {
  width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px var(--red-glow);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.8); }
}
.threat-bar span { color: rgba(232, 230, 227, 0.5); }
.threat-bar .val { color: var(--red); font-weight: 700; }

/* ============ HERO ============ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 2rem 2rem; text-align: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255, 42, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ============ AXE ICON ============ */
.axe-container { position: relative; margin-bottom: 1.5rem; }
.axe-icon {
  width: 160px; height: 160px;
  max-width: 160px; max-height: 160px;
  object-fit: contain;
  animation: axeFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--red-glow)) drop-shadow(0 0 60px rgba(255, 42, 42, 0.25));
  position: relative; z-index: 2;
}
@keyframes axeFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.axe-container::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border: 1px solid rgba(255, 42, 42, 0.1); border-radius: 50%;
  animation: ringPulse 3s ease-out infinite;
}
@keyframes ringPulse {
  0% { width: 100px; height: 100px; opacity: 0.5; border-color: rgba(255, 42, 42, 0.3); }
  100% { width: 350px; height: 350px; opacity: 0; border-color: rgba(255, 42, 42, 0); }
}

/* ============ TITLE ============ */
.title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: -0.02em; line-height: 0.9;
  position: relative; margin-bottom: 0.5rem;
}
.title .spam {
  color: var(--light); opacity: 0.15;
  position: relative; display: inline-block;
}
.title .spam::after {
  content: ''; position: absolute;
  left: -5%; top: 45%; width: 110%; height: 4px;
  background: var(--red); transform: rotate(-3deg);
  box-shadow: 0 0 20px var(--red-glow);
}
.title .axe {
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(255, 42, 42, 0.15);
  position: relative;
}
.title .axe::before, .title .axe::after {
  content: 'AXE'; position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; opacity: 0;
}
.title .axe::before {
  color: var(--cyan);
  animation: glitch1 4s infinite;
  clip-path: inset(20% 0 30% 0);
}
.title .axe::after {
  color: var(--orange);
  animation: glitch2 4s infinite;
  clip-path: inset(60% 0 10% 0);
}
@keyframes glitch1 {
  0%, 93%, 100% { opacity: 0; transform: translate(0); }
  94% { opacity: 0.8; transform: translate(-3px, 1px); }
  95% { opacity: 0; }
  96% { opacity: 0.6; transform: translate(2px, -1px); }
  97% { opacity: 0; }
}
@keyframes glitch2 {
  0%, 95%, 100% { opacity: 0; transform: translate(0); }
  96% { opacity: 0.7; transform: translate(3px, 2px); }
  97% { opacity: 0; }
  98% { opacity: 0.5; transform: translate(-2px, -1px); }
  99% { opacity: 0; }
}

/* ============ TAGLINE ============ */
.tagline {
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(232, 230, 227, 0.5);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 3rem; max-width: 600px;
}
.tagline strong { color: var(--light); font-weight: 600; }

/* ============ TERMINAL ============ */
.terminal {
  background: rgba(10, 10, 18, 0.8);
  border: 1px solid rgba(255, 42, 42, 0.15);
  border-radius: 8px;
  padding: 1.5rem 2rem; max-width: 680px; width: 100%;
  text-align: left; font-size: 0.8rem; line-height: 1.8;
  margin-bottom: 3rem; position: relative;
  overflow-y: hidden; overflow-x: auto;
  backdrop-filter: blur(10px);
}
.terminal::before {
  content: '● ● ●'; display: block;
  font-size: 0.5rem; letter-spacing: 4px;
  color: rgba(255,255,255,0.15);
  margin-bottom: 1rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.terminal .line { opacity: 0; animation: termTypein 0.3s ease forwards; }
.terminal .prompt { color: var(--green); }
.terminal .cmd { color: var(--light); }
.terminal .output { color: rgba(232, 230, 227, 0.4); }
.terminal .highlight { color: var(--red); font-weight: 700; }
.terminal .stat { color: var(--amber); }
.terminal .ok { color: var(--green); }
@keyframes termTypein {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============ FEATURES GRID ============ */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; max-width: 900px; width: 100%;
  margin-bottom: 4rem;
  background: rgba(255, 42, 42, 0.08);
  border: 1px solid rgba(255, 42, 42, 0.08);
}
.feature {
  background: rgba(6, 6, 10, 0.9);
  padding: 2rem 1.5rem; text-align: left;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width 0.4s ease;
}
.feature:hover::after { width: 100%; }
.feature:hover { background: rgba(255, 42, 42, 0.03); }
.feature .num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem; color: var(--red);
  letter-spacing: 0.2em; margin-bottom: 1rem; opacity: 0.6;
}
.feature h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.feature p {
  font-size: 0.75rem; color: rgba(232, 230, 227, 0.4); line-height: 1.6;
}

/* ============ SIGNAL LIST ============ */
.signal-section { max-width: 900px; width: 100%; margin-bottom: 4rem; text-align: left; }
.signal-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(232, 230, 227, 0.3);
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.signal-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  font-size: 0.75rem; transition: all 0.3s ease;
}
.signal-row:hover { background: rgba(255, 42, 42, 0.02); padding-left: 0.5rem; }
.signal-id {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem; color: var(--red); opacity: 0.5; min-width: 32px;
}
.signal-name { flex: 1; color: rgba(232, 230, 227, 0.6); }
.signal-bar {
  width: 120px; height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 1px; overflow: hidden; position: relative;
}
.signal-bar-fill {
  height: 100%; border-radius: 1px;
  background: var(--red); width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.signal-weight {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem; min-width: 24px;
  text-align: right; color: rgba(232, 230, 227, 0.3);
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  max-width: 800px; margin: 0 auto;
  padding: 6rem 2rem 4rem;
}
.legal-page .page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem; color: var(--red);
  letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.legal-updated {
  font-size: 0.75rem; color: rgba(232, 230, 227, 0.3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 3rem;
}
.legal-page .post-body h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem; letter-spacing: 0.08em;
  color: var(--light); margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 42, 42, 0.15);
}
.legal-page .post-body h3 {
  font-size: 0.9rem; color: var(--red);
  margin: 1.5rem 0 0.75rem;
}
.legal-page .post-body p {
  font-size: 0.85rem; line-height: 1.8;
  color: rgba(232, 230, 227, 0.65);
  margin-bottom: 1rem;
}
.legal-page .post-body a {
  color: var(--red); text-decoration: none;
  border-bottom: 1px solid rgba(255, 42, 42, 0.3);
  transition: border-color 0.3s;
}
.legal-page .post-body a:hover { border-color: var(--red); }
.back-link {
  display: inline-block; margin-top: 3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; color: var(--red);
  text-decoration: none; letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.back-link:hover { opacity: 0.7; }

/* Footer legal links */
.footer-legal {
  text-align: center; padding: 0.75rem 0;
  font-size: 0.7rem; font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
.footer-legal a {
  color: rgba(232, 230, 227, 0.6);
  text-decoration: none; transition: color 0.3s;
}
.footer-legal a:hover { color: var(--red); }
.legal-sep { color: rgba(232, 230, 227, 0.15); margin: 0 0.75rem; }

/* ============ FAQ SECTION ============ */
.faq-section {
  max-width: 900px; width: 100%;
  margin-bottom: 4rem; text-align: left;
}
.faq-header { margin-bottom: 2rem; }
.faq-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--red); opacity: 0.6; margin-bottom: 0.5rem;
}
.faq-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  background: rgba(10, 10, 18, 0.7);
  border: 1px solid rgba(255, 42, 42, 0.06);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.faq-item::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width 0.4s ease;
}
.faq-item[open]::after { width: 100%; }
.faq-item[open] { background: rgba(255, 42, 42, 0.02); border-color: rgba(255, 42, 42, 0.12); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  color: rgba(232, 230, 227, 0.75);
  letter-spacing: 0.02em;
  list-style: none;
  transition: color 0.3s;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem; font-weight: 300;
  color: var(--red); opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
  opacity: 1;
}
.faq-item[open] > .faq-question { color: var(--light); }
.faq-question:hover { color: var(--light); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.78rem; line-height: 1.8;
  color: rgba(232, 230, 227, 0.5);
  animation: faqSlideIn 0.3s ease;
}
.faq-answer p { margin-bottom: 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: rgba(232, 230, 227, 0.8); font-weight: 600; }
.faq-answer em { color: rgba(232, 230, 227, 0.55); }
.faq-answer code {
  background: rgba(255, 42, 42, 0.08); color: var(--red);
  padding: 0.1em 0.35em; border-radius: 3px; font-size: 0.82em;
}
.faq-answer a {
  color: var(--red); text-decoration: none;
  border-bottom: 1px solid rgba(255, 42, 42, 0.3);
  transition: border-color 0.3s;
}
.faq-answer a:hover { border-color: var(--red); }

@keyframes faqSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ CTA SECTION ============ */
.cta-section { max-width: 580px; width: 100%; text-align: center; margin-bottom: 4rem; }
.cta-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem; opacity: 0.7;
}
.cta-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.02em;
}
.cta-sub {
  font-size: 0.8rem; color: rgba(232, 230, 227, 0.35);
  margin-bottom: 2rem; line-height: 1.6;
}
.cta-btn-primary {
  display: inline-block;
  background: var(--red); color: var(--dark);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease;
}
.cta-btn-primary:hover {
  background: var(--orange);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}

/* ============ EMAIL FORM ============ */
.email-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border: 1px solid rgba(255, 42, 42, 0.2);
  background: rgba(10, 10, 18, 0.6);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.email-form:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(255, 42, 42, 0.1);
}
.email-form input {
  flex: 1; background: transparent; border: none;
  padding: 1rem 1.2rem; color: var(--light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem; outline: none; min-width: 0;
}
.email-form input::placeholder { color: rgba(232, 230, 227, 0.2); }
.email-form button {
  background: var(--red); border: none;
  padding: 1rem 2rem; color: var(--dark);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.email-form button:hover {
  background: var(--orange);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}
.form-note {
  font-size: 0.6rem; color: rgba(232, 230, 227, 0.2);
  margin-top: 0.8rem; letter-spacing: 0.05em;
}
.form-msg {
  font-size: 0.65rem; margin-top: 0.6rem; letter-spacing: 0.05em;
}
.form-msg.success { color: var(--green); }
.form-msg.error { color: var(--red); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ FOOTER ============ */
.footer {
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.03);
  position: relative; z-index: 1;
}
.footer-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1.5rem;
}
.footer-brand img { height: 24px; width: auto; opacity: 0.6; }
.footer-brand span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; color: rgba(232,230,227,0.6);
  letter-spacing: 0.15em;
}
.footer-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-bottom: 1.5rem;
  list-style: none; flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(232, 230, 227, 0.6);
  text-decoration: underline; text-decoration-color: rgba(232,230,227,0.15); text-underline-offset: 3px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--red); text-decoration-color: var(--red); }

.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: rgba(232, 230, 227, 0.55);
  transition: color 0.3s, transform 0.3s;
}
.footer-social a:hover { color: var(--red); transform: translateY(-2px); }
.footer-social a svg { width: 16px; height: 16px; }

.footer-credit {
  font-size: 0.6rem;
  color: rgba(232, 230, 227, 0.45);
  letter-spacing: 0.1em;
  font-family: 'JetBrains Mono', monospace;
}
.footer-credit a {
  color: rgba(232, 230, 227, 0.55);
  text-decoration: none; transition: color 0.3s;
}
.footer-credit a:hover { color: var(--red); }
.footer-divider {
  width: 40px; height: 1px;
  background: rgba(255, 42, 42, 0.15);
  margin: 1rem auto;
}

/* ============ BLOG STYLES ============ */
.page-content {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  padding: 7rem 2rem 4rem;
  min-height: 100vh;
}
.page-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--light); margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.page-subtitle {
  font-size: 0.8rem; color: rgba(232,230,227,0.35);
  margin-bottom: 3rem; letter-spacing: 0.1em;
}

.post-list { display: flex; flex-direction: column; gap: 1px; }
.post-card {
  background: rgba(10, 10, 18, 0.7);
  border: 1px solid rgba(255, 42, 42, 0.06);
  padding: 1.8rem 2rem;
  transition: all 0.3s ease;
  text-decoration: none; color: inherit;
  display: block; position: relative; overflow: hidden;
}
.post-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width 0.4s ease;
}
.post-card:hover { background: rgba(255, 42, 42, 0.02); }
.post-card:hover::after { width: 100%; }
.post-card:hover .post-card-title { color: var(--red); }
.post-card-date {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem; color: var(--red);
  letter-spacing: 0.2em; opacity: 0.5; margin-bottom: 0.6rem;
}
.post-card-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 0.5rem; transition: color 0.3s;
}
.post-card-excerpt {
  font-size: 0.75rem; color: rgba(232,230,227,0.35);
  line-height: 1.7;
}

/* Single post */
.post-meta {
  margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.post-date {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem; color: var(--red);
  letter-spacing: 0.3em; opacity: 0.6; margin-bottom: 0.8rem;
}
.post-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--light); letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 0.6rem;
}
.post-description {
  font-size: 0.85rem; color: rgba(232,230,227,0.4);
  line-height: 1.6;
}

/* Markdown rendered content */
.post-body { font-size: 0.88rem; line-height: 1.85; color: rgba(232,230,227,0.7); }
.post-body h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: var(--light); text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 42, 42, 0.1);
}
.post-body h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600; font-size: 1rem;
  color: rgba(232,230,227,0.85);
  margin: 2rem 0 0.8rem;
}
.post-body p { margin-bottom: 1.2rem; }
.post-body a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(255,42,42,0.3); transition: border-color 0.3s; }
.post-body a:hover { border-color: var(--red); }
.post-body strong { color: var(--light); font-weight: 600; }
.post-body code {
  background: rgba(255,42,42,0.08); color: var(--red);
  padding: 0.15em 0.4em; border-radius: 3px;
  font-size: 0.82em;
}
.post-body pre {
  background: rgba(10,10,18,0.8);
  border: 1px solid rgba(255,42,42,0.1);
  border-radius: 6px; padding: 1.2rem 1.5rem;
  overflow-x: auto; margin: 1.5rem 0;
  font-size: 0.78rem; line-height: 1.7;
}
.post-body pre code { background: none; padding: 0; color: rgba(232,230,227,0.6); }
.post-body ul, .post-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.post-body li { margin-bottom: 0.4rem; }
.post-body blockquote {
  border-left: 3px solid var(--red);
  padding: 0.8rem 1.2rem; margin: 1.5rem 0;
  background: rgba(255,42,42,0.03);
  color: rgba(232,230,227,0.5);
  font-style: italic;
}
.post-body img { max-width: 100%; height: auto; border-radius: 4px; margin: 1.5rem 0; }
.post-body hr {
  border: none; height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 2.5rem 0;
}

.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(232,230,227,0.3);
  text-decoration: none; font-size: 0.7rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 3rem; transition: color 0.3s;
}
.back-link:hover { color: var(--red); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
  .threat-bar {
    font-size: 0.5rem; gap: 0.4rem 1rem;
    padding: 0.4rem 1rem; flex-wrap: wrap;
  }
  .terminal { font-size: 0.7rem; padding: 1.2rem; }
  .terminal .line { word-break: break-all; overflow-wrap: anywhere; }
  .signal-bar { width: 60px; }
  .signal-name { font-size: 0.65rem; }
  .email-form { flex-direction: column; }
  .email-form button { padding: 1rem; }
  .hero { padding-top: 7rem; }
  .nav-links { gap: 1rem; }
  .post-card { padding: 1.4rem 1.2rem; }
  .faq-question { padding: 1rem 1.2rem; font-size: 0.82rem; }
  .faq-answer { padding: 0 1.2rem 1.2rem; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .threat-bar {
    font-size: 0.45rem; gap: 0.3rem 0.6rem;
    padding: 0.35rem 0.8rem; top: 44px;
  }
  .site-nav { height: 44px; padding: 0 1rem; }
  .nav-brand { font-size: 0.75rem; }
  .nav-links { gap: 0.8rem; }
  .nav-links a { font-size: 0.5rem; letter-spacing: 0.12em; }
  .hero { padding: 1rem; padding-top: 7rem; }
  .terminal { font-size: 0.6rem; padding: 1rem; }
  .signal-row { gap: 0.5rem; font-size: 0.65rem; }
  .signal-bar { width: 40px; }
  .page-content { padding: 6rem 1rem 3rem; }
  .faq-question { padding: 0.9rem 1rem; font-size: 0.78rem; }
  .faq-answer { padding: 0 1rem 1rem; font-size: 0.72rem; }
}
