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

html {
  font-size: 17px;
  background: #000d18;
  color: #dcdcfa;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono {
  font-family: 'Space Mono', monospace;
  font-size: .85em;
  color: rgba(220, 220, 250, .35);
}

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

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  gap: 2rem;
}

.hero-left {
  flex: 0 0 auto;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  z-index: 2;
}

.hero-right {
  flex: 1;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

#ascii-container {
  width: 100%;
  height: 100%;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  line-height: 1;
  color: rgba(220, 220, 250, .5);
  white-space: pre;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: rgba(220, 220, 250, .2);
  cursor: pointer;
  transition: color .3s;
  z-index: 3;
}

.scroll-hint:hover {
  color: rgba(220, 220, 250, .4);
}

.scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: .55rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-hint svg {
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(4px)
  }
}

#content {
  padding: 0 6vw 4rem;
}

.rule {
  height: 1px;
  background: rgba(220, 220, 250, .07);
  margin: 3rem 0;
}

.mark {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .18em;
}

.tagline {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
}

.desc {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(220, 220, 250, .5);
  max-width: 520px;
}

.sect {
  padding: 0;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(220, 220, 250, .2);
  margin-bottom: 1.5rem;
}

.cap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cap {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(220, 220, 250, .05);
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.cap:last-child {
  border-bottom: none;
}

.cap-name {
  font-size: 1rem;
  font-weight: 400;
  color: #dcdcfa;
  flex: 0 0 160px;
  display: flex;
  align-items: baseline;
  gap: .5em;
  margin: 0;
}

.cap-desc {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(220, 220, 250, .5);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.step {
  font-size: .82rem;
  color: rgba(220, 220, 250, .5);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(220, 220, 250, .03);
  display: flex;
  align-items: baseline;
  gap: .6em;
}

.step:last-child {
  border-bottom: none
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(220, 220, 250, .05);
  padding: 1.2rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: .88rem;
  font-weight: 400;
  color: #dcdcfa;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-family: 'Space Mono', monospace;
  font-size: .8rem;
  color: rgba(220, 220, 250, .2);
}

details[open] .faq-q::after {
  content: '-';
}

.faq-a {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(220, 220, 250, .5);
  padding-top: 1rem;
}

.step .mono {
  min-width: 1em;
  color: rgba(220, 220, 250, .2);
}

.hero-btns,
.bottom-btns {
  display: flex;
  gap: .6rem;
}

.btn-flat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .02em;
  padding: .45em 1.1em;
  border: 1px solid rgba(220, 220, 250, .15);
  color: rgba(220, 220, 250, .5);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-flat:hover {
  border-color: rgba(220, 220, 250, .4);
  color: rgba(220, 220, 250, .85);
}

.btn-flat.btn-primary {
  border-color: rgba(96, 224, 160, .25);
  color: #60e0a0;
}

.btn-flat.btn-primary:hover {
  border-color: #60e0a0;
}

footer {
  display: flex;
  align-items: baseline;
  gap: .5em;
  font-size: .65rem;
  color: rgba(220, 220, 250, .15);
}

.mark-sm {
  font-weight: 400;
  letter-spacing: .15em;
}

.foot-sep {
  color: rgba(220, 220, 250, .08);
}

.foot-text {
  font-weight: 300;
}

@media(max-width:768px) {
  #hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 3rem 1.5rem;
    gap: 1rem;
  }

  .hero-left {
    max-width: none;
  }

  .hero-right {
    height: 40vh;
    width: 100%;
  }

  #content {
    padding: 2rem 1.5rem 2rem;
  }
}

@media(max-width:520px) {
  .tagline {
    font-size: 1.6rem
  }

  .cap-list {
    gap: .5rem;
  }

  .cap {
    flex-direction: column;
    gap: .4rem;
    padding: 1rem 0;
  }

  .cap-name {
    flex: none;
  }

  #hero {
    padding: 2rem 1.2rem
  }

  #content {
    padding: 1.5rem 1.2rem 2rem
  }
}