:root {
  --blk: #0a0a0a;
  --lime: #c6ff3d;
  --pink: #ff69b4;
  --aqua: #00f7ff;
  --yellow: #ffd700;
  --purple: #d946ef;
  --gradient: linear-gradient(45deg, var(--lime), var(--pink));
}

body {
  position: relative;
  min-height: 100vh;
  background: var(--blk);
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
  margin-top: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: #000;
  border-radius: 12px;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
  transform: scale(1.05);
}

.btn-secondary {
  background: var(--gradient);
  color: #000;
  border-radius: 12px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: transparent;
  border: 2px solid var(--aqua);
  color: var(--aqua);
  transform: scale(1.05);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-bg {
  background: linear-gradient(180deg, var(--blk), #1a1a1a);
  position: relative;
  overflow: hidden;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  width: 150px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--lime), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a1a1a, #2f2f2f);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, var(--pink), var(--aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: var(--blk);
  border: 1px solid var(--aqua);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.feature-text {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--aqua), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: white;
  background-color: var(--blk);
  background-clip: padding-box;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: var(--aqua);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 247, 255, 0.25);
}

/* Footer */
.footer {
  background-color: var(--blk);
  color: #9ca3af;
  padding: 3rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--lime);
}

.footer-text {
  font-size: 0.875rem;
  margin: 0;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title, .cta-title {
    font-size: 2rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

/* Utility Classes */

.container, section, nav {
  position: relative;
  z-index: 1;
}


.texture-bg {
  background: url('/background.png'), var(--blk);
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

/* Benefit Section Cards */
.benefit-card {
  background-color: #27272a; /* bg-gray-800 */
  padding: 2rem; /* p-8 */
  border-radius: 0.75rem; /* rounded-xl */
  transition: box-shadow 0.3s, transform 0.3s;
}
.benefit-card:hover {
  box-shadow: 0 10px 25px 0 rgba(0,0,0,0.25); /* shadow-xl */
  transform: translateY(-0.25rem); /* -translate-y-1 */
}

.benefit-icon {
  width: 100%;
  padding: 0.75rem; /* p-3 */
  border-radius: 0.375rem; /* rounded-md */
  display: flex;
  align-items: center;
  margin-bottom: 1rem; /* mb-4 */
}

.benefit-icon span {
  font-size: 1.5rem; /* text-2xl */
  margin-right: 0.75rem; /* mr-3 */
}
