.button--primary {
  background: rgba(0,59,255,0.75);
  color: #fff;
  gap: 8px;
  padding: 8px 22px;
}

.button--primary:hover {
  transform: translateY(-2px);
}

.button--secondary {
  color: #fff;
  background: rgba(255,255,255,0.15);
  gap: 8px;
  padding: 8px 22px;
}

.button--secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}



/* ================= HERO ================= */
.hero {
  padding: 60px 0px 120px;
  background:radial-gradient(70% 80% at center, #002FFF, #000000 50%);
}

.hero__container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  text-align: center;
}

/* Text */
.hero__content {
  animation: fadeUp 2s ease forwards;
}

.hero__title {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 400;
  margin: 20px auto;
  max-width: 600px;
}

.hero__title-serif {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  color: #e6ebff;
  position: relative;
  font-size: 50px;
  margin: 20px auto;
  max-width: 600px;
}

.hero__description {
  max-width: 720px;
  margin: auto;
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.5;
}

/* Visual Card */
.hero__visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 2s ease forwards;
  z-index: 2;
}

.hero__card {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 25px;
  padding: 0px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  z-index: 2;
}

/* Indicator */
.hero__indicator {
  display: flex;
  gap: 10px;
  position: absolute;
  left: 30px;
  top: 30px;
}

.hero__indicator span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,1);
  border-radius: 50%;

}

/* Image */
.hero__image {
  width: 100%;
  border-radius: 25px;
  display: block;
}

/* Actions */
.hero__actions {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  body {
    line-height: 1.2;
  }

  /* HERO */
  .hero {
    padding: 40px 16px 80px;
  }

  .hero__container {
    gap: 40px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero__title-serif {
    font-size: 34px;
    display: inline-block;
  }

  .hero__description {
    font-size: 14px;
    max-width: 100%;
    margin-top: 12px;
  }

  /* CARD */
  .hero__card {
    border-radius: 18px;
  }

  .hero__indicator {
    left: 20px;
    top: 20px;
  }

  .hero__image {
    border-radius: 18px;
  }

  .hero__actions {
    position: static;
    margin-top: 16px;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding-bottom: 16px;
  }

  .hero__actions .button {
    font-size: 18px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
    
/* ================= HERO ================= */
.hero {
  padding: 80px 20px 50px;
  background:radial-gradient(100% 60% at center, #002FFF, #000000 70%);
}

.hero__container {
  gap: 50px;
}

/* Text */

.hero__title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 0.2;
}

.hero__title-serif {
  font-weight: 400;
  color: #e6ebff;
  position: relative;
  font-size: 26px;
  line-height: 0.2;
}

.hero__description {
  max-width: 360px;
  margin: auto;
  font-size: 12px;
  line-height: 1.5;
}
    
 .hero__image {
    height: 400px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
    align-items: center; 
    position: absolute;
    bottom: 16px;
    right: 16px;
    left: 16px; 
  }

  .hero__actions .button {
    width: 90%;
    justify-content: center;
  }
}