@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Chakra+Petch:wght@300;400;500;600;700&family=Teko:wght@400;500;600;700&display=swap');

:root {
  --primary: #00ff88;
  --primary-dim: rgba(0, 255, 136, 0.15);
  --danger: #ff0040;
  --danger-dim: rgba(255, 0, 64, 0.12);
  --warning: #ffab00;
  --shield-blue: #00b4d8;
  --bg-dark: #020808;
  --bg-panel: #0a1210;
  --bg-card: #0d1a16;
  --bg-card-hover: #122420;
  --text-main: #c8ded6;
  --text-dim: #6a8a7e;
  --border-color: rgba(0, 255, 136, 0.08);
  --border-glow: rgba(0, 255, 136, 0.2);
  --scanline-opacity: 0.03;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Chakra Petch', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCANLINE OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 136, var(--scanline-opacity)) 2px,
    rgba(0, 255, 136, var(--scanline-opacity)) 4px
  );
  pointer-events: none;
  z-index: 10000;
}

/* ===== GRID BG ===== */
.matrix-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(0, 255, 136, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 0, 64, 0.03) 0%, transparent 50%),
    linear-gradient(rgba(0, 255, 136, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(2, 8, 8, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  border-bottom-color: var(--border-glow);
  box-shadow: 0 2px 30px rgba(0, 255, 136, 0.05);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--primary);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .shield { font-size: 1.5rem; }
.nav-logo .anti { color: var(--danger); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-dim);
}

.nav-cta-btn {
  background: var(--primary) !important;
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
}

.nav-cta-btn:hover {
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 26px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
}

.hero-content { max-width: 920px; }

.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--danger-dim);
  border: 1px solid rgba(255, 0, 64, 0.2);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 2rem;
  animation: alertPulse 3s ease-in-out infinite;
}

.hero-alert .blink-dot {
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 0, 64, 0); }
  50% { box-shadow: 0 0 25px rgba(255, 0, 64, 0.15); }
}

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

.hero h1 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 .line-green { color: var(--primary); }
.hero h1 .line-red { color: var(--danger); }
.hero h1 .line-white { color: #fff; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Teko', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-green {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.25);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 255, 136, 0.4);
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-green:hover {
  background: var(--primary-dim);
  transform: translateY(-3px);
}

.btn-red {
  background: var(--danger);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 0, 64, 0.25);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 0, 64, 0.4);
}

.btn-outline-red {
  background: transparent;
  border: 2px solid var(--danger);
  color: var(--danger);
}

/* ===== THREAT STATS COUNTER ===== */
.threat-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-box {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-box:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
}

.stat-box.danger { border-left: 3px solid var(--danger); }
.stat-box.warning { border-left: 3px solid var(--warning); }
.stat-box.info { border-left: 3px solid var(--shield-blue); }
.stat-box.success { border-left: 3px solid var(--primary); }

.stat-number {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.stat-box.danger .stat-number { color: var(--danger); }
.stat-box.warning .stat-number { color: var(--warning); }
.stat-box.info .stat-number { color: var(--shield-blue); }
.stat-box.success .stat-number { color: var(--primary); }

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 2rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.section-tag.red { color: var(--danger); }

.section-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== THREAT CARDS ===== */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.threat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.threat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--danger), var(--warning));
  opacity: 0;
  transition: opacity 0.3s;
}

.threat-card:hover {
  border-color: rgba(255, 0, 64, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.threat-card:hover::before { opacity: 1; }

.threat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.threat-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}

.threat-card h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.threat-card h3 a:hover { color: var(--danger); }

.threat-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.threat-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

.threat-tag.critical { background: var(--danger-dim); color: var(--danger); }
.threat-tag.high { background: rgba(255, 171, 0, 0.12); color: var(--warning); }
.threat-tag.medium { background: rgba(0, 180, 216, 0.12); color: var(--shield-blue); }

/* ===== SOLUTION CARDS ===== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--shield-blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.solution-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.solution-card:hover::before { opacity: 1; }

.solution-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.solution-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.solution-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.solution-card a.learn-more {
  color: var(--primary);
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.solution-card a.learn-more:hover { color: #fff; }

/* ===== ANTIVIRUS SECTION ===== */
.av-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.av-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
}

.av-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.av-card .av-icon { font-size: 3rem; margin-bottom: 1rem; }
.av-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.av-card p { color: var(--text-dim); font-size: 0.9rem; }

.av-badge {
  display: inline-block;
  margin-top: 1rem;
  background: var(--primary-dim);
  color: var(--primary);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ===== VPN SECTION ===== */
.vpn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vpn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
}

.vpn-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.vpn-card.featured {
  border-color: rgba(0, 255, 136, 0.25);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.04) 0%, var(--bg-card) 100%);
}

.vpn-card.featured::after {
  content: '★ RECOMMENDED';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg-dark);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
}

.vpn-card.featured-value {
  border-color: rgba(0, 180, 216, 0.25);
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.04) 0%, var(--bg-card) 100%);
  position: relative;
}

.vpn-card.featured-value::after {
  content: '💎 BEST VALUE';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--shield-blue);
  color: var(--bg-dark);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.vpn-card.featured-price {
  border-color: rgba(255, 171, 0, 0.25);
  background: linear-gradient(180deg, rgba(255, 171, 0, 0.04) 0%, var(--bg-card) 100%);
  position: relative;
}

.vpn-card.featured-price::after {
  content: '💰 BEST PRICE';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--warning);
  color: var(--bg-dark);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.vpn-emoji { font-size: 2.8rem; margin-bottom: 1rem; }
.vpn-name {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.vpn-tagline {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.vpn-card .btn { width: 100%; justify-content: center; }

/* ===== AI SECURITY / SecAI+ ===== */
.secai-banner {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.04), rgba(255, 171, 0, 0.04));
  border: 1px solid rgba(255, 171, 0, 0.15);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.secai-icon { font-size: 5rem; flex-shrink: 0; }
.secai-content { flex: 1; }

.secai-content h3 {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--warning);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.secai-content p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== CTA SECTION ===== */
.cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), rgba(0, 180, 216, 0.04));
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 60%);
  animation: ctaRotate 20s linear infinite;
}

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

.cta-icon { font-size: 3rem; margin-bottom: 1rem; position: relative; z-index: 1; }

.cta-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-title .hl-green { color: var(--primary); }
.cta-title .hl-red { color: var(--danger); }

.cta-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-feature {
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-feature .check { color: var(--primary); font-weight: 800; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover { color: #fff; }

.footer .hosting-line {
  font-size: 0.75rem;
  color: #3a4a44;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .secai-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .threat-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(2, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .vpn-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .av-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .threat-stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 100px 1rem 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta-box { padding: 2rem 1.5rem; }
  .cta-features { flex-direction: column; align-items: center; gap: 0.6rem; }
}
