@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --background: 0 0% 0%;
  --foreground: 0 0% 100%;
  --lime: #a4e639;
  --lime-dark: #8bc34a;
  --lime-glow: rgba(164, 230, 57, 0.4);
}

body {
  background-color: black;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Typography Refined */
.text-hero {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.text-section {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-gradient-lime {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Containers - Professional Glass */
.glass {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  /* height: 100% removed to allow content-based height */
  display: flex;
  flex-direction: column;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  /* Rounded Pill Shape */
  padding: 0.875rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--lime);
  color: #000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--lime-glow);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--lime);
  color: #000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--lime-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.875rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-outline:hover {
  background: white;
  color: black;
  border-color: white;
}

/* Cards */
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.05);
}

.numbered-card {
  position: relative;
  overflow: hidden;
}

.numbered-card::before {
  content: attr(data-number);
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  z-index: 0;
  transition: all 0.5s ease;
}

.numbered-card:hover::before {
  color: rgba(164, 230, 57, 0.1);
  transform: translateY(-5px);
}

/* Card Background Images */
.card-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.card-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbered-card:hover .card-bg-image {
  opacity: 0.2;
  transform: scale(1.1);
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  position: relative;
  background: black;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.marquee-content {
  display: flex;
  gap: 4rem;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.marquee-content span {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Subtle glow, less overwhelming */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--lime-glow) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
}

/* Process Steps */
.process-line {
  position: absolute;
  top: 2.5rem;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 0;
}

.step-card:hover .step-icon {
  background: var(--lime);
  color: black;
  border-color: var(--lime);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--lime-glow);
}

/* Form */
.input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
}

.input-field:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(164, 230, 57, 0.02);
  box-shadow: 0 0 20px rgba(164, 230, 57, 0.05);
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-100 {
  transition-delay: 100ms;
}

.reveal-delay-200 {
  transition-delay: 200ms;
}

.reveal-delay-300 {
  transition-delay: 300ms;
}

.reveal-delay-400 {
  transition-delay: 400ms;
}

.reveal-delay-500 {
  transition-delay: 500ms;
}

@keyframes fadeReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility */
.container-restricted {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}