@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,500;0,700;1,400&display=swap");

* {
  /* brand foundation */
  --brand-hue: 215;
  --brand-saturation: 70%;
  --brand-lightness: 40%;

  /* light */
  --brand-light: hsl(
    var(--brand-hue) var(--brand-saturation) var(--brand-lightness)
  );
  --text1-light: hsl(var(--brand-hue) var(--brand-saturation) 10%);
  --text2-light: hsl(var(--brand-hue) 30% 30%);
  --text3-light: hsl(var(--brand-hue) 30% 50%);

  --surface1-light: hsl(var(--brand-hue) 25% 90%);
  --surface2-light: hsl(var(--brand-hue) 20% 99%);
  --surface3-light: hsl(var(--brand-hue) 20% 100%);
  --surface4-light: hsl(var(--brand-hue) 20% 85%);
  --surface5-light: hsl(var(--brand-hue) 70% 97%);

  --surface-shadow-light: var(--brand-hue) 10% 20%;
  --shadow-strength-light: 0.02;
  --background-light: hsl(0% 0% 100%);

  /* dark */
  --brand-dark: hsl(
    var(--brand-hue) calc(var(--brand-saturation) / 1)
      calc(var(--brand-lightness) * 1.65)
  );
  --text1-dark: hsl(var(--brand-hue) 15% 85%);
  --text2-dark: hsl(var(--brand-hue) 5% 65%);
  --text3-dark: hsl(var(--brand-hue) 5% 45%);
  --surface1-dark: hsl(var(--brand-hue) 10% 10%);
  --surface2-dark: hsl(var(--brand-hue) 10% 15%);
  --surface3-dark: hsl(var(--brand-hue) 5% 20%);
  --surface4-dark: hsl(var(--brand-hue) 5% 25%);
  --surface5-dark: hsl(var(--brand-hue) 5% 25%);
  --surface-shadow-dark: var(--brand-hue) 50% 3%;
  --shadow-strength-dark: 0.8;
  --background-dark: hsl(var(--brand-hue) 10% 10%);

  /* dim */
  --brand-dim: hsl(
    var(--brand-hue) calc(var(--brand-saturation) / 1.25)
      calc(var(--brand-lightness) / 1.25)
  );
  --text1-dim: hsl(var(--brand-hue) 15% 75%);
  --text2-dim: hsl(var(--brand-hue) 10% 61%);
  --surface1-dim: hsl(var(--brand-hue) 10% 20%);
  --surface2-dim: hsl(var(--brand-hue) 10% 25%);
  --surface3-dim: hsl(var(--brand-hue) 5% 30%);
  --surface4-dim: hsl(var(--brand-hue) 5% 35%);
  --surface-shadow-dim: var(--brand-hue) 30% 13%;
  --shadow-strength-dim: 0.2;
}

:root {
  color-scheme: light;

  /* set defaults */
  --brand: var(--brand-light);
  --text1: var(--text1-light);
  --text2: var(--text2-light);
  --text3: var(--text3-light);
  --surface1: var(--surface1-light);
  --surface2: var(--surface2-light);
  --surface3: var(--surface3-light);
  --surface4: var(--surface4-light);
  --surface5: var(--surface5-light);
  --surface-shadow: var(--surface-shadow-light);
  --shadow-strength: var(--shadow-strength-light);
  --background: var(--background-light);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --brand: var(--brand-dark);
    --text1: var(--text1-dark);
    --text2: var(--text2-dark);
    --text3: var(--text3-dark);
    --surface1: var(--surface1-dark);
    --surface2: var(--surface2-dark);
    --surface3: var(--surface3-dark);
    --surface4: var(--surface4-dark);
    --surface5: var(--surface5-dark);
    --surface-shadow: var(--surface-shadow-dark);
    --shadow-strength: var(--shadow-strength-dark);
    --background: var(--background-dark);
  }
}

