/* Base styles live here to avoid 404s. Tailwind is loaded via CDN in index.html. */
:root {
  color-scheme: dark;
  --gcl-bg: 9 11 12;
  --gcl-fg: 233 232 227;
  --gcl-accent: 25 247 166;
  --gcl-dim: 141 149 154;
  --gcl-panel: 15 18 19;
  --gcl-line: 32 40 42;
  --gcl-soft: 18 23 24;
  --gcl-glow: 23 240 160;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 15%, rgba(23, 240, 160, 0.12), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(10, 85, 60, 0.45), transparent 50%),
    #0a0b0c;
  color: rgb(var(--gcl-fg));
  letter-spacing: 0.01em;
}

a {
  color: inherit;
}

.gcl-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

.gcl-ambient {
  position: fixed;
  inset: -10% -10% auto;
  height: 65vh;
  background: radial-gradient(circle at 30% 30%, rgba(25, 247, 166, 0.18), transparent 60%),
    radial-gradient(circle at 60% 0%, rgba(11, 46, 35, 0.45), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  animation: gcl-drift 18s ease-in-out infinite alternate;
}

@keyframes gcl-drift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(1.5%, -1.5%, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(-1%, 1%, 0);
    opacity: 0.95;
  }
}

.gcl-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.gcl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.gcl-glass {
  background: rgba(10, 12, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.gcl-card {
  background: rgba(10, 12, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.gcl-card-soft {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.gcl-label {
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(var(--gcl-dim));
}

.gcl-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.gcl-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  padding: 0.75rem 1.75rem;
}

.gcl-btn-primary {
  background: rgba(25, 247, 166, 0.92);
  color: #020303;
  border-color: rgba(25, 247, 166, 0.6);
  box-shadow: 0 0 30px rgba(25, 247, 166, 0.35);
}

.gcl-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgb(var(--gcl-fg));
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
