/* adhoc.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --bg: #111; --alt: #1a1a1a; --orange: #f97316; --text: #e5e5e5; --muted: #737373; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }
.full { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 10%; }
.alt { background: var(--alt); }
.hero-inner { text-align: center; }
.hero-inner h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3rem, 9vw, 7rem); font-weight: 700; color: var(--orange); font-style: italic; }
.sub { font-size: 1.2rem; color: var(--muted); letter-spacing: 0.2em; }
.tagline { color: var(--muted); margin-top: 1rem; font-style: italic; }
.section-inner { max-width: 650px; }
.section-inner h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 3vw, 2.5rem); color: var(--orange); margin-bottom: 1.5rem; }
.section-inner p { line-height: 1.8; color: var(--muted); }
.centered { text-align: center; }
.centered h2 { color: var(--text); line-height: 1.5; }
footer { text-align: center; padding: 30px; border-top: 1px solid #222; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--orange); font-size: 0.85rem; }
