/* Shared styles for Lumia pages */
:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255,255,255,0.03);
  --accent-amber: #f59e0b;
  --accent-teal: #14b8a6;
  --accent-green: #22c55e;
  --text-primary: #f8fafc;
  --text-muted: rgba(248,250,252,0.7);
  --border: rgba(255,255,255,0.08);
  --radius: 1rem;
  --radius-lg: 1.5rem;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
.aurora {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20,184,166,0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(245,158,11,0.08), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(34,197,94,0.06), transparent);
  pointer-events: none;
  z-index: 0;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.page-content { padding: 7rem 0 4rem; position: relative; z-index: 1; min-height: 60vh; }

/* Nav */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem 0.5rem 1.5rem;
  pointer-events: auto;
}
.logo { font-weight: 700; font-size: 1.2rem; color: var(--text-primary); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text-primary); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #0a0a0f;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.btn-primary:hover { background: #f8fafc; }

/* Footer */
footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-grid a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-grid a:hover { color: var(--text-primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

/* Page typography */
.page-content h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.page-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--accent-teal); }
.page-content p { color: var(--text-muted); margin-bottom: 1rem; }
.page-content ul { margin: 1rem 0 1rem 1.5rem; color: var(--text-muted); }
.page-content li { margin-bottom: 0.5rem; }
.page-content a { color: var(--accent-teal); text-decoration: none; }
.page-content a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .nav-links { display: none; }
}
