/* ==================================================
   GLOBAL
================================================== */

/* ===== RESET ===== */

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

/* ===== HTML ===== */

html {
  scroll-behavior: smooth;
}

/* ===== BODY ===== */

body {
  min-height: 100vh;

  background: #040b1b;
  color: #e6e7e8;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #e6e7e8;
  line-height: 1.2;
}

p {
  color: #94a3b8;
}

/* ===== LINKS ===== */

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

/* ===== LIST ===== */

ul,
ol {
  list-style: none;
}

/* ===== IMAGE ===== */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== FORM ===== */

button,
input,
textarea,
select {
  font: inherit;
}

/* ===== CONTAINER ===== */

.container {
  width: 100%;
  max-width: 1200px;

  margin-inline: auto;
  padding-inline: 2rem;
}

/* ===== SECTION ===== */

section {
  padding-block: 5rem;
}

/* ===== BUTTON ===== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.5rem;

  border: 1px solid transparent;
  border-radius: 0.5rem;

  font-size: 0.95rem;
  font-weight: 600;

  cursor: pointer;

  transition: 0.25s ease;
}

/* Primary Button */

.button--primary {
  background: linear-gradient(90deg, #526ff5, #7b4deb);

  color: #ffffff;
}

.button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Outline Button */

.button--outline {
  border-color: #526ff5;
  color: #e6e7e8;
}

.button--outline:hover {
  background: linear-gradient(90deg, #526ff5, #7b4deb);

  color: #ffffff;
}

/* ===== GRADIENT TEXT ===== */

.gradient-text {
  background: linear-gradient(90deg, #526ff5, #7b4deb);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* ===== FOCUS ===== */

a:focus-visible,
button:focus-visible {
  outline: 2px solid #526ff5;
  outline-offset: 3px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }

  section {
    padding-block: 4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }

  section {
    padding-block: 3rem;
  }
}
