@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: #FAFAFC;
  --foreground: #171717;
  --purple: #6D4AFF;
  --violet: #8B5CF6;
  --gold: #FFB800;
  --muted: #6B7280;
  --border: #E5E7EB;
  --card: #FFFFFF;
  --gradient-purple: linear-gradient(135deg, #6D4AFF 0%, #8B5CF6 100%);
  --gradient-gold: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
  --gradient-hero: linear-gradient(160deg, #F8F6FF 0%, #FAFAFC 45%, #FFFDF5 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #6D4AFF; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #8B5CF6; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Section scroll offset for fixed navbar */
section[id] {
  scroll-margin-top: 80px;
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(109, 74, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(109, 74, 255, 0.6); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.6s ease forwards; }
.animate-fade-in { animation: fade-in 0.8s ease forwards; }

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #6D4AFF 0%, #8B5CF6 50%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #6D4AFF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Gradient bg */
.gradient-bg {
  background: linear-gradient(135deg, #6D4AFF 0%, #8B5CF6 100%);
}

/* Card styles */
.card-premium {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(109, 74, 255, 0.08);
  box-shadow: 0 4px 24px rgba(109, 74, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
  border-color: rgba(109, 74, 255, 0.2);
  box-shadow: 0 12px 40px rgba(109, 74, 255, 0.12);
  transform: translateY(-4px);
}

/* Button styles */
.btn-primary {
  background: linear-gradient(135deg, #6D4AFF 0%, #8B5CF6 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(109, 74, 255, 0.4); }

.btn-outline {
  background: transparent;
  color: #6D4AFF;
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  border: 2px solid #6D4AFF;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-outline:hover {
  background: #6D4AFF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(109, 74, 255, 0.3);
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109, 74, 255, 0.08);
  color: #6D4AFF;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(109, 74, 255, 0.15);
}

/* Smooth reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Continuous Infinite Logo Marquee */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #FAFAFC, rgba(250, 250, 252, 0));
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #FAFAFC, rgba(250, 250, 252, 0));
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  cursor: pointer;
}

.marquee-item:hover {
  border-color: rgba(109, 74, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 74, 255, 0.08);
}

/* Neo-Classical Digital Surrealism Utilities */
.blueprint-grid {
  background-size: 28px 28px;
  background-image: 
    linear-gradient(to right, rgba(124, 58, 237, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
}

@keyframes draw-line {
  0% { stroke-dashoffset: 800; }
  100% { stroke-dashoffset: 0; }
}

.animate-draw-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-line 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.animate-slow-orbit {
  animation: slow-orbit 30s linear infinite;
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.animate-float-subtle {
  animation: float-subtle 5s ease-in-out infinite;
}

@keyframes pulse-glow-soft {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.06); }
}

.animate-pulse-glow-soft {
  animation: pulse-glow-soft 4s ease-in-out infinite;
}



