:root{
  --bg:#0a0d12;
  --panel:#0f1624;
  --text:#e8edf5;
  --muted:#a7b1c2;
  --brand:#eab308;
  --brand2:#60a5fa;
  --border: rgba(255,255,255,.10);
  --shadow: 0 16px 38px rgba(0,0,0,.40);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(234,179,8,.15), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(96,165,250,.14), transparent 60%),
    var(--bg);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,13,18,.65);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.3px; }
.mark{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(234,179,8,1), rgba(96,165,250,1));
  box-shadow: var(--shadow);
}
.navlinks{ display:flex; gap:16px; flex-wrap:wrap; justify-content:flex-end; }
.navlinks a{ color:var(--muted); font-weight:650; }
.navlinks a:hover{ color:var(--text); }

main{ padding-bottom: 44px; }
section{ padding: 28px 0; }
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pad{ padding:18px; }

.h1{
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
  margin: 0 0 12px;
  letter-spacing: -.7px;
}
.lead{ margin:0 0 18px; color: var(--muted); font-size: 18px; }
.muted{ color: var(--muted); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:700;
  cursor:pointer;
  transition: .15s transform, .15s background, .15s border-color;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, rgba(234,179,8,.96), rgba(96,165,250,.96));
  color:#071018;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .grid3{ grid-template-columns: 1fr; }
}

.pillrow{ display:flex; gap:10px; flex-wrap:wrap; margin: 16px 0 12px; }
.pill{
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 8px 10px;
  border-radius: 999px;
}

.hr{ height:1px; background: var(--border); border:0; margin:18px 0; }

/* Work cards */
.work-card{ padding:16px; }
.work-card h3{ margin: 6px 0 6px; font-size: 16px; }
.work-card p{ margin:0; color: var(--muted); font-size: 14px; }
.tagline{ color: var(--muted); font-size: 13px; margin-top: 8px; }
.badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}

/* Filters */
.filters{
  display:flex; gap:10px; flex-wrap:wrap;
  align-items:center;
}
select, input{
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
select:focus, input:focus{ border-color: rgba(234,179,8,.55); }

/* Blog list */
.post{
  padding:16px;
}
.post h3{ margin:0 0 6px; font-size: 16px; }
.post .meta{ color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.post p{ margin:0; color: var(--muted); font-size: 14px; }