/* creator-bill-of-rights.css — NovaReelOS Creator Bill of Rights page */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #000;
  color: #e0e0e0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ───────────────────────────────────────────────────────── */
.cbr-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.cbr-hero {
  padding: 80px 24px 72px;
  text-align: center;
  background: #000;
  position: relative;
  overflow: hidden;
}

.cbr-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cbr-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 100px;
  padding: 8px 20px 8px 14px;
  margin-bottom: 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c084fc;
}

.cbr-badge svg {
  flex-shrink: 0;
}

.cbr-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cbr-hero-subtitle {
  font-size: 18px;
  color: #888;
  max-width: 560px;
  margin: 0 auto 0;
  font-weight: 300;
}

/* ── Rights Grid ──────────────────────────────────────────────────── */
.cbr-section {
  padding: 0 24px 80px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.cbr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cbr-card {
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  border-left: 3px solid #a855f7;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.cbr-card:hover {
  border-left-color: #c084fc;
  transform: translateY(-2px);
}

.cbr-card-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  color: #a855f7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cbr-card-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1f1f1f;
}

.cbr-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cbr-card-body {
  font-size: 15px;
  color: #aaa;
  line-height: 1.65;
  font-weight: 400;
}

/* ── Divider ───────────────────────────────────────────────────────── */
.cbr-divider {
  border: none;
  border-top: 1px solid #1f1f1f;
  margin: 0 0 80px;
}

/* ── Footer Note ───────────────────────────────────────────────────── */
.cbr-living {
  text-align: center;
  padding: 40px 24px 60px;
}

.cbr-living-text {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cbr-living-sub {
  font-size: 13px;
  color: #444;
  margin-top: 6px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .cbr-grid { grid-template-columns: 1fr; }
  .cbr-hero { padding: 60px 20px 52px; }
  .cbr-card { padding: 24px 20px; }
}

/* ── Print ─────────────────────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  .cbr-hero { padding: 32px 0 24px; }
  .cbr-hero::before { display: none; }
  .cbr-badge { border-color: #000; color: #000; background: none; }
  .cbr-hero-title { font-size: 32px; color: #000; }
  .cbr-hero-subtitle { color: #444; }
  .cbr-grid { gap: 12px; }
  .cbr-card { background: #fff; border: 1px solid #ccc; border-left: 3px solid #000; page-break-inside: avoid; padding: 20px; }
  .cbr-card-num { color: #000; }
  .cbr-card-title { font-size: 18px; color: #000; }
  .cbr-card-body { color: #333; font-size: 14px; }
  .cbr-living { padding: 24px 0; }
  .cbr-living-text, .cbr-living-sub { color: #000; }
}