* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif; background: #000; color: #d0d0d0; line-height: 1.8; font-size: 17px; }
a { color: #FF6B35; text-decoration: underline; text-underline-offset: 3px; }
a:hover { opacity: 0.85; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; max-width: 1100px; margin: 0 auto; }
.nav-logo { font-size: 22px; font-weight: 800; color: #FF6B35; letter-spacing: -0.5px; }
.nav-links a { color: #999; margin-left: 24px; font-size: 14px; font-weight: 500; text-decoration: none; }
.nav-links a:hover { color: #fff; }
article { max-width: 760px; margin: 0 auto; padding: 40px 20px 80px; }
article .meta { font-size: 13px; color: #666; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
article h1 { font-size: clamp(30px, 5vw, 46px); color: #fff; font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
article h2 { font-size: 26px; color: #fff; margin: 40px 0 16px; font-weight: 700; }
article h3 { font-size: 20px; color: #fff; margin: 28px 0 10px; font-weight: 700; }
article p { margin-bottom: 18px; color: #b5b5b5; }
article ul, article ol { margin: 0 0 18px 24px; color: #b5b5b5; }
article li { margin-bottom: 8px; }
article strong { color: #fff; }
article .lead { font-size: 19px; color: #aaa; border-left: 3px solid #FF6B35; padding-left: 16px; margin-bottom: 28px; }
.cta-box { background: linear-gradient(180deg, #141414, #0a0a0a); border: 1px solid #1f1f1f; border-radius: 16px; padding: 28px; margin: 32px 0; text-align: center; }
.cta-box h3 { color: #fff; margin-bottom: 10px; }
.cta-box p { color: #888; margin-bottom: 18px; }
.cta-box img { height: 54px; }
.related { margin-top: 48px; padding-top: 32px; border-top: 1px solid #1a1a1a; }
.related h3 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.related a { display: block; padding: 14px 0; color: #ddd; text-decoration: none; border-bottom: 1px solid #131313; }
.related a:hover { color: #FF6B35; }
footer { text-align: center; padding: 48px 20px; border-top: 1px solid #111; }
footer p { font-size: 13px; color: #555; }
footer a { color: #777; margin: 0 12px; text-decoration: none; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
