
/* Global styles extracted from critical CSS + extras */
:root{
  --bg:#0b0f14;
  --surface:#0f151d;
  --blue:#17a2ff;
  --blue-2:#0066ff;
  --text:#e6f1ff;
  --muted:#9fb3c8;
  --border:rgba(255,255,255,.08);
  --shadow:0 10px 30px rgba(0,0,0,.35), inset 0 0 0 1px var(--border);
}

* { box-sizing: border-box; }

input, textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
}

input:focus, textarea:focus { border-color: rgba(23,162,255,.6); box-shadow: 0 0 0 3px rgba(23,162,255,.15); }

/* Fancy gradient dividers between sections */
section::after {
  content:"";
  display:block;
  height:1px;
  background: linear-gradient(90deg, rgba(23,162,255,0) 0%, rgba(23,162,255,.25) 50%, rgba(23,162,255,0) 100%);
  margin-top: 48px;
}

/* Parallax starfield */
#layer-stars .parallax-dot { animation: float 12s linear infinite; }
@keyframes float {
  from { transform: translateY(0) }
  to { transform: translateY(-100vh) }
}

/* Buttons hover */
.btn.primary:hover { filter: brightness(1.08) saturate(1.1); transform: translateY(-1px); }
.btn.ghost:hover { border-color: rgba(23,162,255,.45); }
