/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ──────────────────────────────────────────────── */
body {
  background: #fff;
  color: #111;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.1px;
  -webkit-font-smoothing: antialiased;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: 930px;
  margin: 60px auto;
  padding: 0 16px;
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.nav-icons {
  display: flex;
  gap: 6px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.icon-btn:hover {
  background: #111;
  color: #fff;
}

/* ── Divider ───────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid #d1d5db;
  margin-bottom: 24px;
}

/* ── About ─────────────────────────────────────────────── */
.about {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 8px;
}

.nav-left {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── Section headings ──────────────────────────────────── */
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* ── Lists ─────────────────────────────────────────────── */
ul {
  margin-left: 20px;
  list-style: disc;
}

ul li {
  margin: 6px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
}

/* ── Links ─────────────────────────────────────────────── */
a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #1e40af;
}

/* ── Experience entries ────────────────────────────────── */
.exp-list li {
  margin-bottom: 8px;
}

.exp-title {
  font-weight: 500;
  color: #111;
}

.exp-date {
  color: #4b5563;
  font-size: 14px;
}

.exp-desc {
  color: #374151;
  font-size: 14px;
  margin-top: 2px;
}

.exp-desc ul {
  margin-left: 20px;
  margin-top: 4px;
}

.exp-desc li {
  font-size: 14px;
  color: #374151;
}

.bounty-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1e3a8a;
  white-space: nowrap;
}

/* ── Bug bounty entries ────────────────────────────────── */
.bb-list li {
  margin-bottom: 4px;
}

.bb-tag {
  font-size: 13px;
  color: #4b5563;
}

/* ── Placeholder text ──────────────────────────────────── */
.exp-placeholder {
  color: #6b7280;
  font-size: 14px;
}

/* ── Toggle buttons (more/less) ────────────────────────── */
.toggle-btn {
  display: inline-block;
  background: transparent;
  border: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #6b7280;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  margin-top: 4px;
}

.toggle-btn:hover {
  color: #111827;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 720px) {
  .container {
    margin: 32px auto;
    padding: 0 16px;
  }
}
