:root {
  --bg: #071b22;
  --panel: #0e2c35;
  --panel-soft: #123743;
  --text: #f6fbfc;
  --muted: #b7d1d8;
  --accent: #f4b64a;
  --accent-2: #66e0c2;
  --danger: #ffdfdf;
  --line: rgba(255,255,255,.16);
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at top, #134250 0%, var(--bg) 52%, #041114 100%);
  color: var(--text);
  min-height: 100vh;
}
a { color: var(--accent-2); }
.shell { width: min(980px, calc(100vw - 32px)); margin: 0 auto; padding: 40px 0; }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 22px; }
.chip-mark { width: 86px; height: 86px; border: 3px solid var(--accent); border-radius: 50%; display:flex; align-items:center; justify-content:center; color: var(--accent); font-size: 30px; letter-spacing: -8px; transform: rotate(-25deg); box-shadow: inset 0 0 0 7px rgba(244,182,74,.18); }
h1 { font-size: clamp(42px, 8vw, 84px); line-height: .95; margin: 0; letter-spacing: -0.06em; }
h2 { margin-top: 0; }
.lede { font-size: clamp(20px, 4vw, 32px); line-height: 1.2; color: var(--muted); margin: 0; max-width: 720px; }
.quote { font-size: clamp(34px, 8vw, 72px); line-height: 1.02; letter-spacing: -0.05em; max-width: 900px; margin: 8px auto; }
.meta { color: var(--muted); font-size: 15px; }
.card { background: rgba(14,44,53,.86); border: 1px solid var(--line); border-radius: 26px; padding: 24px; box-shadow: var(--shadow); text-align: left; width: 100%; }
.card.soft { max-width: 560px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.button, button { appearance: none; border: 0; border-radius: 999px; padding: 14px 20px; background: var(--accent); color: #1e1403; font-weight: 800; font-size: 16px; cursor: pointer; text-decoration: none; display: inline-flex; justify-content: center; align-items: center; gap: 8px; min-height: 48px; }
.button.secondary, button.secondary { background: rgba(255,255,255,.12); color: var(--text); border: 1px solid var(--line); }
.button.row { margin: 6px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; background: rgba(255,255,255,.08); color: var(--text); font: inherit; }
label { display: block; margin: 12px 0 6px; color: var(--muted); }
textarea { min-height: 96px; }
.small { font-size: 13px; color: var(--muted); }
.status { margin-top: 12px; color: var(--accent-2); }
.error { color: var(--danger); }
#map { height: 390px; width: 100%; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); margin: 16px 0; }
table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; vertical-align: top; }
th { color: var(--accent); }
.badge { display:inline-block; padding: 4px 10px; border-radius:999px; background: rgba(255,255,255,.12); color: var(--muted); font-size: 12px; }
.nav { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; }
@media (max-width: 520px) { .shell { padding: 24px 0; } .card { padding: 18px; } }
