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

/* BASE */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #0a0c12;
  color: #e8e8e8;
  -webkit-font-smoothing: antialiased;
}

/* GLOW */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,110,199,0.25), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(122,252,255,0.12), transparent 60%);
  pointer-events: none;
}

/* HERO */
.hero {
  text-align: center;
  padding: 110px 20px 70px;
}

.logo {
  width: 64px;
  margin-bottom: 22px;

  filter:
    drop-shadow(0 0 10px #ff6ec7)
    drop-shadow(0 0 25px #ff6ec755);

  animation: float 5s ease-in-out infinite;
}

.hero h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

.hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #ff6ec7;
  color: white;

  box-shadow:
    0 0 12px #ff6ec7,
    0 0 40px #ff6ec733;

  transition: all 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

/* ARTICLE */
.article {
  padding: 90px 20px;
}

.article-container {
  max-width: 720px;
  margin: auto;
}

.article h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.source {
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 24px;
}

.article p {
  font-size: 21px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}

/* WORD SYSTEM */
.word {
  display: inline-block;
  color: rgba(255,255,255,0.45);
  transition: color 0.35s ease, transform 0.25s ease;
}

.word.active {
  color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.word .bionic {
  transition: all 0.35s ease;
}

.word.active .bionic {
  color: #ff6ec7;
  font-weight: 600;
  text-shadow: 0 0 6px #ff6ec7;
}

/* FLOAT */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
