@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./assets/fonts/PlusJakartaSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --cv-width: 800px;
  --paper: #fffcf6;
  --white: #ffffff;
  --ink: #161616;
  --heading: #252424;
  --accent: #d86015;
  --accent-text: #b84b0d;
  --accent-soft: #fcf0e8;
  --divider: #e8e8e8;
  --muted: #69645f;
  --outer: #e9e6e0;
  --body-font: "SVN-Circular", "SVN Circular", "SF Pro Text", "Segoe UI", Arial, sans-serif;
  --display-font: "SVN-Recoleta", Recoleta, Cambria, Georgia, "Times New Roman", serif;
  --sf-font: "SF Pro", "SF Pro Text", "SF Pro Display", "Segoe UI", Arial, sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--outer);
  color: var(--ink);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 280px;
  margin: 0;
  padding-bottom: 64px;
  font-family: var(--body-font);
}

.page-gradient-background {
  display: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/*
 * Motion purpose: communicate CV readiness, then disclose content at the reader's scroll position.
 * Owner/cleanup: script.js; interruption: pagehide or reduced-motion; reduced path: final usable state.
 */
.intro-loader {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
  overflow: hidden;
  background:
    linear-gradient(213.737deg, rgba(255, 252, 246, 0.72), #fffcf6 68%),
    url("./assets/figma/header-texture.png") center / cover no-repeat;
  opacity: 1;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-enabled body {
  overflow: hidden;
}

.loader-enabled .intro-loader {
  display: flex;
}

.loader-enabled .cv-sheet,
.loader-enabled .floating-menu,
.loader-enabled .cv-download-control,
.loader-enabled .page-gradient-background {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-enabled.loader-exiting .intro-loader {
  opacity: 0;
  pointer-events: none;
}

.cv-sheet,
.floating-menu {
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-symbol {
  width: 132px;
  height: 132px;
}

.loader-symbol svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.loader-wings {
  fill: #201f1f;
  opacity: 0;
  transform: rotate(-45deg) scale(0.08);
  transform-box: fill-box;
  transform-origin: center;
  animation: loader-wings-sequence 1900ms linear 420ms forwards;
  will-change: opacity, transform;
}

.loader-dot {
  fill: #254ed4;
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
}

.loader-dot-center {
  animation: loader-center-dot-in 620ms cubic-bezier(0.16, 1, 0.3, 1) 0ms forwards;
}

.loader-dot-top {
  animation: loader-outer-dot-in 480ms cubic-bezier(0.16, 1, 0.3, 1) 2340ms forwards;
}

.loader-dot-right {
  animation: loader-outer-dot-in 480ms cubic-bezier(0.16, 1, 0.3, 1) 2460ms forwards;
}

.loader-dot-bottom {
  animation: loader-outer-dot-in 480ms cubic-bezier(0.16, 1, 0.3, 1) 2580ms forwards;
}

.loader-dot-left {
  animation: loader-outer-dot-in 480ms cubic-bezier(0.16, 1, 0.3, 1) 2700ms forwards;
}

.loader-progress-wrap {
  width: min(280px, calc(100vw - 64px));
  opacity: 0;
  transform: translateY(8px);
  animation: loader-progress-in 420ms cubic-bezier(0.16, 1, 0.3, 1) 2780ms forwards;
}

.loader-progress-track {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(37, 78, 212, 0.14);
}

.loader-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #254ed4, #13286e 72%, #d86015);
  box-shadow: 0 0 12px rgba(37, 78, 212, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.loader-progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  color: #201f1f;
  font-family: "Plus Jakarta Sans", var(--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.loader-progress-copy strong {
  color: #254ed4;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

@keyframes loader-center-dot-in {
  0% {
    opacity: 1;
    transform: scale(0.38);
  }
  72% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-wings-sequence {
  0% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.08);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  12% {
    opacity: 1;
    transform: rotate(-45deg) scale(0.24);
  }
  54% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  86% {
    opacity: 1;
    transform: rotate(2deg) scale(1.015);
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes loader-outer-dot-in {
  0% {
    opacity: 0;
    transform: scale(0.42);
  }
  72% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-progress-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cv-sheet {
  position: relative;
  z-index: 1;
  width: var(--cv-width);
  max-width: 100%;
  margin: 24px auto;
  overflow: clip;
  background: var(--white);
  box-shadow: 0 16px 60px rgb(41 33 25 / 12%);
}

.section-shell {
  padding-inline: 39.692px;
}

.profile-header {
  position: relative;
  height: 144.275px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgb(255 252 246 / 78%), rgb(255 252 246 / 66%)),
    url("./assets/figma/header-texture.png");
  background-position: center;
  background-size: cover;
  color: var(--ink);
}

.profile-header::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(255 252 246 / 24%));
  content: "";
  pointer-events: none;
}

.profile-identity {
  position: absolute;
  top: 29.006px;
  left: 47.332px;
}

.profile-identity h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 24.427px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 40px;
  text-transform: uppercase;
}

.name-line {
  display: inline;
}

.role-line,
.role-separator {
  display: inline;
}

.profile-mascot {
  position: absolute;
  top: -10.876px;
  left: 244.398px;
  width: 26.451px;
  height: 30.164px;
  pointer-events: none;
}

.profile-mascot-crop {
  position: absolute;
  top: 1.723px;
  left: 2.157px;
  width: 22.137px;
  height: 26.718px;
  overflow: hidden;
  transform: scaleY(-1) rotate(169.97deg);
}

.profile-mascot img {
  position: absolute;
  top: -36.39%;
  left: -262.95%;
  width: 368.35%;
  height: 454.44%;
  max-width: none;
  object-fit: cover;
}

.profile-role {
  margin: 0;
  color: var(--accent-text);
  font-family: "Akkurat Trial", Akkurat, var(--sf-font);
  font-size: 12.214px;
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 15px;
  text-transform: uppercase;
}

.profile-portrait {
  position: absolute;
  top: 18.7px;
  right: 47.896px;
  width: 128.244px;
  height: 125.954px;
  margin: 0;
  overflow: hidden;
  border: 3.053px solid var(--white);
  border-bottom: 0;
  border-radius: 18.321px 18.321px 0 0;
  background: rgb(255 255 255 / 22%);
}

.profile-portrait img {
  position: absolute;
  top: -15.76%;
  left: 0;
  width: 100%;
  height: 150.65%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0;
}

.contact-list {
  position: absolute;
  top: 96.22px;
  bottom: auto;
  left: 47.332px;
  display: grid;
  grid-template-columns: 66.522px 3.053px 88.522px;
  grid-template-rows: repeat(2, 14px);
  grid-auto-flow: row;
  align-items: center;
  gap: 3.053px 6.107px;
  width: 170.312px;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 7.634px;
  font-style: normal;
  line-height: 14px;
  list-style: none;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 3.053px;
  white-space: nowrap;
}

.contact-item a {
  text-decoration: none;
}

.contact-icon {
  width: 10.469px;
  height: 10.469px;
  flex: 0 0 auto;
}

.contact-location {
  gap: 1.527px;
}


.contact-separator {
  width: 3.053px;
  height: 3.053px;
  flex: 0 0 auto;
}

.intro-achievements {
  display: grid;
  grid-template-columns: minmax(0, 341.985px) minmax(0, 1fr);
  gap: 36.641px;
  padding-top: 24.428px;
  padding-bottom: 24px;
  background: var(--white);
}

.intro-achievements h2,
.section-title-row h2,
.references-section > h2,
.education-section > h2 {
  margin: 0;
  color: var(--heading);
  font-size: 13.74px;
  font-weight: 760;
  letter-spacing: -0.018em;
  line-height: 1.16;
}

.introduction-copy {
  margin-top: 13px;
  color: #373431;
  font-size: 7.95px;
  line-height: 1.55;
}

.introduction-copy p {
  margin: 0;
}

.introduction-copy p + p {
  margin-top: 7.5px;
}

.achievement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 13px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.achievement-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
}

.achievement-item h3,
.achievement-item p {
  margin: 0;
}

.achievement-item h3 {
  color: var(--heading);
  font-size: 8.05px;
  font-weight: 700;
  line-height: 1.32;
}

.achievement-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 7.15px;
  line-height: 1.2;
}

.achievement-item strong {
  display: inline-flex;
  min-height: 16px;
  align-items: center;
  padding: 2px 6px;
  border-radius: 3.8px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 7.2px;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.experience-section {
  padding-top: 30.76px;
  padding-bottom: 25px;
  background: var(--paper);
  border-top: 1px solid rgb(232 232 232 / 74%);
}

.section-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.section-title-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 7.15px;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: right;
}

.career-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 146.565px 128.244px 122.901px 125.191px 77.863px;
  gap: 18.32px;
  width: 698.855px;
  margin: 11.566px 0 50.716px;
  padding: 0;
  list-style: none;
}

.career-timeline::before {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 1px;
  background: #d7d2cc;
  content: "";
}

.career-timeline li {
  position: relative;
  display: grid;
  min-height: 47px;
  align-content: center;
  justify-items: start;
  padding: 8px 11px;
  border: 1px solid #edc5ad;
  border-radius: 8px;
  background: var(--accent-soft);
  text-align: left;
}

.career-timeline li:first-child {
  border-color: var(--accent);
  background: var(--ink);
  box-shadow: 0 3px 8px rgb(22 22 22 / 18%);
}

.timeline-dot {
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: -23px;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
  transform: translateX(-50%);
}

.career-timeline strong {
  color: var(--heading);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.25;
}

.career-timeline li > span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: 6.4px;
  line-height: 1.2;
}

.career-timeline li:first-child strong,
.career-timeline li:first-child > span:last-child {
  color: var(--white);
}

.career-timeline li:first-child .timeline-dot {
  width: 9px;
  height: 9px;
  bottom: -24.5px;
  border: 2px solid var(--accent);
  border-radius: 1px;
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
}

.experience-list {
  display: grid;
  gap: 13.289px;
  width: 700.763px;
}

.experience-entry {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--divider);
}

.experience-entry:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.experience-heading {
  display: block;
  margin-bottom: 6px;
  padding-left: 6px;
  border-left: 2px solid var(--accent);
}

.experience-heading h3,
.experience-heading p {
  margin: 0;
}

.experience-heading h3 {
  color: var(--heading);
  font-size: 9.15px;
  font-weight: 760;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.experience-heading h3 span {
  color: var(--heading);
  font-weight: 650;
}

.experience-heading p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 6.8px;
  font-weight: 560;
  line-height: 1.28;
  text-align: left;
}

.experience-layout {
  display: grid;
  grid-template-columns: 461.832px minmax(0, 1fr);
  gap: 14px;
}

.responsibility-column ul,
.result-column ul,
.skill-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-column li,
.result-column li,
.skill-group li {
  position: relative;
  padding-left: 9px;
  color: #393531;
  font-size: 6.9px;
  line-height: 1.4;
}

.responsibility-column li::before,
.result-column li::before,
.skill-group li::before {
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.responsibility-column li + li,
.result-column li + li,
.skill-group li + li {
  margin-top: 3px;
}

.result-column {
  padding-left: 14px;
  border-left: 1px solid #ded8d1;
}

.result-heading {
  display: inline-flex;
  min-height: 17px;
  align-items: center;
  margin: 0 0 5px;
  padding: 3px 7px;
  border-radius: 3px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 7px;
  font-weight: 760;
  line-height: 1.2;
}

.closing-section {
  display: grid;
  grid-template-columns: 509.745px minmax(0, 1fr);
  gap: 8px 29px;
  padding-top: 19px;
  padding-bottom: 16.98px;
  background: var(--white);
  border-top: 1px solid #aaa39c;
}

.skills-section,
.references-section,
.education-section {
  min-width: 0;
}

.skills-layout {
  display: grid;
  grid-template-columns: 283.206px minmax(0, 1fr);
  gap: 17px;
  margin-top: 13px;
}

.skill-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--divider);
  border-left: 1px solid var(--divider);
}

.skill-group {
  min-width: 0;
  padding: 6px 7px;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.skill-group h3,
.competency-card h3 {
  margin: 0 0 6px;
  color: var(--heading);
  font-size: 7.2px;
  font-weight: 760;
  line-height: 1.25;
}

.skill-group li {
  padding-left: 7px;
  font-size: 5.7px;
  line-height: 1.26;
}

.skill-group li::before {
  top: 0.55em;
  width: 2px;
  height: 2px;
}

.skill-group li + li {
  margin-top: 1px;
}

.competency-card {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.competency-card h3 {
  margin-bottom: -1px;
  text-align: center;
}

.competency-radar {
  width: 100%;
  overflow: visible;
}

.radar-points {
  fill: var(--ink);
}

.radar-labels {
  fill: #4a4642;
  font-family: var(--body-font);
  font-size: 7.4px;
}

.radar-mobile-legend {
  display: none;
}

.radar-mobile-graphic {
  display: none;
}

.reference-list,
.education-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.reference-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 10px;
}

.references-section > h2 {
  font-size: 13.74px;
}

.reference-list strong,
.education-list strong {
  color: var(--heading);
  font-size: 7.65px;
  font-weight: 720;
  line-height: 1.3;
}

.reference-list a,
.education-list time,
.education-period {
  color: #161616;
  font-size: 6.8px;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.reference-list span {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 3px;
  padding: 3px 5px;
  border-radius: 2px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 6.2px;
  line-height: 1.3;
}

.education-section {
  grid-column: 1 / -1;
  padding-top: 2px;
}

.education-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.education-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 3px 6px;
}

.education-heading {
  display: contents;
}

.education-tag {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 3px 5px;
  border-radius: 2px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 6.1px;
  line-height: 1.35;
}

/*
 * Desktop composition measured from Figma node 506:16 (800 × 2003.817).
 * Mobile intentionally uses the readable layout below instead of shrinking this canvas.
 */
@media (min-width: 800px) {
  html {
    background: var(--white);
  }

  .page-gradient-background {
    --cv-column-width: 800px;
    position: fixed;
    z-index: 0;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #ffb78b;
    pointer-events: none;
  }

  .page-gradient-background::after {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: var(--cv-column-width);
    background: var(--white);
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
  }

  .page-gradient-background iframe {
    position: absolute;
    z-index: 0;
    top: 0;
    left: -64px;
    width: calc(100% + 128px);
    height: calc(100% + 72px);
    min-height: calc(100vh + 72px);
    border: 0;
    display: block;
    pointer-events: none;
  }

  body {
    padding-bottom: 87.569px;
  }

  .cv-sheet {
    width: 800px;
    height: 2003.817px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: none;
  }

  .profile-header {
    height: 144.275px;
    border-radius: 0 0 12.214px 12.214px;
    background: #fffcf6;
  }

  .profile-header::before,
  .profile-header::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    content: "";
    pointer-events: none;
  }

  .profile-header::before {
    z-index: 0;
    background: url("./assets/figma/header-texture.png") center bottom / cover no-repeat;
    opacity: 1;
  }

  .profile-header::after {
    z-index: 1;
    background: linear-gradient(213.7374247465674deg, rgba(255, 252, 246, 0) 0%, rgba(255, 252, 246, 0.15) 7.7289%, rgba(255, 252, 246, 0.8) 19.363%, rgba(255, 252, 246, 0.15) 34.326%, rgba(255, 252, 246, 0.75) 47.092%, rgba(255, 252, 246, 0.2) 61.424%, rgba(255, 252, 246, 0.9) 75.017%, rgba(255, 252, 246, 0.6) 91.325%, #fffcf6 99.357%);
  }

  .profile-identity,
  .profile-portrait,
  .contact-list {
    z-index: 2;
  }

  .profile-identity h1 {
    font-size: 24.427px;
    letter-spacing: 0.02em;
    line-height: 40px;
  }

  .profile-role {
    color: #d86015;
    font-size: 12.214px;
    letter-spacing: 0;
    line-height: 15px;
  }

  .profile-portrait img {
    position: absolute;
    top: -15.76%;
    left: 0;
    width: 100%;
    height: 150.65%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 0;
    transform: none;
  }

  .contact-list {
    display: block;
    width: 170.312px;
    height: 31.053px;
    color: #161616;
    font-family: var(--body-font);
    font-size: 6.87px;
    font-weight: 500;
    line-height: 13.74px;
  }

  .contact-list > * {
    position: absolute;
  }

  .contact-location {
    top: 0;
    left: 0;
  }

  .contact-separator-top {
    top: 5.474px;
    left: 71.866px;
  }

  .contact-email {
    top: 0;
    left: 81.79px;
  }

  .contact-phone {
    top: 17.053px;
    left: 0;
  }

  .contact-separator-bottom {
    top: 22.527px;
    left: 72.629px;
  }

  .contact-portfolio {
    top: 17.053px;
    left: 81.79px;
  }

  .intro-achievements {
    height: 184.733px;
    grid-template-columns: 341.985px 341.985px;
    gap: 36.641px;
    padding-top: 24.428px;
    padding-bottom: 0;
  }

  .intro-achievements h2,
  .section-title-row h2,
  .references-section > h2,
  .education-section > h2 {
    font-family: var(--body-font);
    font-size: 13.74px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 19.847px;
  }

  .introduction-copy {
    margin-top: 7.634px;
    color: #161616;
    font-size: 8.397px;
    line-height: 12.977px;
    text-align: justify;
  }

  .introduction-copy p + p {
    margin-top: 6.107px;
  }

  .achievement-list {
    grid-template-columns: 152.672px 152.672px;
    column-gap: 18.321px;
    row-gap: 10.687px;
    margin-top: 7.634px;
  }

  .achievement-item {
    width: 152.672px;
    gap: 0;
  }

  .achievement-item h3 {
    font-size: 8.397px;
    line-height: 12.977px;
  }

  .achievement-item p {
    margin-top: 0;
    color: #161616;
    font-size: 7.634px;
    line-height: 12.214px;
  }

  .achievement-item strong {
    min-height: 13.58px;
    padding: 2.29px 3.817px;
    border-radius: 2.29px;
    color: #d86015;
    font-family: var(--sf-font);
    font-size: 7.634px;
    line-height: normal;
  }

  .experience-section {
    height: 1340.839px;
    padding-top: 29.533px;
    padding-bottom: 0;
    border-top-color: rgba(232, 232, 232, 0.74);
  }

  .career-timeline {
    height: 73.283px;
    margin: 7.668px 0 24.452px;
  }

  .career-timeline::before {
    right: auto;
    bottom: 5.43px;
    left: 3.817px;
    width: 695.038px;
    height: 4.4px;
    background: url("./assets/figma-exact/timeline-line.svg") center / 100% 100% no-repeat;
  }

  .career-timeline li {
    min-height: 47.328px;
    height: 47.328px;
    padding: 7.634px 12.214px;
    border: 0.763px solid rgba(137, 54, 2, 0.3);
    border-radius: 9.16px;
    background: #fff4ee;
  }

  .career-timeline li:first-child {
    border-color: #893602;
    background: #161616;
    box-shadow: inset 0 -7.412px 7.412px #0f0f0f, inset 0 0 5.744px #ffbd94;
  }

  .career-timeline strong {
    color: #140801;
    font-size: 10.687px;
    font-weight: 400;
    line-height: 18.321px;
    white-space: nowrap;
  }

  .career-timeline li:first-child strong {
    background-image: linear-gradient(180deg, #fff 50%, #ffcbaa 89.583%);
    background-clip: text;
    color: transparent;
    font-weight: 700;
    -webkit-background-clip: text;
  }

  .career-timeline li > span:last-child {
    margin-top: -1.527px;
    color: #000;
    font-family: "SF Pro Display", var(--sf-font);
    font-size: 8.397px;
    font-weight: 400;
    line-height: 13.74px;
  }

  .timeline-dot {
    bottom: -22.138px;
    width: 7.634px;
    height: 7.634px;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: translateX(-50%);
  }

  .timeline-dot::before {
    position: absolute;
    top: 1.118px;
    left: 1.118px;
    width: 5.398px;
    height: 5.398px;
    border-radius: 2.29px;
    background: #e79f72;
    content: "";
    transform: rotate(45deg);
  }

  .career-timeline li:first-child .timeline-dot {
    bottom: -25.954px;
    width: 15.267px;
    height: 15.267px;
    border: 0;
    background: url("./assets/figma-timeline/selected-marker.svg") center / 100% 100% no-repeat;
    transform: translateX(-50%);
  }

  .career-timeline li:first-child .timeline-dot::before {
    display: none;
  }

  .career-timeline li:first-child .timeline-dot::after {
    display: none;
  }

  .experience-list {
    height: 1144.595px;
    grid-template-rows: 138.427px 141.221px 129.771px 126.427px 135.954px 126.427px 126.427px 126.427px;
    gap: 13.359px;
  }

  .experience-entry {
    --result-top: 0px;
    --line-top: 0px;
    --line-height: 117.557px;
    --line-left: 476.336px;
    --result-offset: 0px;
    position: relative;
    display: grid;
    grid-template-columns: 461.832px 29.008px minmax(0, 1fr);
    grid-template-rows: 30.053px minmax(0, 1fr);
    height: 100%;
    padding: 0;
    border: 0;
    overflow: visible;
  }

  .experience-entry::after {
    position: absolute;
    top: var(--line-top);
    left: var(--line-left);
    width: var(--line-height);
    height: 0.763px;
    background: url("./assets/figma-exact/experience-separator-4.svg") center / 100% 100% no-repeat;
    content: "";
    transform: rotate(90deg);
    transform-origin: top left;
  }

  #superteam-vietnam::after {
    background-image: url("./assets/figma-exact/experience-separator-1.svg");
  }

  #polyquest-boomplay::after {
    background-image: url("./assets/figma-exact/experience-separator-2.svg");
  }

  #chaincohort-maneko::after {
    background-image: url("./assets/figma-exact/experience-separator-3.svg");
  }

  #akather-death-hunter::after,
  #freelancer::after {
    background-image: url("./assets/figma-exact/experience-separator-5.svg");
  }

  .experience-layout {
    display: contents;
  }

  .experience-heading {
    grid-column: 1;
    grid-row: 1;
    width: 233.588px;
    height: 30.053px;
    margin: 0;
    padding-left: 4.58px;
    border-left: 1.527px solid #d86015;
  }

  .experience-heading h3 {
    font-family: var(--sf-font);
    font-size: 9.924px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 13.74px;
    white-space: nowrap;
  }

  .experience-heading h3 span {
    font-weight: 700;
  }

  .experience-heading p {
    margin-top: 3.313px;
    color: #252424;
    font-size: 8.397px;
    font-weight: 500;
    line-height: 12.214px;
    white-space: nowrap;
  }

  .responsibility-column {
    grid-column: 1;
    grid-row: 2;
    margin-top: 9.16px;
  }

  .responsibility-column ul {
    display: flex;
    flex-direction: column;
    gap: 6.107px;
  }

  .responsibility-column li {
    padding-left: 0;
    color: rgba(22, 22, 22, 0.8);
    font-family: var(--sf-font);
    font-size: 7.634px;
    line-height: 12.214px;
  }

  .responsibility-column li::before {
    display: none;
  }

  .responsibility-column li + li {
    margin-top: 0;
  }

  .result-column {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: start;
    width: 207.634px;
    margin-top: var(--result-top);
    margin-left: var(--result-offset);
    padding: 0;
    border: 0;
  }

  .result-heading {
    display: flex;
    width: max-content;
    min-height: 17.58px;
    margin: 0 0 8.37px;
    padding: 2.29px 6.107px;
    border-radius: 3.053px;
    color: #d86015;
    font-family: var(--sf-font);
    font-size: 7.634px;
    line-height: 12.214px;
  }

  .result-column ul {
    padding-left: 11.451px;
    list-style: disc;
  }

  .result-column li {
    padding-left: 0;
    color: rgba(22, 22, 22, 0.8);
    font-family: var(--sf-font);
    font-size: 7.634px;
    line-height: 12.214px;
  }

  .result-column li::before {
    display: none;
  }

  .result-column li + li {
    margin-top: 0;
  }

  #superteam-vietnam {
    --result-top: 7.236px;
    --line-top: 10.435px;
  }

  #polyquest-boomplay {
    --result-top: 8.778px;
    --line-height: 141.221px;
  }

  #chaincohort-maneko {
    --result-top: 8.908px;
    --result-offset: 2.29px;
    --line-left: 478.626px;
    --line-height: 129.771px;
  }

  #comic-coin-oneapp {
    --result-top: 13.236px;
    --line-top: 4.435px;
  }

  #van-minh-amita {
    --line-top: 9.198px;
  }

  #lotte-finance {
    --result-top: 1.237px;
    --line-top: 4.435px;
  }

  #akather-death-hunter {
    --result-top: 7.524px;
    --line-top: 10.542px;
    --line-height: 105.343px;
  }

  #akather-death-hunter .result-column {
    width: 225.763px;
  }

  #freelancer {
    --result-top: 1.236px;
    --line-top: 10.542px;
    --line-height: 105.343px;
  }

  .closing-section {
    position: relative;
    display: block;
    height: 333.97px;
    padding: 0;
  }

  .skills-section {
    position: absolute;
    top: 15.415px;
    left: 39.692px;
    width: 477.863px;
    height: 205.878px;
  }

  .skills-layout {
    grid-template-columns: 283.206px 181.676px;
    gap: 26.717px;
    margin-top: 12.214px;
  }

  .skill-groups {
    grid-template-columns: 141.603px 141.603px;
    grid-template-rows: 86.832px 86.832px;
    width: 283.206px;
    height: 173.664px;
    border: 1.336px solid #e8e8e8;
  }

  .skill-group {
    position: relative;
    height: 86.832px;
    padding: 22.71px 5.344px 4px 7.443px;
    border-right: 1.336px solid #e8e8e8;
    border-bottom: 1.336px solid #e8e8e8;
  }

  .skill-group:nth-child(2n) {
    border-right: 0;
  }

  .skill-group:nth-child(n + 3) {
    border-bottom: 0;
  }

  .skill-group h3 {
    position: absolute;
    top: -1.336px;
    left: -1.336px;
    margin: 0;
    padding: 5.344px;
    border-radius: 0 0 5.344px 0;
    background: #e8e8e8;
    font-family: var(--sf-font);
    font-size: 6.107px;
    font-weight: 590;
    line-height: 7.634px;
    white-space: nowrap;
  }

  .skill-group ul {
    padding-left: 7.443px;
    list-style: disc;
  }

  .skill-group li {
    padding-left: 0;
    color: #161616;
    font-family: var(--sf-font);
    font-size: 4.962px;
    line-height: 8.015px;
    white-space: nowrap;
  }

  .skill-group li::before {
    display: none;
  }

  .skill-group li + li {
    margin-top: 0;
  }

  .competency-card {
    width: 181.676px;
    height: 155.766px;
    margin-top: 9.351px;
  }

  .competency-card > h3 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .competency-radar {
    width: 181.676px;
    height: 155.766px;
  }

  .radar-labels {
    font-family: var(--sf-font);
    font-size: 6.844px;
  }

  .references-section {
    position: absolute;
    top: 15.415px;
    left: 578.437px;
    width: 181.872px;
  }

  .reference-list {
    gap: 8.96px;
    margin-top: 8.397px;
  }

  .reference-list li {
    grid-template-columns: max-content max-content;
    column-gap: 3.053px;
  }

  .reference-list strong {
    font-size: 8.397px;
    line-height: 12.214px;
  }

  .reference-list a {
    display: inline-flex;
    align-items: center;
    color: #161616;
    font-size: 8.397px;
    line-height: 12.214px;
  }

  .reference-list a::before {
    display: inline-block;
    width: 0.763px;
    height: 7.634px;
    margin-right: 3.053px;
    border-radius: 6.107px;
    background: #161616;
    content: "";
  }

  .reference-list span {
    margin-top: 3.053px;
    padding: 2.29px 3.817px;
    border-radius: 2.29px;
    font-size: 6.87px;
    line-height: 9.16px;
  }

  .reference-list span,
  .education-tag {
    color: #d86015;
  }

  .education-section {
    position: absolute;
    top: 245.946px;
    left: 39.692px;
    width: 693.13px;
    height: 58.881px;
    padding: 0;
  }

  .education-list {
    grid-template-columns: 141.221px 99.237px 103.053px 101.527px 187.023px;
    gap: 15.267px;
    margin-top: 8.397px;
  }

  .education-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3.053px 4px;
  }

  .education-period {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    color: #161616;
  }

  .education-period::before {
    display: inline-block;
    width: 0.763px;
    height: 7.634px;
    margin-right: 3.053px;
    border-radius: 6.107px;
    background: #161616;
    content: "";
  }

  .education-tag {
    grid-row: 2;
  }

  .education-list strong,
  .education-list time,
  .education-period {
    font-size: 6.87px;
    line-height: 9.16px;
  }

  .education-tag {
    padding: 2.29px 3.817px;
    border-radius: 2.29px;
    font-size: 6.107px;
    line-height: 7.634px;
  }
}

