:root {
  --black: #080808; --white: #FFFFFF; --offwhite: #F0F0F0; --charcoal: #1A1A1A;
  --stone: #2A2A2A; --dim: #555555; --muted: #707070; --rule: #111111;
  --font-primary: 'Space Grotesk', sans-serif; --font-label: 'Barlow Condensed', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-primary); background: var(--black); color: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; background: rgba(8,8,8,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--rule); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { font-weight: 700; font-size: 18px; letter-spacing: 0.08em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--dim); transition: color 0.25s; }
.nav-links a:hover { color: var(--white); }
.nav-btn { padding: 10px 24px; background: var(--white); color: var(--black); font-family: var(--font-primary); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; border: none; cursor: pointer; transition: background 0.3s; display: inline-block; }
.nav-btn:hover { background: var(--offwhite); }
@media (max-width: 720px) { .nav-links li.hide-mob { display: none; } }

/* PAGE STRUCTURE */
.page { max-width: 800px; margin: 0 auto; padding: 160px 32px 96px; }
.eyebrow { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 20px; }
h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 24px; }
h1 em { font-style: normal; color: var(--muted); }
.lede { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 620px; margin-bottom: 48px; }
h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin: 56px 0 16px; }
h3 { font-size: 17px; font-weight: 600; margin: 32px 0 10px; }
p { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; letter-spacing: 0.01em; }
p strong, li strong { color: var(--offwhite); font-weight: 600; }
ul, ol { margin: 0 0 20px 20px; }
li { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 8px; }
.answer { border-left: 2px solid var(--stone); padding-left: 20px; }
a.inline { color: var(--white); font-weight: 600; border-bottom: 1px solid var(--stone); transition: border-color 0.25s; }
a.inline:hover { border-color: var(--white); }
hr { border: none; border-top: 1px solid var(--rule); margin: 56px 0; }

/* CTA BLOCK */
.cta-block { margin-top: 72px; padding: 48px 40px; background: var(--charcoal); border: 1px solid var(--rule); text-align: center; }
.cta-block h2 { margin: 0 0 12px; }
.cta-block p { max-width: 480px; margin: 0 auto 28px; }
.cta-btn { display: inline-block; padding: 16px 40px; background: var(--white); color: var(--black); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; transition: background 0.3s; }
.cta-btn:hover { background: var(--offwhite); }
.cta-alt { display: block; margin-top: 16px; font-size: 13px; color: var(--dim); }
.cta-alt a { color: var(--white); font-weight: 600; }

/* FOOTER */
.footer { border-top: 1px solid var(--rule); padding: 48px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-copy { font-size: 11px; color: #333; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--dim); transition: color 0.25s; }
.footer-links a:hover { color: var(--white); }
