:root {
  color-scheme: light;
  --ink: #201b2a;
  --muted: #6b6473;
  --line: #e9e3ed;
  --paper: #fcfafc;
  --surface: #ffffff;
  --purple: #7650a8;
  --purple-dark: #4f326f;
  --purple-soft: #f2ebf8;
  --mint: #dcefe8;
  --mint-dark: #26594a;
  --shadow: 0 22px 70px rgba(52, 34, 69, .09);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(185, 153, 213, .21), transparent 26rem),
    var(--paper);
  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-dark); }
a:hover { color: var(--purple); }

.skip-link {
  position: fixed;
  z-index: 99;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(227, 218, 233, .82);
  background: rgba(252, 250, 252, .88);
  backdrop-filter: blur(16px);
}

.header-inner,
.hero,
.layout,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px 11px 11px 4px;
  color: white;
  background: linear-gradient(145deg, #8e68bb, #5b387b);
  font-family: Georgia, serif;
  font-size: 20px;
  box-shadow: 0 8px 22px rgba(85, 53, 116, .22);
}

.header-action {
  padding: 9px 14px;
  border: 1px solid #d9cce2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  gap: 72px;
  align-items: center;
  padding-block: clamp(72px, 10vw, 132px) clamp(64px, 8vw, 100px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7.4vw, 86px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 18px;
  color: #4f4857;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.privacy-summary {
  position: relative;
  padding: 29px;
  border: 1px solid rgba(113, 82, 142, .14);
  border-radius: 26px 26px 26px 8px;
  background: linear-gradient(145deg, #f4edf8, #ede4f3);
  box-shadow: var(--shadow);
}

.privacy-summary::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, .45);
}

.privacy-summary h2 {
  margin: 0 0 15px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.privacy-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #544a5d;
  font-size: 14px;
  line-height: 1.5;
}

.privacy-summary li {
  position: relative;
  padding-left: 25px;
}

.privacy-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-weight: 900;
}

.layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 800px);
  gap: clamp(60px, 9vw, 130px);
  justify-content: center;
  padding-bottom: 100px;
}

.contents {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.contents p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contents a {
  padding-block: 2px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.contents a:hover,
.contents a:focus { color: var(--purple); }

.policy > section {
  padding-block: 12px 64px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  display: inline-grid;
  width: 40px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.policy h2 {
  margin: 14px 0 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.policy h3 {
  margin: 26px 0 6px;
  font-size: 16px;
  letter-spacing: -.01em;
}

.policy p {
  margin: 0 0 17px;
  color: #554e5c;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.data-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.data-card h3 { margin: 0 0 7px; }
.data-card p { margin: 0; font-size: 14px; line-height: 1.6; }

.notice {
  margin-top: 25px;
  padding: 20px 22px;
  border-left: 4px solid var(--purple);
  border-radius: 4px 14px 14px 4px;
  color: #4b4053;
  background: var(--purple-soft);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: #554e5c;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--mint);
  border-radius: 50%;
  background: var(--mint-dark);
}

.service-list {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.service-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.service-list h3,
.service-list p { margin: 0; }
.service-list p { font-size: 14px; }

.deletion {
  margin: 58px 0;
  padding: clamp(28px, 5vw, 50px) !important;
  border: 0 !important;
  border-radius: 28px 28px 28px 8px;
  background: #211a2a;
  box-shadow: var(--shadow);
}

.deletion .section-number { background: #3b2e49; color: #e6d7f2; }
.deletion .eyebrow { margin-top: 18px; color: #c6a7df; }
.deletion h2 { color: white; }
.deletion p,
.deletion li { color: #d4cdd9; }
.deletion ol { padding-left: 21px; }
.deletion li { margin-bottom: 10px; padding-left: 5px; }

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 14px 0 16px;
  padding: 12px 20px;
  border-radius: 12px;
  color: #211a2a;
  background: #ede1f6;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.primary-button:hover {
  color: #211a2a;
  background: white;
  transform: translateY(-1px);
}

.contact-value { font-size: 14px; }
.contact-value span { color: white; }
.fine-print { font-size: 13px; }

.contact-link {
  display: inline-block;
  margin: 4px 0 15px;
  font-size: clamp(19px, 3vw, 26px);
  font-weight: 750;
  text-underline-offset: 5px;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand { margin-bottom: 9px; }
footer p { margin: 0; }
footer > a { font-weight: 700; text-decoration: none; }

:focus-visible {
  outline: 3px solid rgba(118, 80, 168, .45);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .privacy-summary { max-width: 620px; }
  .layout { grid-template-columns: 1fr; }
  .contents { display: none; }
}

@media (max-width: 620px) {
  .header-inner,
  .hero,
  .layout,
  footer { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 64px; }
  .header-action { padding: 8px 10px; font-size: 11px; }
  .hero { padding-block: 62px 64px; }
  h1 { font-size: clamp(42px, 15vw, 62px); }
  .hero-lead { font-size: 17px; }
  .privacy-summary { padding: 24px; }
  .data-grid { grid-template-columns: 1fr; }
  .service-list > div { grid-template-columns: 1fr; gap: 2px; }
  .service-list h3 { margin-bottom: 4px; }
  .policy > section { padding-bottom: 52px; }
  .deletion { margin-inline: -6px; border-radius: 22px 22px 22px 7px; }
  .primary-button { width: 100%; text-align: center; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

@media print {
  .site-header,
  .contents,
  .skip-link,
  footer { display: none; }
  body { background: white; font-size: 11pt; }
  .hero,
  .layout { width: 100%; display: block; padding: 0; }
  .hero { margin-bottom: 36px; }
  .privacy-summary { box-shadow: none; break-inside: avoid; }
  .policy > section { break-inside: avoid; }
  .deletion { color: black; background: #f2edf5; box-shadow: none; }
  .deletion h2,
  .deletion p,
  .deletion li,
  .contact-value span { color: black; }
}
