:root {
  --bg: #09090b;
  --bg-elevated: #18181b;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --accent: #10b981;
  --accent-subtle: rgba(16, 185, 129, 0.08);
  --border: #27272a;
  --radius: 4px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

/* Typography Utilities */
.font-display {
  font-family: "Instrument Serif", serif;
}

.font-body {
  font-family: "DM Sans", sans-serif;
}

/* Custom Utilities */
.site-bg {
    /* Maintained for compatibility if needed, but body rule covers it */
}

/* Animations */
@keyframes pelican-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.animate-scroll {
  animation: pelican-marquee 30s linear infinite;
  will-change: transform;
}
@media (max-width: 640px) {
  .animate-scroll {
    animation-duration: 12s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .animate-scroll {
    animation: none !important;
    transform: none !important;
  }
}

/* Integrations Scroll Snap */
.integrations-snap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.integrations-snap::-webkit-scrollbar { display: none; }

.integration-pill {
  scroll-snap-align: start;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.integration-pill:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* Cursor Blink */
.input-cursor {
  display: inline-block;
  width: 8px;
  height: 1.2em;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Custom Scrollbar for Terminal if needed */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg); 
}
::-webkit-scrollbar-thumb {
  background: var(--border); 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted); 
}
