/* ══════════════════════════════════════
   VaultZeroBot — Privacy Policy Styles
   ══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #111111;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared ── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 24px;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.green {
  background-color: #10b981;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e5e5e5;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-label {
  font-size: 14px;
  color: #555555;
}

@media (max-width: 500px) {
  .nav-label { display: none; }
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: #999999;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  padding: 140px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: #999999;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-label {
  font-size: 13px;
  color: #555555;
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: #cccccc;
}

.meta-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════
   TABLE OF CONTENTS
══════════════════════════════ */
.toc-section {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.toc-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #dddddd;
}

.toc-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.toc-num {
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
  font-size: 11px;
  color: #444444;
}

/* ══════════════════════════════
   POLICY SECTIONS
══════════════════════════════ */
.main-content {
  padding: 16px 0;
}

.policy-section {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 680px) {
  .policy-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #444444;
  padding-top: 5px;
}

.section-body h2 {
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-body p {
  font-size: 15px;
  color: #999999;
  line-height: 1.85;
  margin-bottom: 14px;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.section-body ul {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #999999;
  line-height: 1.8;
}

.section-body ul li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #555555;
  flex-shrink: 0;
  margin-top: 10px;
}

.note {
  margin-top: 16px !important;
  font-size: 14px !important;
  color: #666666 !important;
  font-style: italic;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 16px;
}

.warning-box {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.warning-box p {
  font-size: 14px !important;
  color: #888888 !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

.warning-box strong {
  color: #cccccc;
  font-weight: 600;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  padding: 48px 0;
  margin-top: 8px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-left: 208px;
}

@media (max-width: 680px) {
  .footer-inner { padding-left: 0; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-logo svg {
  color: #555555;
}

.footer-copy {
  font-size: 13px;
  color: #444444;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

@media (max-width: 500px) {
  .footer-right { align-items: flex-start; }
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #555555;
}

.footer-date {
  font-size: 12px;
  color: #444444;
}

/* ══════════════════════════════
   FADE-IN ANIMATION
══════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
