:root {
  --foreground-rgb: 255, 255, 255;
  --background-rgb: 15, 15, 15;
  color-scheme: dark;
}

*, *:before, *:after {
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  color: #e5e5e5;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #0f0f0f;
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  font-size: 1.6rem;
  color: #8b5cf6;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #a78bfa;
  text-decoration: underline;
}
@media (min-width: 768px) {
  a {
    font-size: 1.8rem;
  }
}

p {
  font-size: 1.6rem;
  padding: 0;
  margin: 1.5rem 0;
  line-height: 2.6rem;
  color: #a3a3a3;
}
@media (min-width: 768px) {
  p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4.8rem;
  }
}

h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3.6rem;
  }
}

h3 {
  font-size: 2.2rem;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2.6rem;
  }
}

h4 {
  font-size: 1.8rem;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 768px) {
  h4 {
    font-size: 2.2rem;
  }
}

h5 {
  font-size: 1.6rem;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.8rem;
  }
}

h6 {
  font-size: 1.4rem;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 768px) {
  h6 {
    font-size: 1.6rem;
  }
}

.skip-main {
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
.skip-main:focus, .skip-main:active {
  color: #ffffff;
  background-color: #1a1a1a;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: auto;
  margin: 0;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #8b5cf6;
  text-align: center;
  font-size: 1.6rem;
  z-index: 9999;
}

.is--mobile {
  display: block !important;
}
@media (min-width: 768px) {
  .is--mobile {
    display: none !important;
  }
}

.label--required {
  color: #ef4444;
  margin-left: 0.3rem;
}

.primary-btn {
  background-color: #8b5cf6;
  color: #ffffff;
  border: none;
  transition: all ease 0.3s;
  padding: 1.4rem 2.8rem;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn:focus-visible {
  background-color: #a78bfa;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.secondary-btn {
  background-color: transparent;
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
  transition: all ease 0.3s;
  padding: 1.4rem 2.8rem;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
}
.secondary-btn:hover, .secondary-btn:focus, .secondary-btn:focus-visible {
  background-color: #8b5cf6;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

header {
  background-color: rgba(15, 15, 15, 0.95);
  width: 100%;
  position: fixed;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  header {
    animation-name: minimize-header;
    animation-timeline: scroll();
    animation-range-start: 0px;
    animation-range-end: 200px;
    animation-timing-function: linear;
  }
}
header .container {
  padding: 1.5rem 2rem;
  position: relative;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  header .container {
    padding: 2rem 3rem;
  }
}

.header__logo {
  margin-right: auto;
  text-decoration: none;
}
.header__logo:hover {
  text-decoration: none;
}
.header__logo-text {
  font-size: 2rem;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 768px) {
  .header__logo-text {
    font-size: 2.4rem;
  }
}

.header-nav {
  align-self: center;
}
.header-nav__menu-items {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
.header-nav__menu-item {
  display: none;
}
@media (min-width: 768px) {
  .header-nav__menu-item {
    display: block;
  }
}
.header-nav__link {
  padding: 1rem 1.5rem;
  color: #a3a3a3;
  font-size: 1.6rem;
  transition: color 0.3s ease;
  border-radius: 6px;
}
.header-nav__link:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: rgba(139, 92, 246, 0.1);
}
.header-nav__link:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

.menu__toggle {
  left: 1rem;
  top: 1rem;
  opacity: 0;
  position: absolute;
}
.menu__toggle:checked + .menu__toggle-label span {
  background: transparent;
}
.menu__toggle:checked + .menu__toggle-label:after {
  top: 50%;
  transform: rotate(45deg);
}
.menu__toggle:checked + .menu__toggle-label:before {
  top: 50%;
  transform: rotate(-45deg);
}
.menu__toggle:checked ~ .menu__navigation {
  display: block;
  transform: translateX(0);
  opacity: 1;
}
.menu__toggle:focus + .menu__toggle-label {
  outline: 2px solid #8b5cf6;
  outline-offset: 4px;
  border-radius: 4px;
}
.menu__toggle-label {
  width: 3.5rem;
  height: 2.8rem;
  display: flex;
  cursor: pointer;
  align-items: center;
  position: relative;
  justify-content: center;
}
.menu__toggle-label:before, .menu__toggle-label:after, .menu__toggle-label .menu__bar {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.menu__toggle-label:before, .menu__toggle-label:after {
  content: "";
  left: 0;
  position: absolute;
}
.menu__toggle-label:before {
  top: 0;
}
.menu__toggle-label:after {
  bottom: 0;
}
.menu__navigation {
  right: 0;
  top: 6rem;
  bottom: 0;
  width: 100%;
  position: fixed;
  background: #1a1a1a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  transform: translateX(100%);
  opacity: 0;
}
.menu__menu-item-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.menu__menu-item {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #2d2d2d;
}
.menu__menu-item:last-child {
  border-bottom: none;
}
.menu__menu-link {
  color: #ffffff;
  font-size: 1.8rem;
  display: block;
  padding: 2rem;
  transition: background-color 0.3s ease;
}
.menu__menu-link:hover {
  background-color: rgba(139, 92, 246, 0.1);
  text-decoration: none;
}
.menu__menu-link:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: -2px;
}

@keyframes minimize-header {
  0% {
    background: transparent;
    backdrop-filter: blur(0);
  }
  100% {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
  }
}
.banner {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-areas: "stack";
  min-height: 100vh;
  overflow: hidden;
}
.banner > * {
  grid-area: stack;
}
.banner__image {
  z-index: 1;
  width: 100%;
  object-fit: cover;
  min-height: 100%;
  filter: brightness(0.3);
}
@media (prefers-reduced-motion: no-preference) {
  .banner__image {
    animation: parallax-banner linear;
    animation-timeline: scroll();
  }
}
.banner__content {
  z-index: 50;
  width: auto;
  max-width: 700px;
  align-self: center;
  justify-self: center;
  padding: 3rem 2rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  margin: 0 2rem;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .banner__content {
    padding: 4rem 5rem;
  }
}
.banner__content h1 {
  margin-bottom: 0.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .banner__content h1 {
    animation: fadeInUp 0.8s ease-out forwards;
  }
}
.banner__content p {
  color: #a3a3a3;
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .banner__content p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
  }
}
.banner__subtitle {
  font-size: 1.8rem !important;
  color: #8b5cf6 !important;
  margin-bottom: 1.5rem !important;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 768px) {
  .banner__subtitle {
    font-size: 2rem !important;
  }
}
.banner__sphere {
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 40;
  background: rgba(139, 92, 246, 0.15);
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 50%;
  filter: blur(0.5px);
}
@media (prefers-reduced-motion: no-preference) {
  .banner__sphere {
    animation: parallax-banner linear;
    animation-timeline: scroll();
  }
}
.banner__sphere.sphere--one {
  --speed: -8;
  top: -20%;
  left: -10rem;
  width: 6rem;
  height: 6rem;
}
@media (min-width: 768px) {
  .banner__sphere.sphere--one {
    left: -25rem;
    width: 10rem;
    height: 10rem;
  }
}
@media (min-width: 992px) {
  .banner__sphere.sphere--one {
    left: -35rem;
  }
}
.banner__sphere.sphere--two {
  --speed: -15;
  top: -10%;
  left: 12rem;
  width: 8rem;
  height: 8rem;
}
@media (min-width: 768px) {
  .banner__sphere.sphere--two {
    left: 25rem;
    width: 12rem;
    height: 12rem;
  }
}
@media (min-width: 992px) {
  .banner__sphere.sphere--two {
    left: 38rem;
  }
}
.banner__sphere.sphere--three {
  --speed: -5;
  top: 30%;
  left: -5rem;
  width: 4rem;
  height: 4rem;
}
@media (min-width: 768px) {
  .banner__sphere.sphere--three {
    left: -15rem;
    width: 6rem;
    height: 6rem;
  }
}

@keyframes parallax-banner {
  to {
    transform: translateY(calc(var(--speed, -10) * 15px));
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-card {
  background-color: #252525;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}
.project-card:hover .project-card__image {
  transform: scale(1.05);
}
.project-card:focus-within {
  outline: 2px solid #8b5cf6;
  outline-offset: 4px;
}
@media (min-width: 768px) {
  .project-card {
    width: calc(33.333% - 1.5rem);
    margin-bottom: 0;
  }
}
.project-card__link {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card__link:hover {
  text-decoration: none;
}
.project-card__link:focus {
  outline: none;
}
.project-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .project-card__image {
    height: 180px;
  }
}
.project-card__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-card__title {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .project-card__title {
    font-size: 2rem;
  }
}
.project-card__description {
  margin: 0;
  font-size: 1.4rem;
  color: #a3a3a3;
  line-height: 2.2rem;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .project-card__description {
    font-size: 1.5rem;
  }
}

.latest-projects {
  padding: 6rem 0;
  background-color: #0f0f0f;
}
@media (min-width: 768px) {
  .latest-projects {
    padding: 8rem 0;
  }
}
.latest-projects .container {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.latest-projects__headline {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .latest-projects__headline {
    margin-bottom: 4rem;
  }
}
.latest-projects__btn-container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .latest-projects__btn-container {
    padding-top: 4rem;
  }
}

#bio {
  padding: 6rem 0;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  #bio {
    padding: 8rem 0;
  }
}

.bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .bio {
    flex-direction: row;
  }
}
.bio__image-container {
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 3rem;
  width: 200px;
  height: 200px;
  border: 3px solid #8b5cf6;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .bio__image-container {
    width: 280px;
    height: 280px;
  }
}
@media (min-width: 992px) {
  .bio__image-container {
    margin-right: 5rem;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .bio__image-container {
    transform: translateX(-50px);
    opacity: 0;
    animation-name: slideInLeft;
    animation-timeline: view();
    animation-range-start: 100px;
    animation-range-end: 300px;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
}
.bio__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bio__content {
  text-align: center;
}
@media (min-width: 992px) {
  .bio__content {
    text-align: left;
    max-width: 550px;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .bio__content {
    transform: translateX(50px);
    opacity: 0;
    animation-name: slideInRight;
    animation-timeline: view();
    animation-range-start: 100px;
    animation-range-end: 300px;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
}
.bio__content__ctas {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .bio__content__ctas {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .bio__content__ctas {
    justify-content: flex-start;
  }
}
.bio__headline {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.bio__description {
  color: #a3a3a3;
}

.contact-us {
  display: flex;
  padding: 6rem 0;
  background-color: #0f0f0f;
}
@media (min-width: 768px) {
  .contact-us {
    padding: 8rem 0;
  }
}
.contact-us .container {
  max-width: 700px;
  flex-wrap: wrap;
}
.contact-us__headline {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-us__description {
  text-align: center;
  width: 100%;
  margin-bottom: 3rem;
  color: #a3a3a3;
}
.contact-us__form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-us__label {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: #e5e5e5;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.contact-us__input, .contact-us__text-area {
  width: 100%;
  margin-bottom: 2rem;
  padding: 1.4rem 1.6rem;
  background-color: #1a1a1a;
  border: 1px solid #404040;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.6rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-us__input:focus, .contact-us__text-area:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.contact-us__input::placeholder, .contact-us__text-area::placeholder {
  color: #a3a3a3;
}
.contact-us__text-area {
  min-height: 150px;
  resize: vertical;
}
.contact-us__message-description {
  margin: -1rem 0 2rem 0;
  text-align: left;
  font-size: 1.3rem;
  color: #a3a3a3;
}
.contact-us__submit-btn {
  margin-top: 1rem;
  font-size: 1.6rem;
  border: none;
}
@media (min-width: 768px) {
  .contact-us__submit-btn {
    max-width: 200px;
    align-self: flex-start;
  }
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.footer {
  background-color: #0f0f0f;
  display: flex;
  justify-content: center;
  padding: 3rem 2rem;
  color: #a3a3a3;
  border-top: 1px solid #2d2d2d;
}
.footer__content {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.footer__content-item {
  text-align: center;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .footer__content-item {
    font-size: 1.6rem;
  }
}

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