:root {
  --bg: #0f0f0f;
  --bg-elevated: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #8a8a8a;
  --accent: #c9a227;
  --accent-hover: #dbb42e;
  --border: #2a2a2a;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent);
}

.header nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.header nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Content */
.content {
  padding: 3rem 0 4rem;
}

.policy {
  font-size: 1rem;
}

.policy .intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.policy h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.policy h2:first-of-type {
  margin-top: 0;
}

.policy p {
  margin: 0 0 1rem;
  color: var(--text);
}

.policy ul {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.policy li {
  margin-bottom: 0.5rem;
}

.policy a {
  color: var(--accent);
  text-decoration: none;
}

.policy a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.contact {
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }
}