@media (min-width: 1000px) and (max-width: 1279px) {
  .cv-sheet {
    margin-bottom: 300.573px;
    transform: scale(1.15);
    transform-origin: top center;
  }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .cv-sheet {
    margin-bottom: 601.145px;
    transform: scale(1.3);
    transform-origin: top center;
  }
}

@media (min-width: 1600px) {
  .cv-sheet {
    margin-bottom: 1001.909px;
    transform: scale(1.5);
    transform-origin: top center;
  }
}

.floating-menu {
  position: fixed;
  z-index: 90;
  bottom: 32px;
  left: 50%;
  width: 404.603px;
  height: 39.569px;
  font-family: "Plus Jakarta Sans", var(--body-font);
  transform: translateX(-50%) scale(1.5);
  transform-origin: bottom center;
}

.floating-menu-desktop {
  display: flex;
  width: 404.603px;
  height: 39.569px;
  gap: 6.586px;
}

.floating-menu-mobile {
  display: none;
}

.floating-menu a {
  color: #201f1f;
  text-decoration: none;
}

.floating-menu-brand,
.floating-menu-nav {
  height: 39.569px;
  border: 1.164px solid #fff;
  border-radius: 13.966px;
  background: rgba(255, 252, 246, 0.28);
  box-shadow: 0 4px 4px rgba(216, 96, 21, 0.08);
  backdrop-filter: blur(4.364px);
  -webkit-backdrop-filter: blur(4.364px);
}

