/* Tehuti Labs — Afrofuturist tech studio */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0A0A0A;
  color: #C4C4C4;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Flower of Life background pattern */
.flower-bg {
  background-image:
    radial-gradient(circle at 30px 30px, rgba(212, 168, 67, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 60px 0px, rgba(212, 168, 67, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 0px 60px, rgba(212, 168, 67, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 30px 30px, rgba(212, 168, 67, 0.015) 20px, transparent 20px),
    radial-gradient(circle at 60px 0px, rgba(212, 168, 67, 0.015) 20px, transparent 20px),
    radial-gradient(circle at 0px 60px, rgba(212, 168, 67, 0.015) 20px, transparent 20px);
  background-size: 60px 60px;
  background-attachment: fixed;
}

/* Gold glow pulse animation */
@keyframes goldPulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.3)) drop-shadow(0 0 60px rgba(212, 168, 67, 0.1));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(212, 168, 67, 0.6)) drop-shadow(0 0 80px rgba(212, 168, 67, 0.2));
  }
}

/* Section fade-in on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-glow {
  animation: goldPulse 3s ease-in-out infinite;
}

/* Section spacing */
section {
  padding: 120px 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Gold text */
.text-gold {
  color: #D4A843;
}

.text-gold-glow {
  color: #D4A843;
  text-shadow: 0 0 30px rgba(212, 168, 67, 0.3);
}

/* Product cards */
.product-card {
  background: #141414;
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.1);
}

/* Status tags */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-dev {
  background: rgba(42, 111, 174, 0.15);
  color: #2A6FAE;
  border: 1px solid rgba(42, 111, 174, 0.3);
}

.tag-built {
  background: rgba(212, 168, 67, 0.1);
  color: #D4A843;
  border: 1px solid rgba(212, 168, 67, 0.25);
}

/* Divider */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #D4A843, transparent);
  margin: 0 auto;
}

/* Footer */
footer {
  border-top: 1px solid rgba(212, 168, 67, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 80px 16px;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
  }
}
