html {
  box-sizing: border-box;
}

html * {
  box-sizing: inherit;
}

html,
body {
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #401489;
  background: linear-gradient(180deg, #ebedff 0%, #f3f4ff 100%);
  font: 500 20px "Inter", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

#page-header {
  padding: 24px 16px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

#logo {
  height: 36px;
}

.row,
.column {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-link {
  display: block;
  height: 24px;
  width: 24px;
}
.social-link:hover {
  background: #4fe820;
  border-radius: 99px;
}
.social-link img {
  width: 100%;
  height: 100%;
}

.btn {
  font-weight: 600;
  color: #f9ffd1;
  background: linear-gradient(90deg, #4fe820 0%, #95f000 100%);
  text-decoration: none;
  padding: 8px 32px;
  border-radius: 22px;
  box-shadow: 0 1px 2px rgb(0 86 255 / 20%);
  border: none;
  white-space: nowrap;
  display: block;

  cursor: pointer;
  transition: transform 100ms ease-in-out;
  will-change: transform;
}
.btn:hover {
  background: linear-gradient(90deg, #3ef008 0%, yellow 100%);
  transform: scale(1.02) rotate(-0.3deg);
}
.btn:active {
  transform: scale(0.96) rotate(-0.3deg);
  background: linear-gradient(90deg, #3ef008 0%, yellow 100%);
}
#home-splash p {
  padding: 0 46px 0 0;
}
p {
  font-family: Poppins;
  font-size: 18px;
  color: #401489;
  font-weight: 500;
}

#home-section {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 92px);
  background: radial-gradient(
    50% 50% at 50% 100%,
    #1bff00 0%,
    transparent 100%
  );
}

#home-splash {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  animation-timing-function: cubic-bezier(0.26, 0, 0, 1);
  animation-name: reveal;
  animation-fill-mode: both;
  animation-duration: 1s;
  will-change: transform, opacity;
}
@keyframes reveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
#home-splash-text {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}
#home-splash-text p {
  background-image: linear-gradient(
    200deg,
    rgb(0 33 255) 0%,
    rgb(43 0 255) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#headline-title {
  font-size: 42px;
  font-weight: 700;
  transform: rotate(3deg);
  position: relative;
  margin: 0;
}
#eff1 {
  position: absolute;
  top: -110px;
  width: 320px;
  left: -30px;
}
#headline-title small {
  font-size: 30px;
}
#video {
  width: 240px;
  height: 427px;
  background: transparent;
}

#page-footer {
  padding: 128px 0 16px;
  max-width: 790px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#page-footer a {
  color: #401489;
}
#footer-logo {
  height: 16px;
  display: block;
}
#page-footer small {
  font-size: 12px;
  font-weight: 600;
}
a {
  text-decoration: none;
}
a:not(.btn):hover {
  text-decoration: underline;
}
.nav-link {
  color: #401489;
  font-size: 15px;
  font-weight: 500;
}
#join-waitlist {
  position: relative;
  margin: 0 0 32px;
}
#join-waitlist form {
  padding: 12px;
  border-radius: 99px;
  background-color: rgb(238 255 235 / 52%);
  box-shadow: rgba(255, 255, 255, 0.25) 1px 1px 1px 0px inset,
    rgba(255, 255, 255, 0.05) -1px -1px 1px 0px inset;
  transform: scale(0.9);
  transition: transform 100ms ease-in-out;
  will-change: transform;
}
#join-waitlist form:hover {
  transform: scale(0.94);
}
#join-waitlist form:has(#signup-input:focus) {
  transform: scale(1);
}
#signup-input {
  font-size: 24px;
  font-weight: 600;
  font-family: Poppins;
  color: #4fe820;
  padding: 8px 46px 8px 16px;
  border-radius: 24px;
  max-width: 360px;
  box-shadow: 0 1px 2px rgb(87 232 83 / 70%);
  border: none;
}
#signup-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
#signup-input:focus::placeholder {
  color: #4fe820;
}
#signup-input:focus {
  outline: none;
}
#submit-btn {
  width: 50px;
  height: 50px;
  font-size: 0;
  border-radius: 99px;
  padding: 0;
  position: absolute;
  right: 13px;
  top: 13px;
}

#root {
  position: absolute;
  right: -90px;
}

