/* Global Telematics — shared styles for marketing website. */
:root {
  --ink-900: #06070d;
  --ink-800: #0b0d18;
  --ink-700: #11141f;
  --ink-600: #1a1e2c;
  --ink-500: #262b3d;
  --ink-400: #3a4258;
  --ink-300: #5c6680;
  --accent-500: #7c5cff;
  --accent-600: #6a4af0;
  --cyan-500: #22d3ee;
  --cyan-400: #67e8f9;
  --warn: #f59e0b;
  --danger: #ff4d6d;
  --success: #22c55e;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #06070d;
  color: #e5e7eb;
  min-height: 100vh;
}

.mono { font-family: 'JetBrains Mono', monospace; }

.glass {
  background: rgba(17, 20, 31, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 92, 255, 0.12);
}

.glass-strong {
  background: rgba(17, 20, 31, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(124, 92, 255, 0.18);
}

.gradient-text {
  background: linear-gradient(135deg, #7c5cff 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #7c5cff 0%, #22d3ee 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 10px 30px -10px rgba(124, 92, 255, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(124, 92, 255, 0.7); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 92, 255, 0.25);
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(124, 92, 255, 0.08); border-color: rgba(124, 92, 255, 0.5); }

.section-eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #5c6680;
  font-weight: 600;
}

/* Hero gradient bg blobs */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-bg::before {
  width: 600px; height: 600px;
  background: #7c5cff;
  top: -200px; left: -100px;
}
.hero-bg::after {
  width: 500px; height: 500px;
  background: #22d3ee;
  bottom: -150px; right: -100px;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.6); }
  50% { box-shadow: 0 0 0 16px rgba(124, 92, 255, 0); }
}
.pulse-glow { animation: pulse-glow 2s infinite; }

@keyframes blink { 50% { opacity: 0.3; } }
.blink { animation: blink 1.4s infinite; }

/* Scroll smooth */
html { scroll-behavior: smooth; }

/* Selection */
::selection { background: rgba(124, 92, 255, 0.3); color: white; }
