@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --line: #34303a;
  --text: #F5F5F0;
  --muted: #B7B2BD;
  --accent: #9B4DCA;
  --accent-soft: rgba(155, 77, 202, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.7 Inter, Arial, sans-serif;
}
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.site-header, .site-footer { border-color: var(--line); border-style: solid; }
.site-header { border-width: 0 0 1px; }
.site-footer { border-width: 1px 0 0; }
.header-inner, .footer-inner, .legal-layout { width: min(100% - 40px, 1040px); margin: 0 auto; }
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 132px; height: auto; display: block; }
.back-link, .legal-nav a {
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
}
.back-link:hover, .legal-nav a:hover { color: var(--text); }

.legal-layout { padding: clamp(52px, 9vw, 112px) 0 72px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font: 700 .75rem/1.3 Inter, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 0;
  font: 800 clamp(2.25rem, 6vw, 4.8rem)/.98 Outfit, Inter, sans-serif;
  letter-spacing: -.045em;
}
.intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
}
.updated { margin: 18px 0 0; color: var(--muted); font-size: .875rem; }
.rule { height: 1px; margin: 48px 0; background: linear-gradient(90deg, var(--accent), var(--line) 45%, transparent); }
.content { max-width: 760px; }
.content section { padding: 0 0 34px; }
h2 { margin: 0 0 12px; font: 700 clamp(1.25rem, 2.5vw, 1.65rem)/1.2 Outfit, Inter, sans-serif; letter-spacing: -.025em; }
p, li { color: var(--muted); }
p { margin: 0 0 15px; }
ul { margin: 0 0 15px; padding-left: 20px; }
li + li { margin-top: 7px; }
.card {
  margin-top: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.card p:last-child { margin-bottom: 0; }
.card strong { color: var(--text); }

.footer-inner { padding: 32px 0 40px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-company { margin: 30px 0 0; color: var(--muted); font-size: .82rem; }
.footer-company span { display: block; }

@media (max-width: 560px) {
  .header-inner, .footer-top { align-items: flex-start; flex-direction: column; justify-content: center; }
  .header-inner { padding: 18px 0; }
  .legal-layout { padding-top: 58px; }
}
