:root {
  --bg: #07090f;
  --panel: rgba(255,255,255,.055);
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.17);
  --text: #f7f8fb;
  --muted: #a9b0c0;
  --muted-2: #7f8799;
  --accent: #9e94ff;
  --max: 920px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(800px 420px at 85% -10%, rgba(139,124,255,.20), transparent 62%),
    radial-gradient(620px 380px at 5% 3%, rgba(110,231,242,.10), transparent 62%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
:focus-visible { outline: 3px solid rgba(110,231,242,.8); outline-offset: 4px; border-radius: 8px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(7,9,15,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 750; letter-spacing: -.02em; }
.mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(145deg, #8b7cff, #6ee7f2);
  display: grid;
  place-items: center;
  color: #07090f;
  font-weight: 900;
  box-shadow: 0 10px 35px rgba(139,124,255,.22);
}
.nav-links { display: flex; gap: 22px; align-items: center; color: #c5cad5; font-size: 13px; }
.nav-home { padding: 9px 13px; border: 1px solid var(--line-strong); border-radius: 11px; background: rgba(255,255,255,.05); }

.hero { padding: 86px 0 44px; }
.eyebrow { margin-bottom: 14px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0 0 18px; font-size: clamp(42px, 7vw, 68px); line-height: 1; letter-spacing: -.055em; }
.lead { max-width: 720px; margin: 0; color: var(--muted); font-size: 17px; }
.updated { margin-top: 18px; color: var(--muted-2); font-size: 12px; }

.content { padding: 20px 0 90px; }
.policy {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.policy section { padding: 26px 0; border-bottom: 1px solid var(--line); }
.policy section:first-child { padding-top: 0; }
.policy section:last-child { padding-bottom: 0; border-bottom: 0; }
h2 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.025em; }
h3 { margin: 22px 0 8px; font-size: 17px; }
p { margin: 0 0 14px; color: var(--muted); }
ul { margin: 8px 0 14px; padding-left: 22px; color: var(--muted); }
li { margin: 7px 0; }
.policy a, .contact-card a { color: #b9b1ff; text-decoration: underline; text-underline-offset: 3px; }
.notice { padding: 16px 18px; border: 1px solid rgba(158,148,255,.25); border-radius: 14px; background: rgba(139,124,255,.07); color: #cfd2dc; font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.contact-card span { display: block; margin-bottom: 14px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card strong { display: block; margin-bottom: 8px; font-size: 20px; }

footer { padding: 30px 0; border-top: 1px solid rgba(255,255,255,.07); color: var(--muted-2); font-size: 11px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  nav { min-height: 66px; }
  .nav-links a:not(.nav-home) { display: none; }
  .hero { padding-top: 64px; }
  .policy { padding: 26px 22px; }
  .contact-grid { grid-template-columns: 1fr; }
}
