/* Shared style for legal pages: privacy / terms / refunds */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0e1a;
  --bg-soft: #111729;
  --bg-card: #161e35;
  --fg: #e8ecf5;
  --fg-soft: #9ba6c2;
  --accent: #7c3aed;
  --accent-2: #ec4899;
  --accent-3: #22d3ee;
  --border: rgba(255,255,255,0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container { max-width: 880px; margin: 0 auto; padding: 0 32px; width: 100%; }

/* Header */
header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 100;
}
header .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 40px; }
.back-link { color: var(--fg-soft); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.back-link:hover { color: var(--fg); }

/* Content */
main { flex: 1; padding: 64px 0 96px; }
.page-eyebrow {
  display: inline-block;
  color: var(--accent-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1.page-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.updated { font-size: 14px; color: var(--fg-soft); margin-bottom: 48px; font-family: 'JetBrains Mono', monospace; }
h2 { font-size: 24px; font-weight: 700; margin: 40px 0 16px; letter-spacing: -0.01em; color: var(--fg); }
h2:first-of-type { margin-top: 0; }
h3 { font-size: 18px; font-weight: 600; margin: 28px 0 12px; color: var(--fg); }
p { color: var(--fg-soft); margin-bottom: 16px; font-size: 16px; }
ul, ol { color: var(--fg-soft); margin: 0 0 16px 24px; padding-left: 0; }
li { margin-bottom: 8px; font-size: 16px; }
a { color: var(--accent-3); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--fg); font-weight: 600; }
.callout {
  margin: 24px 0;
  padding: 20px 24px;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 14px;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Footer */
footer {
  padding: 48px 0 32px;
  background: #06091a;
  border-top: 1px solid var(--border);
}
footer .container { max-width: 1200px; }
footer .brand-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: flex-start; margin-bottom: 32px; }
footer .brand { display: flex; align-items: center; gap: 12px; }
footer .brand img { height: 32px; opacity: 0.9; }
footer .brand .tagline { color: var(--fg-soft); font-size: 13px; }
footer .links { display: flex; flex-wrap: wrap; gap: 24px; }
footer .links a { color: var(--fg-soft); font-size: 14px; text-decoration: none; transition: color 0.2s; }
footer .links a:hover { color: var(--fg); text-decoration: none; }
footer .business-info {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.6;
  opacity: 0.8;
}
footer .business-info .legal-name { color: var(--fg); font-weight: 600; }

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  h1.page-title { font-size: 32px; }
  main { padding: 48px 0 64px; }
}
