﻿:root {
  --primary-text: rgba(255, 255, 255, 0.9);
  --secondary-text: rgba(255, 255, 255, 0.7);
  --tertiary-text: rgba(255, 255, 255, 0.35);
  --tertiary-text-light: rgba(138, 138, 142, 1);
  --easing-func: cubic-bezier(0.1, 0.6, 0.4, 1);
  --border-color: rgba(255, 255, 255, 0.1);
  --link-color: rgba(11, 132, 255, 1);
  --background: #000000;
}

a {
  color: #0b84ff;
  text-decoration: underline;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a:not(.btn) span {
  -webkit-text-fill-color: white;
}

#__next {
  overflow: hidden;
}

html {
  background: var(--background);
}

html,
* {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html[data-scroll-lock='true'] {
  overflow: hidden;
}
html[data-scroll-lock='true'] body {
  overflow: hidden;
}


body,
* {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, Roboto,
    "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden scroll;
  color: white;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#__next {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.features-gradient {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .features-gradient {
    right: unset;
    left: -50%;
  }
}