[color-scheme="light"] {
  color-scheme: light;

  --brand: var(--brand-light);
  --text1: var(--text1-light);
  --text2: var(--text2-light);
  --text3: var(--text3-light);
  --surface1: var(--surface1-light);
  --surface2: var(--surface2-light);
  --surface3: var(--surface3-light);
  --surface4: var(--surface4-light);
  --surface5: var(--surface5-light);
  --surface-shadow: var(--surface-shadow-light);
  --shadow-strength: var(--shadow-strength-light);
  --background: var(--background-light);
}

[color-scheme="dark"] {
  color-scheme: dark;

  --brand: var(--brand-dark);
  --text1: var(--text1-dark);
  --text2: var(--text2-dark);
  --text3: var(--text3-dark);
  --surface1: var(--surface1-dark);
  --surface2: var(--surface2-dark);
  --surface3: var(--surface3-dark);
  --surface4: var(--surface4-dark);
  --surface5: var(--surface5-dark);
  --surface-shadow: var(--surface-shadow-dark);
  --shadow-strength: var(--shadow-strength-dark);
  --background: var(--background-dark);
}

[color-scheme="dim"] {
  color-scheme: dark;

  --brand: var(--brand-dim);
  --text1: var(--text1-dim);
  --text2: var(--text2-dim);
  --surface1: var(--surface1-dim);
  --surface2: var(--surface2-dim);
  --surface3: var(--surface3-dim);
  --surface4: var(--surface4-dim);
  --surface-shadow: var(--surface-shadow-dim);
  --shadow-strength: var(--shadow-strength-dim);
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  height: 100%;
  background-color: var(--background);
  color: var(--text1);
  font-family: "Lato", "Helvetica Neue", sans-serif;
}

body {
  height: 100%;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: text;
  margin: 0px 0px 0px 0px;
  -webkit-font-smoothing: antialiased;
  animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
  -ms-animation: fadeIn 2s;
}

.app-home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  padding-top: 4%;
}

.hero-h1 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Georgia, Times, "Times New Roman", serif;
  color: var(--text1);
  font-size: 32px;
  line-height: 1.4em;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.01em;
  max-width: 520px;
}

.h2 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Georgia, Times, "Times New Roman", serif;
  color: var(--text1);
  font-size: 28px;
  line-height: 1.1em;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.01em;
}

.h3 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Georgia, Times, "Times New Roman", serif;
  color: var(--text1);
  font-size: 24px;
  line-height: 1.1em;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.01em;
}

.max500 {
  max-width: 500px;
  text-align: center !important;
  margin-bottom: 0px;
}

.paragraph {
  padding-bottom: 24px;
}

.artical {
  text-align: left;
  max-width: 640px;
  padding-bottom: 32px;
  padding-top: 40px;
  color: var(--text2);
  font-size: 17px;
}

.hero-button-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 32px;
}

.button.home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 1px 1px 1px 0 #25a4fd;
  color: #25a4fd;
  font-size: 16px;
}

.button.home:hover {
  color: #fff;
}

.beta_txt_home {
  margin: 20px auto;
  color: var(--text2);
  font-size: 1em;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}

.home-text {
  color: var(--text2);
  font-size: 19px;
  line-height: 1.8em;
}

.big-btn {
  color: var(--brand);
  border-radius: 5px;
  border: 1px solid var(--surface4);
  background-color: var(--surface3);
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  font-weight: 600;
  padding: 11px 30px 11px 30px;
  text-transform: uppercase;
}

.big-btn:hover {
  background-color: var(--surface5);
  border: 1px solid var(--surface4);
  cursor: pointer;
}

.button-separate {
  width: 15px;
}

.app-home-description {
  max-width: 530px;
  color: var(--text2);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}

.app-home-conteiner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}

.app-logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  float: left;
  text-decoration: none;
  color: var(--surface1);
  margin-bottom: 32px;
}

