/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.loading-logo-img {
  width: 60px;
  height: 60px;
  width: 200px; height: 30px;
  animation: pulse 2s ease-in-out infinite;
}

.loading-text {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(65, 246, 59, 0.5);
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(65, 246, 59, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2EC500, #60fa7a);
  border-radius: 2px;
  animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

.logo-full{
  height: 50px;
}
/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(65, 246, 59, 0.1);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 8px 32px rgba(65, 246, 59, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(65, 246, 59, 0.3));
}

.logo-text {
  width: 145px;
  height: 40px;
  text-shadow: 0 0 15px rgba(65, 246, 59, 0.4);
}

.logo-accent {
  color: #2EC500;
  text-shadow: 0 0 20px rgba(65, 246, 59, 0.6);
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: #2EC500;
  text-shadow: 0 0 10px rgba(65, 246, 59, 0.5);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2EC500, #6af881);
  transition: width 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, #2EC500, #4cfc87);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(65, 246, 59, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #5bfc5b, #7bf17b);
  box-shadow: 0 8px 30px rgba(65, 246, 59, 0.6);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #f0f0f0;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(65, 246, 59, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 246, 59, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.hero-graphic {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
}

.hero-circle-1,
.hero-circle-2,
.hero-circle-3 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(65, 246, 59, 0.3);
}

.hero-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(65, 246, 59, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  top: 50px;
  left: 50px;
  background: radial-gradient(circle, rgba(65, 246, 59, 0.15) 0%, transparent 60%);
  animation: rotate 15s linear infinite reverse;
}

