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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #0A0A0A;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  color: #fff;
  text-decoration: none;
}
.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.btn--primary {
  background-color: #2548C2;
}
.btn--primary:hover {
  background-color: #1e3a98;
}
.btn--secondary {
  border: 1px solid rgba(31, 41, 55, 0.5);
  background-color: transparent;
}
.btn--secondary:hover {
  border-color: rgba(49.3837209302, 65.3139534884, 87.6162790698, 0.5);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}
.nav__content {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}
.nav__logo img {
  width: 35px;
}
.nav__menu {
  display: none;
}
@media (min-width: 768px) {
  .nav__menu {
    display: block;
  }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: #2548C2;
}
.nav__toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}
.nav__mobile {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
}
.nav__mobile-links a:hover {
  background-color: rgba(31, 41, 55, 0.5);
}

.hero {
  position: relative;
  padding: 8rem 1rem 5rem;
  overflow: hidden;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37, 72, 194, 0.1), transparent), radial-gradient(circle at top right, rgba(24.7467532468, 48.1558441558, 129.7532467532, 0.5), transparent 50%), radial-gradient(circle at top left, rgba(24.7467532468, 48.1558441558, 129.7532467532, 0.5), transparent 50%);
}
.hero__content {
  position: relative;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.hero__text {
  text-align: center;
}
@media (min-width: 768px) {
  .hero__text {
    text-align: left;
  }
}
.hero h1, .hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 2rem 0;
  background: linear-gradient(to right, #2548C2, rgb(84.9350649351, 115.6168831169, 222.5649350649));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .hero h1, .hero h2 {
    font-size: 4.5rem;
  }
}
.hero p {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 3rem;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .hero__buttons {
    justify-content: flex-start;
  }
}
.hero__image {
  display: none;
}
@media (min-width: 768px) {
  .hero__image {
    display: block;
    position: relative;
    width: 75%;
    aspect-ratio: 1;
    max-width: 32rem;
    margin: 0 auto;
  }
  .hero__image img {
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(37, 72, 194, 0.1);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(37, 72, 194, 0.2);
  background-color: rgba(37, 72, 194, 0.1);
  color: #2548C2;
}
.badge .icon {
  width: 1rem;
  height: 1rem;
}

.features {
  padding: 5rem 1rem;
}
.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.features__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom, #111, #000);
  border: 1px solid rgba(31, 41, 55, 0.5);
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(37, 72, 194, 0.5);
}
.feature-card .icon {
  width: 3rem;
  height: 3rem;
  color: #2548C2;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #9ca3af;
}

.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.5);
  padding: 3rem 1rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer__logo img {
  width: 25px;
}
.footer__brand p {
  color: #9ca3af;
}
.footer__links h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__links ul {
  list-style: none;
}
.footer__links ul li {
  margin-bottom: 0.5rem;
}
.footer__links ul a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links ul a:hover {
  color: rgb(184.2067039106, 189.2122905028, 197.7932960894);
}
.footer__bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.5);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}
