@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --background-color: #00000E;
  --text-color: #979797;
  --white-text-color: #EEEEEE;
  --main-padding: 80px;
  --card-color: #00000f;
  --main-gradient: linear-gradient(#0F0D65, #B520FA);
}

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

p, strong {
  line-height: 1.625;
}

input, select, textarea, button {
  font-size: inherit;
  font-family: inherit;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: "Inter";
  width: 100%;
}

.site-header {
  padding: 40px var(--main-padding);
  background: var(--background-color);
  display: grid;
  grid-template-columns: 125px 1fr 125px;
  justify-items: center;
  align-items: center;
}

.logo-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo-container h1, .logo-container h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-text-color);
}

.mobile-nav-button {
  display: none;
}

.site-nav {
  display: flex;
  gap: 60px;
}

.site-nav-item {
  color: inherit;
  text-decoration: none;
}
.site-nav-item.active {
  color: var(--white-text-color);
}
.site-nav-item:hover {
  opacity: 0.8;
}

.text-gradient {
  display: block;
  background: var(--main-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section-text {
  text-align: center;
  font-weight: 400;
  font-size: 80px;
  color: var(--white-text-color);
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 600px;
  margin: 0 auto;
  overflow-x: hidden;
}
.hero-section p {
  text-align: center;
  width: 750px;
  max-width: 80vw;
}
.hero-section .backdrop {
  background: radial-gradient(farthest-side, rgb(0, 0, 14) 50%, rgba(0, 0, 14, 0.57) 70%, rgba(0, 0, 14, 0) 100%);
  position: absolute;
  width: 800px;
  height: 500px;
  z-index: -1;
}
.hero-section .lines {
  min-width: 100vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -2;
}

.buttons-container {
  display: flex;
  gap: 20px;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 30px 0px rgba(170, 34, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 50px 0px rgba(170, 34, 255, 0.5);
  }
}
.action-button {
  cursor: pointer;
  color: var(--text-color);
  text-decoration: none;
  border: 1px solid var(--text-color);
  border-radius: 10px;
  padding: 10px 15px;
  font-size: inherit;
  transition: transform 0.3s ease;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.action-button:hover {
  opacity: 0.8;
}
.action-button:active {
  transform: scale(0.98);
}
.action-button.primary {
  color: var(--white-text-color);
  background: var(--main-gradient);
  border-color: var(--background-color);
  animation: glow 2s infinite alternate;
  box-shadow: 0 0 20px 0px rgba(170, 34, 255, 0.15);
}

.partners-container {
  margin: 80px var(--main-padding);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.partners-container img {
  height: 45px;
  margin: 0 auto;
}

.key-features-section {
  display: flex;
  flex-direction: column;
  margin: 0 var(--main-padding);
  gap: 40px;
}
.key-features-section h2 {
  font-size: 32px;
  font-weight: normal;
  color: var(--white-text-color);
}

.articles-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}
.articles-container article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}
.articles-container article img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 10px;
}
.articles-container article section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.articles-container article section h3 {
  color: var(--white-text-color);
}
.articles-container article section a {
  align-self: flex-end;
  color: white;
  text-decoration: none;
}

.article-page {
  margin: 40px auto;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-page h2 {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
}
.article-page h2, .article-page h3, .article-page h4 {
  color: var(--white-text-color);
}
.article-page img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 20px;
}
.article-page h4 {
  font-size: 20px;
  padding-top: 10px;
}
.article-page > * {
  line-height: 1.625;
}
.article-page ol {
  padding-left: 20px;
}
.article-page ol li {
  padding: 5px 0;
}

.cards {
  display: grid;
  gap: 20px;
  width: 100%;
}
.cards.features {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.cards.pricing {
  margin: 40px 0;
  grid-template-columns: repeat(3, 1fr);
}
.cards.pricing .action-button {
  width: 100%;
}
.cards.pricing .card {
  height: 550px;
}
.cards.pricing .card-info-wrapper {
  align-items: start;
}
.cards:hover > .card::after {
  opacity: 1;
}

.card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  height: 300px;
  flex-direction: column;
  position: relative;
  width: 100%;
  transition: transform 0.3s ease;
}
.card.glow {
  border: 2px solid #911CDA;
  box-shadow: 0 0 40px rgba(170, 34, 255, 0.4);
}
.card:hover {
  transform: scale(1.02);
}
.card:hover::before {
  opacity: 1;
}
.card::before, .card::after {
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  transition: opacity 500ms;
  width: 100%;
}
.card::before {
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
  z-index: 3;
}
.card::after {
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.35), transparent 40%);
  z-index: 1;
}
.card .card-content {
  background-color: var(--card-color);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  inset: 1px;
  padding: 10px;
  position: absolute;
  z-index: 2;
}

