/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/(marketing)/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
/* Option 2: Marco Marketing Homepage - Custom Styles */

/*
 * GIS-Futurism Design System
 * Color: Dark slate (#0a0f1a) with electric lime (#BFFF00) accents
 * Typography: System fonts with mono accents
 */

/* CSS Custom Properties for the marketing theme */
:root {
  --marco-bg: #0a0f1a;
  --marco-bg-elevated: #0d1320;
  --marco-bg-card: #0f1629;
  --marco-lime: #BFFF00;
  --marco-lime-muted: #9ACC00;
  --marco-lime-glow: rgba(191, 255, 0, 0.4);
  --marco-text: #f8fafc;
  --marco-text-muted: #94a3b8;
  --marco-text-dim: #64748b;
  --marco-border: rgba(148, 163, 184, 0.1);
  --marco-border-lime: rgba(191, 255, 0, 0.15);
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::-moz-selection {
  background: rgba(191, 255, 0, 0.3);
  color: #f8fafc;
}
::selection {
  background: rgba(191, 255, 0, 0.3);
  color: #f8fafc;
}

/* Focus visible styling */
:focus-visible {
  outline: 2px solid var(--marco-lime);
  outline-offset: 2px;
}

/* Button reset with focus */
button:focus-visible {
  outline: 2px solid var(--marco-lime);
  outline-offset: 2px;
}

/* Link underline animation */
a.animated-underline {
  position: relative;
}

a.animated-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--marco-lime);
  transition: width 0.3s ease;
}

a.animated-underline:hover::after {
  width: 100%;
}

/* Glassmorphism card styles */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(15, 22, 41, 0.95) 0%,
    rgba(15, 22, 41, 0.7) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--marco-border);
  border-radius: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: var(--marco-border-lime);
  box-shadow: 0 0 40px -10px var(--marco-lime-glow);
}

/* Lime glow effect for buttons and highlights */
.glow-lime {
  box-shadow:
    0 0 20px -4px var(--marco-lime-glow),
    0 0 40px -8px rgba(191, 255, 0, 0.2);
}

.glow-lime-intense {
  box-shadow:
    0 0 30px -5px var(--marco-lime-glow),
    0 0 60px -10px rgba(191, 255, 0, 0.3);
}

/* Topo line SVG styling */
.topo-lines {
  stroke: rgba(191, 255, 0, 0.06);
  stroke-width: 1;
  fill: none;
}

.topo-lines-bold {
  stroke: rgba(191, 255, 0, 0.1);
  stroke-width: 1.5;
}

/* Grid overlay pattern */
.grid-overlay {
  background-image:
    linear-gradient(rgba(191, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Animation keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px -4px rgba(191, 255, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px -4px rgba(191, 255, 0, 0.5);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

/* Animation utility classes */
.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in {
  animation: slideIn 0.6s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

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

/* Stagger delays for children */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Scroll-triggered animation base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Typography helpers */
.text-gradient-lime {
  background: linear-gradient(135deg, #BFFF00 0%, #9ACC00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-display {
  font-variation-settings: 'wght' 800;
  letter-spacing: -0.02em;
}

/* Responsive typography using clamp */
.text-hero {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.95;
}

.text-section {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.1;
}

/* Scrollbar styling for this section */
.scrollbar-lime::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar-lime::-webkit-scrollbar-track {
  background: rgba(15, 22, 41, 0.5);
  border-radius: 3px;
}

.scrollbar-lime::-webkit-scrollbar-thumb {
  background: rgba(191, 255, 0, 0.3);
  border-radius: 3px;
}

.scrollbar-lime::-webkit-scrollbar-thumb:hover {
  background: rgba(191, 255, 0, 0.5);
}

/* Media query for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Container query support for responsive components */
@supports (container-type: inline-size) {
  .source-card-container {
    container-type: inline-size;
  }

  @container (max-width: 300px) {
    .source-card-content {
      padding: 1rem;
    }
  }
}

