@font-face {
  font-family: "Inter";
  src: url("assets/InterVariable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #08080a;
  --card: rgba(20, 20, 25, .82);
  --line: rgba(255, 255, 255, .09);
  --text: #f7f5fa;
  --muted: #aaa6b2;
  --faint: #74707c;
  --accent: #b767ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at 20% -10%, rgba(126,34,206,.24), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
a { color: #d49aff; text-decoration: none; }
a:hover { color: white; }
.wrap { width: min(calc(100% - 32px), 860px); margin-inline: auto; }
.topbar { padding: 18px 0; border-bottom: 1px solid var(--line); background: rgba(8,8,10,.8); backdrop-filter: blur(18px); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: white; font-weight: 800; letter-spacing: -.035em; }
.brand img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(168,85,247,.75)); }
.back { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; background: rgba(20,20,25,.75); color: var(--muted); font-size: 12px; font-weight: 650; }
.back svg { width: 16px; height: 16px; }
main { padding: 78px 0 100px; }
.eyebrow { margin: 0 0 16px; color: #d7b5ff; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(40px, 7vw, 68px); line-height: 1; letter-spacing: -.06em; }
.lead { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.updated { display: inline-flex; margin-top: 24px; padding: 7px 11px; border: 1px solid rgba(168,85,247,.26); border-radius: 999px; background: rgba(168,85,247,.1); color: #d9c8e7; font-size: 11px; }
.document { display: grid; gap: 14px; margin-top: 56px; }
.clause { padding: clamp(22px, 5vw, 34px); border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(24,24,30,.9), rgba(14,14,18,.72)); box-shadow: inset 0 1px rgba(255,255,255,.035); }
.clause h2 { margin: 0 0 14px; font-size: 18px; letter-spacing: -.025em; }
.clause p, .clause li { color: var(--muted); font-size: 13px; line-height: 1.75; }
.clause p:last-child { margin-bottom: 0; }
.clause ul { margin: 10px 0 0; padding-left: 20px; }
.notice { border-color: rgba(168,85,247,.28); background: linear-gradient(145deg, rgba(38,25,50,.9), rgba(17,14,21,.78)); }
footer { padding: 28px 0 38px; border-top: 1px solid var(--line); color: var(--faint); font-size: 11px; }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.legal-links a { color: var(--muted); }
@media (max-width: 560px) {
  main { padding-top: 56px; }
  .brand span { font-size: 14px; }
  h1 { font-size: 40px; }
}
