/* ---- Theme variables ---- */
:root {
  --bg: #141218;
  --bg-soft: #1c1822;

  --text-main: #f2edf3;
  --text-muted: #b9b1c1;

  --accent: #d9a6b8;
  --accent-soft: #8f7b8d;

  --border-soft: rgba(255, 255, 255, 0.08);
}

/* ---- Base reset-ish stuff ---- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #1e1a25, var(--bg));
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

/* ---- Page layout ---- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* ---- Header ---- */
.name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: 0.3px;
}

.subtitle {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---- Link buttons ---- */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 10px;

  background: var(--bg-soft);
  color: var(--text-main);
  text-decoration: none;

  font-size: 0.9rem;
  border: 1px solid var(--border-soft);

  transition: 0.2s ease;
}

.btn:hover {
  border-color: var(--accent-soft);
  color: var(--accent);
}

/* ---- Sections ---- */
.section {
  margin-bottom: 56px;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent);
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.text {
  max-width: 720px;
}

/* ---- Callout box ("Currently") ---- */
.callout {
  max-width: 720px;
  padding: 18px 22px;

  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 14px;

  color: var(--text-muted);
}

/* ---- Publications ---- */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.pub {
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
}

.pub.featured {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(217, 166, 184, 0.15);
}

.pub-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.pub-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pub-desc {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

/* ---- Badges ---- */
.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;

  background: rgba(217, 166, 184, 0.12);
  color: var(--accent);

  border: 1px solid rgba(217, 166, 184, 0.25);
  text-decoration: none;
}

.badge:hover {
  border-color: rgba(217, 166, 184, 0.45);
}

.badge-static:hover {
  border-color: rgba(217, 166, 184, 0.25);
}

.badge-static {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  cursor: default;
}

.badge-published {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px dashed rgba(217, 166, 184, 0.35);
  cursor: default;
}

/* ---- Research list ---- */
.list {
  padding-left: 18px;
  max-width: 720px;
}

.list li {
  margin-bottom: 8px;
}

/* ---- Footer ---- */
.footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: var(--text-muted);
}
