:root {
  --primary: #a855f7;
  --primary-dark: #7c3aed;
  --accent: #e879f9;
  --purple: #8b5cf6;
  --bg: #08050f;
  --bg2: #0f0a1a;
  --card: rgba(168,85,247,0.04);
  --card-border: rgba(168,85,247,0.1);
  --text: #ede8f8;
  --muted: #8b7aad;
  --g1: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #e879f9 100%);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }

#navbar.page-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(6,11,24,0.9); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 36px; object-fit: contain; }
.btn-ghost {
  color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--card-border);
  font-size: 14px; font-weight: 500; text-decoration: none;
  padding: 9px 18px; border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.09); }

.page-content { max-width: 860px; margin: 0 auto; padding: 72px 24px 110px; }
.section-header { margin-bottom: 44px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--primary); border-radius: 1px; }
.section-title { font-family: 'Unbounded','Inter',sans-serif; font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 640px; line-height: 1.8; }
.updated-note { font-size: 13px; color: var(--muted); margin-top: -30px; margin-bottom: 40px; display: block; }

.prose h2 { font-size: 21px; font-weight: 800; color: #fff; margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; color: var(--muted); font-size: 15px; }
.prose li { margin-bottom: 8px; }
.prose a { color: #c084fc; }
.prose strong { color: var(--text); }

.contact-list { list-style: none; margin: 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.contact-list i { color: var(--primary); width: 18px; text-align: center; }
.contact-list a { color: #c084fc; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.btn-hero-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--g1); color: #fff; padding: 15px 30px;
  border-radius: 14px; font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 40px rgba(139,92,246,0.5);
}
.btn-hero-main:hover { color: #fff; }

footer { background: var(--bg); border-top: 1px solid var(--card-border); padding: 60px 24px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 32px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 13px; transition: all 0.2s;
}
.footer-social a:hover { background: var(--g1); border-color: transparent; color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--card-border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom span { background: var(--g1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-content { padding: 48px 20px 72px; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}
