/* === Privacy Page Styles === */
/* Matching Landing Page Aesthetic */

/* === Design Tokens === */
:root {
  --yellow: #ffff8a;
  --yellow-dim: rgba(255, 255, 138, 0.6);
  --dark-blue: #1b0159;
  --dark-blue-light: #2a0a7a;
  --black: #000000;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.7);
  --white-faint: rgba(255, 255, 138, 0.12);
  
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
  
  --transition-fast: 0.15s ease;
  --transition-med: 0.25s ease;
}

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

/* === Text Selection === */
::selection {
  background: var(--yellow);
  color: var(--black);
}

::-moz-selection {
  background: var(--yellow);
  color: var(--black);
}

html {
  scroll-behavior: smooth;
}

/* === Base === */
body {
  font-family: var(--font-main);
  background: linear-gradient(180deg, #1a142b 0%, #1d005d 100%);
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Fixed Logo === */
.brand-logo {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  width: auto;
  height: 36px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 138, 0.3));
  z-index: 100;
}

/* === Layout === */
.privacy-page {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* === Hero Section === */
.hero {
  text-align: center;
  width: 100%;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--white);
}

.subline {
  font-size: 1.125rem;
  color: var(--white-dim);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* === Sections === */
.section {
  width: 100%;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* === Permission List === */
.permission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.permission-item {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--white-faint);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.permission-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.permission-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  width: fit-content;
}

.permission-desc {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.65;
}

.permission-desc strong {
  color: var(--white);
  font-weight: 600;
}

/* === Technical Proof === */
.proof-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--white-faint);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.proof-box p {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.proof-box strong {
  color: var(--yellow);
}

.github-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.github-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 138, 0.3);
}

.github-icon {
  width: 20px;
  height: 20px;
}

/* === No Trackers === */
.trackers-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tracker-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 100, 100, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.strike {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.x-mark {
  color: #ff7b7b;
  font-weight: 700;
  font-size: 1rem;
}

.trackers-statement {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

/* === CTA Button === */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: 1rem;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 138, 0.35);
}

.cta-primary:active {
  transform: translateY(-1px);
}

/* === Footer === */
.footer {
  width: 100%;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-faint);
  text-align: center;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--white-dim);
}

/* === Responsive === */
@media (min-width: 640px) {
  .privacy-page {
    padding: 6rem 2rem 4rem;
  }
  
  .headline {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .brand-logo {
    top: 1.5rem;
    left: 2rem;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .privacy-page {
    padding: 4rem 1.25rem 3rem;
    gap: 2.5rem;
  }
  
  .headline {
    font-size: 1.875rem;
  }
  
  .subline {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .permission-item {
    padding: 1.25rem;
  }
  
  .trackers-box {
    grid-template-columns: 1fr;
  }
  
  .tracker-item {
    padding: 0.875rem 1rem;
  }
  
  .proof-box {
    padding: 1.5rem;
  }
}
