/* ─── Base ──────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #001428;
  color: #d1e4ff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ─── Material Symbols ──────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ─── Page-specific layout helpers ─────────────────────── */
/* Used on hosting.html hero */
.hero-gradient {
  background:
    radial-gradient(circle at top right, rgba(67, 236, 159, 0.15), transparent 50%),
    radial-gradient(circle at bottom left, rgba(0, 207, 133, 0.05), transparent 40%);
}

/* ─── Dark form inputs (contact, support) ───────────────── */
input,
select,
textarea {
  background-color: #011d35 !important;
  border-color: #1e3448 !important;
  color: #d1e4ff !important;
}

input::placeholder,
textarea::placeholder {
  color: #3d5366 !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #43ec9f !important;
  outline: none !important;
  box-shadow: 0 0 0 1px #43ec9f !important;
}

select option {
  background-color: #011d35;
  color: #d1e4ff;
}
