@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --gray-200: #e4e7ec;
  --gray-400: #98a2b3;
  --gray-500: #667085;
  --gray-800: #1d2939;
  --gray-900: #101828;
  --page-bg: #f6fafb;
  --white: #fff;
  --primary-color: #2e80ff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #f6fafb;
  color: var(--gray-900);
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3 {
  font-weight: 500;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg {
  display: inline-block;
  vertical-align: middle;
  var(--)
}

button {
  --btn-bg: transparent;
  --btn-text: var(--gray-900);
  --btn-border: none;
  appearance: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  border: var(--btn-border);
  background-color: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  cursor: pointer;
  letter-spacing: 0.5;
}

.button-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.button--large {
  padding: 1rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.demo-icon svg {
  width: 2rem;
  height: 2rem;
}

.primary-button {
  --btn-bg: var(--primary-color);
  --btn-text: var(--white);
}

.secondary-button {
  --btn-border: 1px solid #d0d5dd;
  --btn-bg: var(--white);
}

.navbar {
  padding-top: 1rem;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
}

.hero-title--small {
  margin: 0 auto;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .hero-title--small {
    width: 25ch;
  }
}


:where(.hero-title, .hero-title--small, .hero-text) {
  margin-top: 1rem;
}

.hero-text {
  margin-top: 1rem;
  line-height: 1.5;
  color: var(--gray-500);
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.laptop {
  margin-top: 4rem;
  width: 100%;
  text-align: center;
}

.hero-badge {
  width: -moz-fit-content;
  width: fit-content;
  margin: 18 auto;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  margin-top: 3rem;
  font-size: 90%;
  background-color: #e6faf0;
  color: #1199a0;
}

@media screen and (min-width: 520px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-title--small {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 960px) {
  .hero {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-title--small {
    font-size: 2rem;
  }

  .hero-text {
    max-width: 55ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.175rem;
  }

  .hero-badge {
    margin-top: 6rem;
  }
}

.company-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 2rem;
  margin-top: 4rem;
}

.company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.company img {
  width: 2rem;
}

@media screen (min-width: 960px) {
  .company-list {
    gap: 4rem;
  }

  .company {
    font-size: 1.75rem;
  }
}

/* waiting-list */
.call-to-action {
  background-color: var(--white);
  /* color: var(--primary-color); */
}

.call-to-action button {
  padding: 1rem 2rem;
}

.call-to-action .container {
  padding: 0;
}

.call-to-action-content {
  --bg: #eaeefb;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg);
  padding: 4rem 1rem;
  text-align: center;
  gap: 2rem;
  text-wrap: balance;
}

.call-to-action-ctas {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.call-to-action-title {
  font-size: 1.25rem;
}

@media screen and (min-width: 960px) {
  .call-to-action {
    padding: 6rem 2rem;
  }

  .call-to-action-content {
    align-items: flex-start;
    flex-flow: row;
    text-align: left;
    padding: 3rem;
    border-radius: 2rem;
    text-wrap: inherit;
  }

  .call-to-action-content  p {
    max-width: 60ch;
  }

  .call-to-action-title {
    font-size: 1.45rem;
  }
}

@media screen and (min-width: 1140px) {
  .call-to-action {
    padding: 6rem;
  }

  .call-to-action-title {
    font-size: 1.75rem;
  }
}

/* testimonial */
.testimonial {
  padding: 4rem 0;
}

.testimonial-content {
  padding: 2rem 0;
  margin: 0 auto;
  text-align: center;
}

.testimonial-heading {
  font-size: 1.5rem;
}

.testimonial-username {
  font-size: 1.25rem;
}

.testimonial-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  padding: .25rem;
}

.testimonial-usertitle {
  color: var(--gray-500);
}

.testimonial :where(.testimonial-heading, img) {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .testimonial-heading {
    font-size: 1.75rem;
    margin-inline: auto;
    width: 30ch;
    font-weight: 500;
  }
}

/* footer */
.footer-top {
  padding: 3rem 0;
  background-color: var(--gray-800);
  color: var(--gray-200);
}

.footer-top p {
  margin-top: 1rem;
  width: 40ch;
  font-size: 0.85rem;
}

@media screen and (min-width: 768px) {
  .footer-top p {
    width: 350px;
    font-size: 1rem;
  }
}

.footer {
  background-color: #101828;
  background-color: var(--gray-900);
}

.footer-bottom-content {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  padding: 2rem 0;
  color: var(--gray-400);
  font-size: 90%;
}

@media screen and (min-width: 768px) {
  .footer-bottom-content {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  color: var(--gray-400);
}


/*.object-laptop {
  position: relative;
  width: 100%;
}
.object-laptop > .screen {
  position: relative;
  width: 80%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px #404040, inset 0 0 100px 0 rgba(0, 0, 0, 0.75), 0 25px 35px -5px #000000;
  background-color: #1a1a1a;
  border-radius: 7px 7px 0 0;
}
.object-laptop > .screen::before {
  display: block;
  position: relative;
  content: "";
  padding-top: 62.5%;
}
.object-laptop > .screen > .lcd {
  position: absolute;
  top: 3.5%;
  left: 2.5%;
  bottom: 3.5%;
  right: 2.5%;
  overflow: hidden;
  border: 1px solid;
  border-color: #000 #202020 #282828 #000;
  border-radius: 3px;
  background-color: #000;
  box-shadow: inset 0 0 200px 2px rgba(255, 255, 255, 0.05);
}
.object-laptop > .screen > .gloss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px 0 0 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0) 50%);
}
.object-laptop > .screen > .reflexion {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px 0 0 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 0.1%, rgba(255, 255, 255, 0.15) 33%, rgba(0, 0, 0, 0) 33.1%);
}
.object-laptop > .screen > .highlight {
  position: absolute;
  border-radius: 7px;
}
.object-laptop > .screen > .highlight.one {
  top: -4px;
  left: 2%;
  width: 80%;
  height: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 15%, rgba(0, 0, 0, 0) 100%);
}
.object-laptop > .screen > .highlight.two {
  top: 2%;
  left: -4px;
  width: 2px;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 15%, rgba(0, 0, 0, 0) 100%);
}
.object-laptop > .keyboard {
  position: relative;
  width: 100%;
}
.object-laptop > .keyboard.one {
  height: 0.25vw;
  border-radius: 1px 1px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.75) 2%, rgba(0, 0, 0, 0.33) 7%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.33) 93%, rgba(0, 0, 0, 0.75) 98%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.35) 33%, rgba(255, 255, 255, 0.35) 35%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, #141414 0%, #141414 100%);
}
.object-laptop > .keyboard.one::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 10%;
  height: 0.25vw;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.5) 12%, rgba(0, 0, 0, 0.5) 90%, #000000 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.object-laptop > .keyboard.two {
  height: 1.25vw;
  border-radius: 0 0 33% 33%;
  box-shadow: 0 -2px 0 -1px rgba(0, 0, 0, 0.5), 0 25px 35px -5px #000000;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, rgba(0, 0, 0, 0.75) 2%, rgba(0, 0, 0, 0.5) 7%, rgba(0, 0, 0, 0) 50%), linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 83%, rgba(0, 0, 0, 0.75) 98%, rgba(255, 255, 255, 0.35) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 33%, #ffffff 34%, #ffffff 100%), linear-gradient(0deg, #c8c8c8 0%, #c8c8c8 100%);
}
.object-laptop > .keyboard.two::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 10%;
  height: 0.5vw;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
  box-shadow: inset 0 -1px 3px 1px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0.5vw 0.5vw;
}
*/

.browser {
  position: relative;
  background: #ffffff;
  /*min-height: 500px;*/
  max-width: 80%;
  margin: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding-top: 45px;
  background-image: radial-gradient(circle, #EB7061 6px, transparent 6px), radial-gradient(circle, #F5D160 6px, transparent 6px), radial-gradient(circle, #81D982 6px, transparent 6px), radial-gradient(circle, #d0d0d0 2px, transparent 2px), radial-gradient(circle, #d0d0d0 2px, transparent 2px), radial-gradient(circle, #d0d0d0 2px, transparent 2px), linear-gradient(to bottom, #efefef 45px, transparent 0);
  background-position: left top, left top, left top, right top, right top, right top, 0 0;
  background-size: 50px 45px, 90px 45px, 130px 45px, 50px 30px, 50px 45px, 50px 60px, 100%;
  background-repeat: no-repeat, no-repeat;
}
.browser[url]:after {
  content: attr(url);
  color: #a3a3a3;
  font-size: 13px;
  font-weight: 400;
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 0;
  top: 0;
  padding: 3px 15px;
  margin: 9px 50px 0 90px;
  border-radius: 25px;
  background: #ffffff;
  height: 27px;
  box-sizing: border-box;
}

.iframe-wrapper {
  position: relative;
  overflow: hidden;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.iframe-wrapper img {
  top: 0;
  left: 0;
  width: 100%;
  border: 0;
}

.signature-wrapper {
  margin-top: 150px;
  margin-bottom: 100px;
  text-align: center;
}
.signature-wrapper .signature-title {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: normal;
  color: #fff;
}
.signature-wrapper .signature-link {
  color: #fff;
  display: inline-block;
  margin: 20px 0 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: solid 2px #ddd;
}