.tw {
  font-family: Tilt Warp;
  font-size: 62px;
  position: relative;
  left: 40px;
  color: lime;
  text-shadow: 2px 3px blue;
}
.bn {
  font-family: Bangers;
  font-size: 76px;
  transform: rotate(-4deg) translate(-20px, 0);
  display: block;

  background-image: linear-gradient(
    340deg,
    rgb(20 0 255) 0%,
    rgb(255 0 113) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.engg {
  color: #27deff;
  text-shadow: 4px 4px #007eff;
  font-size: 60px;
  transform: rotate(-3deg);
  display: inline-block;
  width: 240px;
  text-align: center;
}
.kl {
  font-family: Koulen;
  font-size: 50px;
  transform: rotate(-1deg);
  display: block;
  color: #001de9;
}

#in-mins {
  transform: translate(330px, 0px);
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;

  background-image: linear-gradient(
    315deg,
    rgb(0 33 255) 0%,
    rgb(0 167 255) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section {
  max-width: 1200px;
  margin: 0 auto;
}
#section-expl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  padding: 64px 16px 0;
}
.cards {
  display: flex;
  gap: 64px;
}
.card {
  flex: 1;
  text-align: center;
}
.card p {
  text-wrap: balance;
}

#section-expl p {
  background-image: linear-gradient(
    200deg,
    rgb(0 33 255) 0%,
    rgb(43 0 255) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}
#section-expl h4 {
  font-family: Tilt Warp;
  font-size: 40px;
  font-weight: 500;
  line-height: 1em;
  margin: 16px 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card:first-child h4 {
  background-image: linear-gradient(
    269deg,
    rgb(0 217 255) 0%,
    rgb(0 19 255) 100%
  );
}
.card:nth-child(2) h4 {
  background-image: linear-gradient(
    352deg,
    rgb(0 217 255) 0%,
    rgb(0 114 255) 100%
  );
}
.card:last-child h4 {
  background-image: linear-gradient(
    89deg,
    rgb(0 217 255) 0%,
    rgb(0 19 255) 100%
  );
}
#section-roadmap {
  padding: 128px 16px 32px;
}
#section-roadmap h3 {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  margin: 16px 0;

  background-image: linear-gradient(
    340deg,
    rgb(0 217 255) 0%,
    rgb(0 19 255) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#roadmap-desc {
  text-align: center;
}
#timeline {
  display: flex;
  flex-direction: column;
  padding: 0 64px;
  margin: 32px 0 0;
}
#timeline-line {
  height: 4px;
  position: relative;
  top: -10px;
  z-index: -1;
  display: flex;
}
#timeline-line-done {
  background: lime;
  border-radius: 2px 0 0 2px;
  flex: 6;
}
#timeline-line-left {
  background: blue;
  border-radius: 0 2px 2px 0;
  flex: 2;
}
.timeline-content {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-item-content {
  font-size: 12px;
  text-align: center;
  margin: 0 0 4px;
}
.timeline-item-icon {
  width: 16px;
  height: 16px;
  background: lime;
  border-radius: 8px;
  border: 4px solid blue;
}

.list {
  display: flex;
  flex-direction: column;
}
#demo {
  height: 100vh;
  max-width: 100vw;
  background: linear-gradient(180deg, #40ff31 0%, #fffc00 100%);
}

#demo-canvas canvas + div::-webkit-scrollbar {
  display: none;
}
#demo-canvas canvas + div {
  scrollbar-width: none;
}

.glass {
  backdrop-filter: blur(20px);
  background-color: rgba(125, 125, 125, 0.3);
  box-shadow: rgba(255, 255, 255, 0.25) 1px 1px 1px 0px inset,
    rgba(255, 255, 255, 0.05) -1px -1px 1px 0px inset;
}

@media screen and (max-width: 820px) {
  #page-header {
    display: flex;
    flex-direction: column;
  }
  #signup-btn {
    font-size: 14px;
    margin: 16px 0 0;
  }

  #headline-title {
    margin: 0;
  }
  #home-section {
    justify-content: space-around;
    height: initial;
  }
  #headline-title small {
    font-size: 28px;
    margin: 92px 0 0;
    display: block;
  }
  .btn {
    padding: 8px 24px;
    font-size: 18px;
  }
  #section-expl {
    flex-direction: column;
    align-items: center;
  }
  .card {
    max-width: 320px;
  }
}

@media screen and (max-width: 680px) {
  #root {
    display: none;
  }
  .img-btn {
    bottom: 10px;
    right: -20px;
    height: 170px;
  }
  #home-splash {
    flex-direction: column;
  }
  #home-splash-text {
    align-items: center;
  }
  #headline-title {
    width: 330px;
  }
  #video {
    margin: 64px 0;
  }
  .tw {
    font-size: 44px;
  }
  .bn {
    font-size: 64px;
    transform: rotate(-4deg) translate(8px, 0);
  }
  .kl {
    font-size: 26px;
  }
  .engg {
    font-size: 44px;
    width: 190px;
  }
  p {
    font-size: 16px;
    text-align: center;
    padding: 0;
  }
  .row {
    justify-content: center;
    margin: 16px 0 0;
  }
  .column {
    flex-direction: column;
  }
  #in-mins {
    transform: translate(240px, 0px);
  }
  .timeline-item-content {
    font-size: 10px;
  }
  #timeline {
    padding: 0;
  }
  .timeline-content {
    gap: 4px;
  }
  .cards {
    flex-direction: column;
  }
}

.privacy {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Inter;
  font-weight: 400;
}
.privacy p {
  font-family: Inter;
  font-weight: 400;
}
.privacy h1,
.privacy h2,
.privacy h3 {
  font-weight: 500;
}
.privacy h1 {
  text-align: center;
}
