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

html {
  scroll-behavior: smooth;
}

body.page {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #030033;
  color: #e5e7eb;
  line-height: 1.6;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background-color: #c979ff;
  border-radius: 0 0 0.5rem 0.5rem;
  color: #020617;
  z-index: 999;
}
.skip-link:focus {
  left: 0.5rem;
}

.section {
  padding-block: 3.5rem;
}
@media (min-width: 1024px) {
  .section {
    padding-block: 5rem;
  }
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section__header--center {
  align-items: centre;
  text-align: centre;
}

.section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c979ff;
}

.section__title {
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}

.section__description {
  max-width: 40rem;
  color: #b9c3d4;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.page-container, .site-footer__inner, .hero__inner, .site-header__inner, .section__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 1120px;
}

@media (min-width: 768px) {
  .page-container, .site-footer__inner, .hero__inner, .site-header__inner, .section__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .page-container, .site-footer__inner, .hero__inner, .site-header__inner, .section__inner {
    padding-inline: 3rem;
    max-width: 1240px;
  }
}
.button {
  display: inline-flex;
  align-items: centre;
  justify-content: centre;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s ease;
  text-decoration: none;
}
.button:hover, .button:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}
.button--primary {
  background: linear-gradient(135deg, #c979ff, rgb(217.4417910448, 161.8, 255));
  color: #020617;
  box-shadow: 0 18px 40px rgba(204, 146, 238, 0.55);
}
.button--primary:hover, .button--primary:focus-visible {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}
.button--ghost {
  border: 1px solid #2b1f33;
  background: transparent;
  color: #e5e7eb;
}
.button--ghost:hover, .button--ghost:focus-visible {
  background: rgba(15, 23, 42, 0.9);
  border-color: #c979ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 0, 15, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(204, 146, 238, 0.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e7eb;
  text-decoration: none;
}
.site-header__logo-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #c979ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030033;
  font-weight: 700;
}
.site-header__logo-text {
  font-size: 1.05rem;
  font-weight: 600;
}
.site-header__menu-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid #2b1f33;
  background: #c979ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e5e7eb;
  font-size: 1.4rem;
  position: relative;
  z-index: 60;
}
.site-header__nav {
  position: fixed;
  inset: 0;
  background: #07000f;
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 40;
  padding-top: 2rem;
}
.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background-color: #030033;
  box-shadow: 0 18px 40px rgba(204, 146, 238, 0.55);
  border-radius: 1.5rem;
}
.site-header__menu-link {
  color: #b9c3d4;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__menu-link:hover, .site-header__menu-link:focus-visible {
  color: #e5e7eb;
}

.site-header--nav-open .site-header__nav {
  display: flex;
}

@media (min-width: 768px) {
  .site-header__menu-toggle {
    display: none;
  }
  .site-header__nav {
    position: static;
    inset: auto;
    background: transparent;
    display: block;
    padding-top: 0;
  }
  .site-header__menu {
    flex-direction: row;
    align-items: center;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    gap: 1.5rem;
  }
  .site-header__menu-link {
    font-size: 1rem;
  }
  .site-header--nav-open .site-header__nav {
    display: block;
  }
}
@media (min-width: 1024px) {
  .site-header__inner {
    max-width: 1120px;
    margin-inline: auto;
    padding-block: 1rem;
  }
  .site-header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .site-header__menu {
    gap: 2rem;
  }
  .site-header__menu-link {
    font-size: 1.05rem;
  }
}
.hero {
  padding-block: 3.5rem;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero__content {
  max-width: 32rem;
}
.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c979ff;
  margin-bottom: 0.5rem;
}
.hero__title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #b9c3d4;
  margin-bottom: 0.75rem;
}
.hero__intro {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.hero__actions .button {
  width: 100%;
  text-align: center;
}
.hero__avatar {
  width: 230px;
  height: 230px;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #c979ff 0, #020617 55%);
  box-shadow: 0 18px 40px rgba(204, 146, 238, 0.55);
  overflow: hidden;
  position: relative;
  transition: filter 0.35s ease;
  filter: brightness(1);
}
.hero__avatar:hover {
  filter: brightness(1.12);
}
.hero .hero__avatar-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero .avatar-hover__img--original {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero .avatar-hover__img--cartoon {
  opacity: 0;
  transform: scale(0.95);
  z-index: 2;
}
.hero__avatar:hover .avatar-hover__img--original {
  opacity: 0;
  transform: scale(1.02);
}
.hero__avatar:hover .avatar-hover__img--cartoon {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 768px) {
  .hero {
    padding-block: 4.5rem;
  }
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .hero__actions {
    flex-direction: row;
    width: auto;
  }
  .hero__actions .button {
    width: auto;
  }
  .hero__avatar {
    width: 260px;
    height: 260px;
    margin-inline: 0;
  }
  .hero__title {
    font-size: 3rem;
  }
}

.button i {
  margin-right: 0.4rem;
}

.about__content {
  display: grid;
  gap: 2rem;
}
.about__text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e5e7eb;
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__highlights {
  border: 1px solid #2b1f33;
  padding: 1.2rem;
  border-radius: 0.75rem;
  background-color: rgba(81, 0, 87, 0.5);
}
.about__highlights-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.about__highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #b9c3d4;
  padding: 0;
  margin: 0;
  list-style: none;
}
.about__highlights-item {
  position: relative;
  padding-left: 1rem;
}
.about__highlights-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c979ff;
}
@media (min-width: 768px) {
  .about__content {
    grid-template-columns: 2fr 1.4fr;
    align-items: flex-start;
  }
}

