:root {
  --bg: #050816;
  --panel: rgba(10, 15, 25, 0.7);
  --neon: #00ff9d;
  --cyan: #00d9ff;
  --text: #e6f7ff;
  --muted: #8aa4b8;
  --border: rgba(0, 255, 157, 0.25);
  --shadow: 0 0 30px rgba(0, 255, 157, 0.25);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rajdhani", sans-serif;
  background: radial-gradient(circle at top, rgba(0, 217, 255, 0.08), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(0, 255, 157, 0.12), transparent 35%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: screen;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.mouse-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.18), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(5, 8, 22, 0.65);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 255, 157, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text {
  font-size: 18px;
  text-transform: uppercase;
}

.logo-shield {
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.6), rgba(0, 217, 255, 0.2));
  border: 1px solid rgba(0, 255, 157, 0.8);
  border-radius: 10px 10px 16px 16px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.6);
  animation: pulse 3s infinite;
}

.logo-shield::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(0, 217, 255, 0.6);
  border-radius: 8px 8px 12px 12px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--neon);
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(120deg, rgba(0, 255, 157, 0.3), rgba(0, 217, 255, 0.25));
  border-color: rgba(0, 255, 157, 0.6);
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: rgba(0, 217, 255, 0.5);
  color: var(--cyan);
}

.btn-ghost {
  border-color: rgba(0, 255, 157, 0.3);
  color: var(--neon);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

main {
  position: relative;
  z-index: 3;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  padding: 100px 8vw 80px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 2px;
  font-family: "Space Mono", monospace;
}

.demo-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 12px;
}

.hero h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-top: 10px;
  color: var(--neon);
}

.hero-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 14px;
  border: 1px solid rgba(0, 255, 157, 0.35);
  border-radius: 999px;
  font-size: 13px;
  background: rgba(10, 15, 25, 0.6);
  box-shadow: inset 0 0 12px rgba(0, 255, 157, 0.2);
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
}

.hero-slider {
  width: min(920px, 98vw);
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  place-items: center;
  justify-self: start;
  margin-left: -136px;
}

.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 520px;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  background: rgba(10, 15, 25, 0.75);
  position: absolute;
  inset: 0;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.hero-image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  position: relative;
}

.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 157, 0.4);
  background: rgba(10, 15, 25, 0.7);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.dot.is-active {
  background: var(--neon);
  box-shadow: 0 0 12px rgba(0, 255, 157, 0.7);
  transform: scale(1.1);
}

.shield-illustration {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 217, 255, 0.3);
  display: grid;
  place-items: center;
  animation: spin 20s linear infinite;
}

.shield-core {
  width: 160px;
  height: 200px;
  background: linear-gradient(160deg, rgba(0, 255, 157, 0.6), rgba(0, 217, 255, 0.15));
  border-radius: 22px 22px 32px 32px;
  box-shadow: 0 0 40px rgba(0, 255, 157, 0.7);
}

.shield-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.4);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
}

.shield-pulse {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(0, 217, 255, 0.2);
  animation: pulse 3.5s ease-in-out infinite;
}

.mockup {
  width: min(420px, 90vw);
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(0, 255, 157, 0.15);
  backdrop-filter: blur(20px);
  padding: 22px;
  position: relative;
  z-index: 2;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Mono", monospace;
  color: var(--muted);
  font-size: 13px;
}

.mockup-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 157, 0.5);
  margin-left: 6px;
}

.mockup-body {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.score-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(5, 8, 22, 0.8);
  border: 1px solid rgba(0, 255, 157, 0.3);
}

.score {
  font-size: 40px;
  font-weight: 700;
  color: var(--neon);
}

.score-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden;
}

.score-bar span {
  display: block;
  width: 92%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--cyan));
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.mini-panel {
  padding: 12px;
  border-radius: 12px;
  background: rgba(5, 8, 22, 0.65);
  border: 1px solid rgba(0, 217, 255, 0.3);
  font-size: 13px;
}

.timeline span {
  display: block;
  height: 4px;
  background: rgba(0, 255, 157, 0.3);
  margin-top: 6px;
}

.alert-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 0, 76, 0.08);
  border: 1px solid rgba(255, 0, 76, 0.3);
}

.label {
  font-family: "Space Mono", monospace;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.section {
  padding: 80px 8vw;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
}

.feature-grid,
.dashboard-grid,
.cyber-grid,
.stats-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.timeline-step,
.panel,
.ai-card,
.cyber-card,
.stat-card,
.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  background: var(--panel);
  border: 1px solid rgba(0, 255, 157, 0.25);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 0 16px rgba(0, 255, 157, 0.15);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.6);
  box-shadow: 0 0 24px rgba(0, 217, 255, 0.35);
}

.feature-card .icon {
  font-size: 24px;
  color: var(--neon);
  margin-bottom: 10px;
}

.timeline-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.timeline-step {
  padding: 16px;
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.timeline-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--cyan));
  background-size: 120px 2px;
  animation: flow 3s linear infinite;
}

.step-index {
  font-family: "Space Mono", monospace;
  color: var(--cyan);
  font-size: 12px;
}

.dashboard-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: inset 0 0 20px rgba(0, 255, 157, 0.08);
  font-family: "Space Mono", monospace;
}

.panel-score {
  font-size: 36px;
  color: var(--neon);
}

.panel-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-top: 12px;
  overflow: hidden;
}

.panel-bar span {
  display: block;
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--cyan));
}

.panel-list {
  list-style: none;
  margin-top: 10px;
  color: var(--muted);
}

.panel-list li {
  margin-bottom: 6px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  padding: 6px 10px;
  border: 1px solid rgba(0, 255, 157, 0.35);
  border-radius: 999px;
  font-size: 12px;
}

.scan-rows {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
}

.scan-rows div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.data-bars {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
}

.data-bars .bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}

.data-bars .bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--neon));
}

.ai-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.node {
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.75);
  border: 1px solid rgba(0, 255, 157, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.15);
}

.flow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--cyan));
  background-size: 120px 2px;
  animation: flow 2s linear infinite;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.ai-card {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 217, 255, 0.3);
  background: rgba(10, 15, 25, 0.75);
  text-align: center;
}

.cyber-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 157, 0.2);
  background: rgba(10, 15, 25, 0.85);
  box-shadow: 0 0 24px rgba(0, 255, 157, 0.12);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 217, 255, 0.3);
  background: rgba(5, 8, 22, 0.8);
  text-align: center;
  font-family: "Space Mono", monospace;
}

.stat-value {
  font-size: 32px;
  color: var(--neon);
}

.testimonial-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 157, 0.3);
  background: rgba(10, 15, 25, 0.75);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(0, 255, 157, 0.6), rgba(0, 217, 255, 0.4));
  margin-bottom: 12px;
}

.faq-list details {
  background: rgba(10, 15, 25, 0.75);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 157, 0.3);
  background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1), transparent 70%);
  border-radius: var(--radius);
  margin: 0 8vw 60px;
}

.cta-content {
  padding: 60px 40px;
  text-align: center;
}

.cta-shield {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.12), transparent 60%);
  opacity: 0.6;
}

.footer {
  padding: 40px 8vw 60px;
  border-top: 1px solid rgba(0, 255, 157, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  background: rgba(5, 8, 22, 0.8);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.social span {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.4);
  margin-right: 8px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes flow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 80px;
  }

  .cta-content {
    padding: 50px 20px;
  }
}
