* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --black: #0a0a0a; --panel: #121214; --line: #26262a;
    --white: #f5f4f2; --gray: #9b9b9f; --dim: #6a6a70;
    --red: #e03c26; --red-hot: #ff4a30;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--black); color: var(--white); line-height: 1.75; -webkit-font-smoothing: antialiased; }
::selection { background: var(--red); color: var(--white); }
.display { font-family: 'Archivo Black', 'Inter', sans-serif; text-transform: uppercase; line-height: 1.05; letter-spacing: -0.01em; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1rem 0; background: rgba(10,10,10,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 980px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.nav-name { font-weight: 800; color: var(--white); text-decoration: none; font-size: 0.95rem; text-transform: uppercase; }
.nav-name span { color: var(--red); }
.nav-links { display: flex; gap: 1.6rem; align-items: center; list-style: none; }
.nav-links a { color: var(--gray); text-decoration: none; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.nav-links a:hover { color: var(--white); }
.nav-links a.btn-sm { color: var(--white); background: var(--red); padding: 0.5rem 1rem; }
@media (max-width: 760px) { .nav-links li.hide-m { display: none; } }
.kicker { color: var(--red); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
article { padding: 9rem 0 4rem 0; }
article h1 { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 1rem; }
article .meta { color: var(--dim); font-size: 0.85rem; margin-bottom: 2.5rem; }
article h2 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 1.3rem; margin: 2.4rem 0 1rem 0; }
article p { color: var(--gray); margin-bottom: 1.2rem; font-size: 1.02rem; }
article p b, article p strong { color: var(--white); }
article .stack { color: var(--white); font-weight: 600; line-height: 1.9; margin: 1.6rem 0; padding-left: 1.4rem; border-left: 3px solid var(--red); }
article ul { margin: 0 0 1.4rem 1.4rem; color: var(--gray); }
article ul li { margin-bottom: 0.5rem; }
article ul li b { color: var(--white); }
.cta-box { background: var(--panel); border: 1px solid var(--line); border-top: 5px solid var(--red); padding: 2rem; margin: 3rem 0 1rem 0; }
.cta-box h3 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 1.1rem; margin-bottom: 0.6rem; }
.cta-box p { font-size: 0.93rem; }
.btn { display: inline-block; text-decoration: none; font-weight: 800; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.9rem 1.6rem; transition: background .12s ease; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-hot); }
.btn-ghost { border: 2px solid var(--white); color: var(--white); margin-left: 0.8rem; }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.post-list { padding: 9rem 0 4rem 0; }
.post-list h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.8rem; }
.post-list .sub { color: var(--gray); margin-bottom: 3rem; }
.post-card { border: 1px solid var(--line); padding: 1.8rem; text-decoration: none; display: block; margin-bottom: 1.2rem; transition: border-color .15s ease; }
.post-card:hover { border-color: var(--red); }
.post-card .cat { color: var(--red); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.post-card h3 { color: var(--white); font-size: 1.15rem; font-weight: 800; margin: 0.5rem 0; }
.post-card p { color: var(--gray); font-size: 0.9rem; }
footer { padding: 3rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }
.foot { max-width: 980px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.foot p { color: var(--dim); font-size: 0.8rem; }
.foot .socials a { color: var(--gray); text-decoration: none; font-size: 0.82rem; margin-left: 1.4rem; font-weight: 800; text-transform: uppercase; }
.foot .socials a:hover { color: var(--red); }
