/* ─── CSS Variables ─── */
:root {
  --bg: #02030a;
  --bg-surface: rgba(8, 12, 26, 0.72);
  --border: rgba(168, 85, 247, 0.2);
  --border-bright: rgba(168, 85, 247, 0.5);
  --text: #f0f4ff;
  --text-dim: #94a3b8;
  --accent: #a855f7;
  --accent-glow: rgba(168, 85, 247, 0.45);
  --neon-red: #ef4444;
  --gold: #FFD700;
  /* Typography system — same as the scanner app: Outfit body warmth,
     Space Grotesk technical display headings, Orbitron brand/logo,
     JetBrains Mono for code/terminal. */
  --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-brand: 'Orbitron', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;
}

/* ─── Base ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  /* Same ambient gradient stack as the scanner app dashboard */
  background:
    radial-gradient(1100px 700px at 78% -12%, rgba(76,29,149,0.30) 0%, transparent 60%),
    radial-gradient(900px 650px at -12% 108%, rgba(30,58,138,0.24) 0%, transparent 55%),
    radial-gradient(700px 500px at 50% 120%, rgba(190,24,93,0.12) 0%, transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Background ─── */
#bg-canvas { position: fixed; top:0; left:0; width:100vw; height:100vh; z-index:-2; pointer-events:none; }
.bg-grid {
  position: fixed; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(168,85,247,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(168,85,247,0.05) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none; opacity: 0.4;
}

/* ─── Utilities ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
.highlight {
  background: linear-gradient(135deg, #fff 0%, #d946ef 50%, #a855f7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.text-glow { color: #fff; text-shadow: 0 0 15px var(--accent-glow), 0 0 30px var(--accent); }

/* Hero weapon gradient effect */
.text-weapon-mallu {
  display: inline-block;
  background: linear-gradient(90deg, #a855f7, #d946ef, #ffffff, #22d3ee, #a855f7);
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: malluGradient 6s linear infinite, mallu3d 6s ease-in-out infinite;
  transform-origin: center;
}

/* Advanced 3D Text */
.text-3d {
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  transform-style: preserve-3d;
  animation: text3dFloat 4s ease-in-out infinite;
  text-shadow: 
    0px 1px 0px #c4b5fd,
    0px 2px 0px #a78bfa,
    0px 3px 0px #8b5cf6,
    0px 4px 0px #7c3aed,
    0px 5px 0px #6d28d9,
    0px 6px 0px #5b21b6,
    0px 7px 10px rgba(0,0,0,0.4),
    0px 10px 20px rgba(168,85,247,0.4),
    0px 20px 40px rgba(168,85,247,0.2);
}
@keyframes text3dFloat {
  0%, 100% { transform: translateY(0) rotateX(10deg); }
  50% { transform: translateY(-8px) rotateX(15deg) scale(1.02); text-shadow: 
    0px 1px 0px #c4b5fd, 0px 2px 0px #a78bfa, 0px 3px 0px #8b5cf6, 0px 4px 0px #7c3aed, 0px 5px 0px #6d28d9, 0px 6px 0px #5b21b6, 0px 8px 15px rgba(0,0,0,0.5), 0px 15px 30px rgba(168,85,247,0.6), 0px 30px 60px rgba(168,85,247,0.3); }
}

/* ─── Navigation ─── */
.navbar {
  position: fixed; top: 0; width: 100%; padding: 14px 0; z-index: 100;
  background: rgba(2,3,10,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 55px; width: auto; filter: drop-shadow(0 0 10px rgba(168,85,247,0.5)); transition: transform 0.3s; }
.nav-logo:hover { transform: scale(1.1) rotate(5deg); }
.nav-title {
  font-family: var(--font-brand);
  font-size: 1.2rem; font-weight: 800; letter-spacing: 0.06em;
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-badge-releasing {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 20px;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.dot-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #ef4444;
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 90px; padding-bottom: 40px;
}
.hero-content { max-width: 820px; padding: 0 20px; position: relative; }
.hero-content::before {
  content: ""; position: absolute; top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: 680px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.16), transparent 70%);
  filter: blur(30px); z-index: -1; pointer-events: none;
}

/* Releasing Soon Badge (3D) */
.releasing-badge {
  display: block; margin-bottom: 16px;
  perspective: 600px;
}
.releasing-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 28px; border-radius: 40px;
  background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(239,68,68,0.5);
  box-shadow: 0 0 30px rgba(239,68,68,0.2), 0 0 60px rgba(168,85,247,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: perspective(400px) rotateX(8deg);
  animation: floatBadge 4s ease-in-out infinite;
}
.releasing-text {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 3px; color: #fca5a5;
  text-shadow: 0 0 20px rgba(239,68,68,0.8);
}
.releasing-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: pulseDot 1s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: perspective(400px) rotateX(8deg) translateY(0); }
  50% { transform: perspective(400px) rotateX(8deg) translateY(-8px); }
}

.badge {
  display: inline-block; padding: 7px 18px; margin-bottom: 30px;
  background: rgba(168, 85, 247, 0.08); border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c4b5fd; border-radius: 20px; font-size: 0.75rem;
  font-family: var(--font-mono); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-title {
  font-size: 4rem; font-weight: 900; line-height: 1.2;
  margin-bottom: 24px; letter-spacing: -1.5px;
  perspective: 800px;
  text-shadow: 0 4px 44px rgba(168, 85, 247, 0.28);
}
.hero-desc {
  font-size: 1.05rem; color: var(--text-dim); margin-bottom: 36px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.btn-primary {
  padding: 13px 32px; border-radius: 12px; font-size: 1rem; font-weight: 700;
  font-family: var(--font-display); letter-spacing: 0.3px;
  text-decoration: none; transition: all 0.3s; position: relative;
  background: linear-gradient(180deg, #9f3fff 0%, #7c3aed 100%); color: #fff;
  border: none; box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--accent-glow); }
.btn-secondary {
  padding: 13px 32px; border-radius: 12px; font-size: 1rem; font-weight: 700;
  font-family: var(--font-display); letter-spacing: 0.3px;
  text-decoration: none; transition: all 0.3s; color: #fff;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }

/* Floating tags */
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tag {
  padding: 4px 12px; border-radius: 20px; font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; letter-spacing: 1px;
  background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.25); color: #c4b5fd;
  transition: all 0.3s;
}
.tag:hover { background: rgba(168,85,247,0.2); border-color: var(--accent); }

/* ─── Features ─── */
.features { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.section-subtitle { color: var(--text-dim); font-size: 1.05rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative; overflow: hidden;
  background: rgba(8,12,26,0.7); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 28px; backdrop-filter: blur(16px);
  transition: all 0.4s ease; cursor: default;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.card-glow-accent {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--c), transparent 70%);
  opacity: 0.25; transition: opacity 0.4s;
}
.feature-card:hover .card-glow-accent { opacity: 0.5; }
.card-bottom-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover .card-bottom-glow { opacity: 1; }

.card-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--c);
}
.card-icon-wrap svg { width: 22px; height: 22px; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.card-tags span {
  font-size: 0.65rem; font-family: 'JetBrains Mono', monospace; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; letter-spacing: 0.5px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-dim);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; }
.feature-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.65; }

/* ─── Dashboard Section ─── */
.dashboard-section {
  padding: 80px 20px; background: radial-gradient(ellipse at center, rgba(168,85,247,0.04) 0%, transparent 70%);
}
.dashboard-wrapper { max-width: 1100px; margin: 0 auto; }
.dashboard-3d-container {
  position: relative; perspective: 1200px;
}
.dashboard-3d-inner {
  position: relative; border-radius: 16px; overflow: hidden;
  transform: perspective(1200px) rotateX(6deg) rotateY(-2deg);
  transition: transform 0.6s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(168,85,247,0.3), 0 0 80px rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.3);
}
.dashboard-3d-container:hover .dashboard-3d-inner {
  transform: perspective(1200px) rotateX(2deg) rotateY(0deg);
}
.dashboard-screen-glow {
  position: absolute; inset: -2px; border-radius: 18px; z-index: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.4), rgba(239,68,68,0.2));
  filter: blur(20px); opacity: 0.5;
}
.dashboard-screenshot {
  width: 100%; display: block; position: relative; z-index: 1;
  border-radius: 14px;
}
.dashboard-scanline {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.8), transparent);
  animation: scanDown 3s linear infinite;
}
@keyframes scanDown {
  0% { top: 0; opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
/* Corner brackets */
.dashboard-corner {
  position: absolute; width: 20px; height: 20px; z-index: 4;
  border-color: rgba(168,85,247,0.8);
}
.dashboard-corner.tl { top: 8px; left: 8px; border-top: 2px solid; border-left: 2px solid; }
.dashboard-corner.tr { top: 8px; right: 8px; border-top: 2px solid; border-right: 2px solid; }
.dashboard-corner.bl { bottom: 8px; left: 8px; border-bottom: 2px solid; border-left: 2px solid; }
.dashboard-corner.br { bottom: 8px; right: 8px; border-bottom: 2px solid; border-right: 2px solid; }

/* Floating chips */
.dash-chip {
  position: absolute; padding: 7px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700;
  background: rgba(8,12,26,0.9); border: 1px solid rgba(168,85,247,0.4);
  color: #c4b5fd; white-space: nowrap; backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.chip-1 { top: -18px; left: 60px; animation: chipFloat 3s ease-in-out infinite; }
.chip-2 { top: -18px; right: 120px; animation: chipFloat 3s 0.5s ease-in-out infinite; border-color: rgba(239,68,68,0.4); color: #fca5a5; }
.chip-3 { bottom: -18px; left: 50%; transform: translateX(-50%); animation: chipFloat 3s 1s ease-in-out infinite; border-color: rgba(16,185,129,0.4); color: #6ee7b7; }
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.chip-3 { animation: chipFloat3 3s 1s ease-in-out infinite; }
@keyframes chipFloat3 {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ─── AI Section ─── */
.ai-section {
  padding: 100px 20px;
  background: radial-gradient(circle at 50% 50%, rgba(168,85,247,0.05) 0%, transparent 70%);
}
.ai-container {
  max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; align-items: center;
  background: rgba(10,14,28,0.6); border: 1px solid var(--border);
  border-radius: 24px; padding: 60px; backdrop-filter: blur(20px);
}
.ai-visual { flex: 0 0 auto; display: flex; justify-content: center; }
.ai-core-container {
  position: relative; width: 220px; height: 220px;
  display: flex; justify-content: center; align-items: center;
}
.ai-core-logo { width: 140px; height: 140px; z-index: 2; filter: drop-shadow(0 0 20px rgba(168,85,247,0.8)); animation: float 6s ease-in-out infinite; }
.ai-core-glow {
  position: absolute; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(168,85,247,0.4) 0%, transparent 60%);
  animation: pulse 4s infinite; z-index: 1;
}
/* Orbit rings */
.orbit {
  position: absolute; border-radius: 50%; border: 1px solid rgba(168,85,247,0.2);
  animation: orbitSpin linear infinite;
}
.orbit-1 { width: 180px; height: 180px; animation-duration: 8s; }
.orbit-2 { width: 220px; height: 220px; animation-duration: 14s; animation-direction: reverse; border-color: rgba(239,68,68,0.15); }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ai-content { flex: 1; }
.ai-desc { font-size: 1rem; color: var(--text-dim); margin-bottom: 24px; line-height: 1.8; }
.ai-features { list-style: none; }
.ai-features li { margin-bottom: 12px; color: #fff; display: flex; align-items: flex-start; gap: 10px; }
.ai-features li::before { content: '✦'; color: var(--accent); flex-shrink: 0; }

/* ─── Developer Section ─── */
.developer-section { padding: 80px 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.dev-container {
  max-width: 860px; margin: 0 auto;
  background: rgba(10,14,28,0.8); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
  display: flex; gap: 40px; align-items: flex-end;
  backdrop-filter: blur(20px); box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}
.dev-visual-3d {
  width: 200px; flex-shrink: 0; position: relative;
  display: flex; align-items: flex-end; justify-content: center; align-self: flex-end;
}
.dev-card-inner { width: 100%; position: relative; background: none; border: none; box-shadow: none; overflow: visible; }
.dev-photo {
  width: 100%; max-height: 300px; height: auto; display: block;
  object-fit: contain; object-position: top center;
  filter: drop-shadow(0 0 20px rgba(168,85,247,0.5)) drop-shadow(0 0 40px rgba(168,85,247,0.2));
  transition: filter 0.3s ease;
  mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.3) 10%, black 22%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.3) 10%, black 22%);
}
.dev-card-inner::after { display: none; }
.dev-card-glow { display: none; }
.dev-info { flex: 1; }
.dev-title { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.dev-name {
  font-size: 1.4rem; color: #fff; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.dev-realname { color: var(--text-dim); font-weight: 400; font-size: 1.1rem; }

/* Indian flag 3D */
.flag-3d {
  height: 22px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(255,153,51,0.6));
  transform: perspective(200px) rotateY(-10deg);
  transition: transform 0.3s;
  animation: flagWave 3s ease-in-out infinite;
}
@keyframes flagWave {
  0%,100% { transform: perspective(200px) rotateY(-10deg) rotateZ(-1deg); }
  50% { transform: perspective(200px) rotateY(5deg) rotateZ(1deg); }
}

.dev-bio { color: var(--text-dim); margin-bottom: 28px; font-size: 0.98rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s;
}
.contact-item:hover { background: rgba(168,85,247,0.15); border-color: var(--accent); transform: translateY(-3px); }
.c-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ─── Footer ─── */
.footer {
  padding: 40px 20px; border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.5); text-align: center;
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; font-weight: 800; color: #fff;
}
.footer-logo span { font-family: var(--font-brand); letter-spacing: 0.05em; }
.copyright { color: var(--text-dim); font-size: 0.85rem; }

@keyframes malluBlink {
  0%, 100% { opacity: 1; }
  45% { opacity: 1; }
  50% { opacity: 0.15; }
  55% { opacity: 1; }
}
@keyframes malluGradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
@keyframes mallu3d {
  0%,100% { transform: perspective(300px) rotateX(0deg); }
  50% { transform: perspective(300px) rotateX(8deg) scale(1.05); }
}

/* ─── Animations ─── */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulse { 0%,100% { opacity:0.4; transform:scale(1); } 50% { opacity:0.7; transform:scale(1.1); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease forwards; }
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .ai-container { flex-direction: column; padding: 40px 30px; }
  .dev-container { flex-direction: column; padding: 30px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .dev-name { justify-content: center; }
  .nav-badge-releasing { display: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .dash-chip { display: none; }
  .nav-container { flex-direction: column; gap: 10px; padding: 10px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
  .navbar { padding: 10px 0; }
  .hero { padding-top: 130px; }
  .releasing-inner { padding: 8px 16px; gap: 8px; }
  .releasing-text { font-size: 0.75rem; letter-spacing: 1px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .ai-core-container { width: 160px; height: 160px; }
  .orbit-1 { width: 140px; height: 140px; }
  .orbit-2 { width: 180px; height: 180px; }
}

/* ══════════════════════════════════════════════════════════════════ */
/*  ADVANCED FX LAYER — added by request (atmosphere, tilt, sweeps)    */
/*  Built on the existing token system. Non-destructive & a11y-aware.  */
/* ══════════════════════════════════════════════════════════════════ */

@property --fx-a { syntax:'<angle>'; inherits:false; initial-value:0deg; }

/* ── Ambient aurora: drifting colored light behind content ── */
.fx-aurora{
  position:fixed; inset:-20%; z-index:-1; pointer-events:none;
  background:
    radial-gradient(38vw 38vw at 18% 22%, rgba(168,85,247,.20), transparent 62%),
    radial-gradient(34vw 34vw at 82% 30%, rgba(236,72,153,.18), transparent 60%),
    radial-gradient(40vw 40vw at 62% 80%, rgba(34,211,238,.14), transparent 64%),
    radial-gradient(30vw 30vw at 30% 78%, rgba(239,68,68,.14), transparent 62%);
  filter:blur(30px) saturate(120%);
  mix-blend-mode:screen;
  animation:fxAuroraDrift 26s ease-in-out infinite alternate;
  will-change:transform,opacity;
}
@keyframes fxAuroraDrift{
  0%{ transform:translate3d(-2%,-1%,0) scale(1); opacity:.8; }
  50%{ transform:translate3d(3%,2%,0) scale(1.08); opacity:1; }
  100%{ transform:translate3d(-1%,3%,0) scale(1.03); opacity:.88; }
}

/* ── Fine scan texture (kept behind content) ── */
.fx-noise{
  position:fixed; inset:0; z-index:-1; pointer-events:none; opacity:.035;
  background-image:repeating-linear-gradient(0deg, rgba(200,180,255,.9) 0 1px, transparent 1px 3px);
  mix-blend-mode:overlay;
  animation:fxNoiseMove 8s steps(6) infinite;
}
@keyframes fxNoiseMove{ to{ transform:translateY(3px); } }

/* ── Cursor spotlight (screen-blended, only lightens) ── */
.fx-cursor{
  position:fixed; top:0; left:0; width:520px; height:520px; z-index:1;
  pointer-events:none; border-radius:50%;
  transform:translate3d(var(--fx-cx,50vw), var(--fx-cy,50vh),0) translate(-50%,-50%);
  background:radial-gradient(circle, rgba(236,72,153,.14), rgba(168,85,247,.09) 40%, transparent 68%);
  mix-blend-mode:screen; opacity:0; transition:opacity .5s ease; will-change:transform;
}
body:hover .fx-cursor{ opacity:1; }

/* ── Hero headline: brand-purple glow behind the gradient text ── */
.text-weapon-mallu{ filter:drop-shadow(0 0 26px rgba(168,85,247,.45)) drop-shadow(0 0 46px rgba(217,70,239,.22)); }

/* ── Primary button: sheen sweep + richer reactive glow ── */
.btn-primary{ overflow:hidden; isolation:isolate; }
.btn-primary::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform:translateX(-130%);
  animation:fxSheen 4.5s ease-in-out infinite;
}
@keyframes fxSheen{ 0%,60%{ transform:translateX(-130%); } 80%,100%{ transform:translateX(130%); } }
.btn-primary:hover{ box-shadow:0 12px 40px var(--accent-glow), 0 0 60px rgba(236,72,153,.28); }

/* ── Feature cards: snappier motion, reactive tilt, sweep border, spotlight ── */
.feature-card{ transition:transform .18s ease-out, box-shadow .35s ease, border-color .35s ease; transform-style:preserve-3d; will-change:transform; }
body .feature-card.fx-tilt{
  transform:perspective(1100px) rotateX(var(--fx-rx,0deg)) rotateY(var(--fx-ry,0deg)) translateY(-8px) scale(1.01);
}
body .feature-card.fx-tilt:hover{
  box-shadow:0 24px 60px rgba(0,0,0,.55), 0 0 46px color-mix(in srgb, var(--fx-wc,#a855f7) 40%, transparent);
  border-color:color-mix(in srgb, var(--fx-wc,#a855f7) 55%, transparent);
}
/* keep textual content above the fx overlay */
.feature-card > .card-icon-wrap,
.feature-card > .card-tags,
.feature-card > h3,
.feature-card > p{ position:relative; z-index:2; }
/* injected overlay carrying the border sweep + inner spotlight */
.feature-card .card-fx{
  position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  z-index:1; opacity:0; transition:opacity .4s ease;
}
.feature-card:hover .card-fx{ opacity:1; }
.feature-card .card-fx::before{
  content:""; position:absolute; inset:0; border-radius:inherit; padding:1.4px;
  background:conic-gradient(from var(--fx-a), transparent 0 52%, var(--fx-wc,#a855f7) 66%, #fff 74%, var(--fx-wc,#a855f7) 82%, transparent 100%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  animation:fxSpin 4s linear infinite;
}
@keyframes fxSpin{ to{ --fx-a:360deg; } }
.feature-card .card-fx::after{
  content:""; position:absolute; inset:0; border-radius:inherit; mix-blend-mode:screen;
  background:radial-gradient(220px 220px at var(--fx-mx,50%) var(--fx-my,50%), color-mix(in srgb, var(--fx-wc,#a855f7) 22%, transparent), transparent 62%);
}

/* Center the lone 7th (WiFi) card in the 3-column grid so the row reads intentional */
/* (WiFi card centering removed — grid is now full with 15 cards) */

/* WiFi icon: gentle broadcast pulse */
.card-wifi .card-icon-wrap svg{ animation:fxWifi 2.6s ease-in-out infinite; transform-origin:50% 85%; }
@keyframes fxWifi{ 0%,100%{ opacity:.85; transform:scale(1); } 50%{ opacity:1; transform:scale(1.06); } }

/* ── Dashboard: fourth floating chip ── */
.dash-chip.chip-4{
  bottom:22%; right:-14px; border-color:rgba(236,72,153,.45); color:#f9a8d4;
  animation:chipFloat 3.4s 0.8s ease-in-out infinite;
}
.dashboard-3d-container:hover .dashboard-screenshot{ filter:saturate(1.08) contrast(1.03); }

/* ── Nav links: animated underline ── */
.nav-links a{ position:relative; }
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-6px; height:2px; border-radius:2px;
  background:linear-gradient(90deg,#ec4899,var(--accent)); transition:right .3s ease;
}
.nav-links a:hover::after{ right:0; }

/* ── AI feature list micro-interaction + hero tag lift ── */
.ai-features li{ transition:transform .2s ease; }
.ai-features li:hover{ transform:translateX(6px); }
.hero-tags .tag:hover{ transform:translateY(-3px) scale(1.06); box-shadow:0 6px 18px rgba(168,85,247,.32); }

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce){
  .fx-aurora,.fx-noise,.btn-primary::after,
  .dash-chip.chip-4,.card-wifi .card-icon-wrap svg,.feature-card .card-fx::before{ animation:none !important; }
  .fx-cursor{ display:none; }
  body .feature-card.fx-tilt{ transform:translateY(-8px) scale(1.01); }
}

/* ── Small screens: drop pointer-only extras ── */
@media (max-width:720px){
  .fx-cursor{ display:none; }
  .dash-chip.chip-4{ display:none; }
}

/* ══════════════════════════════════════════════════════════════════ */
/*  SPACE VFX — fills left/right gutters with galaxy visuals           */
/*  Fixed, pointer-events:none, sits BEHIND content (z-index:-1).      */
/* ══════════════════════════════════════════════════════════════════ */
.space-vfx{ position:fixed; inset:0; z-index:-1; pointer-events:none; overflow:hidden; }
.sv-side{ position:absolute; top:0; bottom:0; width:360px; will-change:transform; }
.sv-right{ right:0; transform:translateY(calc(var(--pscroll,0) * 0.045px)); }

/* nebula wash anchored to each edge */
.sv-nebula{ position:absolute; width:460px; height:460px; border-radius:50%; filter:blur(20px); mix-blend-mode:screen; opacity:.55; }
.sv-right .sv-nebula{ right:-180px; top:44vh; background:radial-gradient(circle, rgba(99,102,241,.5), rgba(34,211,238,.16) 45%, transparent 70%); }

/* twinkling star field (two layers) */
.sv-stars, .sv-stars::after{
  position:absolute; inset:0; content:"";
  background-repeat:no-repeat;
}
.sv-stars{
  background-image:
    radial-gradient(1.5px 1.5px at 22% 10%, #fff, transparent),
    radial-gradient(1px 1px at 62% 20%, #e9d5ff, transparent),
    radial-gradient(1.5px 1.5px at 36% 44%, #fff, transparent),
    radial-gradient(1px 1px at 82% 54%, #a5f3fc, transparent),
    radial-gradient(1.5px 1.5px at 16% 66%, #fff, transparent),
    radial-gradient(1px 1px at 72% 76%, #fbcfe8, transparent),
    radial-gradient(1.5px 1.5px at 46% 86%, #fff, transparent),
    radial-gradient(1px 1px at 28% 94%, #ddd6fe, transparent);
  animation:svTwinkle 4.5s ease-in-out infinite;
}
.sv-stars::after{
  background-image:
    radial-gradient(1px 1px at 12% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 52% 38%, #c4b5fd, transparent),
    radial-gradient(1px 1px at 30% 60%, #fff, transparent),
    radial-gradient(1px 1px at 88% 70%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 8% 82%, #a5f3fc, transparent),
    radial-gradient(1px 1px at 66% 92%, #fff, transparent);
  animation:svTwinkle 6s 1.2s ease-in-out infinite;
}
@keyframes svTwinkle{ 0%,100%{ opacity:.45; } 50%{ opacity:1; } }

/* vertical light stream hugging the edge */
.sv-stream{ position:absolute; top:6vh; height:70vh; width:60px; opacity:.8;
  filter:drop-shadow(0 0 6px rgba(168,85,247,.7)); }
.sv-right .sv-stream{ right:14px; }
.sv-stream path{ stroke-dasharray:34 320; animation:svFlow 6s linear infinite; }
@keyframes svFlow{ to{ stroke-dashoffset:-354; } }

@keyframes svFloat{ 0%,100%{ transform:translateY(0) rotate(0deg); } 50%{ transform:translateY(-16px) rotate(1.2deg); } }

/* glowing orb + orbiting satellites (right) */
.sv-orb{ position:absolute; right:-150px; top:46vh; width:340px; height:340px;
  animation:svFloat 21s ease-in-out infinite reverse; }
.sv-orb-body{ position:absolute; inset:0; border-radius:50%;
  background:radial-gradient(circle at 34% 30%, #bfdbfe 0%, #6366f1 30%, #7c3aed 56%, #db2777 80%, #3b0764 100%);
  box-shadow:0 0 90px rgba(124,58,237,.55), inset -22px -30px 80px rgba(0,0,0,.55), inset 30px 22px 60px rgba(191,219,254,.4); }
.sv-orbit{ position:absolute; top:50%; left:50%; border-radius:50%;
  border:1px solid rgba(168,85,247,.35); transform:translate(-50%,-50%); }
.sv-orbit-a{ width:440px; height:440px; animation:svSpin 12s linear infinite; }
.sv-orbit-b{ width:540px; height:540px; border-color:rgba(34,211,238,.28); animation:svSpin 20s linear infinite reverse; }
.sv-orbit span{ position:absolute; top:-5px; left:50%; width:10px; height:10px; border-radius:50%;
  transform:translateX(-50%); background:#e9d5ff; box-shadow:0 0 12px 2px rgba(236,72,153,.9); }
.sv-orbit-b span{ background:#a5f3fc; box-shadow:0 0 12px 2px rgba(34,211,238,.9); }
@keyframes svSpin{ to{ transform:translate(-50%,-50%) rotate(360deg); } }

/* small moons */
.sv-moon{ position:absolute; border-radius:50%; }
/* (right red globe replaced by firing asteroid — see SPACE VFX · ASTEROID below) */

/* comets */
.sv-comet{ position:absolute; width:120px; height:2px; border-radius:2px; opacity:0;
  background:linear-gradient(90deg, rgba(255,255,255,0), #fff);
  filter:drop-shadow(0 0 6px #a855f7); }
.sv-comet::after{ content:""; position:absolute; right:0; top:-2px; width:6px; height:6px; border-radius:50%;
  background:#fff; box-shadow:0 0 12px 2px #ec4899; }
.sv-comet-r{ right:-150px; top:64vh; animation:svCometR 14s ease-in 7s infinite; }
@keyframes svCometR{ 0%{ transform:translate(0,0) rotate(150deg); opacity:0; } 3%{ opacity:1; } 16%{ transform:translate(-360px,-190px) rotate(150deg); opacity:0; } 100%{ opacity:0; } }

/* keep atmosphere but calm it on reduced motion */
@media (prefers-reduced-motion: reduce){
  .sv-stars,.sv-stars::after,.sv-stream path,.sv-orb,
  .sv-orbit,.sv-comet,
  .sv-asteroid,.ast-fire,.ast-trail{ animation:none !important; }
  .sv-right{ transform:none !important; }
  .sv-asteroid{ transform:translate(10px,30px) rotate(-8deg); opacity:1; }
}

/* scale down a touch on mid screens, hide where there is no gutter */
@media (max-width:1440px){
  .sv-orb{ width:300px; height:300px; right:-170px; }
  .sv-orbit-a{ width:390px; height:390px; } .sv-orbit-b{ width:480px; height:480px; }
}
@media (max-width:1024px){ .space-vfx{ display:none; } }

/* ══════════════════════════════════════════════════════════════════ */
/*  SPACE VFX · FIRING ASTEROID + TARGETING RETICLE (right)            */
/* ══════════════════════════════════════════════════════════════════ */
.sv-asteroid{ position:absolute; right:66px; top:10vh; width:74px; height:74px;
  animation:astFly 12s ease-in-out infinite; }
.ast-rock{ position:absolute; inset:0; width:100%; height:100%;
  filter:drop-shadow(0 0 9px rgba(245,158,11,.8)); }
.ast-fire{ position:absolute; inset:-8px; border-radius:50%; mix-blend-mode:screen;
  background:radial-gradient(circle at 40% 60%, rgba(255,255,255,.95), rgba(251,191,36,.75) 30%, rgba(239,68,68,.45) 55%, transparent 72%);
  filter:blur(3px); animation:astFlick .28s steps(2) infinite; }
.ast-trail{ position:absolute; left:44%; top:16%; width:150px; height:15px; border-radius:50%;
  transform-origin:left center; transform:rotate(-30deg);
  background:linear-gradient(90deg, rgba(255,255,255,.95), rgba(251,191,36,.9) 22%, rgba(239,68,68,.5) 55%, transparent);
  filter:blur(4px); animation:astFlick .3s steps(2) infinite; }
@keyframes astFly{ 0%{ transform:translate(70px,-46px) rotate(-8deg); opacity:0; } 12%{ opacity:1; } 84%{ opacity:1; } 100%{ transform:translate(-56px,150px) rotate(-8deg); opacity:0; } }
@keyframes astFlick{ 0%{ opacity:.8; } 100%{ opacity:1; } }

/* ══════════════════════════════════════════════════════════════════════
   KILL CHAIN — five-step workflow timeline
   ══════════════════════════════════════════════════════════════════════ */
.how-section { padding: 90px 20px 70px; }
.how-track {
  max-width: 1200px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.how-track::before {
  content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, #22d3ee, #eab308, #f97316, #ef4444, #10b981);
  opacity: 0.35;
}
.how-step { position: relative; text-align: center; padding: 0 8px; }
.how-num {
  position: relative; z-index: 1;
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem;
  color: var(--c); background: rgba(8, 12, 26, 0.92);
  border: 1px solid color-mix(in srgb, var(--c) 45%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--c) 30%, transparent),
              inset 0 0 18px color-mix(in srgb, var(--c) 12%, transparent);
  transition: transform .3s ease, box-shadow .3s ease;
}
.how-step:hover .how-num {
  transform: scale(1.12);
  box-shadow: 0 0 42px color-mix(in srgb, var(--c) 55%, transparent);
}
.how-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.how-step p { color: var(--text-dim); font-size: 0.82rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════
   RELEASE ROADMAP — vertical phase timeline
   ══════════════════════════════════════════════════════════════════════ */
.roadmap-section { padding: 70px 20px 90px; }
.roadmap { max-width: 860px; margin: 0 auto; position: relative; padding-left: 34px; }
.roadmap::before {
  content: ""; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, #10b981, #a855f7 55%, rgba(168, 85, 247, 0.15));
}
.rm-item {
  position: relative; margin-bottom: 24px;
  background: rgba(8, 12, 26, 0.6); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px; padding: 20px 24px; backdrop-filter: blur(14px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.rm-item:hover {
  transform: translateX(6px);
  border-color: color-mix(in srgb, var(--rm-c, #a855f7) 45%, transparent);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.rm-item::before {
  content: ""; position: absolute; left: -30px; top: 26px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--rm-c, #a855f7);
  box-shadow: 0 0 12px var(--rm-c, #a855f7);
}
.rm-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.rm-phase {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 1.5px;
  color: var(--rm-c, #a855f7); text-transform: uppercase;
}
.rm-item h3 { font-size: 1.05rem; flex: 1; }
.rm-status {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  color: var(--rm-c, #a855f7);
  border: 1px solid color-mix(in srgb, var(--rm-c, #a855f7) 45%, transparent);
  background: color-mix(in srgb, var(--rm-c, #a855f7) 10%, transparent);
}
.rm-item p { color: var(--text-dim); font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════════════════
   CTA BAND — closing call to action
   ══════════════════════════════════════════════════════════════════════ */
.cta-section { padding: 40px 20px 110px; }
.cta-box {
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; overflow: hidden;
  padding: 62px 40px; border-radius: 24px;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.18), rgba(8, 12, 26, 0.85) 55%), rgba(8, 12, 26, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.35);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(168, 85, 247, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.cta-box::before {
  content: ""; position: absolute; inset: -40%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(168, 85, 247, 0.25) 82%, rgba(236, 72, 153, 0.3) 88%, transparent 96%);
  animation: ctaSpin 9s linear infinite;
}
@keyframes ctaSpin { to { transform: rotate(360deg); } }
.cta-box > * { position: relative; }
.cta-box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; }
.cta-box p { color: var(--text-dim); margin-bottom: 30px; }

@media (max-width: 900px) {
  .how-track { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .how-track::before { display: none; }
}
@media (max-width: 600px) {
  .how-track { grid-template-columns: 1fr; }
  .cta-box { padding: 46px 22px; }
  .cta-box h2 { font-size: 1.6rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   ARSENAL — bento grid of weaponized modules, each with its own VFX
   ══════════════════════════════════════════════════════════════════════ */
.arsenal-section { padding: 80px 20px; }
.arsenal-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ars-tile {
  background: rgba(8, 12, 26, 0.6); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px; padding: 20px; backdrop-filter: blur(14px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.ars-tile:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--c) 45%, transparent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 36px color-mix(in srgb, var(--c) 22%, transparent);
}
.ars-tile h3 { font-size: 1.05rem; margin-bottom: 8px; }
.ars-tile p { color: var(--text-dim); font-size: 0.83rem; line-height: 1.6; }
.ars-vfx {
  position: relative; height: 130px; margin-bottom: 16px;
  border-radius: 12px; overflow: hidden;
  background: rgba(2, 4, 14, 0.55); border: 1px solid rgba(255, 255, 255, 0.05);
}

/* — tile VFX: radar sweep — */
.ars-radar i {
  position: absolute; inset: 8%; border-radius: 50%; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--c) 45%, transparent);
  background: repeating-radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--c) 22%, transparent) 0 1px, transparent 1px 18px);
}
.ars-radar i::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, color-mix(in srgb, var(--c) 55%, transparent), transparent 75deg);
  animation: arsSpin 3.2s linear infinite;
}
@keyframes arsSpin { to { transform: rotate(360deg); } }
.ars-radar .blip {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c); box-shadow: 0 0 10px var(--c);
  animation: blipPulse 3.2s infinite;
}
.ars-radar .b1 { left: 32%; top: 38%; }
.ars-radar .b2 { left: 62%; top: 58%; animation-delay: 1.1s; }
.ars-radar .b3 { left: 50%; top: 24%; animation-delay: 2.2s; }
@keyframes blipPulse { 0%, 20% { opacity: 1; } 60%, 100% { opacity: 0.15; } }

/* — tile VFX: phone scan — */
.ars-phone::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 104px; border-radius: 12px;
  border: 1.5px solid color-mix(in srgb, var(--c) 55%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--c) 25%, transparent),
              inset 0 0 18px color-mix(in srgb, var(--c) 12%, transparent);
}
.ars-phone .scanline {
  position: absolute; left: 50%; top: 50%; width: 54px; height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  box-shadow: 0 0 12px var(--c);
  animation: phoneScan 2.6s ease-in-out infinite;
}
@keyframes phoneScan { 0%, 100% { margin-top: -44px; } 50% { margin-top: 44px; } }
.ars-phone .pk { position: absolute; width: 10px; height: 10px; border: 1.5px solid var(--c); opacity: .7; }
.ars-phone .p1 { left: 10px; top: 10px; border-right: 0; border-bottom: 0; }
.ars-phone .p2 { right: 10px; top: 10px; border-left: 0; border-bottom: 0; }
.ars-phone .p3 { left: 10px; bottom: 10px; border-right: 0; border-top: 0; }
.ars-phone .p4 { right: 10px; bottom: 10px; border-left: 0; border-top: 0; }

/* — tile VFX: wifi waves — */
.ars-wifi b {
  position: absolute; left: 50%; bottom: 20px; width: 8px; height: 8px;
  margin-left: -4px; border-radius: 50%;
  background: var(--c); box-shadow: 0 0 12px var(--c);
}
.ars-wifi i {
  position: absolute; left: 50%; bottom: 16px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--c); opacity: 0;
  animation: wifiWave 2.4s ease-out infinite;
}
.ars-wifi .w1 { width: 36px; height: 36px; margin-left: -18px; }
.ars-wifi .w2 { width: 66px; height: 66px; margin-left: -33px; animation-delay: .4s; }
.ars-wifi .w3 { width: 96px; height: 96px; margin-left: -48px; animation-delay: .8s; }
@keyframes wifiWave {
  0%   { transform: translateY(8px) scale(.6); opacity: 0; }
  25%  { opacity: .9; }
  100% { transform: translateY(-16px) scale(1.12); opacity: 0; }
}

/* — tile VFX: matrix rain + taint line — */
.ars-code .rain {
  position: absolute; top: -110%;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 2px;
  writing-mode: vertical-rl; text-orientation: upright;
  color: color-mix(in srgb, var(--c) 75%, transparent);
  text-shadow: 0 0 8px var(--c); opacity: .5;
  animation: rainFall linear infinite;
}
.ars-code .r1 { left: 12%; animation-duration: 3.4s; }
.ars-code .r2 { left: 34%; animation-duration: 2.7s; animation-delay: .6s; }
.ars-code .r3 { left: 58%; animation-duration: 3.9s; animation-delay: 1.2s; }
.ars-code .r4 { left: 80%; animation-duration: 3s;   animation-delay: .3s; }
@keyframes rainFall { to { top: 110%; } }
.ars-code .typeline {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  font-family: var(--font-mono); font-size: 0.66rem; color: #e2e8f0;
  background: rgba(2, 4, 14, 0.85); border-radius: 6px; padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  white-space: nowrap; overflow: hidden;
}
.ars-code .typeline::after { content: "\258C"; color: var(--c); animation: fxBlink .9s steps(1) infinite; }

/* — tile VFX: AI core orbits — */
.ars-ai .core {
  position: absolute; left: 50%; top: 50%; width: 26px; height: 26px;
  margin: -13px 0 0 -13px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--c) 45%, transparent 78%);
  box-shadow: 0 0 30px var(--c);
  animation: corePulse 2.2s ease-in-out infinite;
}
@keyframes corePulse { 50% { transform: scale(1.25); } }
.ars-ai .ring {
  position: absolute; left: 50%; top: 50%; border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--c) 50%, transparent);
}
.ars-ai .ra { width: 70px; height: 70px; margin: -35px 0 0 -35px; animation: arsSpin 6s linear infinite; }
.ars-ai .rb { width: 106px; height: 106px; margin: -53px 0 0 -53px; animation: arsSpin 10s linear infinite reverse; }
.ars-ai .sat {
  position: absolute; left: 50%; top: 50%; width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px; border-radius: 50%;
  background: var(--c); box-shadow: 0 0 10px var(--c);
}
.ars-ai .s1 { --r: 35px; animation: arsOrbit 6s linear infinite; }
.ars-ai .s2 { --r: 53px; animation: arsOrbit 10s linear infinite reverse; }
@keyframes arsOrbit {
  from { transform: rotate(0deg) translateX(var(--r)); }
  to   { transform: rotate(360deg) translateX(var(--r)); }
}

/* — tile VFX: zero-day scope — */
.ars-scope .ret {
  position: absolute; left: 50%; top: 50%; width: 76px; height: 76px;
  margin: -38px 0 0 -38px; border-radius: 50%; opacity: .85;
  border: 1px solid color-mix(in srgb, var(--c) 45%, transparent);
  background:
    linear-gradient(var(--c), var(--c)) 50% 0 / 1px 12px no-repeat,
    linear-gradient(var(--c), var(--c)) 50% 100% / 1px 12px no-repeat,
    linear-gradient(var(--c), var(--c)) 0 50% / 12px 1px no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 50% / 12px 1px no-repeat;
}
.ars-scope .sweep {
  position: absolute; left: 50%; top: 50%; width: 76px; height: 76px;
  margin: -38px 0 0 -38px; border-radius: 50%;
  background: conic-gradient(from 0deg, color-mix(in srgb, var(--c) 50%, transparent), transparent 60deg);
  animation: arsSpin 2.8s linear infinite;
}
.ars-scope .lock {
  position: absolute; left: 50%; top: 50%; width: 10px; height: 10px;
  margin: -5px 0 0 -5px; border-radius: 50%;
  border: 1.5px solid var(--c);
  animation: lockPulse 1.6s ease-in-out infinite;
}
@keyframes lockPulse { 50% { transform: scale(1.5); box-shadow: 0 0 16px var(--c); } }

/* ══════════════════════════════════════════════════════════════════════
   COMPARISON — legacy scanners vs Brahmastra
   ══════════════════════════════════════════════════════════════════════ */
.compare-section { padding: 80px 20px; }
.cmp-wrap {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px;
  align-items: stretch;
}
.cmp-card {
  border-radius: 18px; padding: 28px;
  background: rgba(8, 12, 26, 0.6); border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.cmp-card h3 { font-size: 1.15rem; }
.cmp-old { opacity: 0.8; }
.cmp-old h3 { color: #94a3b8; }
.cmp-new {
  position: relative; overflow: hidden;
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.cmp-new::before {
  content: ""; position: absolute; inset: -40%;
  background: conic-gradient(from 0deg, transparent 0 74%, rgba(168, 85, 247, 0.22) 85%, rgba(236, 72, 153, 0.28) 90%, transparent 97%);
  animation: ctaSpin 8s linear infinite;
}
.cmp-new > * { position: relative; }
.cmp-card ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.cmp-card li { font-size: 0.9rem; display: flex; gap: 10px; align-items: baseline; }
.cmp-old li { color: #64748b; }
.cmp-new li { color: #e2e8f0; }
.cmp-x { color: #ef4444; font-weight: 700; }
.cmp-ok { color: #10b981; font-weight: 700; text-shadow: 0 0 12px rgba(16, 185, 129, 0.6); }
.cmp-vs {
  align-self: center; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 900; font-size: 1.1rem; color: #fff;
  background: linear-gradient(135deg, #7c3aed, #d946ef);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

@media (max-width: 1000px) {
  .arsenal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .cmp-wrap { grid-template-columns: 1fr; }
  .cmp-vs { margin: -8px auto; }
}
@media (max-width: 620px) {
  .arsenal-grid { grid-template-columns: 1fr; }
}
