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

:root {
  --background-color: #000f16;
  --foreground-color: #ffffff;
}

.html {
  overflow-x: hidden;
}

.body {
  background-color: var(--background-color);
  color: var(--foreground-color);
  overflow-x: hidden;
  position: relative;
}

.header {
  width: 100%;
  background-color: #011522;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 8px;
  border-radius: 0 0 32px 32px;
  border: rgba(255, 255, 255, 0.15) 2px solid;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

img.logo {
  width: 64px;
  height: 64px;
}

p.logo {
  font-weight: 400;
  font-size: 48px;
}

.bold {
  font-weight: 600;
}

.main {
  display: flex;
  gap: 32px;
  max-width: 1536px;
  padding: 32px 16px;
  margin: auto;
  min-height: 100vh;
  min-height: 100dvh;
}

.section {
  max-width: 1536px;
  padding: 32px 16px;
  margin: auto;
}

.main-slogan-wrapper {
  width: 50%;
  flex-shrink: 0;
  margin-top: 64px;
}

.main-slogan {
  font-weight: 400;
  font-size: 36px;
}

.ui-hero-screenshot {
  position: relative;
  top: 5%;
  right: 0px;

  aspect-ratio: 16/9;
  height: 70vh;
  object-fit: cover;
  border-radius: 32px;
  border: rgba(255, 255, 255, 0.15) 2px solid;

  transform: translateX(100%);
  transition: transform 0.25s ease-in-out;
}

.main-features-wrapper {
  margin: 32px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 32px;
  background-color: #000f16;
  border: rgba(255, 255, 255, 0.15) 2px solid;
  font-size: 20px;
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.main-buttons-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 24px;
  border-radius: 16px;
  border: rgba(255, 255, 255, 0.15) 2px solid;
  font-size: 20px;
  gap: 8px;
}

.button.disabled {
  background-color: #191d1f;
  cursor: not-allowed;
}

.button.accent {
  background-color: #092516;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}

.button.accent:hover {
  background-color: #26884b;
}

.sub-buttons-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  gap: 16px;
  flex-wrap: wrap;
}

.button.secondary {
  background-color: #06191b;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}

.button.secondary:hover {
  background-color: #206f73;
}

.button.wahsu {
  background-color: #41190f;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}

.button.wahsu:hover {
  background-color: #fe633d;
}

.disclaimer {
  margin-top: 64px;
  padding: 16px 24px;
  border-radius: 32px;
  font-size: 18px;
  line-height: 24px;
}

.disclaimer-text {
  font-weight: 400;
  margin-top: 16px;
}

.section-title {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  /* margin-top: -172px; */
  margin-bottom: 32px;
}

.section-screenshots-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section-screenshot {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 32px;
  border: rgba(255, 255, 255, 0.15) 2px solid;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

a:-webkit-any-link {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .sub-buttons-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .ui-hero-screenshot {
    position: unset;
    margin: auto;
    margin-bottom: -48px;
    height: unset;
    width: 100%;
    transform: translateX(0%);
  }

  .main {
    flex-direction: column;
  }

  .main-slogan-wrapper {
    width: 100%;
  }

  .section-screenshots-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-title {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .main-buttons-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub-buttons-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
