/* ============================================================
   VeroSkills — Dark Legal Page Styles
   Shared across: privacy-policy, terms-of-service,
                  terms-of-service-staffing, security/responsible-disclosure
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --panel: #141414;
  --border: #222222;
  --border-2: #2a2a2a;
  --text: #ededed;
  --text-dim: #a3a3a3;
  --text-faint: #6b6b6b;
  --accent: #FF7A1A;
  --accent-2: #FFB347;
  --accent-soft: rgba(255, 122, 26, 0.18);
  --accent-glow: rgba(255, 122, 26, 0.55);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* --- Nav --- */
nav.main {
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(14px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 12px;
  z-index: 100;
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.brand img {
  height: 80px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
}
nav.main ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--text-dim); font-weight: 500; }
nav.main ul a { color: inherit; text-decoration: none; }
nav.main ul a:hover { color: var(--text); text-decoration: none; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 0 1px rgba(255,180,80,0.35), 0 6px 22px -10px rgba(255,122,26,0.35);
}
.btn-primary::after { content: "↗"; font-weight: 700; }
.btn-primary:hover { transform: translateY(-1px); text-decoration: none; }

@media (max-width: 760px) { nav.main ul { display: none; } }

/* --- Legal content wrapper --- */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.legal-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.legal-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--text);
}
.legal-date {
  display: block;
  font-size: 13px;
  color: var(--text-faint);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 40px;
}
.legal-intro {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  background: var(--panel);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-bottom: 48px;
}
.legal-intro a { color: var(--accent); }

/* --- Section headings --- */
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
  color: var(--text);
}
.legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text);
}
.legal-section p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 12px;
}
.legal-section ul, .legal-section ol {
  padding-left: 20px;
  margin: 0 0 12px;
}
.legal-section li {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 6px;
}
.legal-section a { color: var(--accent); }
.legal-section a:hover { text-decoration: underline; }

/* --- Contact / highlight box --- */
.legal-contact-box {
  background: var(--panel);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
}
.legal-contact-box p { margin: 0 0 6px; font-size: 14px; color: var(--text-dim); }
.legal-contact-box p:last-child { margin: 0; }
.legal-contact-box strong { color: var(--text); }

/* --- Footer --- */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 20px;
  text-align: center;
}
.footer-bottom-simple {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-faint);
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: var(--text-faint); transition: color .15s; }
.footer-legal a:hover { color: var(--text-dim); text-decoration: none; }
