
	:root {
	  --bg: #f8f5ef;
	  --card: #ffffff;
	  --text: #1f2933;
	  --muted: #64707d;
	  --accent: #ff7a1a;
	  --accent-dark: #d95f00;
	  --border: #e6dfd3;
	  --shadow: 0 20px 50px rgba(31, 41, 51, 0.08);
	  --radius: 24px;
	}

	* {
	  box-sizing: border-box;
	}

	body {
	  margin: 0;
	  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	  background:
		radial-gradient(circle at top left, rgba(255, 122, 26, 0.14), transparent 34rem),
		linear-gradient(180deg, #fffaf2 0%, var(--bg) 46%, #f2eee7 100%);
	  color: var(--text);
	  line-height: 1.6;
	}

	a {
	  color: inherit;
	  text-decoration: none;
	}

	.page {
	  width: min(1120px, calc(100% - 40px));
	  margin: 0 auto;
	}

	header {
	  padding: 28px 0;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 20px;
	}

	.logo {
	  display: flex;
	  align-items: center;
	  gap: 12px;
	  font-weight: 800;
	  letter-spacing: -0.04em;
	  font-size: 1.45rem;
	}

	.logo-mark {
	  width: 42px;
	  height: 42px;
	  border-radius: 14px;
	  background: var(--text);
	  color: #fff;
	  display: grid;
	  place-items: center;
	  font-weight: 900;
	  letter-spacing: -0.08em;
	  box-shadow: 0 10px 28px rgba(31, 41, 51, 0.18);
	}

	nav {
	  display: flex;
	  align-items: center;
	  gap: 18px;
	  color: var(--muted);
	  font-size: 0.95rem;
	}

	nav a:hover {
	  color: var(--text);
	}

	footer {
	  padding: 28px 0 40px;
	  color: var(--muted);
	  font-size: 0.92rem;
	  display: flex;
	  justify-content: space-between;
	  gap: 18px;
	  flex-wrap: wrap;
	}
.policy { max-width: 800px; margin: 32px auto 64px; }
.policy h1 { font-size: clamp(2.5rem, 7vw, 4rem); line-height: 1.08; letter-spacing: -0.05em; }
.policy .updated { color: var(--muted); margin: 18px 0 30px; }
.policy h2 { font-size: 1.35rem; line-height: 1.3; letter-spacing: -0.02em; margin: 36px 0 12px; }
.policy p, .policy li { font-size: 1rem; }
.policy li { margin-bottom: 8px; }
.policy a, .policy-footer a { text-decoration: underline; text-underline-offset: 3px; }
.policy a:hover, .policy-footer a:hover { color: var(--accent-dark); }
.policy ul { padding-left: 24px; }
.policy-footer { border-top: 1px solid var(--border); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
a:focus-visible { outline: 3px solid var(--accent-dark); outline-offset: 5px; }
@media (max-width: 860px) { .policy-nav { display: flex; flex-wrap: wrap; } }
@media (max-width: 520px) { header { flex-direction: column; } .policy { margin-top: 20px; } }
@media print { body { background: white; } header, footer { display: none; } .page { width: 100%; } .policy { margin: 0; max-width: none; } }
