*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0f0f0f;
  --bg-card:#1a1a1a;
  --text:#e8e8e8;
  --text-muted:#999;
  --accent:#ff6b2c;
  --accent-dim:#cc5520;
  --border:#2a2a2a;
  --radius:6px;
}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;line-height:1.7;color:var(--text);background:var(--bg)}
a{color:var(--accent);text-decoration:none;transition:color .2s}
a:hover{color:#ff8f5c}
img{max-width:100%;height:auto;display:block;border-radius:var(--radius)}
.container{max-width:1100px;margin:0 auto;padding:0 1.5rem}

/* Header */
header{background:var(--bg);border-bottom:1px solid var(--border);padding:1rem 0;position:sticky;top:0;z-index:100}
header nav{display:flex;justify-content:space-between;align-items:center;max-width:1100px;margin:0 auto;padding:0 1.5rem}
.brand{display:flex;align-items:center;gap:.6rem;font-weight:700;font-size:1.15rem;color:var(--text);text-decoration:none}
.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }

.nav-links{display:flex;gap:1.5rem}
.nav-links a{color:var(--text-muted);font-size:.9rem;font-weight:500}
.nav-links a:hover{color:var(--accent)}

/* Hero */
.hero{padding:5rem 1.5rem;text-align:center;background:linear-gradient(135deg,#0f0f0f 0%,#1c1209 100%);border-bottom:1px solid var(--border)}
.hero h1{font-size:2.8rem;font-weight:800;margin-bottom:1rem;letter-spacing:-.02em;color:#fff}
.hero h1 span{color:var(--accent)}
.hero p{font-size:1.15rem;color:var(--text-muted);max-width:620px;margin:0 auto 2rem}
.hero-img{max-width:900px;margin:2rem auto 0;border-radius:var(--radius);overflow:hidden}
.hero-img img{width:100%;height:400px;object-fit:cover}

/* Sections */
section{padding:4rem 0}
section.alt{background:var(--bg-card)}
h2{font-size:1.8rem;font-weight:700;margin-bottom:1.5rem;color:#fff;letter-spacing:-.01em}
h3{font-size:1.2rem;font-weight:600;margin-bottom:.75rem;color:#fff}
p{margin-bottom:1rem;color:var(--text-muted)}

/* Grid */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;align-items:center}
.card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;transition:border-color .2s}
.card:hover{border-color:var(--accent)}
.card img{margin-bottom:1rem;height:180px;object-fit:cover;width:100%;border-radius:4px}

/* CTA Button */
.btn{display:inline-block;background:var(--accent);color:#fff;padding:.75rem 1.75rem;border-radius:var(--radius);font-weight:600;font-size:.95rem;transition:background .2s}
.btn:hover{background:var(--accent-dim);color:#fff}

/* Article content */
.article-header{padding:4rem 1.5rem 2rem;text-align:center;border-bottom:1px solid var(--border)}
.article-header h1{font-size:2.2rem;color:#fff;margin-bottom:.5rem}
.article-header .meta{color:var(--text-muted);font-size:.9rem}
.article-content{max-width:760px;margin:0 auto;padding:3rem 1.5rem}
.article-content h2{font-size:1.4rem;margin-top:2.5rem}
.article-content p{font-size:1.05rem;line-height:1.8}
.article-content img{margin:2rem 0;border-radius:var(--radius)}
.article-content ul,.article-content ol{margin:1rem 0 1.5rem 1.5rem;color:var(--text-muted)}
.article-content li{margin-bottom:.5rem;line-height:1.7}

/* Footer */
footer{border-top:1px solid var(--border);padding:3rem 0;text-align:center;color:var(--text-muted);font-size:.85rem}
footer .footer-links{margin-bottom:1rem}
footer .footer-links a{margin:0 .75rem;color:var(--text-muted)}
footer .footer-links a:hover{color:var(--accent)}

/* Responsive */
@media(max-width:768px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .hero h1{font-size:2rem}
  .hero{padding:3rem 1rem}
  .nav-links{gap:1rem}
  .nav-links a{font-size:.8rem}
  .hero-img img{height:250px}
}
@media(max-width:480px){
  .nav-links{display:none}
  header nav{justify-content:center}
}
