@import url("https://fonts.googleapis.com/css2?family=Days+One&family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --fontsize: 14px;
  --lineheight: 24px;
  --spansize: 16px;
  --fontsizes: 12px;
  --lineheights: 20px;
  --fontsizel: 18px;
  --h1size: 80px;
  --h1lineheight: 88px;
  --h2size: 32px;
}

@media screen and (max-width : 1024px) {
  :root {
    --fontsize: 16px;
    --lineheight: 28px;
    --spansize: 18px;
    --fontsizes: 14px;
    --lineheights: 24px;
    --fontsizel: 20px;
    --h1size: 60px;
    --h1lineheight: 56px;
    --h2size: 40px;
  }
}
.frame {
  position: relative;
  border-radius: 32px;
  z-index: 0;
}
.frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  box-shadow: inset 0px 0px 40px #FFFFFF4D;
  backdrop-filter: blur(40px) brightness(1.3);
  -webkit-backdrop-filter: blur(40px) brightness(1.3);
  z-index: -2;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: #07080A99;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}

.card {
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  border: 1px solid #FFFFFF38;
  box-shadow: inset 0px 0px 20px #FFFFFF0D;
  backdrop-filter: blur(20px) brightness(1.2);
  -webkit-backdrop-filter: blur(20px) brightness(1.2);
  z-index: -2;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-color: #FFFFFF08;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.card .card-hover-bg {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(125.46% 81.03% at 50.1% 100%, rgba(124, 23, 220, 0.5) 0%, rgba(195, 153, 235, 0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.card:hover .card-hover-bg {
  opacity: 1;
}

.skill {
  border-radius: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.skill::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  border: 1px solid #FFFFFF38;
  box-shadow: inset 0px 0px 20px #FFFFFF0D;
  backdrop-filter: blur(20px) brightness(1.2);
  -webkit-backdrop-filter: blur(20px) brightness(1.2);
  z-index: -2;
}
.skill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-color: #FFFFFF08;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.skill .skill-hover-bg {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(125.46% 81.03% at 50.1% 100%, rgba(124, 23, 220, 0.5) 0%, rgba(195, 153, 235, 0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.skill:hover .skill-hover-bg {
  opacity: 1;
}

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

