* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: transparent;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}


.resume {
  background: transparent;
  max-width: 833px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Header ─────────────────────────────── */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  font-size: 22.4px;
  font-weight: 600;
  line-height: normal;
}

.subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-top: 4px;
  line-height: normal;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.contact {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.linkedin {
  font-size: 14px;
  font-weight: 400;
  color: #1255cc;
  text-decoration: underline;
  line-height: normal;
}

/* ── Intro ──────────────────────────────── */

.intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-title {
  font-size: 16.8px;
  font-weight: 600;
  line-height: 21px;
}

.lightsaber {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.intro-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/* ── Experience & Education ─────────────── */

.experience,
.education {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.entry {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.date-group {
  width: 187px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.date {
  color: #666;
  font-weight: 400;
  line-height: 21px;
}

.details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.role {
  font-weight: 700;
  line-height: 21px;
}

.location {
  color: #666;
  font-weight: 400;
  line-height: normal;
}

.description {
  font-weight: 400;
  line-height: 21px;
}

.degree {
  line-height: 21px;
}

.degree .bold {
  font-weight: 700;
}

.degree .year {
  font-weight: 400;
}

/* ── Mobile ─────────────────────────────── */

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header-right {
    align-items: flex-start;
  }

  .entry {
    flex-direction: column;
    gap: 4px;
  }

  .date-group {
    width: 100%;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .date-group .location::before {
    content: '|';
    margin-right: 8px;
    color: #666;
  }
}
