:root {
  --brand-purple: #593c90;
  --brand-purple-deep: #5e2177;
  --brand-ink: #060306;
  --brand-yellow: #ffde59;
  --brand-white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font: 'Manrope', system-ui, sans-serif;
  --display: 'Unbounded', 'Manrope', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--brand-white);
  background: var(--brand-ink);
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(94, 33, 119, 0.85) 0%, transparent 55%),
    radial-gradient(900px 600px at 10% 90%, rgba(89, 60, 144, 0.55) 0%, transparent 50%),
    radial-gradient(800px 500px at 100% 80%, rgba(255, 70, 160, 0.22) 0%, transparent 45%),
    linear-gradient(180deg, #2a1048 0%, #5e2177 48%, #3a1458 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.note {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(1.2rem, 3vw, 2rem);
  animation: drift 14s ease-in-out infinite;
}

.n1 { top: 12%; left: 8%; animation-delay: 0s; }
.n2 { top: 22%; right: 12%; animation-delay: 2s; font-size: 1.6rem; }
.n3 { bottom: 28%; left: 14%; animation-delay: 4s; }
.n4 { bottom: 18%; right: 18%; animation-delay: 1s; }
.n5 { top: 48%; left: 46%; animation-delay: 3s; opacity: 0.5; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.b1 {
  width: 280px;
  height: 280px;
  background: #ff46a0;
  top: 18%;
  right: -40px;
  animation: pulse 8s ease-in-out infinite;
}

.b2 {
  width: 320px;
  height: 320px;
  background: #593c90;
  bottom: 8%;
  left: -60px;
  animation: pulse 10s ease-in-out infinite reverse;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(1.5rem + var(--safe-top)) 1.25rem calc(1.75rem + var(--safe-bottom));
  gap: 1.35rem;
}

.brand-logo {
  width: min(52vw, 220px);
  height: auto;
  display: block;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  animation: rise 0.8s ease both;
}

.slogan {
  margin: 0.35rem 0 0.25rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.55rem, 5.5vw, 2.55rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  animation: rise 0.9s ease 0.08s both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.7rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(0.95rem, 3.4vw, 1.1rem);
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 55%, #ec4899 100%);
  box-shadow: 0 14px 40px rgba(217, 70, 239, 0.35);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  animation: rise 1s ease 0.14s both;
  max-width: 100%;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 48px rgba(217, 70, 239, 0.45);
}

.cta:active {
  transform: translateY(0) scale(0.98);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  width: min(920px, 100%);
  animation: rise 1.05s ease 0.22s both;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: rgba(18, 8, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 222, 89, 0.45);
  background: rgba(30, 12, 48, 0.62);
}

.chip-ico {
  display: inline-flex;
  color: var(--brand-yellow);
  flex-shrink: 0;
}

.chip-text {
  white-space: nowrap;
}

.pc-note {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  animation: rise 1.1s ease 0.28s both;
}

.pc-note a {
  color: var(--brand-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.45;
  }
}

@media (max-width: 560px) {
  .features {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.1rem;
  }

  .chip {
    justify-content: center;
  }

  .chip-text {
    white-space: normal;
  }

  .cta {
    width: 100%;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}
