:root {
  --purple-950: #160d25;
  --purple-900: #24123d;
  --purple-800: #39205f;
  --purple-700: #57318f;
  --purple-600: #6840a0;
  --purple-100: #eee8f7;
  --purple-50: #f8f5fc;
  --ink: #201b27;
  --muted: #665f6e;
  --line: #e8e2ee;
  --white: #fff;
  --max-width: 1160px;
  --radius: 18px;
  --shadow: 0 16px 45px rgba(42, 24, 68, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--purple-700); text-underline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(87,49,143,.10);
  backdrop-filter: blur(14px);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; }
.brand img { display: block; width: 168px; height: auto; }
.contact-link {
  color: var(--white);
  background: var(--purple-700);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.contact-link:hover { background: var(--purple-800); transform: translateY(-1px); }

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(141,83,210,.36), transparent 26%),
    radial-gradient(circle at 8% 100%, rgba(106,64,160,.30), transparent 30%),
    linear-gradient(135deg, var(--purple-950), var(--purple-900) 54%, #321554);
  overflow: hidden;
}
.hero-content { padding: 86px 0 92px; text-align: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #d9c8f1;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1 { max-width: 760px; margin: 0 auto 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 6vw, 4.7rem); line-height: 1.05; letter-spacing: -.035em; }
.hero p { max-width: 700px; margin: 0 auto 24px; color: #ded6e8; font-size: clamp(1rem, 2vw, 1.2rem); }
.updated { display: inline-flex; padding: 8px 14px; color: #c7b9d8; background: rgba(255,255,255,.06); border-radius: 8px; font-size: .9rem; }

.trust-strip { position: relative; margin-top: -28px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.trust-grid > div { display: flex; align-items: center; gap: 14px; padding: 22px 25px; }
.trust-grid > div + div { border-left: 1px solid var(--line); }
.trust-grid p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.45; }
.trust-grid strong { color: var(--ink); font-size: .95rem; }
.trust-icon { display: grid; flex: 0 0 38px; height: 38px; place-items: center; color: var(--purple-700); background: var(--purple-100); border-radius: 50%; font-size: 1.05rem; font-weight: 900; }

.page-grid { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 58px; align-items: start; padding-block: 76px 100px; }
.toc { position: sticky; top: 108px; }
.toc-title { margin: 0 0 12px; color: var(--purple-700); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.toc nav { display: flex; flex-direction: column; padding-left: 15px; border-left: 1px solid var(--line); }
.toc a { padding: 5px 0; color: var(--muted); font-size: .86rem; text-decoration: none; transition: color .2s, transform .2s; }
.toc a:hover { color: var(--purple-700); transform: translateX(3px); }

.policy { min-width: 0; }
.policy-section { position: relative; padding: 8px 0 44px; border-bottom: 1px solid var(--line); }
.policy-section + .policy-section { padding-top: 48px; }
.policy-section h2 { margin: 0 0 16px; color: var(--purple-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3vw, 2.15rem); line-height: 1.2; letter-spacing: -.02em; }
.policy-section p { margin: 0 0 16px; color: #4b4552; }
.policy-section ul { margin: 17px 0 20px; padding: 0; list-style: none; }
.policy-section li { position: relative; margin: 9px 0; padding-left: 26px; color: #4b4552; }
.policy-section li::before { content: ""; position: absolute; left: 2px; top: .75em; width: 7px; height: 7px; border-radius: 50%; background: var(--purple-600); }
.section-number { display: block; margin-bottom: 5px; color: var(--purple-600); font-size: .74rem; font-weight: 900; letter-spacing: .14em; }
.intro-card, .contact-card { padding: 36px; border: 1px solid #ded4ea; border-radius: var(--radius); background: linear-gradient(145deg, var(--white), var(--purple-50)); box-shadow: var(--shadow); }
.intro-card { border-bottom: 1px solid #ded4ea; }
.intro-card + .policy-section { margin-top: 12px; }
.notice { margin-top: 24px; padding: 18px 20px; color: #493861; background: var(--purple-50); border-left: 4px solid var(--purple-600); border-radius: 4px 12px 12px 4px; }
.rights-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 3px 24px; }

.contact-card { margin-top: 48px; border-bottom: 1px solid #ded4ea; }
.contact-card dl { margin: 28px 0 0; }
.contact-card dl div { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-card dt { color: var(--muted); font-size: .88rem; font-weight: 700; }
.contact-card dd { margin: 0; color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; justify-content: center; padding: 12px 20px; border: 1px solid var(--purple-700); border-radius: 10px; font-weight: 800; text-decoration: none; }
.button-primary { color: var(--white); background: var(--purple-700); }
.button-primary:hover { background: var(--purple-800); }
.button-secondary { color: var(--purple-700); background: transparent; }
.button-secondary:hover { background: var(--purple-100); }

footer { color: #c8bed3; background: var(--purple-950); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 32px; }
.footer-inner img { width: 130px; padding: 8px; background: var(--white); border-radius: 6px; }
.footer-inner p { margin: 0; font-size: .84rem; text-align: right; }

@media (max-width: 820px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .page-grid { grid-template-columns: 1fr; gap: 0; padding-top: 52px; }
  .toc { display: none; }
  .rights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-inner { height: 68px; }
  .brand img { width: 135px; }
  .contact-link { padding: 8px 13px; font-size: .82rem; }
  .hero-content { padding: 65px 0 72px; }
  .hero h1 { font-size: 2.55rem; }
  .hero p { font-size: 1rem; }
  .trust-strip { margin-top: -20px; }
  .trust-grid > div { padding: 18px; }
  .page-grid { padding-bottom: 70px; }
  .policy-section { padding-bottom: 36px; }
  .policy-section + .policy-section { padding-top: 38px; }
  .intro-card, .contact-card { padding: 25px 20px; border-radius: 14px; }
  .contact-card dl div { grid-template-columns: 1fr; gap: 1px; }
  .button { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner p { text-align: left; }
}

@media print {
  .site-header, .trust-strip, .toc, .contact-actions { display: none; }
  .hero { color: #000; background: none; }
  .hero-content { padding: 20px 0; text-align: left; }
  .hero p, .updated { color: #333; }
  .page-grid { display: block; padding: 0; }
  .policy-section { break-inside: avoid; }
  .intro-card, .contact-card { box-shadow: none; }
  footer { color: #333; background: none; }
}
