/* ═══════════════════════════════════════════════════════════
   PARADISE OPS — Clean Modern Dark Design
═══════════════════════════════════════════════════════════ */

:root {
  --bg:         #07080c;
  --bg-card:    #0d1018;
  --bg-card-h:  #111520;
  --bg-raised:  #13171f;
  --border:     #1c2333;
  --border-h:   #2a3547;

  --green:      #39ff14;
  --green-dim:  rgba(57,255,20,0.15);
  --green-glow: rgba(57,255,20,0.35);
  --cyan:       #00d4ff;
  --cyan-dim:   rgba(0,212,255,0.15);
  --red:        #ff3b3b;
  --red-dim:    rgba(255,59,59,0.15);
  --orange:     #ff8c00;

  --text:       #e8edf5;
  --text-2:     #7a8fa8;
  --text-3:     #3d5068;

  --font:       'Inter', sans-serif;
  --mono:       'JetBrains Mono', monospace;
  --display:    'Orbitron', monospace;

  --r:          6px;
  --r-lg:       12px;
  --r-xl:       20px;
  --ease:       0.2s ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 68px; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 15px; line-height: 1.65; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* ── OVERLAYS ────────────────────────────────────────────── */
.scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
}
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center; gap: 32px; padding: 0 32px;
  background: rgba(7,8,12,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--ease), background var(--ease);
}
.nav.scrolled { border-bottom-color: rgba(57,255,20,0.12); background: rgba(7,8,12,0.95); }

.nav-brand {
  display: flex; align-items: center; gap: 3px; flex-shrink: 0;
  font-family: var(--display); font-weight: 900; font-size: 1.1rem; letter-spacing: 1px;
}
.brand-name   { color: var(--text); }
.brand-accent { color: var(--green); text-shadow: 0 0 18px var(--green-glow); }
.brand-dot    {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); margin-left: 5px;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-link {
  font-size: 0.875rem; font-weight: 500; color: var(--text-2); padding: 6px 14px; border-radius: var(--r);
  transition: color var(--ease), background var(--ease); position: relative;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--green); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px;
  background: var(--green); border-radius: 2px; box-shadow: 0 0 6px var(--green);
}

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

.lang-toggle {
  display: flex; gap: 2px; background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r); padding: 3px;
}
.lang-btn {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 1px;
  color: var(--text-3); padding: 4px 10px; border-radius: 4px; transition: all var(--ease);
}
.lang-btn:hover { color: var(--text-2); }
.lang-btn.active {
  background: var(--green); color: #000; font-weight: 700;
  box-shadow: 0 0 10px rgba(57,255,20,0.3);
}

.nav-pulse {
  display: flex; align-items: center; gap: 6px; font-size: 0.75rem;
  color: var(--text-3); font-family: var(--mono);
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green); animation: dotPulse 1.8s infinite;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all .3s; }

/* ── DROPDOWN ────────────────────────────────────────────── */
.nav-item-drop { position: relative; }

.nav-drop-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  padding: 6px 14px; border-radius: var(--r);
  transition: color var(--ease), background var(--ease);
  background: none; border: none; cursor: pointer;
}
.nav-drop-btn:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-item-drop.open .nav-drop-btn { color: var(--green); }

.drop-arrow {
  width: 10px; height: 7px; flex-shrink: 0;
  transition: transform var(--ease);
}
.nav-item-drop.open .drop-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #0d1118; border: 1px solid var(--border-h);
  border-radius: var(--r-xl); padding: 8px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(57,255,20,0.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
/* arrow tip */
.dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: #0d1118; border-left: 1px solid var(--border-h); border-top: 1px solid var(--border-h);
}

.nav-item-drop.open .dropdown,
.nav-item-drop:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r-lg);
  color: var(--text-2); transition: all var(--ease);
  cursor: pointer; text-decoration: none;
}
.drop-item:hover { background: rgba(57,255,20,0.07); color: var(--text); }
.drop-item:hover .drop-label { color: var(--green); }

.drop-icon {
  width: 34px; height: 34px; border-radius: var(--r); flex-shrink: 0;
  background: var(--bg-raised); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.drop-label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--text); margin-bottom: 2px; transition: color var(--ease); }
.drop-desc  { display: block; font-size: 0.72rem; color: var(--text-3); line-height: 1.4; }