html, body {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  background-color: #07080A;
  font-family: "inter", sans-serif;
  color: #FFFFFFCC;
  font-size: var(--fontsize);
  line-height: var(--lineheight);
  height: 100dvh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.corner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 48px 40px;
  z-index: 1;
}
@media screen and (max-width : 1024px) {
  .corner {
    padding: 32px 24px 24px;
  }
}
.corner__content {
  color: #FFFFFFCC;
  font-family: "Days One", sans-serif;
  font-size: 12px;
  width: 100%;
}
.corner__content:last-child {
  text-align: right;
}
.corner .socials {
  display: flex;
  gap: 0;
  position: relative;
}
.corner .socials a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.corner .socials img {
  width: 72px;
  height: 52px;
  padding: 14px 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2;
}
.corner .socials .social-hover-highlight {
  position: absolute;
  width: 72px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  background: radial-gradient(125.46% 81.03% at 50.1% 100%, rgba(124, 23, 220, 0.5) 0%, rgba(195, 153, 235, 0.05) 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@media screen and (max-width : 1024px) {
  .corner .socials {
    display: none;
  }
}

.cursor-circle {
  position: fixed;
  left: 0;
  top: 0;
  width: 1500px;
  height: 1500px;
  border-radius: 50%;
  background: #3B116E;
  pointer-events: none;
  z-index: 0;
  transform: translate(-750px, -750px);
  filter: blur(500px);
  opacity: 80%;
}
@media screen and (max-width : 1024px) {
  .cursor-circle {
    width: 700px;
    height: 700px;
    filter: blur(200px);
    left: 50%;
    top: auto;
    bottom: 0;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-350px, 350px);
  }
}

.frame {
  margin: auto;
  width: calc(100% - 240px);
  max-width: 1200px;
  flex: 1 0 0;
  align-self: stretch;
  height: 1px;
}
@media screen and (max-width : 1024px) {
  .frame {
    margin: 0 24px;
    width: auto;
  }
}
.frame .frame__scroll {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 100px 80px;
  gap: 160px;
  border-radius: 32px;
}
@media screen and (max-width : 1024px) {
  .frame .frame__scroll {
    padding: 56px 24px;
  }
}
.frame__intro {
  display: flex;
  gap: 80px;
}
@media screen and (max-width : 1024px) {
  .frame__intro {
    flex-direction: column;
    gap: 40px;
  }
}
.frame__intro h1 {
  color: #FFFFFF99;
  font-family: "Instrument Serif", serif;
  font-size: var(--h1size);
  line-height: var(--h1lineheight);
  margin: 0;
  flex: 1 0 0;
  font-weight: 400;
}
.frame__intro h1 span {
  color: #FFFFFF;
  font-style: italic;
}
.frame__intro p {
  margin: 0;
  flex: 1 0 0;
}
.frame__intro p span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: var(--spansize);
}
.frame__experiences {
  display: flex;
  gap: 56px;
  flex-direction: column;
  align-self: stretch;
}
.frame__experiences h2 {
  font-size: var(--h2size);
  margin: 0;
  font-weight: 700;
  line-height: normal;
}
.frame__experiences .cards-container {
  margin: 0 -80px;
  padding: 2px 80px 24px 80px;
  display: flex;
  gap: 24px;
  width: calc(100% + 160px);
  overflow-x: auto;
  position: relative;
  mask: linear-gradient(to right, transparent 1%, black 8%, black 80%, transparent 99%);
  -webkit-mask: linear-gradient(to right, transparent 1%, black 8%, black 80%, transparent 99%);
}
@media screen and (max-width : 1024px) {
  .frame__experiences .cards-container {
    margin: 0 -24px;
    padding: 2px 24px 24px 24px;
    width: calc(100% + 48px);
  }
}
.frame__experiences .cards-container .card {
  flex: 0 0 25%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 36px;
}
@media screen and (max-width : 1024px) {
  .frame__experiences .cards-container .card {
    flex: 0 0 calc(100% - 48px);
  }
}
.frame__experiences .cards-container .card__date {
  color: #FFFFFFCC;
  font-family: "Instrument Serif", serif;
  font-size: var(--fontsize);
  font-style: italic;
  font-weight: 400;
  padding-bottom: 40px;
}
.frame__experiences .cards-container .card__text__title {
  color: #FFFFFF;
  font-size: var(--fontsize);
  line-height: var(--lineheight);
  font-weight: 600;
  padding-bottom: 8px;
}
.frame__experiences .cards-container .card__text__title span {
  font-weight: 400;
}
.frame__experiences .cards-container .card__text__description {
  color: #FFFFFFCC;
  font-size: var(--fontsizes);
  line-height: var(--lineheights);
}
.frame__skills {
  display: flex;
  gap: 56px;
  align-items: center;
}
@media screen and (max-width : 1024px) {
  .frame__skills {
    flex-direction: column;
    gap: 40px;
  }
}
.frame__skills .title {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.frame__skills .title h2 {
  font-size: var(--h2size);
  margin: 0;
  font-weight: 700;
  line-height: normal;
}
.frame__skills .title p {
  margin: 0;
  flex: 1 0 0;
  color: #FFFFFFCC;
  font-size: var(--fontsize);
  line-height: var(--lineheight);
}
.frame__skills .title p span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: var(--spansize);
}
.frame__skills .skills-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 0 0;
  overflow: hidden;
  position: relative;
  mask: radial-gradient(ellipse at center, black 0%, transparent 74%);
  -webkit-mask: radial-gradient(ellipse at center, black 0%, transparent 74%);
}
@media screen and (max-width : 1024px) {
  .frame__skills .skills-container {
    flex: auto;
    width: calc(100% + 48px);
  }
}
.frame__skills .skills-container__row {
  display: flex;
  gap: 16px;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: -moz-max-content;
  width: max-content;
}
.frame__skills .skills-container__row--left {
  animation-name: scrollLeft;
}
.frame__skills .skills-container__row--right {
  animation-name: scrollRight;
}
.frame__skills .skills-container__row .skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  padding: 16px 24px 20px;
  gap: 8px;
}
.frame__skills .skills-container__row .skill__tag {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: var(--fontsize);
  color: #FFFFFFCC;
}
.frame__skills .skills-container__row .skill__name {
  font-size: var(--fontsizl);
  font-weight: 700;
  line-height: var(--lineheight);
  color: #FFFFFF;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.frame__skills .skills-container__row--left:nth-child(1) {
  animation-delay: 0s;
}
.frame__skills .skills-container__row--left:nth-child(3) {
  animation-delay: 3.5s;
}
.frame__contacts {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
}
.frame__contacts h2 {
  font-size: var(--h2size);
  margin: 0;
  font-weight: 700;
  line-height: normal;
}
.frame__contacts .contacts-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 500px;
}
@media screen and (max-width : 1024px) {
  .frame__contacts .contacts-container {
    max-width: 100%;
  }
}
.frame__contacts .contacts-container__row {
  display: flex;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width : 1024px) {
  .frame__contacts .contacts-container__row {
    flex-direction: column;
    gap: 24px;
  }
}
.frame__contacts .contacts-container__row .contact {
  flex: 1 1 0;
  width: 1000px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width : 1024px) {
  .frame__contacts .contacts-container__row .contact {
    width: 100%;
  }
}
.frame__contacts .contacts-container__row .contact__label {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: var(--fontsize);
  color: #FFFFFFCC;
}
.frame__contacts .contacts-container__row .contact__text {
  font-family: "inter", sans-serif;
  color: #FFFFFFCC;
  font-size: var(--fontsize);
  line-height: var(--lineheight);
}
.frame__contacts .contacts-container__row .contact__text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.frame__contacts .contacts-container__row .contact__text a:hover {
  color: #FFFFFF;
}
.frame__contacts .contacts-container__row .contact__text img {
  width: 24px;
  height: 24px;
  margin: 8px;
  transition: transform 0.2s ease;
}
.frame__contacts .contacts-container__row .contact__text img:hover {
  transform: scale(1.1);
}
.frame__contacts img.endpage {
  margin-top: 120px;
  width: 80px;
  height: 80px;
}

.mobile {
  display: none !important;
}
@media screen and (max-width : 1024px) {
  .mobile {
    display: flex !important;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.frame__scroll::-webkit-scrollbar {
  width: 4px;
}

.frame__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
}

.frame__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cards-container::-webkit-scrollbar {
  height: 4px;
}

.cards-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
}

.cards-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}/*# sourceMappingURL=style.css.map */