:root {
  --ink: #101633;
  --muted: #66708a;
  --line: #e7eaf3;
  --soft: #f7f9ff;
  --primary: #3f3df4;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); }
.shell { width: min(920px, calc(100% - 40px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.company-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: 17px; font-weight: 800; letter-spacing: -.025em; text-decoration: none; }
.company-mark { position: relative; display: inline-block; width: 28px; height: 28px; flex: 0 0 auto; }
.company-mark i { position: absolute; display: block; background: linear-gradient(145deg, #6e6aff, #3430ec); transform: skew(-25deg); border-radius: 2px; }
.company-mark i:nth-child(1) { width: 8px; height: 24px; left: 4px; top: 2px; }
.company-mark i:nth-child(2) { width: 8px; height: 17px; left: 13px; top: 9px; }
.company-mark i:nth-child(3) { width: 16px; height: 7px; left: 8px; top: 14px; transform: skew(25deg); }
.back { font-size: 14px; font-weight: 700; text-decoration: none; }
.page { padding: 72px 0 84px; }
.eyebrow { margin: 0 0 12px; color: #6968e9; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(38px, 6vw, 58px); line-height: 1.04; letter-spacing: -.05em; }
.lede { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.meta { margin: 18px 0 34px; color: #8b93a7; font-size: 13px; }
.policy { padding: 36px 40px 42px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(25,35,73,.06); }
.policy section + section { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
h2 { margin: 0 0 12px; font-size: 22px; line-height: 1.25; letter-spacing: -.025em; }
h3 { margin: 22px 0 8px; font-size: 17px; }
p { margin: 0 0 14px; }
ul { margin: 8px 0 14px; padding-left: 22px; }
li + li { margin-top: 6px; }
.notice { padding: 16px 18px; border-left: 3px solid var(--primary); border-radius: 0 10px 10px 0; background: var(--soft); color: #515d78; font-size: 14px; }
.site-footer { padding: 28px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; }
@media (max-width: 620px) { .page { padding: 48px 0 56px; } .policy { padding: 25px 22px; } .header-inner, .footer-inner { align-items: flex-start; flex-direction: column; gap: 12px; } .lede { font-size: 16px; } }