/* mobile dropdown */
@media (max-width: 768px) {
  .dropdown {
    position: static; transform: none !important;
    box-shadow: none; border: none; border-radius: 0;
    background: transparent; padding: 4px 0 4px 16px;
    border-left: 1px solid var(--border);
    margin: 4px 0 4px 14px;
  }
  .dropdown::before { display: none; }
  .nav-item-drop.open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
  .dropdown:not(.open) { display: none; }
  .nav-item-drop.open .dropdown { display: block; }
  .drop-item { padding: 8px 10px; }
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(57,255,20,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(57,255,20,.03) 1px,transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-glow-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.07) 0%, transparent 70%);
  top: 10%; left: -10%; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  bottom: 0; right: 5%; pointer-events: none;
}

.hero-inner {
  position: relative; width: 100%; max-width: 1200px; margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* hero text */
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 1.5px;
  color: var(--green); background: var(--green-dim); border: 1px solid rgba(57,255,20,.2);
  padding: 5px 14px; border-radius: 100px;
}
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: dotPulse 1.5s infinite; }

.hero-heading { margin-bottom: 20px; line-height: 1.1; }
.heading-top {
  display: block; font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700;
  color: var(--text-2); letter-spacing: -0.5px;
}
.heading-gradient {
  display: block; font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #39ff14 0%, #00d4ff 50%, #39ff14 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradShift 4s linear infinite;
}
@keyframes gradShift { 0%{background-position:0% center} 100%{background-position:200% center} }

.hero-sub {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.7; margin-bottom: 36px;
  max-width: 500px; font-weight: 400;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #000; font-weight: 700; font-size: 0.9rem;
  padding: 13px 28px; border-radius: var(--r-lg); border: none; cursor: pointer;
  transition: all var(--ease); box-shadow: 0 0 24px rgba(57,255,20,0.25);
}
.cta-primary:hover { background: #50ff25; box-shadow: 0 0 36px rgba(57,255,20,0.45); transform: translateY(-2px); }

.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); font-weight: 500; font-size: 0.9rem;
  padding: 12px 28px; border-radius: var(--r-lg); border: 1px solid var(--border-h); cursor: pointer;
  transition: all var(--ease);
}
.cta-secondary:hover { border-color: var(--text-2); background: rgba(255,255,255,0.04); transform: translateY(-2px); }

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: var(--green); text-shadow: 0 0 16px rgba(57,255,20,0.4); }
.stat-num small { font-size: 1rem; }
.stat-lbl { font-size: 0.72rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.3px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* hero mascot */
.hero-mascot { position: relative; display: flex; justify-content: center; align-items: center; }
.mascot-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.mascot-ring-1 { width: 320px; height: 320px; border-color: rgba(57,255,20,0.1); animation-delay: 0s; }
.mascot-ring-2 { width: 420px; height: 420px; border-color: rgba(57,255,20,0.06); animation-delay: 1s; }
.mascot-ring-3 { width: 520px; height: 520px; border-color: rgba(0,212,255,0.04); animation-delay: 2s; }
@keyframes ringPulse { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.02)} }

.mascot-lottie {
  position: relative; width: 100%; max-width: 420px;
  filter: drop-shadow(0 0 50px rgba(0,212,255,0.2));
  animation: mascotFloat 5s ease-in-out infinite;
}
.mascot-svg--hidden { display: none; }
.mascot-svg {
  position: relative; width: 100%; max-width: 400px;
  filter: drop-shadow(0 0 40px rgba(57,255,20,0.12));
  animation: mascotFloat 6s ease-in-out infinite;
}
@keyframes mascotFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* mascot SVG animations */
.core-pulse    { animation: corePulse 2s ease-in-out infinite; }
@keyframes corePulse    { 0%,100%{r:7;opacity:1} 50%{r:9.5;opacity:.6} }
.eye-pulse     { animation: eyePulse 3s ease-in-out infinite; }
@keyframes eyePulse     { 0%,100%{opacity:1} 50%{opacity:.5} }
.visor-glow    { animation: visorScan 4s ease-in-out infinite; }
@keyframes visorScan    { 0%,100%{opacity:1} 50%{opacity:.7} }
.antenna-pulse { animation: antennaPulse 1.5s ease-in-out infinite; }
@keyframes antennaPulse { 0%,100%{r:4;opacity:1} 50%{r:6;opacity:.4} }
.hex-float-1   { animation: hexFloat 5s ease-in-out infinite 0s; }
.hex-float-2   { animation: hexFloat 6s ease-in-out infinite 1s; }
.hex-float-3   { animation: hexFloat 7s ease-in-out infinite .5s; }
.hex-float-4   { animation: hexFloat 4.5s ease-in-out infinite 2s; }
@keyframes hexFloat     { 0%,100%{transform:translateY(0) rotate(0deg);opacity:.4} 50%{transform:translateY(-8px) rotate(10deg);opacity:.9} }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 24px; height: 24px; border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg); margin: 0 auto;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ══════════════════════════════════════════════════════════
   SECTIONS SHARED
