:root {
  --color-midnight-canvas: #05060f;
  --color-steel-plate: #2f343e;
  --color-fog-veil: #9da7ba;
  --color-moon-mist: #c7d3ea;
  --color-frost-glow: #d1e4fa;
  --color-ice-highlight: #d8ecf8;
  --color-pure-white: #ffffff;
  --color-void-violet: #141d91;
  --color-blueprint-blue: #b6d9fc;
  --color-glass-edge: rgba(186, 215, 247, 0.12);
  --color-luminous-fill: rgba(199, 211, 234, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--color-midnight-canvas) !important;
  color: var(--color-frost-glow) !important;
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
}

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

.text-gradient {
  background: linear-gradient(180deg, #d8ecf8 0%, #98c0ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spotlight {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 22, 185, 0.15) 0%, rgba(5, 6, 15, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 215, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  z-index: 1;
}

.eyebrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.eyebrow-line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(186, 215, 247, 0.2));
}

.eyebrow-line.reverse {
  background: linear-gradient(90deg, rgba(186, 215, 247, 0.2), transparent);
}

.eyebrow-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-moon-mist);
}

.glass-card {
  background: rgba(186, 214, 247, 0.03);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(186, 215, 247, 0.08);
  box-shadow: inset 0 1px 1px rgba(216, 236, 248, 0.1), 0 24px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.glass-modal {
  background: rgba(5, 6, 15, 0.95);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--color-glass-edge);
  box-shadow: inset 0 1px 1px rgba(216, 236, 248, 0.2), inset 0 24px 48px rgba(168, 216, 245, 0.06), 0 16px 32px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  background: rgba(186, 214, 247, 0.06);
  color: var(--color-pure-white);
  border: 1px solid var(--color-glass-edge);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(186, 214, 247, 0.12);
  border-color: rgba(186, 215, 247, 0.25);
}

.btn-violet {
  border-radius: 6px;
  padding: 0.8rem 1.6rem;
  background: var(--color-void-violet);
  color: var(--color-pure-white);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  box-shadow: 0 0 12px rgba(13, 22, 185, 0.3);
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-violet:hover {
  opacity: 0.95;
  box-shadow: 0 0 24px rgba(13, 22, 185, 0.6);
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(199, 211, 234, 0.06);
  border: 1px solid var(--color-glass-edge);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

.input-field:focus {
  border-color: rgba(186, 215, 247, 0.3);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--color-luminous-fill);
  color: var(--color-frost-glow);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--color-glass-edge);
}

.icon-container {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(186, 214, 247, 0.06);
  border: 1px solid var(--color-glass-edge);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.nav-link {
  color: var(--color-moon-mist);
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-pure-white);
}

.bg-midnight { background-color: var(--color-midnight-canvas); }
.bg-steel { background-color: var(--color-steel-plate); }
.bg-glass { background-color: rgba(186, 214, 247, 0.03); }
.text-frost { color: var(--color-frost-glow); }
.text-fog { color: var(--color-fog-veil); }
.text-moon { color: var(--color-moon-mist); }
.text-blueprint { color: var(--color-blueprint-blue); }
.text-pure-white { color: var(--color-pure-white); }
.border-glass-edge { border-color: var(--color-glass-edge); }
.bg-violet { background-color: var(--color-void-violet); }
.text-violet { color: var(--color-void-violet); }