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

:root {
  --c1: #ff7a00;
  --c2: #ff003c;
  --c3: #ffe600;
  --c4: #ff00aa;
}

html, body {
  min-height: 100%;
  font-family: 'Trebuchet MS', 'Segoe UI', Verdana, sans-serif;
  color: #fff8f0;
  overflow-x: hidden;
}

body {
  position: relative;
  background: linear-gradient(120deg, #190300, #240900, #1a0500, #2b0014);
  background-size: 400% 400%;
  animation: bgshift 26s ease infinite;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@keyframes bgshift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px) saturate(160%);
  opacity: 0.5;
}

.blob { position: absolute; border-radius: 50%; mix-blend-mode: screen; }
.blob.b1 { width: 40vw; height: 40vw; left: -8vw; top: -6vw; background: radial-gradient(circle, var(--c2), transparent 70%); animation: float1 20s ease-in-out infinite; }
.blob.b2 { width: 46vw; height: 46vw; right: -12vw; top: 6vh; background: radial-gradient(circle, var(--c3), transparent 70%); animation: float2 22s ease-in-out infinite; }
.blob.b3 { width: 36vw; height: 36vw; left: 18vw; bottom: -12vw; background: radial-gradient(circle, var(--c1), transparent 70%); animation: float3 18s ease-in-out infinite; }
.blob.b4 { width: 28vw; height: 28vw; right: 8vw; bottom: -8vw; background: radial-gradient(circle, var(--c4), transparent 70%); animation: float2 28s ease-in-out infinite reverse; }

@keyframes float1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-6vw, 7vh) scale(1.1); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(7vw, -5vh) scale(0.92); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-5vw, -8vh) scale(1.12); } }

header, main, footer { position: relative; z-index: 1; }

header { text-align: center; padding: 9vh 5vw 3vh; }

.logo {
  font-size: clamp(2.4rem, 8.5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(90deg, var(--c2), var(--c1), var(--c3), var(--c4), var(--c2));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hueflow 7s linear infinite;
  text-shadow: 0 0 30px rgba(255, 0, 60, 0.35);
}

@keyframes hueflow { to { background-position: 300% center; } }

.subtitle {
  margin-top: 1.2rem;
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c3);
  text-shadow: 0 0 12px rgba(255, 230, 0, 0.55);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3vh 6vw 10vh;
  gap: 2rem;
}

.tagline {
  max-width: 38rem;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  line-height: 1.6;
  color: #ffe9d6;
}

.cta {
  display: inline-block;
  padding: 0.95rem 2.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a0500;
  background: linear-gradient(90deg, var(--c3), var(--c1));
  border-radius: 999px;
  box-shadow: 0 0 25px rgba(255, 230, 0, 0.5), 0 0 50px rgba(255, 122, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 35px rgba(255, 230, 0, 0.75), 0 0 70px rgba(255, 122, 0, 0.45); }

footer {
  text-align: center;
  padding: 2.5rem 5vw 3rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255, 248, 240, 0.4);
}
