/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a1026;
  color: #fff;
  line-height: 1.5;
}

/* Layout */
.wrap { max-width: 1100px; margin: 0 auto; padding: 20px; }
.center { text-align: center; }
.mt { margin-top: 16px; }
.mt2 { margin-top: 24px; }
.row { display: flex; gap: 10px; align-items: center; }

/* Nav */
.nav { background: rgba(0,0,0,.3); backdrop-filter: blur(6px); }
.nav-in { display: flex; justify-content: space-between; align-items: center; }
.nav a { color: #fff; margin: 0 10px; text-decoration: none; }
.nav a.active { color: #58a6ff; }
.brand { font-weight: bold; display: flex; align-items: center; gap: 6px; }

/* Hero */
.hero { padding: 60px 20px; }
.h1 { font-size: 2.5rem; margin-bottom: 10px; }
.lead { font-size: 1.2rem; color: #aab0c3; }

/* Card */
.card {
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}

/* Inputs */
.label { display: block; margin-bottom: 6px; font-weight: 500; }
.input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}
.input::placeholder { color: #aab0c3; }
.input:focus {
  border-color: #58a6ff;
  box-shadow: 0 0 0 3px rgba(88,166,255,.18);
}

/* Buttons */
.btn { padding: 10px 18px; border-radius: 6px; font-weight: 500; cursor: pointer; text-decoration: none; text-align: center; }
.btn.primary { background: #58a6ff; color: #fff; border: none; }
.btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn.primary:hover { background: #4090e0; }
.btn.ghost:hover { border-color: #58a6ff; color: #58a6ff; }

/* Footer */
.foot { padding: 40px 20px; text-align: center; font-size: .9rem; color: #aab0c3; }

/* Background FX */
.bg { position: fixed; inset: 0; z-index: -1; background: radial-gradient(circle at center, #0a1026, #000); }
.stars { position: absolute; inset: 0; background: url('stars.png') repeat; opacity: .3; }
.glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(88,166,255,.15), transparent 70%); }

/* ✅ Fix for Contact textareas */
textarea.input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
}
textarea.input::placeholder { color: #aab0c3; }
textarea.input:focus {
  border-color: #58a6ff;
  box-shadow: 0 0 0 3px rgba(88,166,255,.18);
}
