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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #fff9c4 0%, #ffe0f0 45%, #f8bbd0 100%);
  cursor: default;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

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

.logo-wrap {
  position: relative;
  transform: translate(0, 0);
  will-change: transform;
}

.logo {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  user-select: none;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.logo-ghost {
  position: absolute;
  top: 0;
  width: 200px;
  height: 200px;
  opacity: 0;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  transition: opacity 0.1s ease;
}

.logo-ghost-left {
  left: 0;
}

.logo-ghost-right {
  left: 0;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: breathe 4s ease-in-out infinite;
}

.glow-outer {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 64, 129, 0.14) 0%,
    rgba(255, 241, 180, 0.1) 40%,
    transparent 65%
  );
}

.glow-mid {
  width: 260px;
  height: 260px;
  filter: blur(14px);
  animation-delay: 0.5s;
  background: radial-gradient(
    circle,
    rgba(255, 105, 180, 0.22) 0%,
    rgba(255, 182, 235, 0.12) 50%,
    transparent 70%
  );
}

.glow-inner {
  width: 120px;
  height: 120px;
  filter: blur(6px);
  animation-delay: 1s;
  background: radial-gradient(
    circle,
    rgba(255, 64, 129, 0.28) 0%,
    rgba(255, 176, 242, 0.15) 50%,
    transparent 80%
  );
}

.social {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social:hover {
  color: #ff4081;
}

.subscribe {
  display: flex;
  align-items: stretch;
  width: 220px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(255, 64, 129, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe:focus-within {
  border-color: rgba(255, 64, 129, 0.45);
  box-shadow: 0 2px 16px rgba(255, 64, 129, 0.16);
}

.subscribe-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0 14px;
  font-size: 11px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: rgba(0, 0, 0, 0.7);
  outline: none;
}

.subscribe-input::placeholder {
  color: rgba(0, 0, 0, 0.32);
}

.subscribe-btn {
  flex-shrink: 0;
  border: none;
  padding: 0 16px;
  background: #ff4081;
  color: #fff;
  font-size: 10px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.subscribe-btn:hover:not(:disabled) {
  background: #f50057;
}

.subscribe-btn:disabled {
  opacity: 0.65;
  cursor: default;
}

.subscribe-honey {
  display: none;
}

.subscribe-msg {
  min-height: 14px;
  font-size: 10px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  transition: color 0.2s ease;
}

.subscribe-msg.success {
  color: #ff4081;
}

.subscribe-msg.error {
  color: rgba(0, 0, 0, 0.55);
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .logo,
  .logo-ghost {
    width: 160px;
    height: 160px;
  }

  .glow-outer {
    width: 360px;
    height: 360px;
  }

  .glow-mid {
    width: 200px;
    height: 200px;
  }

  .glow-inner {
    width: 96px;
    height: 96px;
  }

  .subscribe {
    width: 196px;
    height: 32px;
  }

  .subscribe-input {
    font-size: 10px;
    padding: 0 12px;
  }

  .subscribe-btn {
    padding: 0 14px;
    font-size: 9px;
  }
}
