:root {
  --bg-dark: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --accent-cyan: #00f2ff;
  --accent-purple: #bd00ff;
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  color: var(--accent-cyan);
}

/* Glassmorphism */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

/* Navigation */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a:not(.cta-button):hover {
  color: var(--accent-cyan);
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: black;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--accent-cyan);
  transform: scale(1.05);
}

.cta-button.small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: white;
}

.cta-button.outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.cta-button.outline:hover {
  background: white;
  color: black;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 60px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/hero-bg.png');
  /* Ensure this matches the file name */
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.6;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

/* About Section */
.about-section {
  padding: 8rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card h3 {
  margin-bottom: 1rem;
  color: var(--accent-cyan);
}

/* Product Section */
.product-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(189, 0, 255, 0.05), transparent 70%);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 242, 255, 0.1);
  color: var(--accent-cyan);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 242, 255, 0.2);
}

.tagline {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list .icon {
  color: var(--accent-cyan);
}

/* Product Images */
.product-logo {
  height: 48px;
  width: auto;
  vertical-align: middle;
  margin-right: 15px;
  border-radius: 8px;
}

.product-screenshot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.product-screenshot:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--glass-border);
  /* Grid lines effect */
  border: 1px solid var(--glass-border);
}

.service-item {
  background: var(--bg-dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: #0a0a0a;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 3rem;
}

/* Footer */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .glass-nav {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  /* Simplified mobile nav for now */
}