/* ============================================
   Tenslam Vision - Futuristic Landing Page
   ============================================ */

:root {
  /* Color Palette */
  --bg: #0a0a1a;
  --bg-dark: #050510;
  --bg-light: #1a1a2e;
  --teal: #00d9ff;
  --teal-light: #00ffff;
  --magenta: #ff006e;
  --magenta-light: #ff1493;
  --violet: #b537f2;
  --violet-light: #d946ef;
  --cyan: #00ffff;
  --accent: #00d9ff;
  --muted: #6b7280;
  --text: #f0f0f0;
  --text-muted: #9ca3af;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Breakpoints */
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

/* ============================================
   Global Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-dark) 50%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-attachment: fixed;
}

/* ============================================
   Particle Background
   ============================================ */

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particles::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, var(--cyan), transparent),
    radial-gradient(1px 1px at 30% 70%, var(--magenta), transparent),
    radial-gradient(1px 1px at 60% 40%, var(--violet), transparent),
    radial-gradient(1px 1px at 80% 10%, var(--teal), transparent),
    radial-gradient(1px 1px at 20% 80%, var(--magenta), transparent),
    radial-gradient(1px 1px at 90% 60%, var(--violet), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: particleFloat 20s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes particleFloat {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

/* ============================================
   Navigation Bar
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 26, 0.72);
  border-bottom: 1px solid rgba(0, 255, 255, 0.13);
  box-shadow: 0 2px 24px 0 rgba(0,255,255,0.04);
  margin-bottom: 1.5rem; /* Add gap below navbar */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-image {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.logo-accent {
  color: var(--magenta);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.logo-link:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:focus {
  color: var(--teal-light);
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}

.nav-link:hover {
  color: var(--teal-light);
  text-decoration: underline;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--teal-light);
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .hero-text {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
  }
  .hero-value-props {
    order: 2 !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
  .navbar {
    padding: var(--spacing-md);
  }

  .nav-links {
    gap: var(--spacing-md);
    font-size: 0.85rem;
  }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  z-index: 10;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 2.5rem 0 2.5rem; /* Remove top padding so navbar is flush */
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  filter: brightness(0.72) contrast(1.18) saturate(1.25);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,26,0.7) 0%, rgba(10,10,26,0.85) 100%);
  z-index: 1;
}

.hero-content, .hero-bg-glow {
  margin-top: 7rem; /* Increase offset for fixed navbar and gap */
}

.hero-visual {
  position: relative;
  height: 420px;
  min-width: 420px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--magenta-light) 50%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--magenta) 100%);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(255, 0, 110, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

.btn-ghost:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Floating cards in hero */
.hero-visual {
  position: relative;
  height: 420px;
  min-width: 420px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 130px;
  border-radius: 0.75rem;
  border: 2px solid var(--teal);
  background: rgba(0, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.15);
  animation: floatBounce 4s cubic-bezier(.68,-0.55,.27,1.55) infinite;
  pointer-events: none;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  20% { transform: translateY(-30px) scale(1.05); }
  50% { transform: translateY(10px) scale(0.98); }
  80% { transform: translateY(-20px) scale(1.03); }
}

.card-1 { top: 10px; left: 0; animation-delay: 0s; }
.card-2 { top: 60px; right: 0; animation-delay: 0.3s; }
.card-3 { bottom: 10px; right: 40px; animation-delay: 0.6s; }

.hero-video-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  height: 420px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,255,255,0.16), 0 0 80px rgba(255,0,110,0.10), 0 0 0 8px rgba(10,10,26,0.7);
  background: rgba(10,10,26,0.7);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 2rem;
  filter: brightness(1) contrast(1.12) drop-shadow(0 0 24px #00ffff44);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateZ(0deg); }
  50% { transform: translateY(-30px) rotateZ(2deg); }
}

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

@media (max-width: 1024px) {
  .hero-visual {
    height: 260px;
    min-width: 220px;
    max-width: 320px;
  }
  .hero-video-box {
    max-width: 220px;
    height: 220px;
    border-radius: 1.2rem;
  }
  .floating-card {
    width: 120px;
    height: 70px;
    border-radius: 0.5rem;
  }

  .hero-value-props {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .value-prop-box {
    min-width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* ============================================
   Section Divider
   ============================================ */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 25%, var(--magenta) 50%, var(--teal) 75%, transparent 100%);
  margin: 2.5rem 0 1.5rem 0; /* Reduce gap between hero and products */
  position: relative;
  z-index: 5;
}

/* ============================================
   Section Header
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 5;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--magenta-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Products Section
   ============================================ */

.products {
  position: relative;
  z-index: 5;
  padding: var(--spacing-2xl) var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.product-card {
  position: relative;
  padding: var(--spacing-lg);
  border-radius: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(26, 26, 46, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.glass-card {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
  border: 1px solid rgba(0, 255, 255, 0.15);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -50%, rgba(0, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(0, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 110, 0.08) 100%);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15), 0 0 30px rgba(255, 0, 110, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.card-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-light);
}

.card-text {
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.card-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.card-link:hover::after {
  transform: scaleX(1);
}

.card-link.early-access:hover {
  color: var(--magenta-light);
}

/* ============================================
   Features Section
   ============================================ */

.features {
  position: relative;
  z-index: 5;
  padding: var(--spacing-2xl) var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.feature-item {
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(26, 26, 46, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-item:hover {
  background: rgba(0, 255, 255, 0.08);
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   Mission Section
   ============================================ */

.mission {
  position: relative;
  z-index: 5;
  padding: var(--spacing-2xl) var(--spacing-lg);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.mission-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--magenta-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.5px;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
  position: relative;
  z-index: 5;
  padding: var(--spacing-2xl) var(--spacing-lg);
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--magenta-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  position: relative;
  z-index: 5;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1400px;
  margin: 0 auto var(--spacing-xl);
  width: 100%;
}

.footer-section h3,
.footer-section h4 {
  color: var(--teal-light);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
  }

  .hero {
    min-height: 80vh;
    padding: var(--spacing-lg);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-cta {
    gap: var(--spacing-sm);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .hero-content {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.2rem !important;
  }
  .hero-text {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
    text-align: left !important;
  }
  .hero-value-props {
    order: 2 !important;
    width: 100% !important;
    gap: 1rem !important;
    margin-top: 0.5rem !important;
  }
  :root {
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
  }

  .navbar {
    padding: var(--spacing-md);
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .nav-links {
    gap: var(--spacing-md);
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .product-card {
    padding: var(--spacing-md);
  }
}

/* ============================================
   Utilities
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

/* Security best practices for deployment (add to your server config):
   - Use HTTPS (SSL/TLS)
   - Set HTTP security headers (Content-Security-Policy, X-Frame-Options, X-XSS-Protection, Strict-Transport-Security)
   - Disable directory listing
   - Keep all dependencies up to date
   - Use strong passwords for admin/server
   - Regularly scan for vulnerabilities
*/