/* Shared styles for legal pages (privacy, terms) */
:root {
  --navy: #0a0e27;
  --navy-2: #131838;
  --navy-deep: #060920;
  --pink: #f27eb3;
  --pink-soft: #f9b9d8;
  --white: #ffffff;
  --text-soft: #c5cce4;
  --text-mute: #8b91b3;
  --border: rgba(255,255,255,0.08);
  --max: 760px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,39,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.lp-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-back {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 700;
}
.lp-cta {
  background: var(--pink);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-cta:hover { text-decoration: none; transform: translateY(-2px); }

.lp-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 0;
  text-align: center;
}
.lp-hero .lp-tag {
  display: inline-block;
  background: rgba(242,126,179,0.15);
  color: var(--pink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.lp-hero p.updated {
  font-size: 14px;
  color: var(--text-mute);
}

article.lp {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 40px 24px 60px;
}
article.lp h2 {
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  font-size: 26px;
  line-height: 1.25;
  margin: 56px 0 18px;
  text-align: center;
  position: relative;
  padding-top: 20px;
}
article.lp h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  border-radius: 2px;
}
article.lp h3 {
  color: var(--white);
  font-weight: 800;
  font-size: 19px;
  margin: 32px 0 12px;
}
article.lp p { margin-bottom: 20px; }
article.lp ul, article.lp ol { margin: 0 0 22px 22px; }
article.lp li { margin-bottom: 8px; }
article.lp strong { color: var(--white); }
article.lp a { color: var(--pink); }

.lp-footer {
  text-align: center;
  padding: 30px 24px 50px;
  font-size: 13px;
  color: var(--text-mute);
  border-top: 1px solid var(--border);
}
.lp-footer a { color: var(--pink); }

@media (max-width: 760px) {
  .lp-hero { padding: 40px 22px 0; }
  article.lp { padding: 28px 22px 50px; }
  article.lp h2 { font-size: 22px; margin: 40px 0 14px; }
  article.lp h3 { font-size: 17px; }
}
