/* Public legal/policy pages (no Tailwind utilities) */

:root {
  --bg: #0b0b0f;
  --panel: rgba(17, 24, 39, 0.72);
  --panel2: rgba(17, 24, 39, 0.45);
  --border: rgba(148, 163, 184, 0.22);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(229, 231, 235, 0.72);
  --brand: #fe2c55;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

html {
  background: var(--bg); /* prevents gray fallback below body in some browsers */
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
}

/* Fixed backdrop avoids bottom seams on small viewports */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(254, 44, 85, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(147, 51, 234, 0.10), transparent 55%),
    radial-gradient(1200px 700px at 20% 115%, rgba(254, 44, 85, 0.09), transparent 65%),
    radial-gradient(900px 650px at 100% 120%, rgba(147, 51, 234, 0.07), transparent 70%);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.lp-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 56px;
  position: relative;
  z-index: 1;
}

.lp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp-brand__name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.lp-brand__sub {
  font-size: 12px;
  color: var(--muted);
}

.lp-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.lp-pill {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

/* Navigation: match landing “quick nav” pill bar (single style across pages) */
.lp-tabs {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

.lp-tab {
  border: 0;
  background: transparent;
  color: rgba(229, 231, 235, 0.75);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lp-tab[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
}

.lp-tab--primary {
  border: 1px solid rgba(254, 44, 85, 0.6);
  background: linear-gradient(135deg, rgba(254, 44, 85, 0.92), rgba(255, 77, 109, 0.92));
  color: #0b0b0f;
}

.lp-tab--primary:hover {
  border-color: rgba(254, 44, 85, 0.75);
}

.lp-hero {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  box-shadow: var(--shadow);
  padding: 20px;
}

.lp-h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.lp-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lp-card {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.55));
  box-shadow: var(--shadow);
  padding: 18px;
}

.lp-h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.lp-p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.lp-list {
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.55;
  color: rgba(229, 231, 235, 0.9);
}

.lp-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  padding: 14px;
}

.lp-box__title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

.lp-foot {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(229, 231, 235, 0.55);
  font-size: 12px;
}

.lp-warn {
  border-left: 3px solid rgba(254, 44, 85, 0.8);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(254, 44, 85, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 720px) {
  .lp-h1 { font-size: 22px; }
  .lp-grid { grid-template-columns: 1fr; }
}

