@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Pretendard/Pretendard.css");

:root {
  --blue: #2a49e8;
  --page: #eeeeee;
  --white: #ffffff;
  --ink: #111111;
  --stage-width: min(100vw, 1920px);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--blue);
  color: var(--white);
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.loader {
  align-items: center;
  background: var(--page);
  color: var(--blue);
  display: grid;
  inset: 0;
  justify-items: center;
  position: fixed;
  z-index: 10;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loader__spinner {
  animation: spinnerRotate 760ms linear infinite;
  border: 5px solid rgba(47, 70, 223, 0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  height: 58px;
  width: 58px;
}

body:not(.is-loading) .loader {
  opacity: 0;
  visibility: hidden;
}

.portfolio-stage {
  align-items: center;
  display: grid;
  height: 100vh;
  justify-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  width: var(--stage-width);
}

.slide-track {
  display: flex;
  height: 100vh;
  transform: translateX(0);
  transition: transform 1200ms cubic-bezier(0.76, 0, 0.24, 1);
  width: calc(var(--stage-width) * 10);
}

body.is-page-two .slide-track {
  transform: translateX(calc(var(--stage-width) * -1));
}

body.is-page-three .slide-track {
  transform: translateX(calc(var(--stage-width) * -2));
}

body.is-page-four .slide-track {
  transform: translateX(calc(var(--stage-width) * -3));
}

body.is-page-five .slide-track {
  transform: translateX(calc(var(--stage-width) * -4));
}

body.is-page-six .slide-track {
  transform: translateX(calc(var(--stage-width) * -5));
}

body.is-page-seven .slide-track {
  transform: translateX(calc(var(--stage-width) * -6));
}

body.is-page-eight .slide-track {
  transform: translateX(calc(var(--stage-width) * -7));
}

body.is-page-nine .slide-track {
  transform: translateX(calc(var(--stage-width) * -8));
}

body.is-page-ten .slide-track {
  transform: translateX(calc(var(--stage-width) * -9));
}

.blueprint {
  background: var(--blue);
  flex: 0 0 var(--stage-width);
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  width: var(--stage-width);
}

.arrow-button {
  --arrow-filter: brightness(0) invert(1);
  --arrow-filter-hover: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  appearance: none;
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  padding: 0;
  transition: transform 180ms ease;
  width: 64px;
}

.arrow-button img {
  display: block;
  height: auto;
  filter: var(--arrow-filter);
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
  width: 100%;
}

.arrow-button:hover img,
.arrow-button:focus-visible img {
  filter: var(--arrow-filter-hover);
  opacity: 1;
}

.arrow-button--right {
  animation: arrowNudgeRight 1.8s ease-in-out infinite;
}

.arrow-button--left {
  animation: arrowNudgeLeft 1.8s ease-in-out infinite;
}

.arrow-button--left img {
  transform: scaleX(-1);
}

.arrow-button--right:hover,
.arrow-button--right:focus-visible {
  animation-play-state: paused;
  transform: translateX(8px) scale(1.08);
}

.arrow-button--right:active {
  transform: translateX(11px) scale(0.98);
}

.arrow-button--left:hover,
.arrow-button--left:focus-visible {
  animation-play-state: paused;
  transform: translateX(-8px) scale(1.08);
}

.arrow-button--left:active {
  transform: translateX(-11px) scale(0.98);
}

.arrow-button--dark {
  --arrow-filter: brightness(0) saturate(100%) invert(21%) sepia(92%) saturate(2840%) hue-rotate(228deg) brightness(95%) contrast(95%);
  --arrow-filter-hover: brightness(0) saturate(100%) invert(21%) sepia(92%) saturate(2840%) hue-rotate(228deg) brightness(95%) contrast(95%) drop-shadow(0 0 10px rgba(42, 73, 232, 0.45));
}

.top-arrow {
  position: absolute;
  right: 50px;
  top: 75px;
  z-index: 5;
}

.window-panel {
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.45);
  box-shadow: 18px 22px 38px rgba(15, 28, 125, 0.34);
  color: var(--blue);
  display: flex;
  flex-direction: column;
  left: 50%;
  height: 88%;
  min-height: 596px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 72px);
  border-radius: 5px;
}

.window-bar {
  align-items: center;
  border-bottom: 3px solid var(--blue);
  display: flex;
  gap: 8px;
  height: 31px;
  justify-content: flex-end;
  margin-left: -6px;
  padding-right: 10px;
  position: relative;
  width: calc(100% + 12px);
  z-index: 1;
}

.chart-panel .window-bar {
  z-index: 3;
}

.window-bar span {
  display: block;
  position: relative;
}

.window-bar span:nth-child(1) {
  background: var(--blue);
  height: 3px;
  width: 17px;
}

.window-bar span:nth-child(2) {
  border: 3px solid var(--blue);
  height: 15px;
  width: 15px;
}

.window-bar span:nth-child(3) {
  height: 18px;
  width: 18px;
}

.window-bar span:nth-child(3)::before,
.window-bar span:nth-child(3)::after {
  background: var(--blue);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 20px;
}

.window-bar span:nth-child(3)::before {
  transform: rotate(45deg);
}

.window-bar span:nth-child(3)::after {
  transform: rotate(-45deg);
}

.page-nav {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  padding: 18px 36px;
  position: relative;
  z-index: 2;
}

