/* Public inquiry page — self-contained (no dependency on the gated full site).
   On-brand: deep navy ground, one royal-blue accent, Plus Jakarta + Inter. */
:root {
  --navy: #0e1729; --navy-2: #0b1220; --ink: #eef2fb; --muted: #9fb0ce;
  --line: rgba(255,255,255,0.10); --field: #101c33; --field-line: rgba(255,255,255,0.16);
  --blue: #3b6cf5; --blue-hi: #5580ff; --danger: #ff8a7d; --ok: #5ad19a;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--navy-2); color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: var(--blue); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 5; }
.shell { position: relative; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 28px 18px; overflow: hidden; }
.glow { position: absolute; inset: -40% 0 auto 0; height: 520px; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 0%, rgba(59,108,245,0.22), transparent 70%); }
.card {
  position: relative; width: 100%; max-width: 520px;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  border: 1px solid var(--line); border-radius: 20px; padding: 32px 30px 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}
.brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--navy); border: 1px solid var(--field-line); color: var(--blue-hi);
  font-family: Georgia, serif; font-weight: 700; font-size: 22px; }
.brand-text { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-suffix { color: var(--muted); font-weight: 700; }
h1 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(1.7rem, 5vw, 2.1rem);
  letter-spacing: -0.02em; margin: 0 0 8px; }
.lede { color: var(--muted); margin: 0 0 22px; max-width: 46ch; }
.form { display: flex; flex-direction: column; gap: 14px; }
.row { display: flex; flex-direction: column; gap: 6px; }
.row-split { flex-direction: row; gap: 12px; }
.row-split > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }
label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.optional { color: #6c7d97; font-weight: 500; }
input, textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--field);
  border: 1.5px solid var(--field-line); border-radius: 11px; padding: 12px 14px; box-sizing: border-box;
}
input:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,108,245,0.25); }
textarea { resize: vertical; min-height: 108px; }
.hint { color: #6c7d97; font-size: 0.8rem; margin: -6px 0 0; }
.hp { position: absolute; left: -9999px; }
.submit {
  margin-top: 6px; width: 100%; font: inherit; font-weight: 700; font-size: 1rem;
  color: #fff; background: var(--blue); border: none; border-radius: 12px; padding: 15px; cursor: pointer;
  transition: background 0.15s ease;
}
.submit:hover { background: var(--blue-hi); }
.submit:disabled { opacity: 0.6; cursor: default; }
.status { min-height: 1.2em; margin: 4px 0 0; font-size: 0.9rem; }
.status[data-state="error"] { color: var(--danger); }
.status[data-state="sending"] { color: var(--muted); }
.status[data-state="ok"] { color: var(--ok); }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); color: #6c7d97; font-size: 0.82rem; }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--ink); }
@media (max-width: 460px) { .row-split { flex-direction: column; } .card { padding: 26px 20px 20px; } }

/* Privacy page extras (keeps all styling in the sheet — CSP blocks inline). */
.card.wide { max-width: 640px; }
.brand.link { text-decoration: none; color: inherit; }
h1.sm { font-size: 1.6rem; }
.legal { color: var(--muted); font-size: 0.95rem; line-height: 1.7; display: flex; flex-direction: column; gap: 14px; }
.legal strong { color: var(--ink); }

/* Single understated service line on the public page. */
.tagline { margin: 0 0 6px; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.02em; color: var(--blue-hi); text-transform: none; }