.skills__groups {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .skills__groups {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .skills__groups {
    grid-template-columns: repeat(2, 1fr);
  }
}
.skills__group {
  background-color: rgba(81, 0, 87, 0.25);
  border-radius: 0.75rem;
  border: 1px solid #2b1f33;
  padding: 1.5rem;
}
.skills__group-title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.skills__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.skills__item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.skills__item:last-child {
  margin-bottom: 0;
}
.skills__item i {
  margin-right: 10px;
  font-size: 1.1rem;
  line-height: 1;
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}
.skills__item span {
  display: inline-block;
}

.projects__grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .projects__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.projects__card {
  border-radius: 1rem;
  border: 1px solid #2b1f33;
  overflow: hidden;
  background-color: rgba(81, 0, 87, 0.5);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.projects__image-placeholder {
  aspect-ratio: 16/9;
  background: radial-gradient(circle at 20% 0, rgba(146, 56, 248, 0.15) 0, #020617 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.projects__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.projects .projects__card:hover .projects__image {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}
.projects .projects__image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4));
}
.projects__body {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.projects__title {
  font-size: 1.05rem;
  font-weight: 600;
}
.projects__description {
  font-size: 1rem;
  color: #b9c3d4;
}
.projects__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.projects__tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #2b1f33;
  background-color: rgba(146, 56, 248, 0.15);
}
.projects__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.projects__link {
  font-size: 0.85rem;
  color: #f0ccff;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}
.projects__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f0ccff;
  transition: width 0.2s ease;
}
.projects__link:hover, .projects__link:focus-visible {
  color: #cd4fff;
}
.projects__link:hover::after, .projects__link:focus-visible::after {
  width: 100%;
}
.projects .projects__meta {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #bbc2cf;
}
.projects .projects__impact {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b4c5dd;
}

.contact__content {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c979ff;
  border: 1px solid #c979ff;
  border-radius: 9999px;
  padding: 0.3rem 0.9rem;
  opacity: 0.9;
}
.contact__email-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(81, 0, 87, 0.25);
  border: 1px solid #2b1f33;
  border-radius: 0.75rem;
  padding: 0.75rem 1.1rem;
}
.contact__email-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #f0ccff;
  text-decoration: none;
}
.contact__email-link:hover, .contact__email-link:focus-visible {
  color: #cd4fff;
}
.contact__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid #2b1f33;
  border-radius: 0.5rem;
  background: transparent;
  color: #b9c3d4;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.contact__copy-btn:hover, .contact__copy-btn:focus-visible {
  color: #c979ff;
  border-color: #c979ff;
}
.contact__socials {
  display: flex;
  gap: 1rem;
}
.contact__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid #2b1f33;
  border-radius: 0.75rem;
  background-color: rgba(81, 0, 87, 0.25);
  color: #e5e7eb;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.contact__social-btn:hover, .contact__social-btn:focus-visible {
  border-color: #c979ff;
  color: #c979ff;
}

.site-footer {
  padding-block: 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}
.site-footer__inner {
  padding-block: 0.75rem;
}
.site-footer__text {
  font-size: 0.8rem;
  color: #b9c3d4;
}/*# sourceMappingURL=styles.css.map */