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

:root {
  --bg: #0F1117;
  --card: #1A1D27;
  --border: rgba(255,255,255,0.08);
  --teal: #00C9B1;
  --text: #F2F2F7;
  --muted: #8E8E93;
  --dim: #48484A;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.3px;
}

nav { display: flex; gap: 24px; }
nav a { font-size: 14px; color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--text); }

main { flex: 1; }

/* ── HERO ── */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 32px 80px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,177,0.10);
  border: 1px solid rgba(0,201,177,0.25);
  color: var(--teal);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 48px;
}

/* ── TRUST BADGES ── */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--muted);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── LINKS SECTION ── */
.links {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  border-top: 1px solid var(--border);
}

.links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.15s, color 0.15s;
}

.links a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── LEGAL DOCUMENT ── */
.doc-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.doc-meta {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.doc-meta h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.doc-meta .effective {
  font-size: 13px;
  color: var(--muted);
}

.doc-meta .effective span {
  color: var(--teal);
  font-weight: 500;
}

.doc-body h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.doc-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.doc-body p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.doc-body ul, .doc-body ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.doc-body li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.7;
}

.doc-body strong { color: var(--text); font-weight: 600; }

.doc-body a { color: var(--teal); text-decoration: none; }
.doc-body a:hover { text-decoration: underline; }

.doc-body .highlight-box {
  background: rgba(0,201,177,0.06);
  border: 1px solid rgba(0,201,177,0.20);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.doc-body .highlight-box strong {
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-left { font-size: 13px; color: var(--dim); }
.footer-left span { color: var(--teal); font-weight: 500; }

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
}
.footer-links a:hover { color: var(--teal); }

@media (max-width: 600px) {
  header { padding: 16px 20px; }
  .hero { padding: 64px 20px 48px; }
  .doc-wrap { padding: 40px 20px 60px; }
  footer { flex-direction: column; align-items: flex-start; }
  .trust { flex-direction: column; align-items: center; }
}
