:root {
  --font-family: 'Outfit', sans-serif;
  --bg-dark: #0f0f13;
  --text-light: #ffffff;
  --text-dim: #a0a0b0;
  --primary-gradient: linear-gradient(135deg, #FF6B6B, #556270); /* Example vibrant gradient */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --accent-color: #4facfe;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Animation */
.background-globes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.globe {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite alternate;
}

.globe-1 {
  width: 400px;
  height: 400px;
  background: #7F00FF;  /* Violet */
  top: -100px;
  left: -100px;
}

.globe-2 {
  width: 500px;
  height: 500px;
  background: #E100FF;  /* Pink */
  bottom: -150px;
  right: -150px;
  animation-delay: -5s;
}

.globe-3 {
  width: 300px;
  height: 300px;
  background: #00C6FF; /* Blue */
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 50px); }
}

/* Glass Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 19, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(to right, #fff, #a0a0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-light);
}

.cta-button-small {
  background: var(--text-light);
  color: var(--bg-dark);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.cta-button-small:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  padding-top: 80px; /* Nav height */
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, #00C6FF, #0072FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
}

.cta-button-primary, .cta-button-secondary {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button-primary {
  background: linear-gradient(90deg, #00C6FF, #0072FF);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
}

.cta-button-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.cta-button-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* Hero Visual Mockup */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-card {
  width: 300px;
  height: 500px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}

.mockup-header {
  height: 20px;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.mockup-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mockup-logo {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.loader-bar {
  width: 60%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -50%;
  height: 100%;
  width: 50%;
  background: #00C6FF;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Sections */
section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.services-section, .features-section, .about-section {
  padding: 5rem 5%;
}

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

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  transition: transform 0.3s, background 0.3s;
}

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: var(--glass-bg);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
}

.feature-item .icon {
  font-size: 2rem;
}

.about-section .glass-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.main-footer {
  padding: 2rem 5%;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-visual {
    margin-top: 3rem;
    width: 100%;
  }

  .nav-links {
    display: none; /* simple hiding for now */
  }
}