.contents-page,
.profile-page,
.mindset-page,
.growth-page,
.competency-page,
.stack-page,
.motivation-page {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.contents-page,
.profile-page,
.mindset-page,
.growth-page,
.competency-page,
.stack-page,
.motivation-page,
.projects-sidebar,
.projects-panel__body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.contents-page::-webkit-scrollbar,
.profile-page::-webkit-scrollbar,
.mindset-page::-webkit-scrollbar,
.growth-page::-webkit-scrollbar,
.competency-page::-webkit-scrollbar,
.stack-page::-webkit-scrollbar,
.motivation-page::-webkit-scrollbar,
.projects-sidebar::-webkit-scrollbar,
.projects-panel__body::-webkit-scrollbar {
  display: none;
}

.contents-page {
  display: flex;
  flex-direction: column;
}

.contents-arrow {
}

.contents-arrow--prev {
}

.contents-arrow--prev img {
}

.contents-arrow--next {
}

.contents-heading {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  padding: 32px 112px 0;
  position: relative;
  z-index: 1;
}

.contents-heading h2 {
  align-items: center;
  display: flex;
  font-size: clamp(4.0rem, 5.9vw, 5.625rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.contents-heading h2 span {
}

.contents-caret {
  animation: caretBlink 720ms steps(1, end) infinite;
  background: var(--blue);
  display: inline-block;
  height: 0.9em;
  margin-left: 12px;
  width: 4px;
}

.contents-heading p {
  color: rgba(47, 70, 223, 0.58);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  margin: 17px 72px 0 0;
  opacity: 0;
  text-align: right;
  transform: translateX(72px);
}

body.page-entered.is-page-two .contents-heading p {
  animation: descriptionIn 820ms cubic-bezier(0.22, 1, 0.36, 1) 760ms forwards;
}

.folder-list {
  display: flex;
  min-height: 0;
  width: 90%;
  margin: 6% auto;
  justify-content: center;
}

.folder {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--white);
  cursor: pointer;
  display: block;
  outline: none;
  padding: 0;
  position: relative;
  text-align: left;
  opacity: 0;
  transform: translateY(44px) scale(0.94);
  width: 225px;
  margin: 0px 21px;
}

.folder:nth-child(2),
.folder:nth-child(4) {
  transform: translateY(68px) scale(0.94);
}

body.page-entered.is-page-two .folder {
  animation: folderIn 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-two .folder:nth-child(1) {
  animation-delay: 980ms;
}

body.page-entered.is-page-two .folder:nth-child(2) {
  animation-name: folderInLower;
  animation-delay: 1100ms;
}

body.page-entered.is-page-two .folder:nth-child(3) {
  animation-delay: 1220ms;
}

body.page-entered.is-page-two .folder:nth-child(4) {
  animation-name: folderInLower;
  animation-delay: 1340ms;
}

body.page-entered.is-page-two .folder:nth-child(5) {
  animation-delay: 1460ms;
}

.folder img {
  display: block;
  filter: drop-shadow(0 12px 10px rgba(42, 73, 232, 0.16)) drop-shadow(0 22px 24px rgba(42, 73, 232, 0.12));
  height: auto;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 0;
}

.folder__label {
  bottom: 20%;
  display: flex;
  flex-direction: column;
  gap: 0;
  left: 20px;
  position: absolute;
  z-index: 1;
}

.folder strong {
  font-size: 3vw;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  position: relative;
}

.folder__label > span,
.folder small {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  position: relative;
}

.folder small {
  font-size: 0.9375rem;
}

.chart-panel {
}

.mindset-panel {
}

.profile-page {
  color: #555555;
  display: block;
  font-size: 1.25rem;
  padding: 38px;
  position: relative;
  z-index: 1;
}

.profile-title {
  color: var(--blue);
}

.profile-title,
.profile-side,
.profile-education,
.profile-skills,
.profile-career {
  opacity: 0;
  transform: translateY(36px);
}

body.page-entered.is-page-three .profile-title,
body.page-entered.is-page-three .profile-side,
body.page-entered.is-page-three .profile-education,
body.page-entered.is-page-three .profile-skills,
body.page-entered.is-page-three .profile-career {
  animation: sectionRiseIn 1260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-three .profile-title {
  animation-delay: 260ms;
}

body.page-entered.is-page-three .profile-side {
  animation-delay: 430ms;
}

body.page-entered.is-page-three .profile-education {
  animation-delay: 600ms;
}

body.page-entered.is-page-three .profile-skills {
  animation-delay: 760ms;
}

body.page-entered.is-page-three .profile-career {
  animation-delay: 920ms;
}

.profile-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.profile-title p {
  font-size: 1.5625rem;
  font-weight: 900;
  margin: 6px 0 0 55px;
  color: #3974ff;
}

.profile-page h3 {
  color: var(--blue);
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 25px;
}

.profile-page .p-1{
  display: flex;
}
.profile-page .p-1-1{
  width: 40%;
}
.profile-page .p-1-2{
  width: 60%;
}

.profile-page .p-1-2-1{
  display: flex;
  margin-bottom: 90px;
}

.profile-side {
  padding-left: 10%;
}

.profile-avatar {
  border: 2px solid #111111;
  border-radius: 50%;
  height: 260px;
  margin: 50px auto 50px 80px;
  overflow: hidden;
  position: relative;
  width: 260px;
}

.profile-avatar img {
  display: block;
  height: 100%;
  image-rendering: pixelated;
  object-fit: cover;
  width: 100%;
}

.profile-side section {
  margin: 55px 0 0;
  padding-left: 0;
}


.profile-page dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.profile-side dl{
  grid-template-columns: 155px minmax(0, 1fr);
}
.profile-education dl {
  grid-template-columns: 82px minmax(0, 1fr);
}

.profile-education dl,
.profile-skills dl {
  margin-top: 18px;
}

.profile-page dt {
  color: var(--blue);
  font-size: 1.375rem;
  font-weight: 900;
}

.profile-page dd {
  font-weight: 800;
  margin: 0;
}

.profile-skills{
  padding-left: 13%;
}
.profile-skills dl {
  align-items: center;
  column-gap: 14px;
  grid-template-columns: 194px 185px;
  row-gap: 12px;
}

.profile-skills dt {
  font-size: 1.375rem;
  color: #555555;
  white-space: nowrap;
}

.profile-skills dd {
  background: #dddddd;
  border-radius: 999px;
  height: 13px;
  overflow: hidden;
}

.profile-skills dd span {
  background: var(--blue);
  border-radius: inherit;
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  width: var(--level);
}

body.page-entered.is-page-three .profile-skills dd span {
  animation: skillFill 1200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-three .profile-skills dl div:nth-of-type(1) dd span,
body.page-entered.is-page-three .profile-skills dl dt:nth-of-type(1) + dd span,
body.page-entered.is-page-three .profile-skills dl dd:nth-of-type(1) span {
  animation-delay: 1250ms;
}

body.page-entered.is-page-three .profile-skills dl dd:nth-of-type(2) span {
  animation-delay: 1360ms;
}

body.page-entered.is-page-three .profile-skills dl dd:nth-of-type(3) span {
  animation-delay: 1470ms;
}

body.page-entered.is-page-three .profile-skills dl dd:nth-of-type(4) span {
  animation-delay: 1580ms;
}

body.page-entered.is-page-three .profile-skills dl dd:nth-of-type(5) span {
  animation-delay: 1690ms;
}

body.page-entered.is-page-three .profile-skills dl dd:nth-of-type(6) span {
  animation-delay: 1800ms;
}

.profile-career {
}

.profile-career dl {
  align-items: start;
  column-gap: 10px;
  grid-template-columns: 62px minmax(0, 1fr);
  row-gap: 25px;
}

.profile-career dt {
  line-height: 1;
  padding-top: 2px;
}

.profile-career dd {
  align-items: center;
  display: grid;
  grid-template-columns: max-content minmax(24px, 239px) max-content;
  gap: 20px;
}

.profile-career dd span {
  border-bottom: 2px dotted rgba(42, 73, 232, 0.62);
  display: block;
  height: 0;
  transform: scaleX(0);
  transform-origin: left center;
  position: relative;
  top: 0;
}

.profile-career dd span::before,
.profile-career dd span::after {
  background: rgba(42, 73, 232, 0.82);
  border-radius: 50%;
  content: "";
  height: 4px;
  opacity: 0;
  position: absolute;
  top: -1px;
  width: 4px;
}

.profile-career dd span::before {
  left: -1px;
}

.profile-career dd span::after {
  right: -1px;
}

.profile-career dd b {
  font-size: 1.375rem;
  font-weight: 800;
  white-space: nowrap;
}

.profile-career dd {
  font-size: 1.375rem;
  line-height: 1.35;
}

body.page-entered.is-page-three .profile-career dd span {
  animation: careerDashReveal 1120ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-three .profile-career dd span::before,
body.page-entered.is-page-three .profile-career dd span::after {
  animation: dotReveal 120ms linear forwards;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(1) span {
  animation-delay: 1480ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(1) span::before,
body.page-entered.is-page-three .profile-career dd:nth-of-type(1) span::after {
  animation-delay: 2200ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(2) span {
  animation-delay: 1600ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(2) span::before,
body.page-entered.is-page-three .profile-career dd:nth-of-type(2) span::after {
  animation-delay: 2320ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(3) span {
  animation-delay: 1720ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(3) span::before,
body.page-entered.is-page-three .profile-career dd:nth-of-type(3) span::after {
  animation-delay: 2440ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(4) span {
  animation-delay: 1840ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(4) span::before,
body.page-entered.is-page-three .profile-career dd:nth-of-type(4) span::after {
  animation-delay: 2560ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(5) span {
  animation-delay: 1960ms;
}

body.page-entered.is-page-three .profile-career dd:nth-of-type(5) span::before,
body.page-entered.is-page-three .profile-career dd:nth-of-type(5) span::after {
  animation-delay: 2680ms;
}

.profile-career dd > :last-child,
.profile-education dd {
  white-space: nowrap;
}

.mindset-page {
  color: #666666;
  font-size: 1.25rem;
  padding: 38px 44px 56px;
  position: relative;
}

.mindset-title {
  opacity: 0;
  transform: translateY(42px);
}


.mindset-hero {
  display: flex;
  justify-content: space-between;
  padding: 0 36px 0 34px;
}

.mindset-copy {
  opacity: 0;
  transform: translateY(42px);
  width: 800px;
}

.mindset-copy h3 {
  color: #111111;
  font-size: 3.875rem;
  font-weight: 900;
  line-height: 1.12;
  margin: 58px 0 42px;
}

.mindset-copy p{
  color: #7a7a7a;
  font-size: 1.4375rem;
  font-weight: 500;
  margin: 0 0 10px;
}
.mindset-column p {
  color: #7a7a7a;
  font-size: 1.4375rem;
  font-weight: 500;
}

.mindset-copy strong {
  color: var(--blue);
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 28px;
}

.mindset-diagram {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  margin-right: 80px;
  opacity: 0;
  padding-top: 20px;
  transform: translateY(42px);
}

.mindset-circle {
  align-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  font-size: 1.75rem;
  font-weight: 500;
  margin-left: -35px;
  height: 260px;
  justify-content: center;
  width: 260px;
}

.mindset-circle:first-child {
  margin-left: 0;
}

.mindset-columns {
  display: grid;
  gap: 88px;
  grid-template-columns: 1fr 1fr;
  margin-top: 96px;
  padding: 0 34px;
}

.mindset-column {
  opacity: 0;
  transform: translateY(42px);
}

.mindset-column h3 {
  color: var(--blue);
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.28;
  margin: 0 0 38px;
}

.mindset-column p {
  max-width: 720px;
  margin-bottom: 26px;
}

body.page-entered.is-page-four .mindset-title,
body.page-entered.is-page-four .mindset-copy,
body.page-entered.is-page-four .mindset-diagram,
body.page-entered.is-page-four .mindset-column {
  animation: sectionRiseIn 1260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-four .mindset-title {
  animation-delay: 220ms;
}

body.page-entered.is-page-four .mindset-copy {
  animation-delay: 420ms;
}

body.page-entered.is-page-four .mindset-diagram {
  animation-delay: 620ms;
}

body.page-entered.is-page-four .mindset-column:nth-child(1) {
  animation-delay: 840ms;
}

body.page-entered.is-page-four .mindset-column:nth-child(2) {
  animation-delay: 980ms;
}

.growth-panel {
}

.growth-page {
  color: #666666;
  font-size: 1.25rem;
  padding: 38px 44px 56px;
  position: relative;
}

.growth-title {
  opacity: 0;
  transform: translateY(72px);
}

.p-5-1 {
  display: flex;
  gap: 96px;
  margin-top: 34px;
  padding: 0 34px;
}

.growth-column {
  flex: 1 1 calc(50% - 48px);
  min-width: 0;
  opacity: 0;
  transform: translateY(72px);
}

.growth-column h3 {
  color: var(--blue);
  font-size: 2.0rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.26;
  margin: 0 0 34px;
}

.growth-column p {
  color: #7a7a7a;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.62;
  margin: 0 0 28px;
}

body.page-entered.is-page-five .growth-title,
body.page-entered.is-page-five .growth-column {
  animation: sectionRiseIn 1260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-five .growth-title {
  animation-delay: 140ms;
}

body.page-entered.is-page-five .growth-column:nth-child(1) {
  animation-delay: 500ms;
}

body.page-entered.is-page-five .growth-column:nth-child(2) {
  animation-delay: 680ms;
}

.competency-panel {
}

.competency-page {
  color: #666666;
  font-size: 1.25rem;
  padding: 38px 44px 56px;
  position: relative;
}

.competency-title,
.competency-badge,
.competency-card {
  opacity: 0;
  transform: translateY(42px);
}

.competency-badge {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 2.1875rem;
  font-weight: 900;
  height: 68px;
  justify-content: center;
  margin: 34px 0 0 32px;
  min-width: 202px;
  padding: 0 34px;
}


.competency-cards {
  display: flex;
  gap: 52px;
  margin-top: 35px;
  padding: 0 66px;
}

.competency-card {
  background: var(--white);
  border-radius: 38px;
  box-shadow: 0 4px 25px rgba(42, 73, 232, 0.15);
  color: #5c6df4;
  flex: 1 1 0;
  min-width: 0;
  padding: 58px 32px 42px;
}

.competency-card img {
  display: block;
  height: 150px;
  margin: 0 auto 34px;
  object-fit: contain;
  width: 150px;
}

.competency-card h3 {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  margin: 0 0 28px;
  min-height: 56px;
  padding: 8px 20px;
  text-align: center;
}

.competency-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 26px;
}

.competency-card li {
  color: #5c6df4;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

body.page-entered.is-page-six .competency-title,
body.page-entered.is-page-six .competency-badge,
body.page-entered.is-page-six .competency-card {
  animation: sectionRiseIn 1260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-six .competency-title {
  animation-delay: 140ms;
}

body.page-entered.is-page-six .competency-badge {
  animation-delay: 500ms;
}

body.page-entered.is-page-six .competency-card:nth-child(1) {
  animation-delay: 660ms;
}

body.page-entered.is-page-six .competency-card:nth-child(2) {
  animation-delay: 780ms;
}

body.page-entered.is-page-six .competency-card:nth-child(3) {
  animation-delay: 900ms;
}

body.page-entered.is-page-six .competency-card:nth-child(4) {
  animation-delay: 1020ms;
}

.stack-panel {
}

.stack-page {
  color: #666666;
  font-size: 1.25rem;
  padding: 38px 44px 56px;
  position: relative;
}

.stack-title,
.p-7-1 {
  opacity: 0;
  transform: translateY(42px);
}


.stack-page .competency-badge {
  opacity: 1;
  transform: none;
}

.stack-grid {
  display: grid;
  gap: 54px 96px;
  grid-template-columns: 1fr 1fr;
  padding: 35px 70px 0 96px;
}

.stack-group {
  align-items: center;
  display: flex;
  gap: 28px;
}

.stack-minors {
  align-items: center;
  display: flex;
  gap: 28px;
}

.stack-dots {
  display: flex;
  gap: 10px;
}

.stack-dots span {
  background: #666666;
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
}

.stack-chart {
  --fill-length: var(--percent);
  --ring-length: 100;
  --ring-color: #8d91e6;
  height: 184px;
  position: relative;
  width: 184px;
}

.stack-chart--lg {
  height: 292px;
  width: 292px;
}

.stack-chart--lg .stack-ring__track,
.stack-chart--lg .stack-ring__progress {
  r: 46;
}

.stack-chart--lg svg {
  height: 292px;
  width: 292px;
}

.stack-chart--sm svg {
  height: 184px;
  width: 184px;
}

.stack-chart--violet { --ring-color: #8f92e5; }
.stack-chart--blue { --ring-color: #5a8ac6; }
.stack-chart--orange { --ring-color: #ff5631; }
.stack-chart--yellow { --ring-color: #ffcc4d; }

.stack-chart svg {
  display: block;
  transform: rotate(-90deg);
}

.stack-ring__track,
.stack-ring__progress {
  fill: none;
  stroke-linecap: butt;
  stroke-width: 10;
}

.stack-chart--lg .stack-ring__track,
.stack-chart--lg .stack-ring__progress {
  stroke-width: 16;
}

.stack-ring__track {
  stroke: #ebe8e8;
}

.stack-ring__progress {
  stroke: var(--ring-color);
  stroke-dasharray: 0 100;
  stroke-dashoffset: 0;
}

.stack-chart__label {
  align-items: center;
  color: #555555;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  position: absolute;
  text-align: center;
}

.stack-chart__label strong {
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.1;
}

.stack-chart--sm .stack-chart__label strong {
  font-size: 1.0rem;
}

.stack-chart__label span {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.08;
}

.stack-chart--lg .stack-chart__label span {
  font-size: 2.125rem;
}

.stack-chart--sm .stack-chart__label span {
  font-size: 1.0625rem;
}

body.page-entered.is-page-seven .stack-title,
body.page-entered.is-page-seven .p-7-1 {
  animation: sectionRiseIn 1260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-seven .stack-title {
  animation-delay: 180ms;
}

body.page-entered.is-page-seven .p-7-1 {
  animation-delay: 360ms;
}

body.page-entered.is-page-seven .stack-ring__progress {
  animation: stackFill 1800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 620ms;
}

.projects-shell {
  display: flex;
  align-items: flex-start;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 36px 90px;
  gap: 0;
}

.projects-sidebar {
  flex: 0 0 330px;
  color: var(--white);
  max-height: 100%;
  overflow-y: auto;
  padding: 61px 34px 40px 8px;
}

.projects-sidebar__title {
  color: var(--white);
  opacity: 0;
  transform: translateY(42px);

  margin-bottom: 50px;
}

.projects-sidebar__title p {
  color: rgba(255, 255, 255, 0.72);
}

.projects-sidebar__group {
  opacity: 0;
  transform: translateY(42px);
}

.projects-sidebar__group + .projects-sidebar__group {
  margin-top: 70px;
}

.projects-sidebar__group h3 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 30px 55px;
}

.project-folder-grid {
  display: grid;
  gap: 32px 20px;
  grid-template-columns: 1fr 1fr;
  padding: 0 10px 0 58px;
}

.project-folder {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  outline: none;
  padding: 0;
  text-align: left;
}

.project-folder__icon {
  background: var(--white);
  border-radius: 8px;
  display: block;
  height: 52px;
  position: relative;
  width: 66px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.project-folder__icon::before {
  background: inherit;
  border-radius: 6px 6px 0 0;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: -7px;
  width: 28px;
}

.project-folder__label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 100px;
}

.project-folder.is-active .project-folder__icon {
  background: #8dd6ff;
  box-shadow: 0 0 0 4px rgba(131, 215, 255, 0.24);
}

.projects-panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: calc(100% - 100px);
  left: auto;
  margin-top: 61px;
  min-height: 0;
  position: relative;
  top: auto;
  transform: none;
  width: 100%;
}

.projects-panel-nav {
  display: flex;
  justify-content: space-between;
  left: 96px;
  padding: 0 0 0 0;
  position: absolute;
  right: 90px;
  top: 19px;
  z-index: 3;
}

.projects-panel-nav .contents-arrow--next {
  margin-right: 18px;
}

.projects-panel__body {
  flex: 1 1 auto;
  min-height: 0;
  opacity: 0;
  overflow-y: auto;
  transform: translateY(42px);
  padding: 10px 34px 34px;
}

.project-panel {
  display: none;
}

.project-panel.is-active {
  display: block;
}

.project-panel__heading {
  border-bottom: 2px solid rgba(42, 73, 232, 0.12);
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.project-panel__heading h3 {
  color: var(--blue);
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 8px;
}

.project-panel__heading p {
  color: rgba(42, 73, 232, 0.58);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.project-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-list__item {
  border: 1px solid rgba(42, 73, 232, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

.project-list__item strong {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
}

.project-list__item span {
  color: #666666;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.55;
}

.project-article {
  display: grid;
  gap: 34px;
}

.project-article__section {
  border-top: 1px solid rgba(42, 73, 232, 0.12);
  padding-top: 22px;
}

.project-article__section:first-child {
  border-top: 0;
  padding-top: 0;
}

.project-article__section h4 {
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 14px;
}

.project-article__section p {
  color: #5b678b;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.82;
  margin: 0;
}

.project-article__section p + p {
  margin-top: 14px;
}

.project-subsection {
  margin-top: 18px;
}

.project-subsection h5 {
  color: var(--blue);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 8px;
}

.project-subsection p {
  margin: 0;
}

.project-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.project-badge {
  background: rgba(42, 73, 232, 0.07);
  border: 1px solid rgba(42, 73, 232, 0.12);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 14px;
}

.project-bullet-list {
  color: #5b678b;
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.project-bullet-list li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.project-number-list {
  color: #5b678b;
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.project-number-list li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.project-code-block {
  background: #f7f9ff;
  border: 1px solid rgba(42, 73, 232, 0.1);
  border-radius: 4px;
  color: #30406f;
  font-family: "Courier New", Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 10px 0 0;
  overflow-x: auto;
  padding: 16px 18px;
  white-space: pre;
}

.project-subsection a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.project-article__section a,
.project-article__section a:visited {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.project-article__section a:hover,
.project-article__section a:focus-visible {
  color: var(--blue);
}

.project-table {
  border-collapse: collapse;
  margin-top: 10px;
  width: 100%;
}

.project-table th,
.project-table td {
  border: 1px solid rgba(42, 73, 232, 0.12);
  color: #5b678b;
  font-size: 0.98rem;
  line-height: 1.6;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.project-table th {
  background: #f7f9ff;
  color: var(--blue);
  font-weight: 800;
}

.project-table td code {
  color: var(--blue);
  font-family: "Courier New", Consolas, monospace;
  font-size: 0.92em;
}

.project-media-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.project-media-grid--docs,
.project-media-grid--tools {
  grid-template-columns: 1fr;
}

.project-media-grid--admin {
  grid-template-columns: 1fr;
}

.project-media-grid--gamehub {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-media-grid--commerce {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-media-grid--portrait {
  grid-template-columns: 1fr;
}

.project-media-grid--parking {
  grid-template-columns: 1fr;
}

.project-media-grid--gearhub-shop,
.project-media-grid--gearhub-admin {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-media-grid--sns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-media {
  display: grid;
  gap: 8px;
  overflow: hidden;
  margin: 0;
}

.project-media--span-2 {
  grid-column: auto;
}

.project-media--span-full {
  grid-column: 1 / -1;
}

.project-media img {
  border: 1px solid rgba(42, 73, 232, 0.1);
  border-radius: 4px;
  display: block;
  max-width: 100%;
  width: 100%;
}

.project-media-grid--gamehub .project-media img {
  aspect-ratio: 16 / 10;
  background: #f7f9ff;
  object-fit: contain;
  object-position: top center;
}

.project-media-grid--commerce .project-media img {
  background: #f7f9ff;
  object-fit: contain;
  object-position: top center;
}

.project-media-grid--portrait .project-media {
  justify-items: center;
}

.project-media-grid--portrait .project-media img {
  aspect-ratio: auto;
  background: #f7f9ff;
  max-height: 680px;
  max-width: min(100%, 420px);
  object-fit: contain;
  object-position: top center;
  width: auto;
}

.project-media-grid--parking .project-media img {
  aspect-ratio: auto;
  background: #f7f9ff;
  max-height: 720px;
  object-fit: contain;
  object-position: top center;
}

.project-media-grid--gearhub-shop .project-media img,
.project-media-grid--gearhub-admin .project-media img {
  aspect-ratio: auto;
  background: #f7f9ff;
  max-height: 520px;
  object-fit: contain;
  object-position: top center;
}

.project-media-grid--sns .project-media {
  justify-items: center;
}

.project-media-grid--sns .project-media img {
  aspect-ratio: 1170 / 1992;
  background: #f7f9ff;
  max-height: 560px;
  max-width: min(100%, 240px);
  object-fit: contain;
  object-position: top center;
  width: auto;
}

.project-media-grid--gamehub .project-media--span-full img {
  aspect-ratio: auto;
  max-height: 520px;
}

.project-media-grid--commerce .project-media--span-full img {
  aspect-ratio: auto;
  max-height: 440px;
}

.project-media-grid--commerce .project-media:not(.project-media--span-full) img {
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.project-media-grid--admin .project-media img,
.project-media-grid--tools .project-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.project-media-grid--docs .project-media img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
}

.project-media-grid--docs .project-media--span-2 img {
  aspect-ratio: auto;
  max-height: 420px;
}

.project-media figcaption {
  color: #5a678b;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.project-article__section a {
  overflow-wrap: anywhere;
}
projects-sidebar__group{
  margin-top:50px;
}
body.page-entered.is-page-eight .projects-sidebar__title,
body.page-entered.is-page-eight .projects-sidebar__group,
body.page-entered.is-page-eight .projects-panel__body {
  animation: sectionRiseIn 1260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-eight .projects-sidebar__title {
  animation-delay: 140ms;
}

body.page-entered.is-page-eight .projects-sidebar__group:nth-of-type(1) {
  animation-delay: 320ms;
}

body.page-entered.is-page-eight .projects-sidebar__group:nth-of-type(2) {
  animation-delay: 460ms;
}

body.page-entered.is-page-eight .projects-panel__body {
  animation-delay: 560ms;
}

.slide--motivation {
  overflow: hidden;
}

.motivation-page {
  color: var(--blue);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 26px);
  padding: 0 clamp(22px, 3.4vw, 56px) clamp(28px, 3.6vw, 54px);
}

.motivation-title p {
  align-items: center;
  color: #78a8ff;
  display: inline-flex;
  min-height: 1.35em;
  padding: 0 12px;
  width: fit-content;
}

.motivation-hero,
.motivation-column {
  opacity: 0;
  transform: translateY(36px);
}

.motivation-hero {
  align-self: center;
  margin: 0;
  width: min(100%, 980px);
}

.motivation-hero img {
  display: block;
  width: 100%;
}

.motivation-columns {
  color: #5a688d;
  display: grid;
  gap: clamp(24px, 2.8vw, 54px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.motivation-column {
  display: grid;
  gap: clamp(16px, 1.8vw, 26px);
}

.motivation-column p {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.82;
  margin: 0;
}

body.page-entered.is-page-nine .motivation-title,
body.page-entered.is-page-nine .motivation-hero,
body.page-entered.is-page-nine .motivation-column {
  animation: sectionRiseIn 1260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.page-entered.is-page-nine .motivation-title {
  animation-delay: 140ms;
}

body.page-entered.is-page-nine .motivation-hero {
  animation-delay: 300ms;
}

body.page-entered.is-page-nine .motivation-column:nth-child(1) {
  animation-delay: 460ms;
}

body.page-entered.is-page-nine .motivation-column:nth-child(2) {
  animation-delay: 620ms;
}

@media (max-width: 900px) {
  .motivation-page {
    padding-inline: 24px;
  }

  .motivation-hero {
    width: min(100%, 820px);
  }
}

@media (max-width: 640px) {
  .motivation-page {
    gap: 16px;
    padding: 0 16px 22px;
  }

  .motivation-hero {
    margin-inline: -8px;
    width: calc(100% + 16px);
  }

  .motivation-title p {
    padding-inline: 10px;
  }

  .motivation-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .motivation-column {
    gap: 14px;
  }

  .motivation-column p {
    line-height: 1.74;
  }
}

.slide--closing {
  overflow: hidden;
}

.closing-layout {
  height: 100%;
  position: relative;
  width: 100%;
}

.closing-arrow {
  left: 50px;
  right: auto;
}

.closing-stack-shell {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -52%) scale(0.94);
  width: min(40vw, 490px);
}

.closing-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 6px;
}

.closing-card--back {
  height: 100%;
  inset: 0;
  position: absolute;
}

.closing-card--rear {
  box-shadow: 18px 22px 38px rgba(15, 28, 125, 0.28);
  transform: translate(-44px, 28px);
}

.closing-card--mid {
  transform: translate(-22px, 14px);
}

.closing-card--front {
  color: var(--blue);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.closing-card__body {
  min-height: 212px;
  padding: 38px 32px 40px;
  position: relative;
  text-align: center;
}

.closing-card__body h2 {
  color: var(--ink);
  font-size: clamp(1.4rem, 1.78vw, 1.68rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.32;
  margin: 0;
}

.closing-card__body p {
  color: var(--blue);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 900;
  line-height: 1.62;
  margin: 28px 0 0;
}

.closing-cursor {
  bottom: 18px;
  filter: drop-shadow(7px 9px 9px rgba(0, 0, 0, 0.24));
  position: absolute;
  right: 18px;
  width: clamp(28px, 3vw, 42px);
}

.closing-avatar,
.closing-meta {
  opacity: 0;
  transform: translateY(28px);
}

.closing-avatar {
  border-radius: 50%;
  bottom: 16px;
  height: 54px;
  left: 18px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  width: 54px;
}

.closing-avatar img {
  display: block;
  height: 100%;
  image-rendering: auto;
  object-fit: cover;
  width: 100%;
}

.closing-meta {
  color: rgba(255, 255, 255, 0.82);
}

body.page-entered.is-page-ten .closing-stack-shell {
  animation: closingStackIn 1180ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 160ms;
}

body.page-entered.is-page-ten .closing-avatar {
  animation: sectionRiseIn 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 340ms;
}

body.page-entered.is-page-ten .closing-meta {
  animation: sectionRiseIn 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 420ms;
}

@media (max-width: 900px) {
  .closing-stack-shell {
    width: min(62vw, 470px);
  }

  .closing-card__body {
    min-height: 196px;
    padding: 32px 26px 34px;
  }
}

@media (max-width: 640px) {
  .closing-stack-shell {
    left: 50%;
    top: 44%;
    width: calc(85vw - 26px);
  }

  .closing-card__body {
    min-height: 170px;
    padding: 22px 18px 28px;
  }

  .closing-card__body h2 {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .closing-card__body p {
    font-size: clamp(0.92rem, 3.8vw, 1.08rem);
    margin-top: 20px;
  }

  .closing-cursor {
    bottom: 12px;
    right: 12px;
    width: 30px;
  }

  .closing-card--rear {
    transform: translate(-26px, 18px);
  }

  .closing-card--mid {
    transform: translate(-14px, 9px);
  }

  .closing-avatar {
    bottom: 16px;
    height: 48px;
    left: 16px;
    width: 48px;
  }

  .closing-meta {
    display: none;
  }

  .closing-arrow {
    left: 16px;
  }
}

.type-box {
  background: var(--white);
  border: 3px solid var(--ink);
  left: 50%;
  width: min(88vw, 1120px);
  padding: clamp(16px, 2.6vw, 32px) clamp(18px, 3vw, 34px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.type-box h1 {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  min-height: 1em;
  white-space: nowrap;
  width: 100%;
}

.typing-caret {
  animation: caretBlink 720ms steps(1, end) infinite;
  background: var(--blue);
  flex: 0 0 auto;
  display: inline-block;
  height: 1.16em;
  margin-left: 10px;
  width: 4px;
}

.type-box [data-type-target] {
  display: inline-block;
  min-width: 0;
}

@media (max-width: 900px) {
  .type-box {
    width: min(92vw, 860px);
    padding: 16px 20px;
  }

  .typing-caret {
    margin-left: 8px;
    width: 3px;
  }
}

@media (max-width: 640px) {
  .type-box {
    width: calc(100vw - 28px);
    padding: 14px 16px;
  }

  .type-box h1 {
    line-height: 0.98;
  }

  .typing-caret {
    margin-left: 6px;
  }
}

.handle {
  background: var(--white);
  border: 3px solid var(--ink);
  height: 11px;
  position: absolute;
  width: 11px;
}

.handle--tl {
  left: -8px;
  top: -8px;
}

.handle--tm {
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
}

.handle--tr {
  right: -8px;
  top: -8px;
}

.handle--ml {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.handle--mr {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.handle--bl {
  bottom: -8px;
  left: -8px;
}

.handle--bm {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.handle--br {
  bottom: -8px;
  right: -8px;
}

.cursor-image {
  animation: cursorFloat 2.4s ease-in-out infinite;
  filter: drop-shadow(7px 9px 9px rgba(0, 0, 0, 0.24));
  left: 73%;
  pointer-events: none;
  position: absolute;
  top: 56%;
  transform: translate(-50%, -50%);
  width: clamp(32px, 3.8vw, 56px);
  z-index: 4;
}

.meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.6875rem, 1.05vw, 0.875rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
  position: absolute;
}

.meta p {
  margin: 0;
}

.meta a {
  display: block;
}

.meta--left {
  bottom: 32px;
  left: 29px;
}

.meta--right {
  bottom: 31px;
  right: 29px;
}

.page-number {
  bottom: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  position: absolute;
  right: 32px;
}

.page-number--inner {
  color: rgba(42, 73, 232, 0.54);
  right: 28px;
}

@media (min-width: 1101px) {
  .window-panel {
    height: 90%;
  }

  .contents-page,
  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page,
  .projects-sidebar,
  .projects-panel__body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page-nav {
    padding: 12px 28px;
  }

  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page {
    font-size: 1.0625rem;
    padding: 26px 50px 30px;
  }

  .profile-title h2 {
    font-size: 2.125rem;
  }

  .profile-title p {
    font-size: 1.25rem;
    margin: 4px 0 0 36px;
  }

  .profile-page h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .profile-page .p-1-2-1 {
    margin-bottom: 42px;
  }

  .profile-side {
    padding-left: 6%;
  }

  .profile-avatar {
    height: 210px;
    margin: 26px auto 28px 40px;
    width: 210px;
  }

  .profile-side section {
    margin-top: 28px;
  }

  .profile-page dl {
    gap: 8px;
  }

  .profile-side dl {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .profile-education dl {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .profile-page dt,
  .profile-page dd,
  .profile-skills dt,
  .profile-career dd,
  .profile-career dd b {
    font-size: 1.0625rem;
  }

  .profile-skills {
    padding-left: 15%;
  }

  .profile-skills dl {
    column-gap: 10px;
    grid-template-columns: 144px 150px;
    row-gap: 10px;
  }

  .profile-career dl {
    row-gap: 16px;
  }

  .profile-career dd {
    gap: 12px;
    grid-template-columns: max-content minmax(24px, 200px) minmax(0, 1fr);
    line-height: 1.25;
  }

  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page {
    font-size: 1.0625rem;
  }

  .mindset-hero {
    padding: 0 16px;
  }

  .mindset-copy {
    width: 655px;
  }

  .mindset-copy h3 {
    font-size: 2.625rem;
    margin: 28px 0 22px;
  }

  .mindset-copy p,
  .mindset-column p,
  .growth-column p {
    font-size: 1.0625rem;
    line-height: 1.48;
    margin-bottom: 14px;
  }

  .mindset-copy strong {
    font-size: 1.1875rem;
    margin-top: 20px;
  }

  .mindset-diagram {
    margin-right: 10%;
    padding-top: 8px;
  }

  .mindset-circle {
    font-size: 1.375rem;
    height: 188px;
    margin-left: -22px;
    width: 188px;
  }

  .mindset-columns {
    gap: 75px;
    margin-top: 44px;
    padding: 0 16px;
  }

  .mindset-column h3,
  .growth-column h3 {
    font-size: 1.5625rem;
    margin-bottom: 18px;
  }

  .p-5-1 {
    gap: 100px;
    margin-top: 20px;
    padding: 0 16px;
  }

  .competency-badge {
    font-size: 1.75rem;
    height: 56px;
    margin: 18px 0 0 16px;
    min-width: 160px;
    padding: 0 24px;
  }

  .competency-cards {
    gap: 2.5%;
    margin-top: 22px;
    padding: 0 18px;
  }

  .competency-card {
    border-radius: 24px;
    padding: 30px;
  }

  .competency-card img {
    height: 94px;
    margin: 20px auto 40px;
    width: 94px;
  }

  .competency-card h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    min-height: 46px;
    padding: 8px 14px;
  }

  .competency-card ul {
    gap: 8px;
    padding-left: 20px;
  }

  .competency-card li {
    font-size: 1.0rem;
    line-height: 1.45;
  }

  .stack-grid {
    gap: 40px 70px;
    padding: 22px 24px 0 36px;
  }

  .stack-group,
  .stack-minors {
    gap: 18px;
  }

  .stack-group {
    justify-content: space-between;
  }

  .stack-minors {
    flex: 0 1 48%;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .stack-chart {
    height: auto;
  }

  .stack-chart svg,
  .stack-chart--sm svg,
  .stack-chart--lg svg {
    height: 100%;
    width: 100%;
  }

  .stack-chart--lg {
    aspect-ratio: 1;
    height: auto;
    width: min(41%, 12.5rem);
  }

  .stack-chart--sm {
    aspect-ratio: 1;
    height: auto;
    width: min(calc((100% - 18px) / 2), 7.4rem);
  }

  .stack-chart__label strong {
    font-size: 1.25rem;
  }

  .stack-chart__label span {
    font-size: 1.125rem;
  }

  .stack-chart--lg .stack-chart__label span {
    font-size: 1.75rem;
  }

  .stack-chart--sm .stack-chart__label strong,
  .stack-chart--sm .stack-chart__label span {
    font-size: 0.875rem;
  }

  .projects-shell {
    padding: 61px 52px 30px 52px
  }

  .projects-sidebar {
    flex-basis: 300px;
    padding: 34px 20px 20px 0;
  }

  .projects-sidebar__title {
    margin-bottom: 28px;
  }

  .projects-sidebar__group + .projects-sidebar__group {
    margin-top: 34px;
  }

  .projects-sidebar__group h3 {
    font-size: 1.375rem;
    margin: 0 0 16px 28px;
  }

  .project-folder-grid {
    gap: 20px 14px;
    padding: 0 0 0 28px;
  }

  .projects-panel-nav {
    left: 54px;
    right: 54px;
    top: 16px;
  }

  .projects-panel {
    height: calc(100% - 68px);
    margin-top: 34px;
  }

  .projects-panel__body {
    padding: 12px 22px 22px;
  }

  .project-panel__heading {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .project-panel__heading h3 {
    font-size: 1.75rem;
  }

  .project-panel__heading p {
    font-size: 1.0rem;
  }

  .project-list {
    gap: 14px;
  }

  .project-list__item {
    padding: 16px 18px;
  }

  .project-list__item strong {
    font-size: 1.25rem;
  }

  .project-list__item span {
    font-size: 1.0rem;
    line-height: 1.42;
  }
}

@media (max-width: 1100px) {
  .portfolio-stage,
  .slide-track,
  .blueprint {
    height: 100dvh;
    min-height: 100dvh;
  }

  .slide--projects {
    overflow: hidden;
  }

  .arrow-button {
    height: 35px;
    width: 35px;
  }

  .top-arrow {
    right: 16px;
    top: 16px;
  }

  .window-panel {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 24px);
    left: 12px;
    min-height: 0;
    overflow: hidden;
    top: 12px;
    transform: none;
    width: calc(100% - 24px);
  }

  .window-bar {
    margin-left: 0;
    padding-right: 12px;
    width: 100%;
  }

  .page-nav {
    padding: 14px 14px 0;
  }

  .contents-heading {
    display: block;
    flex: 0 0 auto;
    padding: 45px 20px 0;
    overflow-x: hidden;
  }

  .contents-heading h2 {
    font-size: clamp(2.625rem, 8vw, 4.5rem);
    margin-bottom: 30px;
  }

  .contents-heading p {
    font-size: 1.0rem;
    margin: 14px 0 0;
    text-align: left;
  }

  .folder-list {
    justify-content: stretch;
    left: auto;
    min-height: 0;
    padding: 60px 0;
    position: relative;
    right: auto;
    top: auto;
    align-content: start;
  }

  .folder {
    aspect-ratio: 335 / 330;
    height: auto;
    max-width: none;
    min-height: 0;
    width: 100%;
    margin:0 10px;
  }

  .folder img {
    width: 100%;
  }

  .folder__label {
    bottom: 15%;
    left: 12px;
  }

  .folder strong {
    font-size: 4vw;
  }

  .folder__label > span {
    font-size: 2vw;
    line-height: 1.7;
  }

  .folder small {
    font-size: 1.4vw;
    line-height: 1.12;
  }

  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page {
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 20px 20px 32px;
  }

  .profile-title h2 {
    font-size: clamp(1.875rem, 5.6vw, 3.25rem);
  }

  .profile-title p {
    font-size: 1.125rem;
  }

  .profile-page h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
  }

  .profile-page .p-1,
  .profile-page .p-1-2-1,
  .mindset-hero,
  .p-5-1 {
    flex-direction: column;
    gap: 28px;
  }

  .profile-page .p-1-1,
  .profile-page .p-1-2,
  .mindset-copy {
    width: 100%;
  }

  .profile-page .p-1-2-1 {
    margin-bottom: 36px;
  }

  .profile-side,
  .profile-skills {
    padding-left: 0;
  }

  .profile-side section,
  .profile-education,
  .profile-skills,
  .profile-career {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    padding-top: 20px;
  }

  .profile-side section:first-of-type {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .profile-avatar {
    height: 180px;
    margin: 20px auto 24px;
    width: 180px;
  }

  .profile-side section {
    margin-top: 24px;
  }

  .profile-page dt,
  .profile-page dd,
  .profile-career dd b {
    font-size: 1.0625rem;
  }

  .profile-side dl,
  .profile-education dl {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .profile-skills dl {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .profile-career dl {
    grid-template-columns: 56px minmax(0, 1fr);
    row-gap: 18px;
  }

  .profile-career dd {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .profile-career dd span {
    display: none;
  }

  .profile-career dd > :last-child,
  .profile-education dd {
    white-space: normal;
  }

  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page {
    font-size: 1.0rem;
  }

  .mindset-hero,
  .mindset-columns,
  .p-5-1,
  .competency-cards,
  .stack-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .mindset-copy h3 {
    font-size: clamp(2.125rem, 6vw, 3.375rem);
    margin: 24px 0 18px;
  }

  .mindset-copy p,
  .mindset-column p,
  .growth-column p {
    font-size: 1.125rem;
    line-height: 1.55;
  }

  .mindset-copy strong {
    font-size: 1.25rem;
    margin-top: 20px;
  }

  .mindset-diagram {
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 0;
    padding-top: 0;
  }

  .mindset-circle {
    font-size: 1.25rem;
    height: 170px;
    margin-left: -18px;
    width: 170px;
  }

  .mindset-columns {
    gap: 28px;
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .mindset-column h3,
  .growth-column h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .p-5-1 {
    margin-top: 24px;
  }

  .competency-badge {
    font-size: 1.625rem;
    height: 54px;
    margin: 20px 0 0;
    min-width: 0;
    padding: 0 22px;
  }

  .competency-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .competency-card {
    border-radius: 24px;
    padding: 28px 20px 24px;
  }

  .competency-card img {
    height: 96px;
    margin: 20px auto 40px;
    width: 96px;
  }

  .competency-card h3 {
    font-size: 1.125rem;
    margin-bottom: 18px;
    min-height: 48px;
  }

  .competency-card li {
    font-size: 1.0rem;
    line-height: 1.55;
  }

  .stack-grid {
    gap: 28px;
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .stack-group {
    gap: 18px;
    justify-content: flex-end;
  }

  .stack-minors {
    flex: 0 1 52%;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }

  .stack-chart {
    height: auto;
  }

  .stack-chart svg,
  .stack-chart--sm svg,
  .stack-chart--lg svg {
    height: 100%;
    width: 100%;
  }

  .stack-chart--lg {
    aspect-ratio: 1;
    height: auto;
    width: min(36vw, 11.25rem);
  }

  .stack-chart--sm {
    aspect-ratio: 1;
    height: auto;
    width: min(calc((100% - 12px) / 2), 6.4rem);
  }

  .stack-chart__label strong {
    font-size: 1.3125rem;
  }

  .stack-chart--lg .stack-chart__label span {
    font-size: 1.75rem;
  }

  .stack-chart--sm .stack-chart__label strong,
  .stack-chart--sm .stack-chart__label span {
    font-size: 0.875rem;
  }

  .projects-panel-nav {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .projects-shell {
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    gap: 18px;
    height: calc(100dvh - 24px);
    min-height: 0;
    overflow-y: auto;
    padding: 76px 40px 12px;
  }

  .projects-sidebar {
    flex-basis: 225px;
    padding: 0 8px 12px 0;
  }

  .projects-sidebar__title {
    margin-bottom: 28px;
  }

  .projects-sidebar__group + .projects-sidebar__group {
    margin-top: 32px;
  }

  .projects-sidebar__group h3 {
    font-size: 1.375rem;
    margin: 0 0 16px;
  }

  .project-folder-grid {
    gap: 16px 12px;
    padding: 0;
  }

  .projects-panel {
    height: auto;
    margin-top: 0;
    min-height: 0;
  }

  .projects-panel__body {
    padding: 14px 18px 24px;
  }

  .project-panel__heading h3 {
    font-size: 1.625rem;
  }

  .project-panel__heading p {
    font-size: 1.0rem;
  }

  .project-list__item strong {
    font-size: 1.25rem;
  }

  .project-list__item span {
    font-size: 1.0rem;
  }

  .cursor-image {
    left: 82%;
    top: 62%;
  }

  .meta {
    font-size: 0.6875rem;
  }

  .meta--left {
    bottom: 18px;
    left: 16px;
  }

  .meta--right {
    bottom: 18px;
    right: 16px;
    max-width: 72vw;
  }
}

@media (max-width: 767px) {
  .window-panel {
    height: calc(100dvh - 16px);
    left: 8px;
    top: 8px;
    width: calc(100% - 16px);
  }

  .page-nav {
    padding:14px 10px 0;
  }

  .contents-heading {
    padding: 12px 16px 6px;
  }

  .contents-heading h2 {
    font-size: clamp(2.125rem, 11vw, 3.25rem);
    margin-top: 30px;
  }

  .contents-heading p {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-top: 10px;
  }

  .contents-heading p br {
    display: none;
  }

  .folder-list {
    display: inline-block;
    align-content: center;
    justify-content: center;
    padding: 22px 18px 26px;
  }

  .folder {
    aspect-ratio: 335 / 330;
    justify-self: center;
    min-height: 0;
    width: 40%;
    float: left;
    margin-left: 5%;
    margin-bottom: 8%;
    max-width: 200px;
  }

  .folder__label {
    bottom: 15%;
    left: 9px;
  }

  .folder:last-child {
    grid-column: 1 / -1;
  }

  .folder strong {
    font-size: 6vw;
  }

  .folder__label > span {
    font-size: 4.2vw;
    line-height: 1.5;
  }

  .folder small {
    font-size: 2.5vw;
    line-height: 1.12;
  }

  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page {
    padding: 16px 16px 24px;
  }

  .profile-side dl,
  .profile-education dl,
  .profile-skills dl,
  .profile-career dl {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .profile-page dt {
    font-size: 0.9375rem;
  }

  .profile-page dd,
  .profile-career dd b {
    font-size: 0.9375rem;
  }

  .mindset-copy p,
  .mindset-column p,
  .growth-column p,
  .project-list__item span {
    font-size: 0.9375rem;
  }

  .mindset-circle {
    height: 132px;
    margin-left: -10px;
    width: 132px;
  }

  .competency-cards {
    grid-template-columns: 1fr;
  }

  .stack-group {
    align-items: center;
    flex-direction: column;
  }

  .stack-dots {
    display: none;
  }

  .stack-minors {
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .stack-chart {
    height: auto;
  }

  .stack-chart svg,
  .stack-chart--sm svg,
  .stack-chart--lg svg {
    height: 100%;
    width: 100%;
  }

  .stack-chart--lg {
    aspect-ratio: 1;
    height: auto;
    width: min(52%, 11rem);
  }

  .stack-chart--sm {
    aspect-ratio: 1;
    height: auto;
    width: min(calc((100% - 12px) / 2), 7.6rem);
  }

  .projects-shell {
    box-sizing: border-box;
    display: block;
    height: calc(100dvh - 16px);
    overflow-y: auto;
    padding: 70px 10px 10px;
  }

  .projects-sidebar {
    padding: 0 20px 16px;
  }

  .project-folder-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .projects-panel__body {
    padding: 12px 14px 18px;
  }

  .project-panel__heading h3 {
    font-size: 1.375rem;
  }

  .project-list__item {
    padding: 16px;
  }

  .project-list__item strong {
    font-size: 1.125rem;
  }

  .cursor-image {
    display: none;
  }

  .meta--left {
    bottom: 16px;
    left: 16px;
  }

  .meta--right {
    bottom: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
  }
}

@media (min-width: 1101px) {
  .stack-group {
    justify-content: space-between;
  }

  .stack-minors {
    flex: 0 1 48%;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .stack-chart {
    height: auto;
  }

  .stack-chart svg,
  .stack-chart--sm svg,
  .stack-chart--lg svg {
    height: 100%;
    width: 100%;
  }

  .stack-chart--lg {
    aspect-ratio: 1;
    height: auto;
    width: min(41%, 12.5rem);
  }

  .stack-chart--sm {
    aspect-ratio: 1;
    height: auto;
    width: min(calc((100% - 18px) / 2), 7.4rem);
  }

  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page,
  .projects-sidebar,
  .projects-panel__body {
    font-size: clamp(1rem, 1.22vw, 1.125rem);
  }

  .profile-title h2 {
    font-size: clamp(2rem, 2.55vw, 2.35rem);
  }

  .profile-title p {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  }

  .profile-page h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  }

  .profile-page dt,
  .profile-page dd,
  .profile-skills dt,
  .profile-career dd,
  .profile-career dd b {
    font-size: clamp(1rem, 1.22vw, 1.25rem);
  }

  .mindset-copy h3 {
    font-size: clamp(2.2rem, 3.15vw, 2.95rem);
  }

  .mindset-copy p,
  .mindset-column p,
  .growth-column p {
    font-size: clamp(1rem, 1.22vw, 1.125rem);
  }

  .mindset-copy strong {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  }

  .mindset-circle {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  }

  .mindset-column h3,
  .growth-column h3 {
    font-size: clamp(1.3rem, 1.95vw, 1.75rem);
  }

  .competency-badge {
    font-size: clamp(1.35rem, 2.15vw, 1.95rem);
  }

  .competency-card h3 {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
  }

  .competency-card li {
    font-size: clamp(0.95rem, 1.18vw, 1.05rem);
  }

  .stack-chart__label strong {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  }

  .stack-chart__label span {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
  }

  .stack-chart--lg .stack-chart__label span {
    font-size: clamp(1.35rem, 2.15vw, 1.95rem);
  }

  .stack-chart--sm .stack-chart__label strong,
  .stack-chart--sm .stack-chart__label span {
    font-size: clamp(0.8rem, 1vw, 0.95rem);
  }

  .projects-sidebar__group h3 {
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  }

  .project-folder__label {
    font-size: clamp(0.8rem, 1.08vw, 0.95rem);
  }

  .project-panel__heading h3 {
    font-size: clamp(1.35rem, 2.15vw, 1.95rem);
  }

  .project-panel__heading p {
    font-size: clamp(0.95rem, 1.18vw, 1.05rem);
  }

  .project-list__item strong {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  }

  .project-list__item span {
    font-size: clamp(0.95rem, 1.18vw, 1.05rem);
  }
}

@media (max-width: 1100px) {
  .stack-group {
    justify-content: space-between;
  }

  .stack-minors {
    flex: 0 1 52%;
    justify-content: flex-start;
  }

  .stack-chart {
    height: auto;
  }

  .stack-chart svg,
  .stack-chart--sm svg,
  .stack-chart--lg svg {
    height: 100%;
    width: 100%;
  }

  .stack-chart--lg {
    aspect-ratio: 1;
    height: auto;
    width: min(36vw, 11.25rem);
  }

  .stack-chart--sm {
    aspect-ratio: 1;
    height: auto;
    width: min(calc((100% - 12px) / 2), 6.4rem);
  }

  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page,
  .projects-sidebar,
  .projects-panel__body {
    font-size: clamp(0.95rem, 1.55vw, 1.0625rem);
  }

  .profile-title h2 {
    font-size: clamp(1.875rem, 3vw, 3.25rem);
  }

  .profile-title p {
    font-size: clamp(0.95rem, 1.9vw, 1.125rem);
  }

  .profile-page h3 {
    font-size: clamp(1.05rem, 2.2vw, 1.375rem);
  }

  .profile-page dt,
  .profile-page dd,
  .profile-career dd b {
    font-size: clamp(0.95rem, 1.55vw, 1.0625rem);
  }

  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page {
    font-size: clamp(0.95rem, 1.45vw, 1rem);
  }

  .mindset-copy h3 {
    font-size: clamp(2.0rem, 4.4vw, 3.375rem);
  }

  .mindset-copy p,
  .mindset-column p,
  .growth-column p {
    font-size: clamp(1rem, 1.95vw, 1.125rem);
  }

  .mindset-copy strong {
    font-size: clamp(1.05rem, 2.15vw, 1.25rem);
  }

  .mindset-circle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
  }

  .mindset-column h3,
  .growth-column h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  }

  .competency-badge {
    font-size: clamp(1.2rem, 2.7vw, 1.625rem);
  }

  .competency-card h3 {
    font-size: clamp(0.95rem, 1.9vw, 1.125rem);
  }

  .competency-card li {
    font-size: clamp(0.9rem, 1.55vw, 1rem);
  }

  .stack-chart__label strong {
    font-size: clamp(1.05rem, 2.1vw, 1.3125rem);
  }

  .stack-chart--lg .stack-chart__label span {
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  }

  .stack-chart--sm .stack-chart__label strong,
  .stack-chart--sm .stack-chart__label span {
    font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  }

  .projects-sidebar__group h3 {
    font-size: clamp(1.05rem, 2.2vw, 1.375rem);
  }

  .project-folder__label {
    font-size: clamp(0.75rem, 1.4vw, 0.9375rem);
  }

  .project-panel__heading h3 {
    font-size: clamp(1.2rem, 2.8vw, 1.625rem);
  }

  .project-panel__heading p {
    font-size: clamp(0.9rem, 1.55vw, 1rem);
  }

  .project-list__item strong {
    font-size: clamp(1.0rem, 1.95vw, 1.25rem);
  }

  .project-list__item span {
    font-size: clamp(0.9rem, 1.55vw, 1rem);
  }
}

@media (max-width: 767px) {
  .stack-group {
    align-items: center;
  }

  .stack-minors {
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .stack-chart {
    height: auto;
  }

  .stack-chart svg,
  .stack-chart--sm svg,
  .stack-chart--lg svg {
    height: 100%;
    width: 100%;
  }

  .stack-chart--lg {
    aspect-ratio: 1;
    height: auto;
    width: min(52%, 11rem);
  }

  .stack-chart--sm {
    aspect-ratio: 1;
    height: auto;
    width: min(calc((100% - 12px) / 2), 7.6rem);
  }

  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page,
  .projects-sidebar,
  .projects-panel__body {
    font-size: clamp(0.9rem, 3.7vw, 1rem);
  }

  .profile-page dt,
  .profile-page dd,
  .profile-career dd b {
    font-size: clamp(0.9rem, 3.7vw, 0.9375rem);
  }

  .mindset-copy p,
  .mindset-column p,
  .growth-column p,
  .project-list__item span {
    font-size: clamp(0.9rem, 3.7vw, 0.9375rem);
  }

  .project-panel__heading h3 {
    font-size: clamp(1.1rem, 5.3vw, 1.375rem);
  }

  .project-list__item strong {
    font-size: clamp(1rem, 4.4vw, 1.125rem);
  }
}

@media (max-width: 1280px) {
  .project-article {
    gap: 28px;
  }

  .project-media-grid--gearhub-shop,
  .project-media-grid--gearhub-admin,
  .project-media-grid--sns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .project-article__section h4 {
    font-size: 1.25rem;
  }

  .project-article__section p,
  .project-media figcaption {
    font-size: 0.95rem;
  }

  .project-subsection h5 {
    font-size: 1rem;
  }

  .project-badge {
    font-size: 0.84rem;
    padding: 9px 12px;
  }

  .project-bullet-list li {
    font-size: 0.95rem;
  }

  .project-number-list li {
    font-size: 0.95rem;
  }

  .project-code-block {
    font-size: 0.84rem;
    padding: 14px 16px;
  }

  .project-table th,
  .project-table td {
    font-size: 0.92rem;
    padding: 10px 12px;
  }

  .project-media-grid--docs,
  .project-media-grid--tools,
  .project-media-grid--admin {
    grid-template-columns: 1fr;
  }

  .project-media--span-2 {
    grid-column: auto;
  }

  .project-media-grid--docs .project-media--span-2 img {
    max-height: 320px;
  }
}

@media (max-width: 767px) {
  .project-article {
    gap: 24px;
  }

  .project-article__section {
    padding-top: 18px;
  }

  .project-article__section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .project-article__section p,
  .project-media figcaption {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .project-subsection {
    margin-top: 16px;
  }

  .project-subsection h5 {
    font-size: 0.95rem;
  }

  .project-badge-list {
    gap: 8px;
    margin-bottom: 10px;
  }

  .project-badge {
    font-size: 0.8rem;
    padding: 8px 11px;
  }

  .project-bullet-list {
    gap: 6px;
    padding-left: 18px;
  }

  .project-bullet-list li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .project-number-list {
    gap: 6px;
    padding-left: 20px;
  }

  .project-number-list li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .project-code-block {
    font-size: 0.78rem;
    line-height: 1.55;
    padding: 12px 14px;
  }

  .project-table th,
  .project-table td {
    font-size: 0.86rem;
    line-height: 1.5;
    padding: 9px 10px;
  }

  .project-media-grid {
    gap: 12px;
  }
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes caretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes cursorFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }

  50% {
    transform: translate(calc(-50% + 9px), calc(-50% + 7px)) rotate(2deg);
  }
}

@keyframes arrowNudgeRight {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@keyframes arrowNudgeLeft {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

@keyframes descriptionIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes folderIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes folderInLower {
  to {
    opacity: 1;
    transform: translateY(24px) scale(1);
  }
}

@keyframes sectionRiseIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

@keyframes closingStackIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -52%) scale(1);
  }
}

@keyframes skillFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes careerDashReveal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes stackFill {
  from {
    stroke-dasharray: 0 100;
  }

  to {
    stroke-dasharray: var(--fill-length) 100;
  }
}

@keyframes dotReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .contents-heading {
    padding: 12px 14px 6px;
  }

  .contents-heading h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    margin-top: 26px;
  }

  .contents-heading p {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-top: 8px;
  }

  .folder-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin: 18px 0 0;
    padding: 18px 16px 26px;
    width: 100%;
  }

  .folder {
    aspect-ratio: 335 / 285;
    float: none;
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .folder:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 12rem;
  }

  .folder__label {
    bottom: 18%;
    left: 14px;
  }

  .folder strong {
    font-size: clamp(1.4rem, 6.8vw, 1.9rem);
  }

  .folder__label > span {
    font-size: clamp(0.95rem, 4.4vw, 1.1rem);
  }

  .folder small {
    font-size: clamp(0.72rem, 3vw, 0.82rem);
  }

  .profile-page,
  .mindset-page,
  .growth-page,
  .competency-page,
  .stack-page {
    padding: 18px 16px 28px;
  }

  .profile-title p {
    font-size: clamp(0.9rem, 3.8vw, 1rem);
    margin-left: 24px;
  }

  .profile-page h3,
  .mindset-column h3,
  .growth-column h3,
  .competency-card h3 {
    font-size: clamp(1.02rem, 4.4vw, 1.16rem);
    line-height: 1.45;
  }

  .profile-page dt,
  .profile-page dd,
  .profile-career dd b,
  .mindset-copy p,
  .mindset-column p,
  .growth-column p {
    font-size: clamp(0.92rem, 3.8vw, 0.98rem);
    line-height: 1.68;
  }

  .profile-avatar {
    height: 160px;
    margin: 16px auto 20px;
    width: 160px;
  }

  .mindset-copy h3 {
    font-size: clamp(1.7rem, 7.2vw, 2.2rem);
    margin: 8px 0 14px;
  }

  .mindset-copy strong {
    font-size: clamp(1rem, 4.4vw, 1.08rem);
    line-height: 1.65;
    margin-top: 18px;
  }

  .mindset-circle {
    font-size: clamp(0.92rem, 3.9vw, 1rem);
    height: 118px;
    margin-left: -6px;
    width: 118px;
  }

  .competency-badge {
    font-size: clamp(1.12rem, 4.9vw, 1.28rem);
    height: 48px;
    padding: 0 18px;
  }

  .competency-card {
    padding: 22px 18px 20px;
  }

  .competency-card img {
    height: 80px;
    margin: 12px auto 26px;
    width: 80px;
  }

  .competency-card li {
    font-size: clamp(0.9rem, 3.7vw, 0.95rem);
    line-height: 1.62;
  }

  .stack-grid {
    gap: 22px;
    padding-top: 20px;
  }

  .stack-group {
    gap: 14px;
  }

  .projects-shell {
    padding: 64px 8px 12px;
  }

  .projects-sidebar {
    padding: 0 12px 14px;
  }

  .projects-sidebar__title {
    margin-bottom: 20px;
  }

  .projects-sidebar__group + .projects-sidebar__group {
    margin-top: 24px;
  }

  .projects-sidebar__group h3 {
    font-size: clamp(1rem, 4.4vw, 1.16rem);
    margin-bottom: 14px;
  }

  .project-folder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .project-folder {
    gap: 8px;
  }

  .project-folder__icon {
    height: 46px;
    width: 58px;
  }

  .project-folder__icon::before {
    height: 14px;
    top: -6px;
    width: 24px;
  }

  .project-folder__label {
    font-size: clamp(0.78rem, 3.5vw, 0.88rem);
    max-width: none;
  }

  .projects-panel__body {
    padding: 12px 12px 22px;
  }

  .project-panel__heading {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .project-panel__heading h3 {
    font-size: clamp(1.18rem, 5vw, 1.32rem);
  }

  .project-panel__heading p {
    font-size: clamp(0.88rem, 3.7vw, 0.94rem);
    line-height: 1.58;
  }

  .project-article {
    gap: 20px;
  }

  .project-article__section {
    padding-top: 16px;
  }

  .project-article__section h4 {
    font-size: clamp(0.98rem, 4.1vw, 1.06rem);
  }

  .project-article__section p,
  .project-bullet-list li,
  .project-number-list li,
  .project-media figcaption,
  .project-table th,
  .project-table td {
    font-size: clamp(0.88rem, 3.7vw, 0.94rem);
    line-height: 1.65;
  }

  .project-badge {
    font-size: 0.78rem;
    padding: 7px 10px;
  }

  .project-code-block {
    font-size: 0.74rem;
    padding: 10px 12px;
  }

  .project-media-grid {
    gap: 10px;
  }

  .project-media-grid--gamehub {
    grid-template-columns: 1fr;
  }

  .project-media-grid--commerce {
    grid-template-columns: 1fr;
  }

  .project-media-grid--gearhub-shop,
  .project-media-grid--gearhub-admin,
  .project-media-grid--sns {
    grid-template-columns: 1fr;
  }

  .project-media-grid--portrait .project-media img {
    max-height: 560px;
    max-width: min(100%, 360px);
  }

  .project-media-grid--gearhub-shop .project-media img,
  .project-media-grid--gearhub-admin .project-media img {
    max-height: 460px;
  }

  .project-media-grid--sns .project-media img {
    max-height: 520px;
    max-width: min(100%, 320px);
  }
}

@media (max-width: 480px) {
  .contents-heading h2 {
    font-size: clamp(1.85rem, 9.6vw, 2.35rem);
  }

  .contents-heading p {
    font-size: 0.78rem;
  }

  .folder-list {
    gap: 14px 10px;
    padding: 18px 12px 22px;
  }

  .folder {
    aspect-ratio: 335 / 270;
  }

  .folder:last-child {
    max-width: 10.75rem;
  }

  .profile-avatar {
    height: 144px;
    width: 144px;
  }

  .mindset-circle {
    height: 104px;
    width: 104px;
  }

  .project-folder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-folder__label {
    font-size: 0.8rem;
  }
}
