:root {
  --bg: #0f172a;
  --card: #111827;
  --accent: #38bdf8;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
}

body {
  font-family: system-ui, sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
  color: var(--text-main);
  padding: 2rem 1rem;
}

.page {
  max-width: 960px;
  margin: auto;
}

.card {
  background: linear-gradient(145deg, #020617, #111827);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  padding-bottom: 1.5rem;
}

.name-block h1 {
  font-size: 2.2rem;
}

.name-block h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--accent);
}

.contact {
  text-align: right;
}

.contact a {
  color: var(--accent);
}

main {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 2.5rem;
}

.section-title {
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.summary {
  color: #d1d5db;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-muted);
}

.job {
  margin-bottom: 1.4rem;
}

.job-header {
  display: flex;
  justify-content: space-between;
}

.job-title {
  font-weight: 600;
}

.job-company {
  color: var(--accent);
}

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

ul {
  list-style: none;
  padding-left: 0;
}

li {
  padding-left: 1.1rem;
  position: relative;
  color: #d1d5db;
}

li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
  cursor: pointer;
}
