/* HDFB-025 — the hazedeck public site. Dark-first with the hazedeck sunset-coral accent (coral → amber → gold),
   matching the console's brand. Single stylesheet, no external fonts (system stack) so the site is fully
   self-contained behind CloudFront. */
:root {
  --bg: #12100e;
  --panel: #1c1813;
  --text: #f1e9dc;
  --muted: #a99a82;
  --border: #2c2314;
  --accent: #ff7a59; /* coral */
  --accent-2: #ffb347; /* amber */
  --link: #ffb37a;
  --maxw: 760px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.05em 0.35em;
  font-size: 0.9em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  flex-wrap: wrap;
}
.brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-nav nav { display: flex; gap: 1.1rem; }
.site-nav nav a { color: var(--muted); font-size: 0.95rem; }
.site-nav nav a[aria-current="page"] { color: var(--text); }

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
}
main h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 1rem 0 0.75rem;
}
main h1 + p { color: var(--muted); font-size: 1.1rem; }
main h2 {
  font-size: 1.2rem;
  margin: 2.25rem 0 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
main ul { padding-left: 1.25rem; }
main li { margin: 0.35rem 0; }
strong { color: #fff; }

footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}
footer p { margin: 0.3rem 0; }

@media (max-width: 480px) {
  main h1 { font-size: 1.6rem; }
}
