@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-sidebar: #faf7fc;
  --text: #1f1a24;
  --text-muted: #5f576a;
  --border: #e8deef;
  --link: #9241b5;
  --tag-bg: #f3ecf8;
  --section-label: #5e56ad;
  --name-color: #8537a8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141118;
    --bg-sidebar: #1b1522;
    --text: #ece7f2;
    --text-muted: #b6abc3;
    --border: #352b42;
    --link: #c07adf;
    --tag-bg: #251e2f;
    --section-label: #8e84d9;
    --name-color: #d79aec;
  }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 15.4px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--name-color);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  z-index: 1000;
}
.skip-link:focus {
  top: 10px;
  text-decoration: none;
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--section-label), var(--link));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scroll-indicator-chevron {
  color: var(--link);
  font-size: 33px;
  animation: bounce 2s infinite;
  text-shadow: 0 2px 8px rgba(146, 65, 181, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.lang-bar {
  display: flex;
  justify-content: flex-end;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 13.2px;
  background: var(--bg-sidebar);
}
.lang-bar a {
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.lang-bar a:hover {
  color: var(--text);
  text-decoration: none;
}

.lang-bar a:focus-visible,
.contact-list a:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 2px;
  border-radius: 3px;
}

.page {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: calc(100vh - 41px);
}

.sidebar {
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.name {
  font-size: 23.76px;
  font-weight: 600;
  color: var(--name-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tagline {
  font-size: 13.66px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.5;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-section h2 {
  font-size: 11.29px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--section-label);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list li {
  font-size: 14.26px;
  color: var(--text-muted);
  word-break: break-all;
}
.contact-list a {
  color: var(--text-muted);
}
.contact-list a:hover {
  color: var(--link);
}

.skill-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 4px;
}

.skill-label {
  font-size: 13.07px;
  font-weight: 500;
  color: var(--text);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}

.tag {
  display: inline-block;
  font-size: 12.47px;
  background: var(--tag-bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.5;
}

.edu-degree {
  font-size: 14.26px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.edu-institution {
  font-size: 14.26px;
  color: var(--text-muted);
}

.edu-expected {
  font-size: 13.07px;
  color: var(--text-muted);
}

.lang-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 6px;
}

.lang-name {
  font-size: 14.26px;
  font-weight: 500;
  color: var(--text);
}

.lang-level {
  font-size: 13.07px;
  color: var(--text-muted);
  line-height: 1.4;
}

.main {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.main:focus {
  outline: none;
}

.main-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-section h2 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--section-label);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.job {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.job-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.job-company {
  font-size: 14.85px;
  font-weight: 600;
  color: var(--text);
}

.job-role {
  font-size: 13.75px;
  color: var(--text-muted);
  font-style: italic;
}

.job-period {
  font-size: 12.65px;
  color: var(--text-muted);
  white-space: nowrap;
  padding-top: 2px;
}

.job-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.job-bullets li {
  font-size: 14.3px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.job-bullets li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--text-muted);
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

.project-description {
  font-size: 14.3px;
  color: var(--text);
  line-height: 1.55;
}

.courses-list {
  margin: 0;
  padding-left: 18px;
}
.courses-list li {
  font-size: 14.3px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .page {
    grid-template-columns: 1fr;
  }
  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .main {
    padding: 24px 20px;
  }
}
@media print {
  .lang-bar {
    display: none;
  }
  .page {
    grid-template-columns: 220px 1fr;
    min-height: unset;
  }
  body {
    font-size: 12.1px;
  }
  .name {
    font-size: 17.6px;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
}

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