:root {
  --yellow: #f7dd0f;
  --red: #e42a12;
  --dark: #1d1d1b;
  --paper: #f8f5e9;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--paper);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
  position: relative;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.background__gradient {
  position: absolute;
  inset: -20%;
  background: linear-gradient(125deg, #1d1d1b 0%, #25215a 35%, var(--red) 70%, var(--yellow) 100%);
  background-size: 200% 200%;
  filter: saturate(120%);
  animation: gradientFlow 16s ease infinite;
}

.background__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
}

.background__glow--one {
  width: 420px;
  height: 420px;
  background: rgba(231, 205, 45, 0.75);
  top: 8%;
  left: 12%;
  animation: glowDriftOne 22s ease-in-out infinite;
}

.background__glow--two {
  width: 520px;
  height: 520px;
  background: rgba(223, 60, 24, 0.65);
  bottom: -10%;
  right: -6%;
  animation: glowDriftTwo 26s ease-in-out infinite;
}

.background__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.scene {
  position: relative;
  z-index: 1;
  width: min(960px, 90vw);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.intro {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4.5rem);
  background: rgba(13, 13, 13, 0.6);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  max-width: 640px;
  backdrop-filter: blur(28px);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: box-shadow 0.6s ease;
}

.intro::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  opacity: 0.7;
}

.logo-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
}

.brand-logo {
  width: clamp(160px, 40vw, 220px);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.55));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.45rem 1.2rem 0.45rem 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.status-pill__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(247, 221, 15, 0.8);
}

h1 {
  font-size: clamp(2.2rem, 3.7vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-icon {
  position: absolute;
  width: clamp(90px, 18vw, 140px);
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(0.9);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.floating-icon--one {
  top: 12%;
  left: 8%;
  animation: floatOne 12s ease-in-out infinite;
}

.floating-icon--two {
  top: 85%;
  left: 24%;
  animation: floatTwo 14s ease-in-out infinite;
  opacity: 0.55;
}

.floating-icon--three {
  top: 32%;
  right: -2%;
  animation: floatThree 11s ease-in-out infinite;
  opacity: 0.65;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

@keyframes gradientFlow {
  0% {
    transform: translate3d(-10%, -5%, 0) scale(1.05);
    background-position: 0% 50%;
  }
  50% {
    transform: translate3d(6%, 4%, 0) scale(1.08);
    background-position: 100% 50%;
  }
  100% {
    transform: translate3d(-10%, -5%, 0) scale(1.05);
    background-position: 0% 50%;
  }
}

@keyframes glowDriftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, 30px, 0) scale(1.1);
  }
}

@keyframes glowDriftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-40px, -20px, 0) scale(0.95);
  }
}

@keyframes floatOne {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.95);
    opacity: 0.35;
  }
  50% {
    transform: translate(-50%, -50%) translate3d(-18px, -26px, 0) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.9);
    opacity: 0.45;
  }
  50% {
    transform: translate(-50%, -50%) translate3d(24px, -32px, 0) scale(1.02);
    opacity: 0.75;
  }
}

@keyframes floatThree {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.9);
    opacity: 0.55;
  }
  50% {
    transform: translate(-50%, -50%) translate3d(-22px, 28px, 0) scale(1.08);
    opacity: 0.9;
  }
}

@media (max-width: 780px) {
  .scene {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }

  .intro {
    padding: clamp(2rem, 5vw, 3rem);
  }

  .floating-icon {
    width: clamp(70px, 28vw, 110px);
  }

  .floating-icon--three {
    right: 12%;
  }
}

@media (max-width: 520px) {
  body {
    align-items: flex-start;
  }

  .scene {
    padding: 5vh 1.5rem 3rem;
  }

  .intro {
    padding: 2rem 1.75rem 2.4rem;
    border-radius: 28px;
  }

  .intro::after {
    inset: 12px;
    border-radius: 22px;
  }
}
