:root {
  --bg: #080808;
  --panel: rgba(255,255,255,.055);
  --panel-2: rgba(255,255,255,.08);
  --gold: #d7b46a;
  --gold-soft: rgba(215,180,106,.25);
  --text: #f2f0ea;
  --muted: #b9b2a4;
  --line: rgba(215,180,106,.28);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(215,180,106,.12), transparent 35%),
    linear-gradient(180deg, #12100c 0%, var(--bg) 44%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
.legal-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}
.legal-hero,
.legal-card,
.notice-card,
.signature-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--panel), rgba(0,0,0,.28));
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 42px);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before,
.legal-card::before,
.notice-card::before,
.signature-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(215,180,106,.17);
  border-radius: 22px;
  pointer-events: none;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  margin: 0 0 12px;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  margin: 0 0 12px;
}
p, li { color: var(--muted); font-size: 1rem; }
strong { color: var(--text); }
ul { padding-left: 22px; margin-bottom: 0; }
.intro { max-width: 720px; font-size: 1.08rem; }
.updated { color: var(--text); }
.notice-card { background: linear-gradient(135deg, rgba(215,180,106,.13), rgba(255,255,255,.05)); }
.warning { border-color: rgba(255, 210, 120, .52); }
.signature-card { text-align: center; }
.small { font-size: .86rem; color: var(--gold); }
@media print {
  body { background: white; color: #111; }
  .legal-shell { width: auto; padding: 0; }
  .legal-hero, .legal-card, .notice-card, .signature-card { box-shadow: none; border-color: #999; page-break-inside: avoid; }
  p, li { color: #111; }
  h2, .eyebrow, .small { color: #7a5a16; }
}
