/* ═══════════════════════════════════════════════════════════
   VigortriX — Shared Stylesheet for Legal/Policy Pages
   Matches the design system of index.html
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0d14;
  --bg-2: #0f1320;
  --bg-3: #161b2c;
  --bg-card: #12172a;
  --gold: #c9922a;
  --gold-2: #e8b84b;
  --gold-pale: #f5e6c4;
  --white: #ffffff;
  --off: #f7f5f0;
  --muted: #8a95a8;
  --body: #c5cdd9;
  --green: #34d399;
  --red: #ef4444;
  --border: rgba(201,146,42,0.18);
  --border-strong: rgba(201,146,42,0.4);
  --radius: 14px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Fraunces', Georgia, serif; color: var(--white); line-height: 1.25; letter-spacing: -0.01em; }
a { color: var(--gold-2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); text-decoration: underline; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--bg); }

/* ───── Announcement Bar ───── */
.annc {
  background: linear-gradient(90deg, #5b1f00, #c0392b 50%, #5b1f00);
  color: #fff; text-align: center;
  padding: 11px 20px; font-size: 0.85rem; font-weight: 600;
}
.annc strong { color: #ffe066; font-weight: 800; }
.annc a { color: #fff; text-decoration: underline; }
.annc a:hover { color: #ffe066; }

/* ───── Header ───── */
header.nav {
  background: rgba(10,13,20,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  padding: 14px 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand em { color: var(--gold-2); font-style: normal; }
.brand sup { font-size: 0.55rem; color: var(--gold); font-weight: 700; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.88rem; color: var(--muted);
  transition: color 0.2s; font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold-2); text-decoration: none; }
.btn-mini {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0d14; font-weight: 700; font-size: 0.82rem;
  padding: 10px 22px; border-radius: 50px; border: none;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-mini:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,146,42,0.45); text-decoration: none; }

/* ───── Page Hero ───── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 70px 24px 50px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(201,146,42,0.1) 0%, transparent 65%),
    linear-gradient(170deg, #0a0d14 0%, #0f1320 50%, #0a0d14 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,146,42,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: inline-block;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 16px;
}
.page-hero .updated {
  font-size: 0.85rem; color: var(--muted); margin-top: 12px;
}
.page-hero .updated strong { color: var(--gold-pale); }

/* ───── Breadcrumbs ───── */
.crumbs {
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.crumbs-inner {
  max-width: 1200px; margin: 0 auto;
  font-size: 0.82rem; color: var(--muted);
}
.crumbs-inner a { color: var(--muted); text-decoration: none; }
.crumbs-inner a:hover { color: var(--gold-2); }
.crumbs-inner .sep { margin: 0 10px; opacity: 0.5; }
.crumbs-inner .current { color: var(--gold-pale); }

/* ───── Content Article ───── */
.article {
  max-width: 880px; margin: 0 auto;
  padding: 70px 24px 90px;
}
.article h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  margin: 50px 0 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.article h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.article h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold-2);
  margin: 30px 0 12px;
}
.article p { margin-bottom: 18px; font-size: 0.97rem; line-height: 1.85; color: var(--body); }
.article ul, .article ol { margin: 0 0 22px 24px; }
.article li { margin-bottom: 10px; font-size: 0.95rem; line-height: 1.8; color: var(--body); }
.article strong { color: var(--white); font-weight: 700; }
.article em { color: var(--gold-pale); }

/* ───── Info Cards (used in some pages) ───── */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 26px 0;
}
.info-card h3 { margin-top: 0; }
.info-card.gold {
  background: linear-gradient(135deg, rgba(201,146,42,0.08), rgba(201,146,42,0.02));
  border-left: 4px solid var(--gold);
}

/* ───── Contact Block ───── */
.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin: 30px 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.contact-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700; margin-bottom: 8px;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem; color: var(--white); line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-2); }

/* ───── Highlight Box ───── */
.highlight {
  background: rgba(52,211,153,0.06);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 26px 0;
}
.highlight strong { color: var(--green); }

.warning-box {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 26px 0;
}
.warning-box strong { color: #fca5a5; }

/* ───── CTA Section (small reminder on each page) ───── */
.mini-cta {
  background: linear-gradient(140deg, var(--bg-card), #1a2238);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px; text-align: center;
  margin: 50px 0 0;
}
.mini-cta h3 {
  font-family: 'Fraunces', serif;
  color: var(--white); font-size: 1.4rem; margin-bottom: 12px;
}
.mini-cta p { color: var(--muted); margin-bottom: 22px; font-size: 0.9rem; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 60%, #f0c960 100%);
  color: #0a0d14;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: 14px 36px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(201,146,42,0.3);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,146,42,0.5); text-decoration: none; }

/* ───── Footer ───── */
footer {
  background: #06080f;
  border-top: 1px solid var(--border);
  padding: 50px 24px 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-col h5 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-size: 0.85rem; color: var(--muted); line-height: 1.85;
  display: block; text-decoration: none;
}
.footer-col a:hover { color: var(--gold-2); text-decoration: none; }
.disclaimer-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  font-size: 0.74rem; color: #6b7589;
  line-height: 1.7;
  margin-bottom: 22px;
}
.disclaimer-block strong { color: var(--gold-pale); }
.copyright { text-align: center; font-size: 0.75rem; color: #4a5568; }

/* ───── Responsive ───── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .article { padding: 50px 18px 70px; }
  .page-hero { padding: 50px 18px 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-block { padding: 24px; }
}