.floating-menu-brand {
  position: relative;
  width: 102.414px;
  flex: 0 0 102.414px;
}

.floating-menu-brand img {
  position: absolute;
  top: 11.06px;
  left: 19.2px;
  width: 63.836px;
  height: 17.457px;
  max-width: none;
}

.floating-menu-nav {
  display: flex;
  width: 295.603px;
  flex: 0 0 295.603px;
  align-items: center;
  gap: 20px;
  padding: 3px 4px 3px 22px;
  background: rgba(255, 252, 246, 0.3);
}

.floating-menu-links {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.floating-menu-links a {
  font-size: 8px;
  font-weight: 500;
  line-height: 10.4px;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-menu-contact {
  position: relative;
  z-index: 0;
  display: flex;
  width: 97.759px;
  height: 32.586px;
  flex: 0 0 97.759px;
  align-items: center;
  justify-content: center;
  border: 0.873px solid #13286e;
  border-radius: 11.638px;
  background: transparent;
  box-shadow: none;
  color: #fff !important;
  font-size: 9.31px;
  font-weight: 700;
  isolation: isolate;
  line-height: 13.966px;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-menu-contact::before,
.floating-menu-contact::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-menu-contact::before {
  background: linear-gradient(203.26011171361273deg, #254ed4 12.227%, #13286e 67.218%);
  box-shadow:
    inset 0 -2.909px 7.565px #4671ff,
    inset 0 33.75px 4.481px -30.841px rgba(24, 58, 170, 0.6);
  opacity: 1;
}

.floating-menu-contact::after {
  background: linear-gradient(34.93334129362756deg, #254ed4 34.14%, #13286e 79.722%);
  box-shadow:
    inset 0 -5px 9.1px #4671ff,
    inset 0 1px 4.9px 4px rgba(24, 58, 170, 0.6);
  opacity: 0;
}

.floating-menu-contact > span {
  position: relative;
  z-index: 1;
}

.floating-menu-links a:hover,
.floating-menu-links a:focus-visible {
  color: #1c54fa;
}

.floating-menu-contact:focus-visible {
  border-color: #13286e;
}

.floating-menu-contact:focus-visible::before {
  opacity: 0;
}

.floating-menu-contact:focus-visible::after {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .floating-menu-contact:hover::before {
    opacity: 0;
  }

  .floating-menu-contact:hover::after {
    opacity: 1;
  }
}

.cv-download-control {
  --cv-visual-half: 400px;
  position: fixed;
  z-index: 89;
  bottom: 32px;
  left: calc(50% + var(--cv-visual-half) + 6px);
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 4px 12px rgba(32, 31, 31, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #201f1f;
  font-family: "Plus Jakarta Sans", var(--body-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cv-download-label {
  display: none;
  font-size: 10px;
}

.cv-download-arrow {
  display: block;
  transform: translateY(-1px);
}

@media (min-width: 880px) {
  .cv-download-control {
    display: flex;
  }
}

@media (min-width: 1000px) and (max-width: 1279px) {
  .cv-download-control { --cv-visual-half: 460px; }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .cv-download-control {
    --cv-visual-half: 520px;
    width: 70px;
    gap: 5px;
  }

  .cv-download-label { display: block; }
}

@media (min-width: 1600px) {
  .cv-download-control {
    --cv-visual-half: 600px;
    width: 70px;
    gap: 5px;
  }

  .cv-download-label { display: block; }
}

@media (hover: hover) and (pointer: fine) {
  .cv-download-control:hover {
    background: rgba(255, 252, 246, 0.98);
    color: #1c54fa;
    transform: translateY(-1px);
  }
}

.floating-menu a:focus-visible {
  outline: 2px solid #1c54fa;
  outline-offset: 2px;
}

.mobile-menu-toggle:focus-visible {
  outline: none;
}

html.keyboard-navigation .mobile-menu-toggle:focus-visible {
  outline: 2px solid #1c54fa;
  outline-offset: 2px;
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .floating-menu {
    transform: translateX(-50%) scale(1.5);
  }
}

@media (min-width: 1600px) {
  .floating-menu {
    transform: translateX(-50%) scale(1.5);
  }
}

@media (max-width: 799px) {
  .floating-menu {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    height: 56px;
    transform: none;
  }

  .floating-menu.is-mobile-open {
    height: 268.8px;
  }

  .floating-menu-desktop {
    display: none;
  }

  .floating-menu-mobile {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .mobile-menu-panel-shell {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 207.2px;
    opacity: 0;
    transform: translateY(8px) scale(0.988);
    transform-origin: bottom center;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 360ms;
  }

  .floating-menu.is-mobile-open .mobile-menu-panel-shell {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-menu-panel-clip {
    width: 100%;
    height: 207.2px;
    overflow: hidden;
  }

  .mobile-menu-panel {
    display: grid;
    width: 100%;
    height: 207.2px;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 14px;
    padding: 16.8px;
    border: 1px solid #fff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 4px rgba(216, 96, 21, 0.08);
    backdrop-filter: blur(11.8px);
    -webkit-backdrop-filter: blur(11.8px);
  }

  .mobile-menu-panel a {
    display: flex;
    min-width: 0;
    height: 22.4px;
    align-items: center;
    justify-content: flex-start;
    gap: 5.6px;
    padding-inline: 2px;
    border-radius: 5px;
    color: #201f1f;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    transition:
      background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
      color 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-panel a img {
    width: 22.4px;
    height: 22.4px;
    flex: 0 0 22.4px;
  }

  .mobile-menu-divider {
    display: block;
    width: 100%;
    height: 1.4px;
  }

  .motion-ready .floating-menu.is-mobile-open .mobile-menu-panel a,
  .motion-ready .floating-menu.is-mobile-open .mobile-menu-divider {
    animation: mobile-menu-item-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .floating-menu.is-mobile-open .mobile-menu-panel > :nth-child(2) { animation-delay: 24ms; }
  .motion-ready .floating-menu.is-mobile-open .mobile-menu-panel > :nth-child(3) { animation-delay: 48ms; }
  .motion-ready .floating-menu.is-mobile-open .mobile-menu-panel > :nth-child(4) { animation-delay: 72ms; }
  .motion-ready .floating-menu.is-mobile-open .mobile-menu-panel > :nth-child(5) { animation-delay: 96ms; }
  .motion-ready .floating-menu.is-mobile-open .mobile-menu-panel > :nth-child(6) { animation-delay: 120ms; }
  .motion-ready .floating-menu.is-mobile-open .mobile-menu-panel > :nth-child(7) { animation-delay: 144ms; }

  .mobile-menu-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    width: 100%;
    height: 56px;
    grid-template-columns: minmax(112px, 2fr) minmax(0, 3fr);
    gap: 6px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 0;
    display: flex;
    width: 100%;
    height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8.4px;
    padding: 0;
    border: 1.164px solid #fff;
    border-radius: 11px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    color: #201f1f;
    font-family: inherit;
    font-size: 18.2px;
    font-weight: 600;
    line-height: 20.8px;
    cursor: pointer;
    isolation: isolate;
    transition:
      color 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-toggle::before,
  .mobile-menu-toggle::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    content: "";
    pointer-events: none;
    transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-toggle::before {
    background: rgba(255, 252, 246, 0.95);
    box-shadow: 0 4px 4px rgba(216, 96, 21, 0.08);
    opacity: 1;
    backdrop-filter: blur(4.364px);
    -webkit-backdrop-filter: blur(4.364px);
  }

  .mobile-menu-toggle::after {
    background:
      linear-gradient(rgba(28, 84, 250, 0.3), rgba(28, 84, 250, 0.3)),
      #13286e;
    box-shadow: 0 4px 4px rgba(28, 84, 250, 0.08);
    opacity: 0;
    backdrop-filter: blur(11.8px);
    -webkit-backdrop-filter: blur(11.8px);
  }

  .mobile-menu-toggle > span {
    position: relative;
    z-index: 1;
  }

  .floating-menu.is-mobile-open .mobile-menu-toggle {
    border-color: #13286e;
    color: #fff;
  }

  .floating-menu.is-mobile-open .mobile-menu-toggle::before {
    opacity: 0;
  }

  .floating-menu.is-mobile-open .mobile-menu-toggle::after {
    opacity: 1;
  }

  .mobile-menu-icon {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
  }

  .mobile-menu-icon img {
    position: absolute;
    inset: 0;
    display: block;
    width: 25px;
    height: 25px;
    transition:
      opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-icon-hover,
  .mobile-menu-icon-active {
    opacity: 0;
    transform: rotate(-18deg) scale(0.82);
  }

  @media (hover: hover) and (pointer: fine) {
    .mobile-menu-toggle:not([aria-expanded="true"]):hover .mobile-menu-icon-default {
      opacity: 0;
      transform: rotate(18deg) scale(0.82);
    }

    .mobile-menu-toggle:not([aria-expanded="true"]):hover .mobile-menu-icon-hover {
      opacity: 1;
      transform: rotate(0) scale(1);
    }
  }

  html.keyboard-navigation .mobile-menu-toggle:not([aria-expanded="true"]):focus-visible .mobile-menu-icon-default {
    opacity: 0;
    transform: rotate(18deg) scale(0.82);
  }

  html.keyboard-navigation .mobile-menu-toggle:not([aria-expanded="true"]):focus-visible .mobile-menu-icon-hover {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  .floating-menu.is-mobile-open .mobile-menu-icon-default {
    opacity: 0;
    transform: rotate(18deg) scale(0.82);
  }

  .floating-menu.is-mobile-open .mobile-menu-icon-hover {
    opacity: 0;
    transform: rotate(-18deg) scale(0.82);
  }

  .floating-menu.is-mobile-open .mobile-menu-icon-active {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  .mobile-menu-contact {
    width: 100%;
    height: 56px;
    min-width: 0;
    flex: none;
    border-radius: 11px;
    font-size: 18.2px;
    line-height: 21px;
  }

  .cv-download-control {
    display: none;
  }
}

@keyframes mobile-menu-item-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about,
#kinh-nghiem-lam-viec,
#ky-nang-va-nang-luc,
#nguoi-tham-chieu {
  scroll-margin-top: 18px;
}

.motion-ready .card-reveal {
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.motion-ready .card-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px) scale(0.992);
}

.motion-ready .card-reveal .reveal-step {
  transition:
    opacity 480ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay, 0ms) + var(--reveal-step-delay, 0ms)),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay, 0ms) + var(--reveal-step-delay, 0ms));
}

.motion-ready .card-reveal:not(.is-visible) .reveal-step {
  opacity: 0;
  transform: translateY(10px);
}

/*
 * Motion purpose: reveal the already-declared competency level when its panel enters view.
 * Owner/cleanup: setupCompetencyProgress() / pagehide; interruption: settle at the final value;
 * reduced path: static final bars and markers with no active animation.
 */
.competency-progress-ready .competency-track > img:first-child {
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1)
    var(--progress-delay, 0ms);
}

.competency-progress-ready:not(.is-progress-visible) .competency-track > img:first-child {
  transform: scaleX(0);
}

.competency-progress-ready .competency-marker {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  transition:
    opacity 220ms ease-out calc(var(--progress-delay, 0ms) + 520ms),
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--progress-delay, 0ms) + 480ms);
}

.competency-progress-ready:not(.is-progress-visible) .competency-marker {
  opacity: 0;
  transform: translateY(-50%) scale(0.76);
}

.competency-progress-ready.is-progress-priming .competency-track > img:first-child,
.competency-progress-ready.is-progress-priming .competency-marker {
  transition: none;
}

.scroll-opacity-ready .scroll-opacity-text {
  color: transparent;
  background-image: linear-gradient(
    to bottom,
    rgba(22, 22, 22, 1) var(--scroll-full-stop, 0px),
    rgba(22, 22, 22, 0.28) var(--scroll-dim-stop, 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .achievement-item strong,
  .contact-item,
  .experience-heading h3 {
    transition:
      color 240ms cubic-bezier(0.4, 0, 0.2, 1),
      background-color 240ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .achievement-item:hover strong {
    background: #f9e3d5;
  }

  .contact-item:hover,
  .experience-entry:hover .experience-heading h3 {
    color: #ef7b34;
  }
}

@media (hover: hover) and (pointer: fine) {
  .reference-list li,
  .education-list li {
    transition:
      border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reference-list li:hover,
  .education-list li:hover {
    border-color: rgb(216 96 21 / 52%);
    background-color: #fffaf5;
    box-shadow: 0 10px 26px rgb(111 60 24 / 10%);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .reference-list li:hover,
  .education-list li:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 799px) {
  html {
    background: var(--white);
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .cv-sheet {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: none;
  }

  .section-shell {
    padding-inline: clamp(20px, 6vw, 30px);
  }

  .profile-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    grid-template-areas:
      "identity portrait"
      "contacts contacts";
    column-gap: 18px;
    row-gap: 23px;
    height: auto;
    min-height: 276px;
    padding: 27px clamp(20px, 6vw, 30px) 25px;
    background-position: 58% center;
  }

  .profile-identity {
    position: static;
    grid-area: identity;
    align-self: center;
    min-width: 0;
  }

  .profile-identity h1 {
    max-width: 220px;
    font-size: clamp(25px, 8.4vw, 32px);
    line-height: 1.02;
  }

  .profile-role {
    max-width: 170px;
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .profile-mascot {
    display: none;
  }

  .profile-portrait {
    position: relative;
    grid-area: portrait;
    align-self: start;
    width: 104px;
    height: 130px;
    border-width: 3px;
    border-bottom: 3px solid var(--white);
    border-radius: 17px;
  }

  .profile-portrait img {
    object-position: 50% 18%;
  }

  .contact-list {
    position: static;
    grid-area: contacts;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    grid-auto-flow: row;
    grid-template-rows: none;
    width: 100%;
    max-width: none;
    font-size: 12px;
    line-height: 1.35;
  }

  .contact-item {
    align-items: flex-start;
    gap: 7px;
    white-space: normal;
  }

  .contact-item a,
  .contact-item span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-icon {
    width: 15px;
    height: 15px;
    margin-top: 1px;
  }

  .contact-separator {
    display: none;
  }

  .intro-achievements {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-top: 34px;
    padding-bottom: 37px;
  }

  .intro-achievements h2,
  .section-title-row h2,
  .references-section > h2,
  .education-section > h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  .introduction-copy {
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.64;
  }

  .introduction-copy p + p {
    margin-top: 13px;
  }

  .achievement-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 17px;
  }

  .achievement-item {
    align-items: center;
    min-height: 66px;
    padding-block: 12px;
    border-bottom: 1px solid var(--divider);
  }

  .achievement-item:last-child {
    border-bottom: 0;
  }

  .achievement-item h3 {
    font-size: 14px;
    line-height: 1.35;
  }

  .achievement-item p {
    margin-top: 5px;
    font-size: 12px;
  }

  .achievement-item strong {
    min-height: 26px;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 11px;
  }

  .experience-section {
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .section-title-row {
    display: grid;
    gap: 8px;
  }

  .section-title-row > p {
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
  }

  .career-timeline {
    grid-template-columns: 1fr;
    width: auto;
    gap: 10px;
    margin: 24px 0 30px;
    padding-left: 0;
  }

  .career-timeline::before {
    display: none;
  }

  .career-timeline li {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    align-items: center;
    gap: 8px;
    padding: 11px 13px;
    text-align: left;
  }

  .timeline-dot {
    display: none;
  }

  .career-timeline strong {
    grid-column: 1;
    font-size: 13px;
    line-height: 1.35;
  }

  .career-timeline li > span:last-child {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    padding-left: 0;
    font-size: 11.5px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .experience-list {
    gap: 28px;
    width: auto;
  }

  .experience-entry {
    padding-bottom: 27px;
  }

  .experience-heading {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
  }

  .experience-heading h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .experience-heading p {
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .responsibility-column li,
  .result-column li,
  .skill-group li {
    padding-left: 15px;
    font-size: 13.5px;
    line-height: 1.62;
  }

  .responsibility-column li::before,
  .result-column li::before,
  .skill-group li::before {
    top: 0.68em;
    width: 4px;
    height: 4px;
  }

  .responsibility-column li + li,
  .result-column li + li {
    margin-top: 11px;
  }

  .result-column {
    padding: 18px 0 0;
    border-top: 1px solid #ded8d1;
    border-left: 0;
  }

  .result-heading {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .closing-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 33px;
    padding-bottom: 40px;
    border-top-color: var(--divider);
  }

  .skills-section {
    padding: 0;
  }

  .skills-layout {
    grid-template-columns: 1fr;
    gap: 31px;
    margin-top: 24px;
  }

  .skill-groups {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .skill-group {
    padding: 16px;
  }

  .skill-group h3,
  .competency-card h3 {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .skill-group li + li {
    margin-top: 6px;
  }

  .competency-card {
    padding: 20px 16px 12px;
    border: 1px solid var(--divider);
    border-radius: 10px;
    background: var(--paper);
  }

  .competency-radar {
    display: none;
  }

  .radar-mobile-graphic {
    display: block;
    width: 160px;
    height: 160px;
    margin: 16px auto 0;
    background-image:
      url("./assets/figma-exact/radar-value.svg"),
      url("./assets/figma-exact/radar-grid.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 132px 138px, 160px 160px;
  }

  .radar-labels {
    display: none;
  }

  .radar-mobile-legend {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin: 18px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--divider);
    color: #393531;
    font-size: 12.5px;
    line-height: 1.45;
    list-style-position: inside;
  }

  .references-section,
  .education-section {
    padding-top: 32px;
    border-top: 1px solid var(--divider);
  }

  .reference-list,
  .education-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 17px;
  }

  .reference-list li,
  .education-list li {
    padding-block: 12px;
    border-bottom: 1px solid var(--divider);
  }

  .reference-list li:last-child,
  .education-list li:last-child {
    border-bottom: 0;
  }

  .reference-list strong,
  .education-list strong {
    font-size: 13.5px;
    line-height: 1.4;
  }

  .reference-list a,
  .education-list time,
  .education-period,
  .reference-list span,
  .education-tag {
    font-size: 12px;
    line-height: 1.45;
  }

}

/* Mobile closing section: intentional reflow instead of a stacked desktop table. */
@media (max-width: 799px) {
  .profile-header {
    grid-template-columns: minmax(0, 1fr) 112px;
    column-gap: 18px;
    row-gap: 18px;
    min-height: 0;
    padding: 24px clamp(20px, 6vw, 30px);
  }

  .profile-identity {
    align-self: start;
    padding-top: 2px;
  }

  .profile-identity h1 {
    max-width: none;
    font-size: clamp(29px, 8.05vw, 38px);
    letter-spacing: 0.018em;
    line-height: 0.99;
  }

  .profile-role {
    max-width: none;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .profile-portrait {
    inset: auto;
    width: 112px;
    height: 140px;
  }

  .contact-list {
    gap: 10px 16px;
  }

  .competency-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    grid-template-areas:
      "competency-title competency-title"
      "competency-graphic competency-legend";
    align-items: center;
    gap: 14px 16px;
    padding: 18px;
  }

  .competency-card > h3 {
    grid-area: competency-title;
    margin: 0;
    text-align: left;
  }

  .radar-mobile-graphic {
    grid-area: competency-graphic;
    width: 128px;
    height: 128px;
    margin: 0;
    background-size: 106px 111px, 128px 128px;
  }

  .radar-mobile-legend {
    grid-area: competency-legend;
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 0;
    padding: 0;
    border-top: 0;
    font-size: 12px;
    line-height: 1.35;
    list-style: none;
  }

  .radar-mobile-legend li {
    position: relative;
    padding-left: 11px;
  }

  .radar-mobile-legend li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
  }

  .reference-list,
  .education-list {
    gap: 10px;
  }

  .reference-list li,
  .education-list li {
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid #eadfd5;
    border-radius: 10px;
    background: #fffdf9;
  }

  .reference-list li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 12px;
    align-items: start;
  }

  .reference-list strong {
    grid-column: 1;
    min-width: 0;
  }

  .reference-list a {
    grid-column: 2;
    max-width: 150px;
    overflow-wrap: anywhere;
    text-align: right;
    white-space: normal;
  }

  .reference-list span {
    grid-column: 1 / -1;
    width: fit-content;
    max-width: 100%;
    margin-top: 0;
    overflow-wrap: anywhere;
  }

  .education-list li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: start;
  }

  .education-heading {
    display: contents;
  }

  .education-list strong {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .education-period {
    grid-column: 2;
    grid-row: 1;
    padding-top: 1px;
    text-align: right;
  }

  .education-tag {
    grid-column: 1 / -1;
    grid-row: 2;
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 560px) and (max-width: 799px) {
  .name-line {
    display: inline;
  }

  .competency-card {
    grid-template-columns: 160px minmax(0, 1fr);
    column-gap: 24px;
  }

  .radar-mobile-graphic {
    width: 160px;
    height: 160px;
    background-size: 132px 138px, 160px 160px;
  }

  .radar-mobile-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 18px;
  }

  .reference-list,
  .education-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 559px) {
  .name-line {
    display: block;
    white-space: nowrap;
  }

  .role-line {
    display: block;
  }

  .role-separator {
    display: none;
  }
}

@media (max-width: 359px) {
  .profile-header {
    grid-template-columns: minmax(0, 1fr) 88px;
    column-gap: 13px;
  }

  .profile-identity h1 {
    font-size: clamp(20px, 7.2vw, 26px);
  }

  .profile-portrait {
    width: 88px;
    height: 116px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .career-timeline li {
    grid-template-columns: 1fr;
  }

  .career-timeline li > span:last-child {
    grid-column: 1;
    grid-row: 2;
  }

  .education-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Figma revision 524:1553 — updated skills, references and education composition. */
.closing-section {
  display: block;
  height: auto;
}

.skills-layout-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.skill-matrix {
  display: grid;
  grid-template-columns: 1fr;
}

.skill-panel {
  position: relative;
  min-width: 0;
  padding: 42px 16px 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
}

.skill-panel h3,
.competency-panel > h3 {
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 7px 12px;
  border-radius: 0 0 7px;
  background: #d9d9d9;
  color: #161616;
  font-family: var(--sf-font);
  font-size: 13px;
  font-weight: 590;
  line-height: 1.2;
}

.skill-panel ul,
.competency-bars {
  margin: 0;
  padding: 0;
}

.skill-panel ul {
  padding-left: 18px;
  color: #161616;
  font-family: var(--sf-font);
  font-size: 12.5px;
  font-weight: 510;
  line-height: 1.55;
  list-style: disc;
}

.skill-panel li + li {
  margin-top: 2px;
}

.competency-panel {
  position: relative;
  min-width: 0;
  padding: 58px 16px 20px;
  border: 1px solid rgb(216 96 21 / 30%);
  background: #fcf0e8;
}

.competency-panel > h3 {
  width: 74.2px;
  height: 32.2px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  color: #fff;
  isolation: isolate;
}

.competency-panel > h3 > img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.competency-bars {
  display: grid;
  gap: 15px;
  list-style: none;
}

.competency-item {
  min-width: 0;
  color: #161616;
  font-family: var(--sf-font);
  font-size: 12px;
  font-weight: 510;
  line-height: 1.3;
}

.competency-track {
  position: relative;
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 6px;
  background: url("./assets/figma-skills/bar-track.svg") center / 100% 100% no-repeat;
}

.competency-track > img:first-child {
  display: block;
  width: var(--competency-width);
  height: 100%;
}

.competency-marker {
  position: absolute;
  top: 50%;
  left: var(--marker-position);
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
}

@media (min-width: 560px) and (max-width: 799px) {
  .skill-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skill-panel {
    min-height: 174px;
  }
}

@media (max-width: 799px) {
  .closing-section {
    position: static;
    padding-top: 34px;
    /* Together with the fixed menu inset, this leaves 24px from the last item to the menu. */
    padding-bottom: 8px;
  }

  .skills-section,
  .references-section,
  .education-section {
    position: static;
    width: auto;
    height: auto;
  }

  .references-section,
  .education-section {
    margin-top: 34px;
    padding-top: 30px;
  }
}

/* Mobile reading order requested by the owner: identity, role, portrait, contacts. */
@media (max-width: 799px) {
  .profile-header {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px clamp(22px, 6vw, 30px) 30px;
    overflow: hidden;
    background-position: center;
  }

  .profile-identity {
    width: 100%;
    padding: 0;
  }

  .profile-identity h1 {
    max-width: none;
    font-family: Cambria, Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 7.8vw, 31px);
    font-weight: 700;
    font-variant-ligatures: none;
    letter-spacing: 0.004em;
    line-height: 1.08;
    text-transform: none;
    white-space: nowrap;
  }

  .name-line,
  .role-line,
  .role-separator {
    display: inline;
  }

  .profile-role {
    max-width: none;
    margin-top: 14px;
    font-family: "Plus Jakarta Sans", var(--body-font);
    font-size: clamp(10.5px, 3.05vw, 12px);
    line-height: 1.4;
    white-space: nowrap;
  }

  .profile-portrait {
    position: static;
    width: min(58vw, 220px);
    aspect-ratio: 1;
    height: auto;
    margin: 26px 0 0;
    overflow: hidden;
    border: 3px solid var(--white);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.34);
  }

  .profile-portrait img {
    position: static;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transform: none;
  }

  .contact-list {
    display: grid;
    width: 100%;
    grid-template-columns: max-content max-content;
    justify-content: start;
    gap: 8px 18px;
    margin-top: 18px;
    font-size: clamp(10.5px, 3.05vw, 12px);
    line-height: 1.4;
  }

  .contact-item {
    align-items: center;
    min-width: 0;
    gap: 7px;
    white-space: nowrap;
  }

  .contact-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin: 0;
  }

  .intro-achievements {
    padding-top: 40px;
  }
}

@media (max-width: 319px) {
  .contact-list {
    gap: 8px;
    font-size: 9.5px;
  }
}

@media (min-width: 800px) {
  .cv-sheet {
    height: 2186px;
  }

  .closing-section {
    position: relative;
    height: 513.43px;
    margin-top: 1.768px;
    padding: 0;
    border-top: 0;
  }

  .skills-section {
    position: absolute;
    top: 19.34px;
    left: 39.572px;
    width: 703.119px;
    height: 296px;
  }

  .skills-layout-v2 {
    position: relative;
    display: block;
    width: 703.119px;
    height: 266px;
    margin-top: 10px;
  }

  .skill-matrix {
    position: absolute;
    top: 0.43px;
    left: -0.12px;
    grid-template-columns: 234px 231px;
    grid-template-rows: 136px 130px;
    justify-content: start;
    width: 469px;
    height: 266px;
  }

  .skill-panel {
    height: auto;
    padding: 32.24px 6.32px 4px 17.765px;
    border: 1px solid #e8e8e8;
  }

  .skill-panel:nth-child(odd) {
    width: 235px;
  }

  .skill-panel:nth-child(-n + 2) {
    height: 137px;
  }

  .skill-panel h3,
  .competency-panel > h3 {
    min-height: 22.782px;
    padding: 5.344px;
    border-radius: 0 0 5.344px;
    font-size: 8px;
    line-height: 12px;
    white-space: nowrap;
  }

  .skill-panel h3 {
    top: -1px;
    left: -0.8px;
    width: 78.687px;
  }

  .skill-panel:nth-child(2) h3 { width: 78.291px; }
  .skill-panel:nth-child(3) h3 { width: 124.687px; }
  .skill-panel:nth-child(4) h3 { width: 87.687px; }

  .skill-panel ul {
    padding-left: 0;
    font-size: 7.63px;
    line-height: 12px;
    list-style: disc;
  }

  .skill-panel li + li {
    margin-top: 0;
  }

  .competency-panel {
    position: absolute;
    top: 0.43px;
    left: 468.88px;
    width: 235px;
    height: 266px;
    padding: 0;
  }

  .competency-panel > h3 {
    top: -1px;
    left: -1px;
    width: 53px;
    height: 23px;
    min-height: 0;
    padding: 0;
  }

  .competency-bars {
    position: absolute;
    inset: 0;
    display: block;
  }

  .competency-item {
    position: absolute;
    left: 13.12px;
    width: 206px;
    height: 21px;
    font-size: 6.844px;
    line-height: 8.556px;
  }

  .competency-item:nth-child(1) { top: 37.306px; height: 19px; }
  .competency-item:nth-child(2) { top: 64.306px; }
  .competency-item:nth-child(3) { top: 93.306px; }
  .competency-item:nth-child(4) { top: 122.306px; }
  .competency-item:nth-child(5) { top: 151.306px; }
  .competency-item:nth-child(6) { top: 180.306px; }
  .competency-item:nth-child(7) { top: 209.306px; }

  .competency-track {
    width: 206px;
    height: 4px;
    margin-top: 6.444px;
  }

  .competency-item:first-child .competency-track {
    margin-top: 4.444px;
  }

  .competency-marker {
    width: 8px;
    height: 8px;
  }

  .references-section {
    position: absolute;
    top: 331.34px;
    left: 39.572px;
    width: 703.119px;
    padding: 0;
    border: 0;
  }

  .reference-list {
    grid-template-columns: 167.763px 118.763px 112.763px 101.763px 117px;
    gap: 16px;
    margin-top: 10px;
  }

  .reference-list li {
    grid-template-columns: max-content max-content;
    column-gap: 3px;
  }

  .reference-list strong,
  .reference-list a {
    font-size: 8.397px;
    font-weight: 700;
  }

  .reference-list strong {
    line-height: 13.74px;
  }

  .reference-list a {
    align-self: center;
    line-height: 12.214px;
  }

  .reference-list a::before {
    width: 0.763px;
    height: 7.634px;
    margin-right: 3px;
  }

  .reference-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 2.29px 3.817px;
    font-size: 6.87px;
    font-weight: 700;
    line-height: normal;
  }

  .reference-list li:last-child span {
    width: 100%;
    height: 14px;
    font-size: 7.634px;
  }

  .education-section {
    position: absolute;
    top: 409.34px;
    left: 39.572px;
    width: 693.13px;
    height: 58.881px;
    padding: 0;
  }

  .education-list {
    grid-template-columns: 141.221px 99.237px 103.053px 101.527px 187.023px;
    gap: 15.267px;
    margin-top: 8.397px;
  }

  .education-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.053px;
  }

  .education-heading {
    display: flex;
    width: 100%;
    height: 14px;
    align-items: center;
    gap: 3.053px;
  }

  .education-list strong {
    font-size: 8.397px;
    font-weight: 700;
    line-height: 13.74px;
  }

  .education-list time,
  .education-period {
    font-size: 6.87px;
    font-weight: 700;
    line-height: 12.214px;
  }

  .education-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.29px 3.817px;
    font-size: 6.87px;
    font-weight: 700;
    line-height: normal;
  }
}

@media (min-width: 1000px) and (max-width: 1279px) {
  .page-gradient-background { --cv-column-width: 920px; }
  .cv-sheet { margin-bottom: 327.9px; }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .page-gradient-background { --cv-column-width: 1040px; }
  .cv-sheet { margin-bottom: 655.8px; }
}

@media (min-width: 1600px) {
  .page-gradient-background { --cv-column-width: 1200px; }
  .cv-sheet { margin-bottom: 1093px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }

  .motion-ready .reveal,
  .motion-ready .reveal:not(.is-visible),
  .motion-ready .card-reveal,
  .motion-ready .card-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .card-reveal .reveal-step,
  .motion-ready .card-reveal:not(.is-visible) .reveal-step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}

@media (forced-colors: active) {
  .timeline-dot,
  .responsibility-column li::before,
  .result-column li::before,
  .skill-group li::before {
    background: CanvasText;
    forced-color-adjust: none;
  }

  .profile-portrait,
  .competency-card,
  .experience-entry,
  .achievement-item {
    border-color: CanvasText;
  }
}

@media (max-width: 799px) and (hover: hover) and (pointer: fine) {
  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus-visible {
    background-color: rgba(216, 96, 21, 0.09);
    color: #201f1f;
  }
}

@media print {
  @page {
    size: A4;
    margin: 8mm;
  }

  html,
  body {
    background: var(--white);
  }

  body {
    padding-bottom: 0;
  }

  .page-gradient-background {
    display: none !important;
  }

  .cv-sheet {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: visible;
    box-shadow: none;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .skip-link {
    display: none;
  }

  .floating-menu,
  .cv-download-control,
  .intro-loader {
    display: none;
  }

  .motion-ready .reveal,
  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .card-reveal,
  .motion-ready .card-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .card-reveal .reveal-step,
  .motion-ready .card-reveal:not(.is-visible) .reveal-step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .career-timeline li:first-child {
    background: #161616 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .career-timeline li:first-child strong,
  .career-timeline li:first-child > span:last-child {
    background: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }

  .competency-track > img:first-child {
    opacity: 1 !important;
    transform: scaleX(1) !important;
  }

  .competency-marker {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1) !important;
  }

  .scroll-opacity-ready .scroll-opacity-text {
    color: inherit;
    background: none;
    -webkit-text-fill-color: currentColor;
  }

  .experience-entry,
  .skill-group,
  .competency-card,
  .references-section,
  .education-section {
    break-inside: avoid;
  }
}
