@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

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

:root {
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark2:     #1a1a1a;
  --red:       #e63946;
  --red-dark:  #b02030;
  --blue:      #1d3557;
  --blue-light:#457b9d;
  --white:     #f1faee;
  --white2:    #ffffff;
  --gray:      #2a2a2a;
  --border:    rgba(230, 57, 70, 0.3);
  --font-mono: 'Courier New', Courier, monospace;
  --font-main: 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--red);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white2);
  letter-spacing: 1px;
}

.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO — THREAT MAP ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 4% 4rem;
  overflow: hidden;
  background: var(--black);
}

/* Canvas sits behind everything */
#threatCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Gradient overlay — opaque left, transparent right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.82) 40%,
    rgba(10,10,10,0.38) 100%
  );
  pointer-events: none;
}

/* Hero layout: text left */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  margin: 0;
}

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #ccc;
  background: rgba(230,57,70,0.08);
  border: 1px solid rgba(230,57,70,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s step-end infinite;
  flex-shrink: 0;
}

.hero-text .tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--white2);
}

.hero-text h1 .highlight {
  color: var(--red);
  display: block;
}

.hero-text .subtitle {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--blue-light);
  margin-bottom: 1.2rem;
}

.hero-text p {
  font-size: 0.92rem;
  color: #aaa;
  max-width: 560px;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== THREAT DASHBOARD (hero right) ===== */
.threat-dashboard {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.3rem;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.dash-panel {
  background: rgba(8, 8, 8, 0.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230,57,70,0.15);
  border-radius: 3px;
  padding: 0.65rem 0.85rem;
}

.dash-panel.full { grid-column: span 2; }

.panel-hdr {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(230,57,70,0.10);
}

.pdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pdot.r { background: var(--red); }
.pdot.b { background: var(--blue-light); }
.pdot.pulse { animation: blink 1s step-end infinite; }

/* Stat bar rows */
.stat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.32rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.stat-label {
  width: 115px;
  flex-shrink: 0;
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  min-width: 30px;
}

.stat-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s ease;
}

.stat-pct {
  font-size: 0.62rem;
  color: #555;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* CVE rows */
.cve-row {
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cve-row:last-child { border-bottom: none; }

.cve-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.18rem;
}

.cve-id {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--red);
  font-weight: 700;
}

.cve-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  padding: 0.08rem 0.35rem;
  border-radius: 2px;
  border: 1px solid;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cve-desc {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.btn-primary { background: var(--red); color: var(--white2); }
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--blue-light); }
.btn-outline:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }


/* ===== TERMINAL (used in About section) ===== */
.about-terminal {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  align-self: center;
}

