/* Shared styling for the policy pages (terms, refunds, contact).
   Kept in one file so the three stay visually identical — the marketing
   pages still inline their own CSS. */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #050505;
  --platinum: #e8ecf2;
  --platinum-dim: #9aa2b0;
  --muted: #6b7280;
  --line: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.025);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: #eceef2;
  line-height: 1.7;
  overflow-x: hidden;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.bg-fx { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg-fx::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #14141a 0%, #0a0a0c 45%, #000 100%);
}
.aurora { position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%; filter: blur(130px); opacity: 0.06; }
.aurora.a1 { background: #cfd6e4; top: -20vmax; left: -10vmax; }
.aurora.a2 { background: #7c8698; bottom: -25vmax; right: -12vmax; }

nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5,5,5,0.6);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.5px; text-decoration: none; color: inherit; }
.brand svg { width: 34px; height: 34px; }
.brand span b { font-weight: 800; }
.nav-links a { color: var(--platinum-dim); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }

/* Page body */
header { padding: 66px 0 12px; }
h1 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(32px, 5.5vw, 50px); line-height: 1.05; letter-spacing: -1px; margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #e8ecf2 40%, #8b93a3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.updated { font-size: 13px; color: var(--muted); letter-spacing: 0.3px; }

main { padding: 34px 0 80px; }
section.block { margin-bottom: 34px; }
h2 {
  font-size: 17px; font-weight: 800; letter-spacing: -0.2px; margin-bottom: 10px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
p { color: var(--platinum-dim); font-size: 15px; }
p + p { margin-top: 12px; }
ul { list-style: none; margin-top: 12px; }
li { color: var(--platinum-dim); font-size: 15px; padding: 6px 0 6px 24px; position: relative; }
li::before { content: '—'; position: absolute; left: 0; color: var(--muted); }
a { color: #eceef2; }
strong { color: #eceef2; font-weight: 600; }

.callout {
  border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px;
  background: var(--card); margin-top: 16px;
}
.callout p { font-size: 14.5px; }

/* TODO placeholders — swap these out before going live */
.todo {
  border: 1px dashed rgba(255,255,255,0.22); border-radius: 12px;
  padding: 16px 20px; margin-top: 16px; background: rgba(255,255,255,0.015);
}
.todo p { font-size: 13.5px; color: var(--muted); }
.todo b { color: var(--platinum-dim); }

footer { border-top: 1px solid var(--line); padding: 40px 0; text-align: center; color: var(--muted); font-size: 13px; }
footer .brand { justify-content: center; margin-bottom: 14px; display: inline-flex; }
footer .fl { margin-bottom: 12px; }
footer .fl a { color: var(--platinum-dim); text-decoration: none; margin: 0 10px; }
footer .fl a:hover { color: #fff; }

@media (max-width: 640px) {
  .nav-links { display: none; }
}
