:root {
  --bg: #0a0e14;
  --bg2: #0f1520;
  --bg3: #141c2e;
  --border: #1e2d47;
  --accent: #00d4ff;
  --accent2: #0099cc;
  --accent-glow-strong: rgba(0, 212, 255, 0.3);
  --text: #e8f0fe;
  --text-muted: #6b82a8;
  --text-dim: #3d5275;
  --green: #00e676;
  --warning: #ffab40;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

nav .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.nav-back:hover { color: var(--accent); }
.nav-back::before { content: '←'; }

/* PAGE HEADER */
.page-header {
  padding: 9rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* CONTENT */
.policy-body {
  padding-bottom: 6rem;
}

.policy-section {
  margin-bottom: 3.5rem;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

h2 .num {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 400;
  flex-shrink: 0;
}

p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

ul li {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.8;
}

ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 400;
}

.highlight-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.highlight-box strong {
  color: var(--text);
  font-weight: 600;
}

.warning-box {
  background: rgba(255, 171, 64, 0.05);
  border: 1px solid rgba(255, 171, 64, 0.2);
  border-left: 3px solid var(--warning);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.warning-box p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.warning-box strong {
  color: var(--warning);
  font-weight: 600;
}

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

a:hover { color: #fff; }

.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.contact-card p { margin: 0; font-size: 0.82rem; }

.contact-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  display: block;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-header { animation: fadeUp 0.5s ease both; }
.policy-body { animation: fadeUp 0.5s ease 0.1s both; }

@media (max-width: 640px) {
  .page-header { padding: 7rem 0 2.5rem; }
}