.hero-circle-3 {
  width: 200px;
  height: 200px;
  top: 100px;
  left: 100px;
  background: radial-gradient(circle, rgba(65, 246, 59, 0.2) 0%, transparent 50%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(65, 246, 59, 0.1);
  border: 1px solid rgba(65, 246, 59, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
}

.badge-text {
  color: #2EC500;
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #2EC500 50%, #4aee6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(65, 246, 59, 0.3);
  animation: fadeInUp 1s ease 0.4s both;
}

.accent {
  color: #2EC500;
  text-shadow: 0 0 20px rgba(65, 246, 59, 0.6);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #d1dbd3;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary,
.btn-secondary {
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #2EC500, #85f38b);
  color: white;
  box-shadow: 0 8px 30px rgba(65, 246, 59, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #25eb2f, #56eb88);
  box-shadow: 0 12px 40px rgba(65, 246, 59, 0.6);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(65, 246, 59, 0.1);
  color: #f0f0f0;
  border: 2px solid rgba(65, 246, 59, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(65, 246, 59, 0.2);
  border-color: #2EC500;
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  animation: fadeInUp 1s ease 1s both;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2EC500;
  text-shadow: 0 0 20px rgba(65, 246, 59, 0.5);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #d5f0d7;
  font-weight: 500;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  background: rgba(65, 246, 59, 0.1);
  border: 1px solid rgba(65, 246, 59, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  color: #2EC500;
  font-size: 14px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(65, 246, 59, 0.2);
}

.section-header p {
  font-size: 1.2rem;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Section */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.feature-showcase {
  margin-bottom: 80px;
}

.feature-image-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(65, 246, 59, 0.2);
}

.feature-hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.feature-image-container:hover .feature-hero-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px;
  color: white;
}

.overlay-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2EC500;
}

.overlay-content p {
  font-size: 1.1rem;
  color: #d1d5db;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-card {
  background: rgba(17, 17, 17, 0.8);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(65, 246, 59, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(65, 246, 59, 0.05) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(65, 246, 59, 0.3);
  border-color: rgba(65, 246, 59, 0.8);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(65, 246, 59, 0.1), rgba(65, 246, 59, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2EC500;
  border: 2px solid rgba(65, 246, 59, 0.3);
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

.feature-card p {
  color: #d3dbd1;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}

.feature-link {
  text-align: center;
  margin-top: 20px;
}

.feature-link span {
  color: #2EC500;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-link span:hover {
  color: #60fa60;
  text-shadow: 0 0 10px rgba(65, 246, 59, 0.5);
}

/* Technology Stack Section */
.tech-stack {
  padding: 120px 0;
  background: #0a0a0a;
}

.tech-showcase {
  margin-bottom: 80px;
}

.tech-image-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(65, 246, 59, 0.2);
}

.tech-stack-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.tech-image-container:hover .tech-stack-img {
  transform: scale(1.02);
}

.tech-overlay {
  position: absolute;
  top: 0px;
  right: 20px;
  background: rgba(65, 246, 59, 0.9);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.tech-highlight {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tech-card {
  background: rgba(17, 17, 17, 0.8);
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid rgba(65, 246, 59, 0.2);
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(65, 246, 59, 0.3);
  border-color: rgba(65, 246, 59, 0.8);
}

.featured-tech {
  border-color: rgba(65, 246, 59, 0.5);
  background: rgba(65, 246, 59, 0.05);
}

.tech-icon {
  margin-bottom: 25px;
  color: #2EC500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.tech-card p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

/* AI Platform Section */
.ai-platform {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.ai-showcase {
  margin-bottom: 80px;
}

.ai-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(65, 246, 59, 0.2);
  transition: transform 0.3s ease;
}

.ai-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(65, 246, 59, 0.3);
}

.ai-img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px;
  color: white;
}

.image-caption h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2EC500;
}

.image-caption p {
  font-size: 0.95rem;
  color: #d1d5db;
}

.ai-content {
  max-width: 1100px;
  margin: 0 auto;
}

.ai-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.ai-card {
  background: rgba(17, 17, 17, 0.8);
  padding: 45px 35px;
  border-radius: 20px;
  border: 1px solid rgba(65, 246, 59, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(65, 246, 59, 0.3);
  border-color: rgba(18, 230, 64, 0.877);
}

.ai-icon {
  margin-bottom: 25px;
  color: #2EC500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

.ai-card p {
  color: #50f06a;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 25px;
}

.ai-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-feature-tag {
  background: rgba(65, 246, 59, 0.1);
  border: 1px solid rgba(65, 246, 59, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2EC500;
}

.connection-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.flow-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, #2EC500, #4df176);
}

.flow-arrow {
  font-size: 2rem;
  color: #2EC500;
  animation: pulse 2s ease-in-out infinite;
}

/* Partners Section */
.partners {
  padding: 120px 0;
  background: #0a0a0a;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.partner-card {
  background: rgba(17, 17, 17, 0.8);
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid rgba(65, 246, 59, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(65, 246, 59, 0.3);
  border-color: rgba(65, 246, 59, 0.932);
}

.featured-partner {
  border-color: rgba(65, 246, 59, 0.5);
  background: rgba(65, 246, 59, 0.05);
}

.partner-logo-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 116, 182, 0.486);
  border-radius: 12px;
  padding: 15px;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0.2) invert(1);
  transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo {
  filter: none;
}

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

.partner-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.partner-info p {
  font-size: 0.9rem;
  color: #d1d5db;
}

.partner-placeholder {
  width: 100px;
  height: 100px;
  background: rgba(65, 246, 59, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(65, 246, 59, 0.3);
}

.placeholder-icon {
  font-size: 1.5rem;
}

.placeholder-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2EC500;
  text-align: center;
  line-height: 1.2;
}

/* Ecosystem Section */
.ecosystem {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.ecosystem-card {
  background: rgba(17, 17, 17, 0.8);
  padding: 35px 30px;
  border-radius: 16px;
  border: 1px solid rgba(65, 246, 59, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.ecosystem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(65, 246, 59, 0.3);
  border-color: rgba(65, 246, 59, 0.8);
}

.featured-ecosystem {
  border-color: rgba(65, 246, 59, 0.5);
  background: rgba(65, 246, 59, 0.05);
}

.ecosystem-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.ecosystem-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.ecosystem-card p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.ecosystem-status {
  display: flex;
  justify-content: flex-start;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.active {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.beta {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.coming {
  background: rgba(156, 163, 175, 0.1);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

/* Security Section */
.security {
  padding: 120px 0;
  background: #0a0a0a;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.security-card {
  background: rgba(17, 17, 17, 0.8);
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(65, 246, 59, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.security-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(65, 246, 59, 0.3);
  border-color: rgba(65, 246, 59, 0.8);
}

.security-icon {
  margin-bottom: 25px;
  color: #2EC500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.security-card p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 20px;
}

.security-badge {
  display: flex;
  justify-content: center;
}

.badge.verified {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #000000;
  padding: 100px 0 40px;
  position: relative;
  border-top: 1px solid rgba(65, 246, 59, 0.2);
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25rem;
  font-weight: 900;
  color: rgba(65, 246, 59, 0.02);
  pointer-events: none;
  user-select: none;
}

.footer-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(65, 246, 59, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 246, 59, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.main-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(65, 246, 59, 0.3));
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(65, 246, 59, 0.4);
}

.footer-tagline {
  color: #2EC500;
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-description {
  color: #d1d5db;
  margin-bottom: 30px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-cta {
  margin-bottom: 20px;
}

.footer-button {
  background: linear-gradient(135deg, #2EC500, #51f595);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(65, 246, 59, 0.3);
}

.footer-button:hover {
  background: linear-gradient(135deg, #1cee4a, #5ae283);
  box-shadow: 0 6px 25px rgba(52, 238, 46, 0.5);
  transform: translateY(-2px);
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #2EC500;
  text-shadow: 0 0 10px rgba(65, 246, 59, 0.3);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(65, 246, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2EC500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(65, 246, 59, 0.3);
}

.social-link:hover {
  background: #2EC500;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(65, 246, 59, 0.4);
}

.newsletter h5 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter p {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(65, 246, 59, 0.3);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.8);
  color: #ffffff;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #2EC500, #77f373);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  background: linear-gradient(135deg, #77f373, #11f830);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(65, 246, 59, 0.1);
  position: relative;
  z-index: 1;
}

.footer-copyright p {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  gap: 15px;
}

.footer-badge {
  background: rgba(65, 246, 59, 0.1);
  border: 1px solid rgba(65, 246, 59, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2EC500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ai-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .connection-flow {
    flex-direction: row;
  }

  .flow-line {
    width: 30px;
    height: 2px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.3rem;
    margin: 1px 0;
  }

  .cta-button {
    margin-top: 10px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    gap: 40px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .ai-images-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-watermark {
    font-size: 15rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .feature-card,
  .tech-card,
  .ai-card,
  .partner-card,
  .ecosystem-card,
  .security-card {
    padding: 30px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2EC500, #77f373);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #77f373, #1dd826);
}

/* Image visibility fixes */
img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(65, 246, 59, 0.2);
}

/* Loading states */
.loaded {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
