:root {
  --bg: #030712;
  --bg-soft: #0a0a14;
  --cyan: #22d3ee;
  --violet: #a855f7;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: #e5e7eb;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

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

.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow-cyan {
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.35);
}

.glow-violet {
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.35);
}

.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.blob-cyan {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.65), transparent 70%);
}

.blob-violet {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6), transparent 70%);
}

.grid-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.animate-drift {
  animation: drift 18s ease-in-out infinite;
}

.animate-drift-slow {
  animation: drift 26s ease-in-out infinite;
}

.orbital-bg {
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes core-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.05); }
}

.core-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: core-pulse 4s ease-in-out infinite;
}

.hero-vignette {
  background: radial-gradient(ellipse 60% 55% at center, rgba(3,7,18,0.92) 0%, rgba(3,7,18,0.55) 35%, transparent 70%);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 12px 44px rgba(34, 211, 238, 0.16), 0 0 0 1px rgba(168, 85, 247, 0.06);
}

.btn-glow {
  position: relative;
  background-image: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.4), 0 0 48px rgba(34, 211, 238, 0.22);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(168, 85, 247, 0.6), 0 0 70px rgba(34, 211, 238, 0.38);
}

.btn-ghost {
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.btn-ghost:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.06);
  transform: translateY(-2px);
}

.nav-link {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #22d3ee;
}

.nav-cta {
  position: relative;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.10), rgba(168, 85, 247, 0.10));
  box-shadow: 0 4px 18px rgba(34, 211, 238, 0.08), 0 0 0 1px rgba(34, 211, 238, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  isolation: isolate;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.7), rgba(168, 85, 247, 0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.20), rgba(168, 85, 247, 0.20));
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.20), 0 0 36px rgba(168, 85, 247, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

#navbar {
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.nav-scrolled {
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.integ-pill {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.integ-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.06), rgba(168, 85, 247, 0.06));
  box-shadow: 0 12px 38px rgba(34, 211, 238, 0.14), 0 4px 14px rgba(168, 85, 247, 0.12);
}

.integ-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #cbd5e1;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.integ-pill:hover .integ-name {
  color: #ffffff;
}



.panel-mockup {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 20, 0.55);
  box-shadow: 0 24px 80px rgba(34, 211, 238, 0.18), 0 8px 28px rgba(168, 85, 247, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  backdrop-filter: blur(6px);
}

.panel-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.06), transparent 40%, rgba(168, 85, 247, 0.08));
  pointer-events: none;
  z-index: 2;
}

.panel-mockup:hover {
  box-shadow: 0 32px 100px rgba(34, 211, 238, 0.28), 0 12px 36px rgba(168, 85, 247, 0.22), 0 0 0 1px rgba(34, 211, 238, 0.18);
}

.panel-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 3;
}

.panel-dot {
  width: 11px;
  height: 11px;
  border-radius: 9999px;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.panel-float-1 {
  animation: float-y 6.5s ease-in-out infinite;
}

.panel-float-2 {
  animation: float-y 9s ease-in-out infinite;
  animation-delay: -2.5s;
}

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

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a14;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#22d3ee, #a855f7);
  border-radius: 9999px;
}

::selection {
  background: rgba(168, 85, 247, 0.35);
  color: #ffffff;
}