@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/fonts/sora-latin.woff2") format("woff2");
}

:root {
  --ink: #171717;
  --muted: #666;
  --line: #e5e5e5;
  --soft: #f7f7f7;
  --body: "Manrope", "Segoe UI", sans-serif;
  --display: "Sora", "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  line-height: 1.75;
}
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 10px; }
.brand-name { font-family: var(--display); font-weight: 700; line-height: 1.1; }
.brand-sub { color: var(--muted); font-size: 11px; letter-spacing: .15em; margin-top: 5px; }
.back-link {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.hero {
  padding: 76px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.2; }
h1 { max-width: 780px; margin: 12px 0 18px; font-size: clamp(38px, 6vw, 70px); letter-spacing: -.045em; }
h2 { margin: 0 0 18px; font-size: clamp(27px, 4vw, 38px); letter-spacing: -.03em; }
h3 { margin: 28px 0 8px; font-size: 18px; }
.intro { max-width: 760px; color: #444; font-size: 18px; }
.updated { color: var(--muted); font-size: 13px; }
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
}
.policy-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  text-decoration: none;
  font-size: 13px;
}
main { padding-bottom: 72px; }
.policy {
  scroll-margin-top: 100px;
  margin-top: 28px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.035);
}
.policy p, .policy li { color: #444; }
.policy li + li { margin-top: 7px; }
.notice {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--ink);
  border-radius: 0 12px 12px 0;
  background: var(--soft);
  color: #333;
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { border-bottom: 1px solid var(--line); padding: 12px 10px; text-align: left; vertical-align: top; }
th { font-family: var(--display); }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .header-inner { min-height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .brand-sub { display: none; }
  .back-link { padding: 8px 10px; font-size: 12px; }
  .hero { padding-top: 48px; }
  .policy { border-radius: 16px; }
}
