﻿:root {
  --ink: #241b2f;
  --muted: #665d6f;
  --brand: #5d3270;
  --brand-dark: #3a2147;
  --cream: #fffaf0;
  --blush: #fbf4fd;
  --paper: #ffffff;
  --line: #e7dce9;
  --gold: #bd9650;
  --shadow: 0 18px 50px rgba(49, 35, 58, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 230, 251, 0.9), transparent 32rem),
    linear-gradient(180deg, var(--cream) 0%, #fdf8fc 55%, #ffffff 100%);
  line-height: 1.68;
}
a { color: var(--brand); font-weight: 800; }
a:focus, button:focus { outline: 3px solid rgba(189, 150, 80, 0.45); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--brand-dark);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 10;
}
.skip-link:focus { top: 16px; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(231, 220, 233, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-dark);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #a777b7);
  box-shadow: 0 8px 18px rgba(93, 50, 112, 0.25);
}
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-link {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 7px;
  background: var(--brand);
  color: white;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(93, 50, 112, 0.18);
}
.button.secondary {
  background: white;
  color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: none;
}
.hero { padding: 86px 0 76px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  margin: 0 0 14px;
}
h1 {
  margin: 0 0 22px;
  color: var(--brand-dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.page-title { font-size: clamp(38px, 5vw, 58px); }
.lead {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 21px;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.hero-card h2 { margin-top: 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 74px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(56, 42, 65, 0.06);
}
.card h2, .card h3 { margin: 0 0 10px; color: var(--brand-dark); }
.card p { margin: 0; color: var(--muted); }
.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0 76px;
}
.toc {
  position: sticky;
  top: 96px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(56, 42, 65, 0.06);
}
.toc h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.toc a {
  display: block;
  padding: 7px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: var(--brand);
}
.policy-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 50px);
}
.updated {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--blush);
  color: var(--brand-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.policy-panel h2 {
  margin: 38px 0 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 27px;
  line-height: 1.2;
}
.policy-panel h2:first-of-type { border-top: 0; padding-top: 0; }
p, li { color: var(--muted); font-size: 17px; }
ul { padding-left: 22px; }
li { margin: 8px 0; }
strong { color: var(--ink); }
.notice {
  margin: 24px 0 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 9px;
  background: var(--blush);
}
.notice p { margin: 0; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.footer-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .hero { padding: 56px 0 50px; }
  .hero-grid, .policy-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; padding-bottom: 52px; }
  .toc { position: static; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav { align-items: flex-start; flex-direction: column; justify-content: center; padding: 16px 0; }
  .nav-links { gap: 12px; }
  h1 { font-size: 40px; }
  .lead { font-size: 18px; }
  .button { width: 100%; }
}
@media print {
  .site-header, .toc, .site-footer, .actions { display: none; }
  body { background: white; }
  .policy-layout { display: block; padding: 0; }
  .policy-panel { box-shadow: none; border: 0; padding: 0; }
}
