/* STRIX — ZNC / portfolio statik sahifalar */
:root {
  --bg: #06060b;
  --card: #111119;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f0ea;
  --muted: #8a8698;
  --gold: #d4af37;
  --gold2: #f0cc55;
  --accent: #7c3aed;
  --max: 920px;
  --font: "Outfit", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--gold2); text-decoration: none; }
a:hover { text-decoration: underline; }

.zn-top {
  position: sticky; top: 0; z-index: 10;
  background: rgba(6, 6, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.zn-top .brand { font-weight: 800; margin-right: auto; display: flex; align-items: center; gap: 8px; color: var(--text); }
.zn-top .brand img { width: 28px; height: 28px; border-radius: 8px; }
.zn-top nav { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.85rem; }
.zn-top nav a { color: var(--muted); }
.zn-top nav a:hover { color: var(--text); text-decoration: none; }

.zn-wrap { max-width: var(--max); margin: 0 auto; padding: 36px 20px 72px; }
.zn-hero { margin-bottom: 32px; }
.zn-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--gold2); margin-bottom: 12px;
}
.zn-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.zn-hero p { color: var(--muted); max-width: 62ch; }

.zn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.zn-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px;
}
.zn-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--gold2); }
.zn-card p, .zn-card li { font-size: 0.9rem; color: var(--muted); }
.zn-card ul { padding-left: 1.1rem; margin-top: 8px; }

.zn-pct { font-size: 1.8rem; font-weight: 800; color: var(--text); }
.zn-bar { height: 8px; background: rgba(255,255,255,.06); border-radius: 4px; margin-top: 8px; overflow: hidden; }
.zn-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); border-radius: 4px; }

.zn-timeline { border-left: 2px solid var(--line); margin: 20px 0 0 16px; padding-left: 20px; }
.zn-timeline .item { margin-bottom: 20px; position: relative; }
.zn-timeline .item::before {
  content: ""; position: absolute; left: -27px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
}
.zn-timeline h4 { font-size: 0.95rem; margin-bottom: 4px; }
.zn-timeline p { font-size: 0.88rem; color: var(--muted); }

.zn-portrait {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start;
  margin-bottom: 28px;
}
.zn-avatar {
  width: 120px; height: 120px; border-radius: 24px;
  background: linear-gradient(135deg, #e11d48, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800;
}
.zn-role { color: var(--gold2); font-size: 0.9rem; margin-bottom: 8px; }
.zn-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.zn-skills span {
  font-size: 0.75rem; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
}

.zn-foot {
  max-width: var(--max); margin: 0 auto; padding: 24px 20px 40px;
  border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 12px 20px;
}
@media (max-width: 600px) {
  .zn-portrait { grid-template-columns: 1fr; text-align: center; }
  .zn-avatar { margin: 0 auto; }
}
