@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: #111827;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }
}

.site-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-tagline {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-left: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .site-tagline {
    margin-left: 0;
    display: block;
  }
}

nav {
  display: flex;
  gap: 8px;
}
nav a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s ease;
}
nav a:hover, nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.main-content {
  padding: 48px 0 80px;
  min-height: calc(100vh - 180px);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: #1a1a1a;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2rem 0 1rem;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

p {
  margin: 1rem 0;
  color: #1a1a1a;
}

a {
  color: #0f9d58;
  text-decoration: none;
}
a:hover {
  color: #0b7a43;
}

ul, ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hero-text h1 {
  font-size: 2.25rem;
  margin-bottom: 4px;
}
.hero-text .subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 16px;
  font-weight: 400;
}
.hero-text .bio-brief {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1a1a1a;
}

.hero-photo img {
  width: 100%;
  border-radius: 8px;
  filter: grayscale(20%);
}
@media screen and (max-width: 768px) {
  .hero-photo {
    order: -1;
    max-width: 160px;
    margin: 0 auto;
  }
}

.skills-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.skill-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  padding: 4px 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  color: #6b7280;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.project-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.project-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.project-card-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}

.project-card-header .year {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
}

.project-card-context {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 8px;
  font-style: italic;
}

.project-card-description {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.project-card-tags .tag {
  font-size: 0.7rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-weight: 500;
  padding: 3px 8px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 3px;
  border: 1px solid #d1fae5;
}

.project-card-metrics {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum"; /* tabular numbers - all digits same width */
  font-variant-numeric: tabular-nums;
}

.metric-label {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.project-detail h1 {
  text-align: left;
}
.project-detail img {
  border-radius: 6px;
  margin: 1.5rem 0;
}

.pub-list {
  list-style: none;
  padding: 0;
}

.pub-item {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}
.pub-item:last-child {
  border-bottom: none;
}

.pub-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.pub-authors {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 4px 0;
}

.pub-venue {
  font-size: 0.8rem;
  color: #9ca3af;
  font-style: italic;
}

.pub-links {
  margin-top: 6px;
}
.pub-links a {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  margin-right: 6px;
  color: #6b7280;
  transition: all 0.15s ease;
}
.pub-links a:hover {
  border-color: #0f9d58;
  color: #0f9d58;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

th, td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
}

code {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.85em;
  background: #f9fafb;
  padding: 2px 6px;
  border-radius: 3px;
}

pre {
  background: #111827;
  color: #e5e7eb;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 1.5rem 0;
}
pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.site-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 32px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.footer-links a {
  color: #6b7280;
  font-size: 0.85rem;
}
.footer-links a:hover {
  color: #0f9d58;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #9ca3af;
}

.page-header {
  margin-bottom: 32px;
}
.page-header h1 {
  margin-bottom: 4px;
}
.page-header .page-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-primary {
  background: #0f9d58;
  color: #fff;
}
.btn-primary:hover {
  background: #0b7a43;
  color: #fff;
}

.btn-outline {
  border: 1px solid #e5e7eb;
  color: #1a1a1a;
}
.btn-outline:hover {
  border-color: #0f9d58;
  color: #0f9d58;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.post.detailed .entry img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem auto;
  display: block;
}
.post.detailed .entry img:not(.full-width) {
  max-width: 680px;
}

.project-card--has-image {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .project-card--has-image {
    flex-direction: column;
    gap: 12px;
  }
}

.project-card-image {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  align-self: flex-start;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .project-card-image {
    width: 100%;
    height: 140px;
  }
}

.project-card-body {
  flex: 1;
  min-width: 0;
}

.pub-item {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}
.pub-item:last-child {
  border-bottom: none;
}

.pub-reference {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1a1a1a;
  display: block;
  margin-bottom: 8px;
}

.pub-links {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pub-links a {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  padding: 3px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.15s ease;
}
.pub-links a:hover {
  border-color: #0f9d58;
  color: #0f9d58;
}

.bib-entry {
  margin-top: 8px;
}
.bib-entry pre {
  font-size: 0.75rem;
  padding: 12px;
  border-radius: 4px;
  background: #f9fafb;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}

ol.bibliography {
  display: flex;
  flex-direction: column-reverse;
  list-style: none;
  padding: 0;
  margin: 0;
}

/*# sourceMappingURL=style.css.map */