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

:root {
  --background: 270 100% 3%;
  --foreground: 270 20% 95%;
  --card: 270 60% 8%;
  --card-foreground: 270 20% 95%;
  --primary: 270 100% 65%;
  --primary-foreground: 0 0% 100%;
  --secondary: 280 80% 12%;
  --accent: 280 100% 50%;
  --border: 270 40% 18%;
  --muted: 270 40% 15%;
  --muted-foreground: 270 15% 60%;
  --radius: 0.75rem;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.4px;
  font-size: 1rem;
}


/* Animated gradient text */
.gradient-text {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f97316);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.8);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  color: hsl(var(--primary));
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--muted));
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(var(--border));
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0rem;
}

.logo-link {
  text-decoration: none;
}

.logo-text img{
width:155px;
}

.logo-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px hsl(var(--primary)));
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

/* ===== SERVER LEDS ===== */
@keyframes blink-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes blink-blue {
  0%, 100% { opacity: 0.4; }
  30% { opacity: 1; }
  70% { opacity: 0.2; }
}
@keyframes blink-purple {
  0%, 100% { opacity: 0.7; }
  40% { opacity: 0.1; }
  80% { opacity: 1; }
}
@keyframes blink-amber {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.stat-led {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.stat-led.green { background: #00ff88; animation: blink-green 2.5s infinite; box-shadow: 0 0 6px rgba(0,255,136,0.6); }
.stat-led.blue { background: #00aaff; animation: blink-blue 3.2s infinite; box-shadow: 0 0 6px rgba(0,170,255,0.6); }
.stat-led.purple { background: #aa55ff; animation: blink-purple 1.8s infinite; box-shadow: 0 0 6px rgba(170,85,255,0.6); }
.stat-led.amber { background: #ffaa00; animation: blink-amber 4s infinite; box-shadow: 0 0 6px rgba(255,170,0,0.6); }

.server-light {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(20, 0, 41) 0%, rgb(51, 0, 77) 30%, rgb(34, 0, 102) 60%, rgb(15, 3, 28) 100%);
  z-index: -2;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(rgba(128, 0, 255, 0.15), transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.hero-badge span {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.4px;
  font-weight: 500;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo-text {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #fff 0%, hsl(var(--primary)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 40px rgba(170, 85, 255, 0.5);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-accent {
  color: hsl(var(--primary));
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  position: relative;
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: left;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(15, 3, 28) 0%, rgb(30, 0, 51) 50%, rgb(15, 3, 28) 100%);
  z-index: -2;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: hsl(var(--primary) / 0.4);
  transform: translateY(-4px);
}

.feature-led {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.feature-led.green { background: #00ff88; animation: blink-green 2.5s infinite; }
.feature-led.blue { background: #00aaff; animation: blink-blue 3.2s infinite; }
.feature-led.purple { background: #aa55ff; animation: blink-purple 1.8s infinite; }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.dashboard-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(15, 3, 28) 0%, rgb(26, 3, 58) 50%, rgb(15, 3, 28) 100%);
  z-index: -2;
}

.dashboard-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dashboard-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.dashboard-content p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 50%;
  color: hsl(var(--primary));
  font-weight: bold;
}

.dashboard-preview {
  position: relative;
}

.preview-glow {
  position: absolute;
  inset: -0.25rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 1rem;
  filter: blur(24px);
}

.preview-card {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.preview-leds {
  display: flex;
  gap: 0.5rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 8rem;
  margin-bottom: 1.5rem;
}

.chart-bars div {
  flex: 1;
  background: hsl(var(--primary) / 0.4);
  border-radius: 0.25rem 0.25rem 0 0;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-item {
  position: relative;
  background: hsl(var(--muted) / 0.5);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.stat-item span {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  display: block;
}

.stat-item strong {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-top: 0.25rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(15, 3, 28) 0%, rgb(34, 0, 51) 50%, rgb(15, 3, 28) 100%);
  z-index: -2;
}

.testimonials-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.testimonial-card {
  flex: 0 0 calc(50% - 0.75rem);
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.testimonial-card p {
  color: hsl(var(--muted-foreground));
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.testimonial-author h4 {
  font-weight: 600;
}

.testimonial-author p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s;
}

.slider-btn:hover {
  background: hsl(var(--accent));
  color: white;
}

/* ===== PRICING ===== */
.pricing-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(15, 3, 28) 0%, rgb(31, 3, 58) 50%, rgb(15, 3, 28) 100%);
  z-index: -2;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle-switch {
  width: 3rem;
  height: 1.5rem;
  background: hsl(var(--muted));
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.toggle-knob {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  left: 0.125rem;
  top: 0.125rem;
  transition: transform 0.2s;
}

.toggle-switch.active .toggle-knob {
  transform: translateX(1.5rem);
}

.annual-save {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.save-badge {
  background: hsl(var(--accent));
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.popular {
  border: 2px solid hsl(var(--primary));
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  background: hsl(var(--primary));
  color: white;
  text-align: center;
  padding: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-card-body {
  padding: 2rem;
  position: relative;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card .description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-btn {
  width: 100%;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.enterprise-note {
  text-align: center;
  margin-top: 3rem;
  color: hsl(var(--muted-foreground));
}

.contact-link {
  color: hsl(var(--primary));
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: hsl(var(--muted-foreground));
  margin: 1rem 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2rem;
  height: 2rem;
  background: hsl(var(--muted));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: hsl(var(--muted-foreground));
  transition: all 0.2s;
}

.social-icon:hover {
  background: hsl(var(--primary));
  color: white;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom a:hover {
  color: hsl(var(--primary));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pricing-grid{
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .testimonials-section{
    padding:3rem 0px;
  }
  .dashboard-section{
    padding:3rem 0px;
  }
  .features-section{
   
   padding:3rem 0px; 
  }
  .hero-section {
    position: relative;
    padding: 2rem 0;}
    .section-header h2{
      font-size:1.5rem;
    }
  .container{
    max-width:100%;
    padding:20px;
  }
  .feature-card{
    padding:1rem;
  }

  .features-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-logo-text {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dashboard-container {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom a {
    margin: 0 0.75rem;
  }
}