:root {
  color-scheme: light;
  --ink: #101722;
  --muted: #637080;
  --line: #e5e8eb;
  --yellow: #fff386;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { background: #f7f8f9; }
body { margin: 0; color: var(--ink); background: linear-gradient(180deg, #fff 0, #f7f8f9 100%); }
a { color: inherit; }
.legal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - 900px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(16px);
}
.legal-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.legal-brand > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--yellow); }
.legal-brand svg { width: 23px; fill: var(--ink); }
.legal-brand strong { font-size: .95rem; letter-spacing: -.02em; }
.legal-brand small { display: block; color: #536173; font-size: .52rem; font-weight: 700; letter-spacing: .2em; }
.back-link { font-size: .76rem; font-weight: 750; text-decoration: none; }
.back-link span { color: #6f6200; }
.legal-main { width: min(100% - 40px, 820px); margin: 0 auto; padding: 72px 0 90px; }
.legal-title { padding-bottom: 35px; border-bottom: 1px solid var(--line); }
.legal-title > span { display: inline-block; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: #fff386; font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
h1 { max-width: 700px; margin: 0; font-size: clamp(2.15rem, 6vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.legal-title p { max-width: 660px; margin: 20px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
section { display: grid; grid-template-columns: 190px 1fr; gap: 34px; padding: 30px 0; border-bottom: 1px solid var(--line); }
h2 { margin: 0; font-size: .88rem; line-height: 1.5; }
section p { margin: 0; color: #485566; font-size: .92rem; line-height: 1.75; }
section a { font-weight: 700; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal-update { margin: 24px 0 0; color: #89929d; font-size: .7rem; }
@media (max-width: 640px) {
  .legal-header { min-height: 66px; padding-inline: 18px; }
  .back-link { font-size: .68rem; }
  .legal-main { width: min(100% - 34px, 820px); padding-top: 48px; }
  section { grid-template-columns: 1fr; gap: 9px; padding: 24px 0; }
}