:root {
    color-scheme: dark;
    --bg:#0b1118; --surface:#101923; --raised:#14202c; --text:#f2f6f9;
    --muted:#9aa8b7; --dim:#6f7e8e; --line:#263442; --accent:#86b9db;
    --accent-soft:rgba(134,185,219,.12); --warm:#d7b889; --max:1320px;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
*{box-sizing:border-box} html{scroll-behavior:smooth;background:var(--bg)}
body{margin:0;min-height:100vh;color:var(--text);background:
radial-gradient(circle at 12% -5%,rgba(71,111,143,.17),transparent 34rem),
radial-gradient(circle at 95% 14%,rgba(80,117,138,.08),transparent 28rem),var(--bg)}
a{color:inherit}.shell{width:min(var(--max),calc(100% - 40px));margin:auto}
.site-header{min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:30px;border-bottom:1px solid var(--line)}
.brand{display:inline-flex;align-items:center;gap:12px;text-decoration:none;font-weight:650}
.brand-mark{width:34px;height:34px;display:grid;place-items:center;border:1px solid #40576b;border-radius:10px;background:var(--accent-soft);color:var(--accent);font-size:.9rem}
.nav{display:flex;gap:24px}.nav a{color:var(--muted);text-decoration:none;font-size:.93rem}.nav a:hover{color:var(--text)}
.hero{min-height:min(720px,calc(100vh - 86px));display:flex;flex-direction:column;justify-content:center;padding:90px 0}
.eyebrow,.section-label{margin:0 0 16px;color:var(--accent);text-transform:uppercase;letter-spacing:.16em;font-size:.76rem;font-weight:700}
.hero h1{max-width:1000px;margin:0;font-size:clamp(3.4rem,7.4vw,7.5rem);line-height:.97;letter-spacing:-.055em;font-weight:300}
.hero-copy{max-width:720px;margin:32px 0 0;color:var(--muted);font-size:clamp(1.05rem,1.7vw,1.28rem);line-height:1.65}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:36px}
.button{text-decoration:none;border-radius:10px;padding:12px 17px;font-size:.92rem;border:1px solid var(--line)}
.button.primary{background:var(--text);color:#10151b}.button.secondary{color:#dce5ed;background:rgba(255,255,255,.015)}
.about{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(40px,8vw,120px);padding:100px 0;border-top:1px solid var(--line)}
.about h2,.section-heading h2{margin:0;font-weight:400;letter-spacing:-.025em}.about h2{max-width:480px;font-size:clamp(2rem,4vw,3.8rem);line-height:1.08}
.about-copy{color:var(--muted);font-size:1.05rem;line-height:1.75}.about-copy p{margin:0 0 22px}.about-copy strong{color:#dce5ed;font-weight:550}
.projects{padding:100px 0 120px;border-top:1px solid var(--line)}
.section-heading{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:32px}.section-heading h2{font-size:clamp(2rem,3.5vw,3.2rem)}
.count{color:var(--dim);font-size:.83rem}.project-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.project-card{min-height:310px;display:flex;flex-direction:column;justify-content:space-between;padding:25px;text-decoration:none;border:1px solid var(--line);border-radius:16px;background:rgba(16,25,35,.72);transition:.16s ease}
.project-card:hover{transform:translateY(-3px);background:var(--raised);border-color:#3b5367}
.project-card.featured{grid-column:1/-1;min-height:430px;padding:34px;background:
linear-gradient(120deg,rgba(134,185,219,.12),rgba(16,25,35,.72) 50%),var(--surface)}
.featured h3{max-width:780px;font-size:clamp(2.8rem,6vw,5rem)!important}
.featured p{max-width:760px;font-size:1.08rem}
.card-top{display:flex;justify-content:space-between;align-items:center}.project-tag{color:var(--accent);font-size:.74rem;text-transform:uppercase;letter-spacing:.12em;font-weight:700}
.arrow{color:var(--muted);font-size:1.35rem}.project-card h3{margin:0 0 13px;font-size:2rem;font-weight:450;letter-spacing:-.03em}
.project-card p{margin:0;color:var(--muted);line-height:1.62}.project-host{color:var(--dim);font-size:.78rem;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}
footer{min-height:100px;display:flex;justify-content:space-between;gap:30px;align-items:center;border-top:1px solid var(--line);color:var(--dim);font-size:.82rem}
footer a{color:var(--muted)}
@media(max-width:900px){.about{grid-template-columns:1fr;gap:40px}.project-grid{grid-template-columns:1fr}.project-card.featured{grid-column:auto}}
@media(max-width:600px){.shell{width:min(100% - 28px,var(--max))}.site-header{min-height:72px}.nav{gap:12px}.nav a{font-size:.78rem}.hero{min-height:auto;padding:90px 0}.hero h1{font-size:clamp(3rem,15vw,5rem)}.about,.projects{padding:72px 0}.section-heading{align-items:flex-start;flex-direction:column}footer{flex-direction:column;align-items:flex-start;justify-content:center;padding:28px 0}}
.blink-tag {
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    50% {
        visibility: hidden;
    }
}
.codebox {
    white-space: pre-wrap;
}