html {
  scroll-behavior: smooth;
  background: #06070a;
}

body {
  font-family: 'Manrope', 'SF Pro Text', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: #06070a;
  color: #f5f5f7;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
}

::selection {
  background: #7CF7C8;
  color: #06070a;
}

:focus-visible {
  outline: 2px solid #7CF7C8;
  outline-offset: 3px;
  border-radius: 8px;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #7d8590;
}

.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7CF7C8;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 14px #7CF7C8;
}

.headline em {
  font-style: normal;
  color: #7CF7C8;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 4px #7CF7C8);
  }
  50% {
    opacity: .45;
    filter: drop-shadow(0 0 1px #7CF7C8);
  }
}

.pulse-dot {
  animation: pulseDot 2.4s ease-in-out infinite;
}

.pulse-dot.d2 {
  animation-delay: .4s;
}

.pulse-dot.d3 {
  animation-delay: .8s;
}

.pulse-dot.d4 {
  animation-delay: 1.2s;
}

.input {
  width: 100%;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 14px 16px;
  color: #f5f5f7;
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease;
}

.input::placeholder {
  color: #5a626c;
}

.input:hover {
  border-color: rgba(255, 255, 255, .18);
}

.input:focus {
  outline: none;
  border-color: #7CF7C8;
  background: rgba(124, 247, 200, .04);
}

.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7d8590;
  margin-bottom: 8px;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .reveal.in {
    opacity: 1;
    transform: none;
  }
}