.early-access-card {
  background-image: linear-gradient(#242222, #131313);
  border: 1px solid #464545;
  border-radius: 8px;
  width: 100%;
  padding: 4px;
  position: relative;
  box-shadow: 0 12px 8px -2px rgba(0, 0, 0, 0.21);
  max-width: 1280px;
}

.hero-section-app-tab {
  grid-column-gap: 6px;
  background-color: #323536;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  align-items: center;
  width: 100%;
  height: 20px;
  padding-left: 13px;
  padding-right: 14px;
  display: flex;
}

.hero-section-app-tab.right {
  justify-content: flex-end;
}

.hero-section-app-tab.feature-big {
  grid-column-gap: 3px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 12px;
  padding-left: 6px;
}

.app-dot._2.home-feat-2,
.app-dot._3.home-feat-3,
.app-dot.home-feat {
  width: 2px;
  height: 2px;
}

.app-dot {
  background-color: #f8645c;
  border-radius: 20px;
  width: 6px;
  height: 6px;
}

.app-dot._2 {
  background-color: #fcb72e;
}

.app-dot._2.home-feat-2 {
  width: 3px;
  height: 3px;
}

.app-dot._3 {
  background-color: #29c540;
}

.app-dot._3.home-feat-3,
.app-dot.home-feat {
  width: 3px;
  height: 3px;
}

.early-access-small-image {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 100%;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-logo-img {
  height: 32px;
  width: 32px;
  margin-right: 8px;
  /*    opacity: 0;
    transform: translateY(3rem);
    animation: fadeInUp 2s ease calc(var(--typewriterSpeed) + 2s) forwards; */
}

.copyright {
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: small;
  color: var(--text3);
}

.social-net {
  margin-bottom: 4px;
  color: var(--surface4);
}

.beta-wraper {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-color: white;
}

.auth-header {
  position: sticky;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 20;
  display: block;
  height: 60px;
  background-color: #fff;
}

.beta-form {
  display: flex;
  min-width: 100%;
  min-height: 90vh;
  border: 0;
}

.footer-link {
  color: var(--text3);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--text1);
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--surface4);
}

.copy-link {
  color: var(--text3);
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-color: var(--surface3);
}

.copy-link:hover {
  color: var(--text2);
  text-decoration-line: underline;
}

.site-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-right: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-logo-text {
  font-family: Bitter, serif;
  color: var(--text2);
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

.domain {
  color: var(--text3);
}

hr {
  border: none;
  border-top: 1px dotted var(--text3);
  height: 1px;
  width: 64px;
  padding-bottom: 20px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 960px) {
  .app-home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    padding-top: 4%;
  }

  .beta_txt_home {
    margin: 20px auto;
    color: var(--text2);
    font-size: 1em;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  .app-home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    padding-top: 6%;
  }

  .beta_txt_home {
    margin: 20px auto;
    color: var(--text2);
    font-size: 1em;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
  }

  .hero-h1 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: Georgia, Times, "Times New Roman", serif;
    color: var(--text1);
    font-size: 24px;
    line-height: 1.1em;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.01em;
    max-width: 520px;
  }

  .h2 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: Georgia, Times, "Times New Roman", serif;
    color: var(--text1);
    font-size: 28px;
    line-height: 1.1em;
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.01em;
  }

  .h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: Georgia, Times, "Times New Roman", serif;
    color: var(--text1);
    font-size: 24px;
    line-height: 1.1em;
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.01em;
  }

  .paragraph {
    padding-bottom: 24px;
  }

  .site-logo-text {
    font-family: Bitter, serif;
    color: var(--text2);
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin-top: 2px;
  }
}

@media only screen and (max-width: 400px) {
  .app-home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    padding-top: 3%;
  }

  .beta_txt_home {
    margin: 10px auto;
    color: var(--text2);
    font-size: 1em;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
  }
  .app-home-description {
    max-width: 530px;
    margin-bottom: 30px;
    color: var(--text2);
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }
}
