
* {
  font-family: 'Sora', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Alpine.js x-cloak: Hide elements until Alpine initializes */
[x-cloak] {
  display: none !important;
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-slide-up {
  animation: slideInUp 0.8s ease-out forwards;
}

.animate-slide-down {
  animation: slideInDown 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* NOTE: Don't add padding here - use Tailwind utility classes (px-*, py-*) */
.container {
  max-width: 72rem;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-padding {
    padding: 3rem 0;
  }
}

.gradient-dark-bg {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.gradient-primary-to-blue {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
}

.text-gradient {
  background: linear-gradient(to right, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-with-orbs {
  position: relative;
  overflow: hidden;
}

.bg-with-orbs::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.bg-with-orbs::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 0;
}

section {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--accent-bg);
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  color: var(--accent);
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  margin: 0;
}

.role-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-bg);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.role-badge:hover {
  background: rgba(var(--accent-rgb), 0.2);
  border-color: rgba(var(--accent-rgb), 0.6);
}

/* CTA Section - ensure dark border */
#cta-section {
    border-top-color: var(--border) !important;
}

