/* NAV */
/* =========================
   NAVBAR — CORE
========================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 15, 22, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
/* =========================
   BRAND
========================= */

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0.9;
}

.brand:hover {
  opacity: 1;
}
/* =========================
   NAV LINKS
========================= */

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}
/* =========================
   NAV CTA
========================= */

.nav-cta {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}
/* =========================
   MOBILE NAV
========================= */

@media (max-width: 768px) {

  .nav-inner {
    height: 64px;
    grid-template-columns: 1fr auto;
  }

  .nav-center {
    display: none;
  }

  .brand {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .nav-cta {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}
/* End of header.css */

/* ==============================
   PRIVACY POLICY PAGE
   ============================== */

.policy-page {
    width: 100%;
    background: #0b0e11; /* same dark system background */
    color: #d6dbe1;
}

/* Hero / Title */
.policy-hero {
    max-width: 820px;
    margin: 0 auto;
    padding: 120px 24px 48px;
}

.policy-hero h1 {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.policy-updated {
    font-size: 0.9rem;
    color: #8b9198;
}

/* Content */
.policy-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 120px;
}

/* Paragraphs */
.policy-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #c7ccd2;
    margin-bottom: 28px;
}

/* Section Headings */
.policy-content h2 {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #e5e9ee;
    margin: 56px 0 12px;
}

/* First heading spacing fix */
.policy-content h2:first-of-type {
    margin-top: 40px;
}

/* ==============================
   MOBILE
   ============================== */

@media (max-width: 768px) {

    .policy-hero {
        padding: 96px 20px 36px;
    }

    .policy-hero h1 {
        font-size: 1.9rem;
    }

    .policy-updated {
        font-size: 0.85rem;
    }

    .policy-content {
        padding: 0 20px 96px;
    }

    .policy-content p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .policy-content h2 {
        font-size: 1.05rem;
        margin: 44px 0 10px;
    }
}
/* End of privacy_section.css */