/* ════════════════════════════════════════════════════════════
   VIVIDFUSION — SHARED LEGAL PAGE STYLES (Privacy / Terms /
   Refund / Shipping). Minimalist, readable, brand-aligned.
   ════════════════════════════════════════════════════════════ */
:root {
  --legal-max: 760px;
}

html, body {
  background: #060606;
  color: #f8f8f8;
  font-family: 'DM Sans', 'Inter', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.legal-page {
  max-width: var(--legal-max);
  margin: 0 auto;
  padding: 130px 24px 100px;
}

.legal-head {
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 36px;
}
.legal-head .eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(200,255,0,0.85);
  margin-bottom: 14px;
}
.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 18px;
}
.legal-lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin-bottom: 56px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
}
.legal-toc a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.18s;
}
.legal-toc a:hover { color: rgba(200,255,0,0.95); }

article section {
  margin-bottom: 38px;
  scroll-margin-top: 90px;
}
article section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
article section h3::before {
  content: counter(sec, decimal-leading-zero) "  ·  ";
  color: rgba(200,255,0,0.7);
  font-weight: 400;
}
article { counter-reset: sec; }
article section { counter-increment: sec; }

article p, article li {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: 12px;
}
article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
}
article li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
article li::before {
  content: '·';
  position: absolute;
  left: 6px;
  top: -1px;
  color: rgba(200,255,0,0.7);
  font-size: 18px;
  line-height: 1.4;
}
article a {
  color: rgba(200,255,0,0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,255,0,0.25);
  transition: color 0.18s, border-color 0.18s;
}
article a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.legal-contact {
  margin-top: 60px;
  padding: 24px 26px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.legal-contact strong { color: #fff; font-weight: 500; }

.legal-disclaimer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.32);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .legal-toc { grid-template-columns: 1fr; }
  .legal-page { padding: 110px 18px 80px; }
}
