@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500&display=swap");

:root {
  --primary-bg-gradient: linear-gradient(
    170.356deg,
    #012719 15.118%,
    #073323 30.681%,
    #073323 65.03%,
    #012719 99.38%
  );
  --green-gradient: linear-gradient(
    147.595deg,
    #0f4632 1.5919%,
    #012719 97.295%
  );
  --surface-accent-green: #0f8057;
  --icon-accent-green: #0f8057;
  --text-primary: #fff;
  --text-secondary: #ffffffa6;
  --font-body: "Sora", sans-serif;
  --device-show-height: 335px;
  --device-width: 240px;
  --device-height: 520px;
}

html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-width: 100vw;
  background: var(--primary-bg-gradient);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow: hidden;
  font-family: "Sora", sans-serif;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  box-sizing: border-box;

  @media (min-width: 576px) {
    max-width: 540px;
  }

  @media (min-width: 768px) {
    max-width: 720px;
  }

  @media (min-width: 992px) {
    max-width: 960px;
  }

  @media (min-width: 1200px) {
    max-width: 1140px;
  }

  @media (min-width: 1400px) {
    max-width: 1320px;
  }
}

.landing-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: calc(100vh - 360px);
  margin-top: 16px;

  @media (min-width: 576px) {
    margin-top: 0;
  }

  @media (min-width: 992px) {
    margin-top: 25px;
    height: calc(100vh - var(--device-show-height) - 75px);
  }
}

.landing-header {
  text-align: center;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.3;
  color: var(--text-primary);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;

  @media (min-width: 768px) {
    max-width: 500px;
  }

  @media (min-width: 992px) {
    font-size: 56px;
    max-width: 1000px;
  }
}

.landing-logo {
  height: 80px;
  width: 80px;

  @media (min-width: 992px) {
    height: 120px;
    width: 120px;
  }

  img {
    width: 100%;
    height: 100%;
  }
}

.landing-coming-soon-graphic {
  width: 78px;
  height: 30px;

  @media (min-width: 992px) {
    width: 97px;
    height: 40px;
  }
}

.landing-device-wrapper {
  position: absolute;
  bottom: 360px;
  left: 0;
  right: 0;

  @media (min-width: 992px) {
    bottom: 0;
  }
}

.landing-device-anchor {
  position: relative;
  margin-top: 0;

  @media (min-width: 992px) {
    top: calc(var(--device-show-height) * -1);
  }
}

.landing-device {
  position: absolute;
  left: 50%;
  top: 0;
  transform: scale(0.8) translateX(calc(-50% - 20px));
  width: 140px;
  height: 300px;

  @media (min-width: 576px) {
    transform: scale(1) translateX(-50%);
  }

  @media (min-width: 992px) {
    width: 240px;
    height: 520px;
  }
}

.device-bezel {
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 300px;

  @media (min-width: 992px) {
    width: 240px;
    height: 520px;
  }
}

.device-bezel-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 166px;
  height: 320px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url("assets/images/device-bezel-mobile.svg");

  @media (min-width: 992px) {
    width: 284px;
    height: 565px;
    background-image: url("assets/images/device-bezel.svg");
  }
}

.device-crop-screen {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  border-radius: 20px;
  width: 140px;
  height: 300px;

  @media (min-width: 992px) {
    width: 240px;
    height: 520px;
    border-radius: 30px;
  }
}

.device-screen {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 140px;
  height: 300px;

  @media (min-width: 992px) {
    width: 240px;
    height: 520px;
  }
}

.device-intro-screen {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(147.595deg, #0f4632 1.5919%, #012719 97.295%);
  overflow: hidden;
  width: 140px;
  height: 300px;

  @media (min-width: 992px) {
    width: 240px;
    height: 520px;
  }
}

.device-home-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 21px;
  display: flex;
  align-items: flex-end;
  justify-content: center;

  @media (min-width: 992px) {
    left: 0;
    bottom: 0;
    width: 239px;
    height: 21px;
  }
}

.device-home-indicator-bar {
  width: 60px;
  height: 2px;
  background: #fff;
  border-radius: 100px;
  margin-bottom: 5px;

  @media (min-width: 992px) {
    width: 88px;
    height: 3px;
  }
}

.device-status-bar {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 10px 0 10px;
  box-sizing: border-box;
  width: 140px;
  height: 31px;

  @media (min-width: 992px) {
    width: 240px;
    align-items: flex-start;
  }
}

.device-status-bar-time {
  font-family: "SF Pro", "Sora", sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #fff;
}

.device-status-bar-icons img {
  height: 8px;
  margin-left: 4px;
}

.device-blur {
  position: absolute;
  left: 50%;
  top: -242px;
  width: 392px;
  height: 392px;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 392.061px;
  opacity: 0.5;
  background: #001a10;
  background: color(display-p3 0.0122 0.0978 0.0667);
  filter: blur(62.209205627441406px);
}

.device-button-arrow {
  position: absolute;
  bottom: 30px;
  left: 110px;
  width: 11px;
  height: 11px;
  transform: translateX(-50%);
  z-index: 2;

  @media (min-width: 992px) {
    bottom: 35px;
    left: 210px;
    width: 42px;
    height: 23px;
  }
}

.device-button-arrow img {
  width: 100%;
  height: 100%;
}

.device-pagination {
  position: absolute;
  top: 255px;
  left: 70px;
  width: 63px;
  height: 3px;
  transform: translateX(-50%);
  z-index: 2;

  @media (min-width: 992px) {
    top: 461px;
    left: 120px;
  }
}

.device-pagination img {
  width: 100%;
  height: 100%;
}

.device-copy-1 {
  position: absolute;
  left: 5px;
  top: 178px;
  width: 130px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;

  @media (min-width: 992px) {
    left: 15px;
    top: 272px;
    width: 211px;
  }
}

.device-copy-1-title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1.2;

  @media (min-width: 992px) {
    font-size: 24px;
  }
}

.device-copy-1-desc {
  font-weight: 300;
  font-size: 6px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  line-height: 1.6;

  @media (min-width: 992px) {
    font-size: 11px;
  }
}

.device-main-img {
  position: absolute;
  left: 50%;
  top: 60px;
  width: 114px;
  height: 114px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  z-index: 2;

  @media (min-width: 992px) {
    width: 195px;
    height: 195px;
  }
}

.device-logo {
  position: absolute;
  left: 50%;
  top: 45px;
  width: 15px;
  height: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 2px;
  z-index: 2;

  @media (min-width: 992px) {
    width: 24px;
    height: 20px;
  }
}

.device-logo img {
  height: 100%;
}

.landing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.landing-footer-left,
.landing-footer-right {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.landing-footer-right {
  text-decoration: underline;
}

.landing-coming-soon {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 24px;

  @media (min-width: 576px) {
    gap: 24px;
  }
}

.landing-coming-soon-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
  text-align: left;
  white-space: nowrap;
}

.landing-device-img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 284px;
  height: 565px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Add more classes as needed for the rest of the layout and images */