══════════════════════════════════════════════════════════ */
.content-section       { padding: 96px 0; }
.content-section--alt  { background: rgba(0,16,26,0.4); }
.content-section--dark { background: rgba(14,4,4,0.5); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 2px; font-weight: 500;
  padding: 5px 14px; border-radius: 100px; border: 1px solid; margin-bottom: 16px;
  text-transform: uppercase;
}
.section-chip--green { color: var(--green); background: var(--green-dim); border-color: rgba(57,255,20,.2); }
.section-chip--cyan  { color: var(--cyan);  background: var(--cyan-dim);  border-color: rgba(0,212,255,.2); }
.section-chip--red   { color: var(--red);   background: var(--red-dim);   border-color: rgba(255,59,59,.2); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.5px;
  color: var(--text); margin-bottom: 14px; line-height: 1.2;
}
.section-desc { font-size: 1rem; color: var(--text-2); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* pill filters */
.pill-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.pill {
  font-size: 0.82rem; font-weight: 500; color: var(--text-2); background: var(--bg-raised);
  border: 1px solid var(--border); border-radius: 100px; padding: 6px 18px;
  transition: all var(--ease);
}
.pill:hover { border-color: var(--border-h); color: var(--text); }
.pill.active { background: var(--green-dim); border-color: rgba(57,255,20,.3); color: var(--green); font-weight: 600; }

.section-action { text-align: center; margin-top: 40px; }
.btn-ghost {
  font-size: 0.875rem; font-weight: 500; color: var(--text-2); background: var(--bg-raised);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 11px 28px;
  transition: all var(--ease);
}
.btn-ghost:hover { border-color: rgba(57,255,20,.3); color: var(--green); }
.btn-ghost--cyan:hover { border-color: rgba(0,212,255,.3); color: var(--cyan); }

/* ══════════════════════════════════════════════════════════
   NEWS CARDS
══════════════════════════════════════════════════════════ */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px;
}

.news-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.news-card:hover { border-color: rgba(57,255,20,0.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(57,255,20,0.08); }
.news-card--cyber:hover { border-color: rgba(0,212,255,0.25); box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.08); }

.card-top { padding: 20px 22px 16px; border-bottom: 1px solid var(--border); }
.card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.card-badge {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 600; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 100px; border: 1px solid;
}
.b-green  { color: var(--green); border-color: rgba(57,255,20,.25);  background: var(--green-dim); }
.b-cyan   { color: var(--cyan);  border-color: rgba(0,212,255,.25);  background: var(--cyan-dim); }
.b-red    { color: var(--red);   border-color: rgba(255,59,59,.25);  background: var(--red-dim); }
.b-orange { color: var(--orange);border-color: rgba(255,140,0,.25);  background: rgba(255,140,0,.1); }

.card-time { font-size: 0.72rem; color: var(--text-3); margin-left: auto; font-family: var(--mono); }
.card-title { font-size: 0.95rem; font-weight: 600; line-height: 1.45; color: var(--text); }

