/* Shared chrome for standalone legal/support pages. Copy stays in the HTML. */
/* Self-hosted Bricolage Grotesque (same family as the SPA). No third-party CDN. */
@font-face {
  font-family: 'Bricolage Grotesque Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/bricolage-grotesque-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Bricolage Grotesque Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/bricolage-grotesque-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --ocean-dark: #061018;
  --dock: #0a141e;
  --cream: #f6f0e4;
  --muted: #b7c4ce;
  --gold: #d4532a;
  --ocean: #3aa8c9;
  --glass-border: rgba(58, 168, 201, 0.34);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background-color: var(--ocean-dark);
  background-image:
    linear-gradient(180deg, rgba(6, 16, 24, 0.72), var(--ocean-dark) 42%),
    url('/art/dock-night.jpg');
  background-size: auto, 100% auto;
  background-position: top, top center;
  background-repeat: no-repeat;
  color: var(--cream);
  font-family: 'Bricolage Grotesque Variable', 'Bricolage Grotesque', ui-rounded, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

h1 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #fff;
}

h1 img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

h2 {
  font-size: 17px;
  color: var(--gold);
  margin-top: 28px;
  letter-spacing: 0.04em;
}

p, li {
  font-size: 15px;
  color: var(--cream);
}

a { color: var(--ocean); }

.updated, .muted { color: var(--muted); font-size: 13px; }

code {
  background: rgba(0, 0, 0, 0.35);
  padding: 1px 5px;
  border-radius: 4px;
}

.card {
  background: var(--dock);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0;
}
