/* ============================================= */
/*  VANGUARD ALLIANCE NETWORK - PRIVACY POLICY   */
/* ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --white: #FFFFFF;
  --grey: #D9D9D9;
  --muted: #888;
  --card-bg: rgba(20, 18, 15, 0.9);
  --bg: #0a0a0a;
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── CANVAS ── */
#neural-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.38;
}

.page-content { position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  width: 100%; height: 76px;
  position: fixed; top: 0; left: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  border-bottom: 0.5px solid #1c1c1c;
  backdrop-filter: blur(12px);
  background: rgba(8,8,8,0.88);
}

.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-svg { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: #e0dcdc; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.btn-call {
  background: var(--gold); color: white;
  font-weight: 700; font-size: 14px;
  padding: 11px 26px; border-radius: 30px;
  text-decoration: none; transition: background .2s, transform .2s;
}
.btn-call:hover { background: var(--gold-light); transform: scale(1.03); color: #0a0a0a; }

/* ── MAIN CONTENT WRAPPER ── */
.policy-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 60px 100px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 28px;
  display: inline-block;
}

/* ── TITLE ── */
.policy-wrapper h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.effective-date {
  font-size: 18px;
  font-weight: 500;
  color: #c9c3c3;
  margin-bottom: 36px;
  display: block;
}

/* ── DIVIDER ── */
.policy-divider {
  width: 100%;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
  margin-bottom: 44px;
}

/* ── INTRO PARAGRAPH ── */
.policy-intro {
  font-size: 15px;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 44px;
}

/* ── SECTIONS ── */
.policy-section {
  margin-bottom: 36px;
  padding: 28px 32px;
  background: rgba(18, 16, 12, 0.6);
  border: 0.5px solid #1e1e1e;
  border-left: 2px solid rgba(184,134,11,0.35);
  border-radius: 0 12px 12px 0;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.3s ease;
}

.policy-section:hover {
  border-left-color: var(--gold);
  background: rgba(184,134,11,0.04);
  transform: translateX(4px);
}

.policy-section h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h2 .sec-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 16px;
  color: #f5f2f2;
  line-height: 1.8;
}

.policy-section p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.policy-section p a:hover { color: var(--gold-light); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FLOATING PARTICLES ── */
.particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-80px); opacity: 0; }
}

/* ── FOOTER ── */
footer {
  background: rgba(0,0,0,0.94);
  border-top: 0.5px solid #181818;
  position: relative; z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 60px 36px;
  display: flex; gap: 80px; align-items: flex-start;
}

.footer-brand { max-width: 260px; }
.footer-brand .logo { margin-bottom: 18px; }

.footer-tagline { font-size: 14px; line-height: 1.65; color: #fcfcfc; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; font-size: 13px;
  transition: all 0.3s;
}
.footer-socials img {
  width: 18px;
  height: 18px;
}
.footer-socials a:hover { background: rgba(184,134,11,0.22); transform: scale(1.12); }

.footer-links-wrap { display: flex; gap: 70px; flex: 1; justify-content: flex-end; }

.footer-col h5 { font-size: 17px; font-weight: 700; margin-bottom: 18px; color: white; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: #f0eaea; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-copyright {
  border-top: 0.5px solid #181818;
  padding: 22px 60px;
  font-size: 13px; color: #f5f1f1;
  max-width: 1100px; margin: 0 auto;
}

/* ── NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
}

/* ── MOBILE FULL-SCREEN DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 600;
  font-family: var(--font);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-call {
  font-size: 16px !important;
  padding: 12px 32px !important;
  display: inline-block !important;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s, transform 0.2s;
  font-family: var(--font);
}
.mobile-menu-close:hover { color: var(--gold); transform: scale(1.15); }

/* ── RESPONSIVE ── */

/* Tablet landscape (<=1100px) */
@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  .policy-wrapper { padding: 130px 40px 80px; }
  .footer-inner { padding: 60px 40px; gap: 50px; }
  .footer-copyright { padding: 20px 40px; }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 70px; }
  .nav-links { display: none; }
  .nav-desktop-cta { display: none !important; }
  .nav-toggle { display: flex; }
  .logo img { height: 38px; }

  .policy-wrapper { padding: 100px 20px 60px; }
  .policy-wrapper h1 { font-size: clamp(28px, 7.5vw, 44px); }
  .policy-intro { font-size: 14px; margin-bottom: 32px; }
  .policy-section { padding: 20px 16px; margin-bottom: 20px; }
  .policy-section h2 { font-size: 14px; }
  .policy-section p { font-size: 13px; }
  .effective-date { font-size: 15px; }

  .footer-inner { flex-direction: column; gap: 28px; padding: 36px 20px 24px; }
  .footer-brand { max-width: 100%; }
  .footer-tagline { font-size: 13px; margin-bottom: 16px; }
  .footer-links-wrap { justify-content: flex-start; gap: 20px 36px; flex-wrap: wrap; }
  .footer-col h5 { font-size: 14px; margin-bottom: 12px; }
  .footer-col ul { gap: 8px; }
  .footer-col ul li a { font-size: 12.5px; word-break: break-all; }
  .footer-copyright { padding: 14px 20px 20px; font-size: 11.5px; text-align: center; max-width: 100%; }
}

/* Small phones (<=400px) */
@media (max-width: 400px) {
  nav { padding: 0 16px; }
  .policy-wrapper { padding: 88px 16px 44px; }
  .policy-section { padding: 16px 14px; }
  .footer-inner { padding: 28px 16px 20px; }
  .footer-copyright { padding: 12px 16px 18px; }
}