
/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #1a1a2e;
  line-height: 1.7;
  font-size: 15px;
}

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --red:       #e5203a;
  --red-light: #fff0f2;
  --red-mid:   #f5c0c8;
  --dark:      #1a1a2e;
  --mid:       #444460;
  --muted:     #888;
  --border:    #ede8ea;
  --white:     #ffffff;
  --radius:    14px;
}

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -.3px;
}
.nav-logo span { color: var(--red); }
.nav-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: 999px;
  padding: 3px 12px;
  letter-spacing: .3px;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #fff0f2 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #e5203a18 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 20px;
  letter-spacing: .4px;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 15px;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta-item { display: flex; align-items: center; gap: 5px; }
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red-mid); }

/* ── Layout ───────────────────────────────────────────── */
.page-body {
  display: flex;
  /* grid-template-columns: 260px 1fr; */
  gap: 0;
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
  align-items: start;
}

/* ── Sidebar TOC ──────────────────────────────────────── */
.toc {
  position: sticky;
  top: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-right: 32px;
}
.toc-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 2px; }
.toc-list a {
  display: block;
  font-size: 12.5px;
  color: var(--mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.toc-list a:hover,
.toc-list a.active {
  background: var(--red-light);
  color: var(--red);
  font-weight: 600;
}

/* ── Content ──────────────────────────────────────────── */
.content { min-width: 0; }

.section-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 20px;
  scroll-margin-top: 80px;
}
.section-block:hover { border-color: var(--red-mid); transition: border-color .2s; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-num {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.section-block h2 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -.2px;
  line-height: 1.3;
}

.section-block p {
  color: var(--mid);
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.75;
}
.section-block p:last-child { margin-bottom: 0; }

.section-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0 8px;
}

/* Lists */
.pp-list {
  list-style: none;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}
.pp-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Info box */
.info-box {
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 16px 0;
  font-size: 13.5px;
  color: var(--dark);
  line-height: 1.6;
}
.info-box strong { color: var(--red); }

/* Table */
.pp-table-wrap { overflow-x: auto; margin: 16px 0; }
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.pp-table th {
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--red-mid);
}
.pp-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  vertical-align: top;
  line-height: 1.6;
}
.pp-table tr:last-child td { border-bottom: none; }
.pp-table tr:hover td { background: #fafafa; }

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.right-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.right-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.right-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.right-icon svg { width: 11px; height: 11px; }
.right-card-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Contact card */
.contact-card {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.contact-item {
  flex: 1 1 180px;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: 10px;
  padding: 16px;
}
.contact-label { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-val { font-size: 13.5px; color: var(--dark); font-weight: 500; }

/* Divider */
.pp-divider { height: 1px; background: var(--border); margin: 8px 0 20px; }

/* ── Footer ───────────────────────────────────────────── */
.pp-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 48px;
}
.pp-footer a { color: var(--red); text-decoration: none; }
.pp-footer a:hover { text-decoration: underline; }
.pp-footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 8px;
}
.pp-footer-logo span { color: var(--red); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .page-body { grid-template-columns: 1fr; padding: 0 16px; margin: 32px auto; }
  .toc { position: static; margin-right: 0; margin-bottom: 20px; }
  .toc-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .toc-list li { margin-bottom: 0; }
  .toc-list a { padding: 5px 10px; }
}
@media (max-width: 600px) {
  .nav { padding: 0 16px; }
  .hero { padding: 48px 20px 40px; }
  .section-block { padding: 24px 18px; }
  .rights-grid { grid-template-columns: 1fr; }
  .pp-footer { padding: 24px 16px; }
  .hero-meta { gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
