.hero {
  min-height: 100vh;
  padding: 120px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-logo img {
  width: 72px;
  height: 72px;
  display: none;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
}

.hero p {
  max-width: 520px;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ===== PILLS ===== */
.hero-pills {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 28px;
}

.pill {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    inset 0 0 8px rgba(0,255,255,0.15),
    0 0 12px rgba(0,255,255,0.25);
}

.pill img {
  width: 22px;
  height: 22px;
  z-index: 2;
}

.pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;

  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0,255,255,0.9) 90deg,
    transparent 180deg,
    rgba(0,255,255,0.9) 270deg,
    transparent 360deg
  );

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  mask-composite: exclude;
  -webkit-mask-composite: xor;

  animation: spin 2.5s linear infinite;
  opacity: 0.9;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== CTA ===== */
.hero-cta {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  color: #00ffff;
}

.cta-card {
  position: relative;
  overflow: hidden;

  padding: 16px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(0,255,250.9);
  box-shadow:
    0 0 12px rgba(0,255,255,0.9),
    inset 0 0 10px rgba(0,255,255,0.3);

  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;

  background:
    /* TOP */
    linear-gradient(
      90deg,
      transparent,
      rgba(0,255,255,0.95),
      transparent
    ) top center / 0% 2px no-repeat,

    /* BOTTOM */
    linear-gradient(
      90deg,
      transparent,
      rgba(0,255,255,0.95),
      transparent
    ) bottom center / 0% 2px no-repeat,

    /* LEFT */
    linear-gradient(
      180deg,
      transparent,
      rgba(0,255,255,0.8),
      transparent
    ) left center / 2px 0% no-repeat,

    /* RIGHT */
    linear-gradient(
      180deg,
      transparent,
      rgba(0,255,255,0.8),
      transparent
    ) right center / 2px 0% no-repeat;

  filter:
    drop-shadow(0 0 10px rgba(0,255,255,0.75))
    drop-shadow(0 0 18px rgba(0,255,255,0.45));

  animation: ctaWaveBorder 2.8s ease-in-out infinite;
}

@keyframes ctaWaveBorder {
  0% {
    background-size:
      0% 3px,
      0% 2px,
      3px 0%,
      3px 0%;
  }

  40% {
    background-size:
      100% 3px,
      100% 3px,
      3px 0%,
      3px 0%;
  }

  70% {
    background-size:
      100% 3px,
      100% 3px,
      3px 100%,
      3px 100%;
  }

  100% {
    background-size:
      100% 3px,
      100% 3px,
      3px 100%,
      3px 100%;
  }
}

/* ===== SHINE EFFECT ===== */
.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.2),
    rgba(0,255,255,0.6),
    rgba(0,255,255,0.2),
    transparent
  );

  transform: skewX(-20deg);
  filter: blur(6px);
  opacity: 0;
}

/* HOVER */
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 20px rgba(0,255,255,0.7),
    inset 0 0 12px rgba(0,255,255,0.2);
}

.cta-card:hover::before {
  animation: cta-shine 1.2s ease-in-out;
  opacity: 1;
}

/* ===== ANIMASI ===== */
@keyframes cta-shine {
  from {
    left: -120%;
  }
  to {
    left: 140%;
  }
}