@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: white;
  background-color: #171717;
  overflow-x: hidden;
}

.page {
  width: 100%;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #2B2B2B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
header a {
  text-decoration: none;
  color: white;
}
header a .logo {
  display: flex;
  align-items: center;
}
header a .logo img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
header a .logo span {
  font-size: 22px;
  letter-spacing: -0.5px;
}
header a .logo span b {
  font-weight: 700;
}
header .desktop-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}
header .desktop-nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
header .desktop-nav ul li a:hover {
  color: white;
  transform: translateY(-2px);
}
header .login-btn {
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
header .login-btn:hover {
  background-color: white;
  color: #171717;
  transform: translateY(-1px);
}
header .burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
header .burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
}
header dialog {
  display: none;
  width: 100%;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background-color: #171717;
  border: none;
  padding: 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  flex-direction: column;
  gap: 40px;
  color: white;
  box-sizing: border-box;
}
header dialog[open] {
  display: flex;
  animation: slideInMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
header dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
}
header dialog .dialog-header .logo {
  display: flex;
  align-items: center;
}
header dialog .dialog-header .logo img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
header dialog .dialog-header .logo span {
  font-size: 22px;
  letter-spacing: -0.5px;
}
header dialog .dialog-header .logo span b {
  font-weight: 700;
}
header dialog .dialog-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
}
header dialog nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
header dialog nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
header dialog nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 600;
}
header dialog nav .login-btn-mobile {
  width: 100%;
  border: 1px solid white;
  background: white;
  color: #171717;
  padding: 14px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

@keyframes slideInMenu {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 50px 60px 50px;
}
.hero .hero-text {
  max-width: 800px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.hero p b {
  color: white;
  font-weight: 600;
}
.hero .hero-image {
  position: relative;
  margin-top: 40px;
  height: 480px;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6)), url("../../assets/hero-image.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: scaleIn 1s ease forwards;
  overflow: hidden;
}
.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.hero .hero-image:hover::after {
  opacity: 0;
}
.hero .hero-image p {
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-size: 16px;
  font-weight: 600;
  background: rgba(43, 43, 43, 0.8);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.releases {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px;
}
.releases h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.releases .release-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}
.releases .release-cards .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: 24px;
  background-color: #2B2B2B;
  border: 1px solid rgba(255, 255, 255, 0.02);
  height: 420px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.releases .release-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}
.releases .release-cards .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.releases .release-cards .card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  flex-grow: 1;
}
.releases .release-cards .card button {
  align-self: flex-start;
  border: none;
  background: white;
  color: #171717;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.releases .release-cards .card button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.technology-partners {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px 100px 50px;
}
.technology-partners h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}
.technology-partners .partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  width: 100%;
}
.technology-partners .partner-logos .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background-color: #2B2B2B;
  border: 1px solid rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}
.technology-partners .partner-logos .logo i {
  font-size: 54px;
  transition: transform 0.3s ease;
}
.technology-partners .partner-logos .logo:hover {
  background-color: #363636;
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.technology-partners .partner-logos .logo:hover i {
  transform: scale(1.1);
}

footer {
  background-color: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  padding: 80px 50px 40px 50px;
  font-size: 15px;
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 250px;
}
footer .logo img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .logo span {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
footer .logo span b {
  font-weight: 700;
}
footer .links {
  display: flex;
  flex-direction: column;
  gap: 64px;
  flex: 3 1 600px;
}
@media (min-width: 768px) {
  footer .links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
footer .links .column h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
footer .links .column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .links .column ul li a {
  display: inline-block;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
footer .links .column ul li a:hover {
  transform: translateY(-4px);
  opacity: 0.7;
}
footer .links p {
  color: #2B2B2B;
  font-size: 14px;
  margin: 0;
  grid-column: 1/-1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  header {
    padding: 0 30px;
  }
  .hero {
    padding: 120px 30px 40px 30px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero .hero-image {
    height: 360px;
  }
  .releases,
  .technology-partners {
    padding: 40px 30px;
  }
  footer {
    padding: 60px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 0 24px;
  }
  header .desktop-nav,
  header .login-btn {
    display: none;
  }
  header .burger-icon {
    display: flex;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h1 br {
    display: none;
  }
  .hero p {
    font-size: 16px;
  }
  .hero p br {
    display: none;
  }
  .hero .hero-image {
    height: 280px;
  }
  .hero .hero-image p {
    bottom: 16px;
    right: 16px;
    font-size: 14px;
  }
  .releases .release-cards .card {
    height: auto;
    min-height: 360px;
  }
  footer .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  footer .links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
  footer .links .column h4 {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
  }
}/*# sourceMappingURL=home-styles.css.map */