.card-body { padding: 16px 22px 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.card-excerpt {
  font-size: 0.85rem; color: var(--text-2); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.card-tag {
  font-size: 0.68rem; color: var(--text-3); border: 1px solid var(--border);
  border-radius: 100px; padding: 2px 9px; background: var(--bg-raised);
}
.card-read { font-size: 0.78rem; font-weight: 600; color: var(--green); white-space: nowrap; opacity: .7; transition: opacity var(--ease); }
.news-card:hover .card-read { opacity: 1; }

/* loading */
.loading-state {
  grid-column: 1/-1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 72px; font-size: 0.82rem; color: var(--text-3); font-family: var(--mono); letter-spacing: 1px;
}
.ld { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: ldPulse 1.2s ease-in-out infinite; }
.ld:nth-child(2){animation-delay:.2s} .ld:nth-child(3){animation-delay:.4s}
@keyframes ldPulse { 0%,80%,100%{transform:scale(.5);opacity:.3} 40%{transform:scale(1);opacity:1} }

/* ══════════════════════════════════════════════════════════
   TOOLS
══════════════════════════════════════════════════════════ */
.tools-search { margin-bottom: 40px; }
.search-wrap {
  position: relative; margin-bottom: 20px;
}
.search-ico {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--text-3);
}
.search-box {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 14px 16px 14px 48px; color: var(--text); font-size: 0.9rem; outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.search-box::placeholder { color: var(--text-3); }
.search-box:focus { border-color: rgba(57,255,20,.3); box-shadow: 0 0 0 3px rgba(57,255,20,.06); }

.tools-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 20px;
}
.tool-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  transition: all var(--ease);
}
.tool-card:hover {
  border-color: rgba(57,255,20,0.25); background: var(--bg-card-h);
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.tool-header { display: flex; gap: 14px; align-items: flex-start; }
.tool-icon {
  width: 46px; height: 46px; border-radius: var(--r-lg); background: var(--bg-raised);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.tool-meta { flex: 1; }
.tool-name { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 6px; }
.tool-badges { display: flex; gap: 6px; }
.tool-desc { font-size: 0.83rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.tool-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.tool-cat { font-family: var(--mono); font-size: 0.65rem; color: var(--text-3); letter-spacing: 1px; text-transform: uppercase; }
.tool-link {
  font-size: 0.78rem; font-weight: 600; color: var(--green); border: 1px solid rgba(57,255,20,.2);
  background: var(--green-dim); border-radius: var(--r); padding: 5px 14px;
  transition: all var(--ease);
}
.tool-link:hover { background: rgba(57,255,20,.2); border-color: rgba(57,255,20,.4); }

/* ══════════════════════════════════════════════════════════
   VULNOPS
══════════════════════════════════════════════════════════ */
.vuln-scoreboard {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 40px;
}
.score-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 24px; text-align: center; transition: all var(--ease);
}
.score-card:hover { transform: translateY(-2px); }
.score-card--crit  { border-color: rgba(255,59,59,.2);   background: rgba(255,59,59,.04); }
.score-card--high  { border-color: rgba(255,140,0,.2);   background: rgba(255,140,0,.04); }
.score-card--med   { border-color: rgba(245,200,0,.2);   background: rgba(245,200,0,.04); }
.score-card--zero  { border-color: rgba(255,59,59,.3);   background: rgba(255,59,59,.07); }
.score-num {
  display: block; font-family: var(--display); font-size: 2.4rem; font-weight: 900; margin-bottom: 6px;
}
.score-card--crit .score-num  { color: var(--red);    text-shadow: 0 0 16px rgba(255,59,59,.5); }
.score-card--high .score-num  { color: var(--orange); text-shadow: 0 0 16px rgba(255,140,0,.4); }
.score-card--med  .score-num  { color: #f5cc00;       text-shadow: 0 0 16px rgba(245,200,0,.4); }
.score-card--zero .score-num  { color: var(--red);    text-shadow: 0 0 20px rgba(255,59,59,.6); animation: zeroBlink 1.6s ease-in-out infinite; }
@keyframes zeroBlink { 0%,100%{opacity:1} 50%{opacity:.5} }
.score-lbl { font-size: 0.72rem; font-weight: 600; color: var(--text-3); letter-spacing: 0.5px; text-transform: uppercase; }

.vuln-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vuln-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.col-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; background: var(--bg-raised); border-bottom: 1px solid var(--border);
}
.col-title { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.live-indicator { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--red); font-family: var(--mono); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: dotPulse 1s infinite; }
.update-badge { font-family: var(--mono); font-size: 0.65rem; color: var(--text-3); }

.cve-list { max-height: 560px; overflow-y: auto; padding: 4px 0; }
.cve-list::-webkit-scrollbar { width: 4px; }
.cve-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.cve-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 20px;
  border-bottom: 1px solid var(--border); transition: background var(--ease); cursor: pointer;
}
.cve-item:last-child { border-bottom: none; }
.cve-item:hover { background: var(--bg-raised); }

.sev-pill {
  flex-shrink: 0; font-family: var(--mono); font-size: 0.58rem; font-weight: 700;
  padding: 3px 8px; border-radius: 100px; border: 1px solid; text-transform: uppercase; width: 62px; text-align: center;
}
.sev-critical { color: var(--red);    border-color: rgba(255,59,59,.3);   background: rgba(255,59,59,.1); }
.sev-high     { color: var(--orange); border-color: rgba(255,140,0,.3);   background: rgba(255,140,0,.1); }
.sev-medium   { color: #f5cc00;       border-color: rgba(245,200,0,.3);   background: rgba(245,200,0,.08); }
.sev-low      { color: var(--green);  border-color: rgba(57,255,20,.2);   background: var(--green-dim); }
.sev-zeroday  { color: var(--red);    border-color: rgba(255,59,59,.5);   background: rgba(255,59,59,.15); animation: zeroBlink 1.6s infinite; }

.cve-info { flex: 1; min-width: 0; }
.cve-id    { font-family: var(--mono); font-size: 0.72rem; color: var(--cyan); margin-bottom: 3px; }
.cve-title { font-size: 0.83rem; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.cve-meta  { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.cve-vendor {
  font-size: 0.65rem; color: var(--text-3); border: 1px solid var(--border);
  border-radius: 100px; padding: 1px 8px; background: var(--bg-raised);
}
.cve-date  { font-family: var(--mono); font-size: 0.62rem; color: var(--text-3); }
.cve-score { font-family: var(--display); font-size: 0.8rem; font-weight: 700; margin-left: auto; }
.cve-score.crit { color: var(--red); }
.cve-score.high { color: var(--orange); }
.cve-score.med  { color: #f5cc00; }

.vendor-list { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; max-height: 560px; overflow-y: auto; }
.vendor-list::-webkit-scrollbar { width: 4px; }
.vendor-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.vendor-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: all var(--ease); cursor: pointer;
}
.vendor-row:hover { border-color: var(--border-h); background: #161d28; }
.vendor-abbr {
  width: 40px; height: 40px; border-radius: var(--r); background: var(--bg-card);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 700; flex-shrink: 0;
}
.vendor-info { flex: 1; min-width: 0; }
.vendor-name  { font-weight: 600; font-size: 0.85rem; color: var(--text); margin-bottom: 2px; }
.vendor-patch { font-size: 0.75rem; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vendor-cnt   { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--red); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-brand { display: flex; align-items: center; gap: 3px; font-family: var(--display); font-weight: 900; font-size: 1.3rem; margin-bottom: 16px; }
.contact-bio { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social {
  font-size: 0.82rem; font-weight: 500; color: var(--text-2); background: var(--bg-raised);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 8px 18px;
  transition: all var(--ease);
}
.social:hover { color: var(--green); border-color: rgba(57,255,20,.25); background: var(--green-dim); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--text-2); }
.field input, .field textarea {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 13px 16px; color: var(--text); font-size: 0.9rem; outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus {
  border-color: rgba(57,255,20,.3); box-shadow: 0 0 0 3px rgba(57,255,20,.06);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-msg { font-size: 0.82rem; min-height: 20px; }
.form-msg.success { color: var(--green); }
.form-msg.error   { color: var(--red); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { font-family: var(--display); font-weight: 900; font-size: 1rem; }
.footer-copy  { font-size: 0.78rem; color: var(--text-3); flex: 1; text-align: center; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.78rem; color: var(--text-3); transition: color var(--ease); }
.footer-links a:hover { color: var(--text-2); }

/* ══════════════════════════════════════════════════════════
   FADE-IN (scroll animations injected by JS)
══════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text   { display: flex; flex-direction: column; align-items: center; }
  .hero-sub    { max-width: 100%; }
  .hero-mascot { order: -1; }
  .mascot-svg  { max-width: 300px; }
  .mascot-lottie { max-width: 300px; }
  .vuln-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .vuln-scoreboard { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(7,8,12,.97); border-bottom: 1px solid var(--border); padding: 12px 16px; gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-pulse  { display: none; }
  .hero-inner { padding: 48px 20px; gap: 36px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .news-grid  { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .vuln-scoreboard { grid-template-columns: repeat(2,1fr); }
  .footer-copy { flex: none; width: 100%; text-align: center; order: 3; }
}

@media (max-width: 480px) {
  .heading-top { font-size: 1.9rem; }
  .heading-gradient { font-size: 2.3rem; }
  .mascot-svg { max-width: 240px; }
  .mascot-lottie { max-width: 260px; }
  .vuln-scoreboard { grid-template-columns: 1fr 1fr; }
}
