/* Shared stylesheet for sixx.me legal/trust subpages (terms, privacy, refunds,
   creator-agreement, security, 2257, abuse report form). Same design tokens as
   index.html so these don't read as a different site once you click through
   from the LP. Kept in one file instead of embedded per-page so seven pages
   don't each carry a duplicate ~150-line <style> block. */
:root {
  --ink: #0c0d0f;
  --panel: #101216;
  --panel-2: #14171c;
  --cream: #e7e6e2;
  --muted: #8b8c8f;
  --gold: #a9977a;
  --gold-deep: #7a6248;
  --gold-soft: #9a8060;
  --line: rgba(154,140,110,.2);
  --line-soft: rgba(231,230,226,.07);
  --alert: #b5533f;
  --alert-soft: rgba(181,83,63,.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Geist', system-ui, sans-serif;
  --script: 'Italianno', cursive;
  --dot-grid: radial-gradient(circle, rgba(217,200,167,.06) 1px, transparent 1.4px);
  --dot-size: 46px 46px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }
body { background-color: var(--ink); background-image: var(--dot-grid); background-size: var(--dot-size);
  color: var(--cream); font-family: var(--sans); font-weight: 300; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.legal-wrap { width: min(760px, calc(100% - 48px)); margin-inline: auto; }

nav { padding: 30px 0; border-bottom: 1px solid var(--line-soft); }
nav .wrap { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: .04em; display: flex; align-items: baseline; gap: 1px; }
.brand .brand-text { font-weight: 600; }
.brand .xx { font-family: var(--script); font-size: 40px; line-height: 0; color: var(--gold); }
.nav-back { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color .25s ease, border-color .25s ease; }
.nav-back:hover { color: var(--gold); border-color: var(--gold); }

.legal-hero { padding: 76px 0 48px; }
.eyebrow { font-size: 10.5px; font-weight: 400; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); }
.legal-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 5vw, 48px); line-height: 1.08; letter-spacing: -.01em; margin-top: 14px; }
.legal-hero h1 i { font-style: italic; color: var(--gold); font-weight: 400; }
.legal-sub { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-top: 16px; max-width: 62ch; }

.draft-banner { margin-top: 26px; border: 1px solid var(--alert-soft); background: var(--alert-soft); border-radius: 2px;
  padding: 16px 20px; font-size: 13px; color: var(--cream); line-height: 1.6; }
.draft-banner b { color: var(--alert); font-weight: 500; }

.legal-content { padding: 8px 0 100px; }
.legal-content section { padding: 30px 0; border-top: 1px solid var(--line-soft); }
.legal-content section:first-child { border-top: none; }
.legal-content h2 { font-family: var(--serif); font-weight: 500; font-size: 23px; letter-spacing: -.01em; color: var(--cream); margin-bottom: 14px; }
.legal-content h3 { font-family: var(--sans); font-weight: 500; font-size: 14px; letter-spacing: .02em; color: var(--gold); margin: 20px 0 8px; }
.legal-content p { color: var(--muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; max-width: 68ch; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content strong { color: var(--cream); font-weight: 400; }
.legal-content ul, .legal-content ol { color: var(--muted); font-size: 14.5px; line-height: 1.75; margin: 4px 0 14px 22px; max-width: 66ch; }
.legal-content li { margin-bottom: 6px; }
.legal-content a.inline-link { color: var(--gold); border-bottom: 1px solid var(--line); }
.legal-content a.inline-link:hover { border-color: var(--gold); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 8px 0 16px; font-size: 13.5px; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 14px; border: 1px solid var(--line-soft); color: var(--muted); }
.legal-content th { color: var(--cream); font-weight: 500; background: var(--panel-2); }

.toc { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 2px; background: linear-gradient(160deg, var(--panel-2), var(--panel)); }
.toc a { font-size: 12.5px; color: var(--muted); }
.toc a:hover { color: var(--gold); }

footer { background: var(--ink); border-top: 1px solid var(--line); padding: 40px 0 22px; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 10.5px; color: var(--muted); opacity: .7; letter-spacing: .04em; }
.foot-legal { display: flex; flex-direction: column; gap: 4px; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .legal-hero { padding: 56px 0 36px; }
  .foot { flex-direction: column; text-align: center; }
}
