@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  min-height: 100vh;
  color: #061229;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 102, 255, 0.13),
      transparent 32%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(0, 102, 255, 0.08),
      transparent 30%
    ),
    #fff;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  height: 120px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
  padding-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;

  padding: 14px 24px;

  border: 1px solid #dbe8ff;
  border-radius: 999px;

  color: #065cff;
  background: #f7fbff;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.22em;

  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

h1 {
  max-width: 650px;

  font-size: clamp(38px, 4.8vw, 58px);

  line-height: 1.08;
  letter-spacing: -0.045em;

  font-weight: 900;
}

p {
  max-width: 520px;

  margin-top: 22px;

  color: #617089;

  font-size: 17px;
  line-height: 1.7;
}

.actions {
  margin-top: 38px;
}

.actions a {
  text-decoration: none;
  padding: 16px 25px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.25s;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, #0066ff, #003fce);
  box-shadow: 0 18px 35px rgba(0, 102, 255, 0.22);
}

.ghost {
  color: #061229;
  border: 1px solid #e3eaf5;
  background: #fff;
}

img{
    border-radius: 50%;
}

.actions a:hover,
nav a:hover {
  transform: translateY(-3px);
}

.visual {
  position: relative;
  display: grid;
  place-items: center;
}

.visual img {
  width: min(100%, 610px);
  filter: drop-shadow(0 28px 45px rgba(0, 43, 120, 0.18));
  animation: float 4.5s ease-in-out infinite;
}

.glow {
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.15);
  filter: blur(55px);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 36px;
}

.features div {
  padding: 20px 22px;
  border: 1px solid #e8eef7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(6, 18, 41, 0.04);
}

.features b {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.features span {
  color: #6b7890;
  font-size: 14px;
}

footer {
  padding: 22px 0 28px;
  border-top: 1px solid #edf1f7;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #7a879c;
  font-size: 14px;
}

@keyframes float {
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 18px;
  }

  .content,
  p {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .visual img {
    max-width: 430px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  nav {
    height: 96px;
    padding-top: 14px;
  }

  .brand {
    width: 135px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
  }

  .actions a {
    width: 100%;
    text-align: center;
  }
}
