:root {
  --text: #111;
  --muted: #555;
  --line: #ddd;
  --accent: #0645ad;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: underline;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}

.page {
  padding: 0;
}

.site-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.identity h1,
.identity p,
.section-title,
.item-title,
.item-meta,
.intro,
.summary,
.section-card h3,
.experience-item p,
.experience-item ul {
  margin: 0;
}

.identity h1 {
  font-size: 1.9rem;
  line-height: 1.2;
}

.eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro {
  margin-top: 8px;
  max-width: 60ch;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

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

.section {
  margin-top: 22px;
}

.section-title {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-card {
  padding: 0;
  border: 0;
  background: none;
}

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

.link-list {
  margin: 0;
  padding-left: 18px;
}

.link-list li {
  padding: 0;
}

.link-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.experience-list {
  display: block;
}

.experience-item {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.item-title {
  font-size: 1rem;
  font-weight: 700;
}

.item-meta {
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.95rem;
}

.company {
  margin-bottom: 10px;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 8px;
}

.footer-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  main {
    padding: 24px 16px 40px;
  }

  .site-header,
  .item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-meta {
    white-space: normal;
  }
}
