/* Shared style for UP legal / policy pages */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #070707;
  color: #cfcfcf;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 22px 100px;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.brand {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  text-decoration: none;
}
.brand b { color: #57FA00; }

.back {
  font-size: 14px;
  font-weight: 700;
  color: #8a8a8a;
  text-decoration: none;
}
.back:hover { color: #fff; }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #57FA00;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.updated { font-size: 14px; color: #6f6f6f; margin-bottom: 28px; }

h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-top: 38px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

h3 { font-size: 16px; font-weight: 800; color: #eaeaea; margin-top: 22px; margin-bottom: 8px; }

p, li { font-size: 15.5px; color: #b3b3b3; margin-bottom: 12px; }
strong { color: #e9e9e9; }

ul, ol { padding-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 8px; }

a { color: #57FA00; text-decoration: none; }
a:hover { text-decoration: underline; }

.divider { height: 1px; background: #1c1c1c; margin: 40px 0; }

/* Callout / disclaimer box */
.notice {
  border: 1px solid rgba(87,250,0,0.28);
  background: rgba(87,250,0,0.06);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 22px 0;
}
.notice p { margin-bottom: 6px; color: #cde9b8; }
.notice p:last-child { margin-bottom: 0; }
.notice strong { color: #eaffd8; }

.warn {
  border: 1px solid rgba(255,196,0,0.28);
  background: rgba(255,196,0,0.06);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 22px 0;
}
.warn p { color: #f0dfae; margin-bottom: 6px; }
.warn p:last-child { margin-bottom: 0; }

/* Fillable placeholder pill for templates */
.fill {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.28);
  color: #dcdcdc;
  font-weight: 700;
  font-size: 0.92em;
}

.legal-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #1c1c1c;
  font-size: 13px;
  color: #6a6a6a;
}
.legal-footer a { color: #8a8a8a; }

.doc-list { list-style: none; padding: 0; }
.doc-list li { margin-bottom: 10px; }
.doc-list a { font-weight: 700; }
.doc-list span { display: block; color: #8a8a8a; font-size: 14px; font-weight: 500; }