.card-info-wrapper {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
  padding: 20px;
}
.card-info-wrapper img {
  width: 200px;
}
.card-info-wrapper.left img {
  margin-right: 0;
}

.card-info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-info h3 {
  color: var(--white-text-color);
}
.card-info header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.price {
  font-size: 30px;
  background: linear-gradient(#737373, #eeeeee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: none;
}
.checklist li {
  display: flex;
  gap: 5px;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .cards.pricing {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1100px) {
  .cards.pricing .card {
    height: 800px !important;
  }
}
@media screen and (max-width: 1600px) {
  .cards.pricing .card {
    height: 700px;
  }
}
.contact-page {
  margin: 40px var(--main-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact-page h2 {
  font-size: 42px;
  color: var(--white-text-color);
  font-weight: normal;
  text-align: center;
}
.contact-page > p {
  width: 500px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  width: 600px;
}
.contact-form .action-button {
  margin-top: 20px;
}

.form-element {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-element label {
  color: var(--white-text-color);
}
.form-element textarea, .form-element input {
  background-color: #151520;
  border: 1px solid #626273;
  padding: 20px 15px;
  color: var(--text-color);
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}
.form-element textarea {
  resize: vertical;
  height: 120px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 600px;
  margin: 80px var(--main-padding);
  padding-top: 80px;
  border-top: 1px solid #343445;
  align-items: start;
}
.site-footer aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer aside address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 80px;
}
.site-footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  width: 85px;
}
.site-footer-nav a:hover {
  color: var(--white-text-color);
}

@media screen and (max-width: 1200px) {
  .cards.features {
    grid-template-columns: 1fr;
  }
  .card-info-wrapper img {
    width: 150px;
  }
  .partners-container img {
    height: 35px;
  }
  .site-header {
    grid-template-columns: max-content 1fr;
  }
  .header-placeholder {
    display: none;
  }
  .site-nav {
    justify-self: end;
  }
}
@media screen and (max-width: 1100px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer-nav {
    gap: 40px;
  }
}
@media screen and (max-width: 950px) {
  .hero-section-text {
    font-size: 60px;
  }
}
@media screen and (max-width: 750px) {
  :root {
    --main-padding: 40px;
  }
  .hero-section-text {
    font-size: 50px;
  }
  .card-info-wrapper img {
    width: 125px;
  }
}
@media screen and (max-width: 600px) {
  .card {
    height: 350px;
  }
  .card-info-wrapper {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .card-info-wrapper .card-info {
    align-items: center;
  }
  .card-info-wrapper:not(.left) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 550px) {
  .card {
    height: 400px;
  }
}
@media screen and (max-width: 400px) {
  :root {
    --main-padding: 20px;
  }
  .card {
    height: 500px;
  }
}
@media screen and (max-width: 350px) {
  .card {
    height: 600px;
  }
}
@media screen and (max-width: 650px) {
  .mobile-nav-button {
    display: flex;
    background: transparent;
    border: none;
    justify-self: end;
    padding: 5px;
  }
  .site-nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    background-color: white;
    height: 100%;
    right: 0;
    z-index: 1000;
    padding: 20px;
    width: 350px;
    max-width: 90%;
    text-align: right;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    box-shadow: 0 0 0px 0px hsla(0, 0%, 19%, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .site-nav.show {
    transform: translateX(0);
    box-shadow: 0 0 0px 2000px hsla(0, 0%, 19%, 0.51);
  }
  .site-nav-item {
    padding: 10px 0;
  }
  .site-nav-item.active, .site-nav-item {
    color: #2f2f2f;
  }
}/*# sourceMappingURL=style.css.map */