/* ============================================================
   Privacy Policy Page — Dark theme styling
   ============================================================ */

/* Global Reset & Base Layout */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c9d1d9;
  background-color: #000000;
}

.privacy-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Remove Decorative Components */
.brand-mark,
.section-badge,
.privacy-divider,
.promise-strip .dot {
  display: none !important;
}

/* Headings */
h1, h2 {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.privacy-date {
  color: #8b949e;
  font-size: 0.9rem;
  margin-top: -8px;
  margin-bottom: 24px;
}

.privacy-intro {
  font-size: 1.05rem;
  color: #f0f6fc;
  margin-bottom: 24px;
}

/* Simplified Key Promises List */
.promise-strip {
  list-style-type: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.promise-strip li {
  margin-bottom: 8px;
  color: #8b949e;
}

.promise-strip li::before {
  content: "• ";
  color: #30363d;
  padding-right: 4px;
}

/* Layout Content Sections */
.sections-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.privacy-section {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.section-title {
  font-size: 1.25rem;
  border-bottom: 1px solid #21262d;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

/* Typography & Core Elements */
p {
  margin: 0 0 16px 0;
}

ul {
  padding-left: 20px;
  margin: 12px 0;
  list-style-type: disc;
}

li {
  margin-bottom: 8px;
  padding-left: 0 !important;
}

li::before {
  display: none !important;
}

/* Hyperlinks & Inline Buttons */
a, .contact-button {
  color: #58a6ff;
  text-decoration: underline;
}

a:hover, .contact-button:hover {
  color: #79c0ff;
}

.contact-button {
  background: none !important;
  padding: 0 !important;
  display: inline-block !important;
  font-weight: normal !important;
}

.contact-button svg {
  display: none !important;
}

/* Footer Layout */
.site-footer {
  margin-top: 64px;
  padding: 24px 20px;
  border-top: 1px solid #21262d;
  font-size: 0.85rem;
  color: #484f58;
  text-align: center;
  background-color: #000000;
}

.site-footer a {
  color: #8b949e;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a2a2a;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.site-nav a:hover { color: #ffffff; }
.site-nav a.nav-active { color: #58a6ff; }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #8b949e;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
  flex-shrink: 0;
}

.logo {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
    order: 2;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid #21262d;
  }

  .site-nav.active {
    max-height: 400px;
  }

  .site-nav li {
    border-bottom: 1px solid #0a0e27;
  }

  .site-nav a {
    display: block;
    padding: 1rem 1.5rem;
  }

  .site-header {
    flex-wrap: wrap;
    position: relative;
  }

  nav {
    width: 100%;
    order: 3;
  }
}

@media (max-width: 600px) {
  .brand-name { display: none; }
}
