/* Awesum — single-screen landing */

:root {
  --coral: #e8847a;
  --coral-soft: rgba(232, 132, 122, 0.45);
  --violet-glow: rgba(124, 92, 220, 0.22);
  --teal-mist: rgba(72, 189, 170, 0.12);
  --deep: #06070c;
  --deep-mid: #0e1018;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  color: var(--coral);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--deep);
}

/* Atmospheric background */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(40, 32, 56, 0.9), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(214, 106, 92, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(72, 120, 180, 0.08), transparent 45%),
    linear-gradient(165deg, var(--deep) 0%, var(--deep-mid) 45%, #0a0c14 100%);
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.85;
  will-change: transform;
}

.bg-blob--a {
  width: min(72vw, 520px);
  height: min(72vw, 520px);
  top: -12%;
  left: -8%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(232, 132, 122, 0.55) 0%,
    rgba(200, 90, 110, 0.2) 42%,
    transparent 70%
  );
  animation: drift-a 22s ease-in-out infinite;
}

.bg-blob--b {
  width: min(85vw, 620px);
  height: min(85vw, 620px);
  bottom: -18%;
  right: -15%;
  background: radial-gradient(
    circle at 60% 50%,
    rgba(110, 80, 200, 0.35) 0%,
    rgba(60, 40, 120, 0.12) 45%,
    transparent 68%
  );
  animation: drift-b 26s ease-in-out infinite;
}

.bg-blob--c {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(72, 189, 170, 0.18) 0%,
    rgba(40, 100, 120, 0.06) 50%,
    transparent 72%
  );
  animation: drift-c 18s ease-in-out infinite;
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, 12%) scale(1.08);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10%, -8%) scale(1.12);
  }
}

@keyframes drift-c {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    transform: translate(-48%, -54%) scale(1.06);
  }
  66% {
    transform: translate(-52%, -48%) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-blob--a,
  .bg-blob--b,
  .bg-blob--c {
    animation: none;
  }
}

.screen {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 2.75rem);
  padding: clamp(1.25rem, 5vw, 2.5rem);
  text-align: center;
}

.logo {
  display: block;
  width: min(88vw, 640px);
  height: auto;
  max-height: min(42vh, 360px);
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(232, 132, 122, 0.25))
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
  mix-blend-mode: lighten;
}

.tagline {
  margin: 0;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 210, 200, 0.92);
  text-shadow:
    0 0 40px rgba(232, 132, 122, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.4);
}
