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

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.3;
  background: #0a0b0c;
  color: white;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  position: relative;
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
}

.container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  background: black;
  overflow: hidden;
}

.site-header__container {
  max-width: 1000px;
  position: relative;
  flex-direction: column;
}

.site-header__video {
  position: relative;
  z-index: 1;
  pointer-events: none;
  border-radius: 8px 8px 0 0;
  width: 100%;
  border: 5px solid #050607;
  border-bottom: 0;
  z-index: 1;
}

.site-header__laptop-base {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 10px;
  background: #050607;
  margin-bottom: 20px;
}

.site-header__laptop-bottom {
  position: relative;
  z-index: 1;
  position: absolute;
  left: -10%;
  bottom: 0;
  background: #070809;
  width: 120%;
  height: 20px;
  border-radius: 4px 4px 24px 24px;
}

.site-header__laptop-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  pointer-events: none;
}

.site-header__laptop-center {
  position: absolute;
  z-index: 1;
  left: 35%;
  bottom: 13px;
  background: #101112;
  width: 30%;
  height: 7px;
  border-radius: 0 0 12px 12px;
}

.site-header__backlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #409effcc;
  z-index: 0;
  filter: blur(200px);
  will-change: filter;
  pointer-events: none;
}

@media (max-width: 1300px) {
  .site-header {
    height: auto;
  }
}

.site-navbar {
  height: 60px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: 0.15s ease;
}

.site-navbar--scrolled {
  background: #050607;
}

.site-navbar__brand {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 19px;
}

.site-navbar__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-navbar__logo {
  height: 40px;
}

@media (max-width: 480px) {
  .site-navbar__logo {
    height: 30px;
  }
}

.site-nav {
  display: flex;
  gap: 10px;
}

.site-nav__link {
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: 0.15s ease;
}

.site-nav__link--download {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
}

.site-nav__link--download:hover {
  border: 1px solid #409eff;
  box-shadow: 0 0 20px #409eff33;
}

.screen {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.screen--about {
  background: #0d0e0f;
}

.screen--team {
  background: #0d0e0f;
}

.screen__heading {
  font-size: 28px;
  color: #409eff;
  text-align: center;
  margin-bottom: 30px;
}

.screen-about__container {
  max-width: 800px;
}

.screen-about__content {
  display: flex;
  gap: 20px;
}

.screen-about__icon {
  font-size: 60px;
}

.screen--download {
  background: linear-gradient(to top, rgba(64, 158, 255, 0.1) 0%, #070809 60%);
  overflow: hidden;
}

.screen-download__container {
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.feature {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid rgba(64, 158, 255, 0.1);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(64, 158, 255, 0.5);
}

.feature__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  color: #409eff;
}

.feature__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.feature__description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature {
    padding: 24px 20px;
  }

  .feature__icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.try-button {
  position: relative;
  font-size: 15px;
  padding: 1em 2.7em;
  letter-spacing: 0.06em;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s ease;
  line-height: 1.4em;
  border: 2px solid #409eff;
  background: linear-gradient(
    to right,
    rgba(64, 158, 255, 0.1) 1%,
    transparent 40%,
    transparent 60%,
    rgba(64, 158, 255, 0.1) 100%
  );
  color: #409eff;
  box-shadow: inset 0 0 10px rgba(64, 158, 255, 0.3),
    0 0 9px 3px rgba(64, 158, 255, 0.1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.try-button:hover {
  color: #7bb3ff;
  box-shadow: inset 0 0 15px rgba(64, 158, 255, 0.5),
    0 0 12px 4px rgba(64, 158, 255, 0.2);
}

.try-button:before {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(
    to right,
    transparent 1%,
    rgba(64, 158, 255, 0.15) 40%,
    rgba(64, 158, 255, 0.15) 60%,
    transparent 100%
  );
}

.try-button:hover:before {
  transform: translateX(200%);
}

@media (max-width: 480px) {
  .site-nav__link--github span {
    display: none;
  }

  .site-nav {
    gap: 0;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.team-member {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid rgba(64, 158, 255, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(64, 158, 255, 0.5);
}

.avatar {
  text-align: center;
}

.avatar__img {
  display: inline;
  max-width: 128px;
  border-radius: 50%;
}

.team-member__username {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-member__username .flag {
  height: 16px;
}

.team-member__role {
  opacity: 0.65;
}

.site-footer {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer img {
  display: inline;
  height: 20px;
}

.site-footer__container {
  display: flex;
  align-items: center;
  gap: 5px;
}