/* ==========================================================================
   Loopz simple page skin (About, Contact, and future static pages).
   Night chrome nav + footer framing a cream paper body, matching the blog
   and curriculum pages.
   ========================================================================== */
:root {
  --space: #0B0E23; --neon: #8B7FD9; --night-ink: #E7ECF8; --night-soft: #9FAAD0;
  --canvas: #F4F1EA; --ink: #1F2937; --ink-soft: rgba(31,41,55,.72);
  --ink-muted: rgba(31,41,55,.45); --border: rgba(31,41,55,.12);
  --font-display: 'Space Grotesk', 'Nunito', sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { width: 0; height: 0; display: none; }
body { font-family: var(--font-body); background: var(--canvas); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; flex-direction: column; }
a { color: inherit; text-decoration: none; }
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }

nav { position: sticky; top: 0; z-index: 100; background: rgba(11,14,35,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.06); padding: 14px 0; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--night-ink); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--night-soft); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--night-ink); }
.nav-cta { font-family: var(--font-body); font-weight: 700; font-size: 13px; text-transform: none; letter-spacing: normal; background: var(--neon); color: #fff; padding: 9px 18px; border-radius: 999px; transition: filter .15s; }
.nav-cta:hover { filter: brightness(1.1); }

main { flex: 1; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.page-hero { padding: 104px 0; }
.eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); color: var(--ink); margin-bottom: 18px; }
.page-hero p { font-size: 17.5px; color: var(--ink-soft); line-height: 1.75; max-width: 600px; }
.soon { margin-top: 36px; display: inline-block; font-family: var(--font-display); font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); background: rgba(31,41,55,.05); border: 1px solid var(--border); border-radius: 999px; padding: 8px 18px; }

footer { background: var(--space); border-top: 1px solid rgba(255,255,255,.06); padding: 32px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--night-ink); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13.5px; color: var(--night-soft); transition: color .15s; }
.footer-links a:hover { color: var(--night-ink); }
.footer-copy { font-size: 12.5px; color: var(--night-soft); }

@media (max-width: 700px) { .nav-links { display: none; } .page-hero { padding: 72px 0; } }
