:root {
  --bg: #050505;
  --text: #ececee;
  --dim: #888894;
  --accent: #e8872e;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --nav-h: 56px;
  --pad: clamp(1.1rem, 5vw, 2.5rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* ── Header / Nav ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}

.logo img {
  height: 30px;
  width: auto;
  mix-blend-mode: screen;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}

nav ul.nav-links li a {
  display: block;
  font-size: 0.82rem;
  color: var(--dim);
  text-decoration: none;
  padding: 0.3rem 0.65rem;
  white-space: nowrap;
  transition: color 0.2s;
}

nav ul.nav-links li a:hover {
  color: var(--text);
}

/* ── Policy content ── */
.policy-container {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2.75rem) var(--pad) 6rem;
}

.policy-container h1 {
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

/* "Last Updated: … | Link" line */
.policy-container > p:first-of-type {
  font-size: 0.78rem;
  color: var(--dim);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.policy-container section {
  margin-bottom: 1.5rem;
}

.policy-container h2 {
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: 2.25rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.policy-container h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
}

.policy-container p {
  font-size: 0.9rem;
  color: var(--dim);
  margin-bottom: 0.9rem;
  line-height: 1.75;
}

.policy-container ul {
  list-style: none;
  margin-bottom: 0.9rem;
}

.policy-container ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--dim);
  line-height: 1.7;
}

.policy-container ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.78em;
  top: 0.2em;
}

.policy-container strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem var(--pad) 3rem;
  font-size: 0.68rem;
  color: rgba(136, 136, 148, 0.45);
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  nav ul.nav-links li a {
    font-size: 0.72rem;
    padding: 0.3rem 0.4rem;
  }
}