.terminal-bar {
  background: var(--gray);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #e63946; }
.dot.yellow { background: #f4a261; }
.dot.green  { background: #2a9d8f; }

.terminal-title { font-size: 0.8125rem; color: #666; margin-left: 0.5rem; }

.terminal-body {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Parrot OS prompt colors */
.terminal-body .p-bracket { color: #5af78e; }          /* ┌─[ ]─[ ] └──╼  */
.terminal-body .p-user    { color: #5af78e; }          /* r0gg@parrot */
.terminal-body .p-dir     { color: #57c7ff; }          /* ~ */
.terminal-body .p-dollar  { color: #5af78e; }          /* $ */
.terminal-body .cmd       { color: var(--white2); }
.terminal-body .out       { color: #888; }
.terminal-body .out.blue  { color: var(--blue-light); }
/* keep .prompt for legacy use */
.terminal-body .prompt    { color: var(--red); }
.terminal-body .cursor {
  display: inline-block;
  width: 8px; height: 16px;
  background: var(--red);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

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


/* ===== SECTION COMMONS ===== */
section { padding: 5rem 6%; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 3rem; }

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--white2); }
.section-title span { color: var(--red); }

.divider { width: 50px; height: 3px; background: var(--red); margin-top: 1rem; }

/* ===== ABOUT ===== */
#about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p { color: #aaa; margin-bottom: 1.2rem; font-size: 0.98rem; }
.about-text p strong { color: var(--white2); }

/* ===== BLOG / PROJECTS ===== */
#blog {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}
#blog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.60) 50%,
    rgba(10,10,10,0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}
#blog .section-inner {
  position: relative;
  z-index: 2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--dark2);
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.card-banner { height: 8px; background: linear-gradient(90deg, var(--red), var(--blue)); }

.card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }

.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag-pill.red  { background: rgba(230,57,70,0.15); color: var(--red); border: 1px solid rgba(230,57,70,0.3); }
.tag-pill.blue { background: rgba(29,53,87,0.4);   color: var(--blue-light); border: 1px solid rgba(69,123,157,0.3); }

.card-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--white2); margin-bottom: 0.6rem; line-height: 1.3; }
.card-content p  { font-size: 0.88rem; color: #888; flex: 1; margin-bottom: 1.2rem; }

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #222;
  padding-top: 1rem;
  margin-top: auto;
}

.card-date { font-family: var(--font-mono); font-size: 0.8125rem; color: #555; }

.card-link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
}

.card-link:hover { color: var(--white2); }

.coming-soon-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #555;
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px dashed #333;
  border-radius: 2px;
}

/* ===== CONTACT ===== */
#contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Icons row — horizontal alignment */
.contact-links {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform var(--transition);
}

.contact-icon-btn:hover { transform: translateY(-4px); }

.contact-icon-box {
  width: 52px;
  height: 52px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all var(--transition);
}

.contact-icon-btn:hover .contact-icon-box {
  background: var(--red);
  border-color: var(--red);
  color: var(--white2);
  box-shadow: 0 6px 16px rgba(230,57,70,0.35);
}

.contact-icon-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.contact-icon-btn:hover .contact-icon-label { color: var(--red); }

/* Form */
form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: var(--dark2);
  border: 1px solid #333;
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  padding: 2rem 6%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #555;
  text-align: center;
  display: block;
}

.footer-copy span { color: var(--red); }

/* ===== LIVE PANEL (dashboard top row) ===== */
.live-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
}

.live-counter-display {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
}

.live-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.live-count {
  font-size: 0.78rem;
  color: #ccc;
  letter-spacing: 0.5px;
}

.live-count span {
  color: var(--white2);
  font-weight: 700;
}

/* ===== AD EXPLOITS BUTTON ===== */
.ad-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white2);
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.45);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.ad-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(230,57,70,0.35);
  transform: translateY(-1px);
}

/* ===== AD MODAL (slide-in from right) ===== */
.ad-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 299;
}

.ad-backdrop.open { display: block; }

.ad-modal {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 95vw);
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid rgba(230,57,70,0.2);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}

.ad-modal.open { transform: translateX(0); }

.ad-modal-hdr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(230,57,70,0.12);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.ad-modal-close {
  background: none;
  border: none;
  color: #555;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.2rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.ad-modal-close:hover { color: var(--red); }

.ad-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.8rem 1rem;
}

.ad-modal-body::-webkit-scrollbar { width: 4px; }
.ad-modal-body::-webkit-scrollbar-track { background: transparent; }
.ad-modal-body::-webkit-scrollbar-thumb { background: rgba(230,57,70,0.3); border-radius: 2px; }

/* AD CVE cards */
.ad-cve-card {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ad-cve-card:last-child { border-bottom: none; }

.ad-cve-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.22rem;
  flex-wrap: wrap;
}

.ad-cve-id {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}

.ad-cve-id:hover { color: var(--white2); }

.ad-cve-score {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 0.06rem 0.32rem;
  border-radius: 2px;
  border: 1px solid;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ad-cve-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #444;
  margin-left: auto;
}

.ad-cve-desc {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.ad-cve-link {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.ad-cve-link:hover { color: var(--white2); }

/* AD modal tabs */
.ad-modal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(230,57,70,0.12);
  flex-shrink: 0;
}

.ad-tab {
  flex: 1;
  padding: 0.55rem 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #444;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.ad-tab:hover { color: #888; }
.ad-tab.active { color: var(--red); border-bottom-color: var(--red); }

.ad-tab-pane { display: none; }
.ad-tab-pane.active { display: block; }

/* Resource cards (methodology + tools tabs) */
.ad-res-card {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ad-res-card:last-child { border-bottom: none; }

.ad-res-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.22rem;
  flex-wrap: wrap;
}

.ad-res-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  padding: 0.06rem 0.32rem;
  border-radius: 2px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ad-res-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white2);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}

.ad-res-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}

.ad-res-name:hover { color: var(--white2); }

.ad-res-lang {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  padding: 0.06rem 0.3rem;
  border-radius: 2px;
  background: rgba(69,123,157,0.15);
  border: 1px solid rgba(69,123,157,0.3);
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; }
  .threat-dashboard { display: none; }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--dark2);
    flex-direction: column;
    padding: 1.5rem 6%;
    border-bottom: 1px solid var(--border);
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .form-row { grid-template-columns: 1fr; }

  .hero-logo-circle { width: 280px; height: 280px; }
}
