:root { --pink: #f8ccdf; --orange: #ff5a1f; --ink: #17251f; --violet: #6d62b8; }
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body { overflow: hidden; background: #e9c9ed; }
.launch { position: relative; isolation: isolate; display: grid; place-items: center; min-height: 100svh; overflow: hidden; background: radial-gradient(circle at 50% 72%, #ffb59f 0, #f3bdd8 30%, #a9a7df 68%, #5468b8 115%); }
.dreamscape { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.launch::after { position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 50% 52%, transparent 0 18%, rgb(74 61 131 / .08) 58%, rgb(20 27 67 / .32) 120%); content: ""; pointer-events: none; }
.grain { position: absolute; z-index: 5; inset: -50%; opacity: .065; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); pointer-events: none; }
.brand { position: relative; z-index: 2; width: min(122vw, 650px); transform: translateY(-2%) rotate(-5deg); transform-origin: 50% 70%; filter: drop-shadow(0 24px 32px rgb(68 53 125 / .18)); animation: logo-wave 7s ease-in-out infinite; }
.brand::before { position: absolute; z-index: -1; inset: 24% 16% 10%; border-radius: 50%; background: radial-gradient(circle, rgb(255 241 245 / .78), rgb(255 221 235 / .16) 55%, transparent 72%); filter: blur(20px); content: ""; }
.brand__mark { display: block; width: 100%; height: auto; filter: saturate(1.12) contrast(1.06); }
.announcement { position: absolute; z-index: 4; bottom: max(6.5svh, calc(28px + env(safe-area-inset-bottom))); left: 50%; display: flex; align-items: center; justify-content: center; width: max-content; min-width: min(78vw, 330px); padding: 15px 27px 14px; background: #f7c9df; border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--orange); transform: translateX(-50%) rotate(1.5deg); }
.announcement::before, .announcement::after { position: absolute; top: 50%; width: 44px; height: 30px; background: radial-gradient(circle at 28% 58%, #fff8fc 0 25%, transparent 27%), radial-gradient(circle at 49% 36%, #fff8fc 0 34%, transparent 36%), radial-gradient(circle at 72% 58%, #fff8fc 0 27%, transparent 29%), radial-gradient(ellipse at 50% 75%, #e8def5 0 48%, transparent 50%); content: ""; filter: drop-shadow(0 3px 0 rgb(109 98 184 / .28)); transform: translateY(-50%); }
.announcement::before { left: -23px; }
.announcement::after { right: -23px; transform: translateY(-50%) scaleX(-1); }
h1 { margin: 0; color: var(--ink); font-family: "Archivo Black", sans-serif; font-size: clamp(1.2rem, 6vw, 1.8rem); font-weight: 400; line-height: .95; letter-spacing: -.045em; text-transform: uppercase; white-space: nowrap; }
h1::before, h1::after { display: inline-block; margin: 0 13px 4px 5px; color: var(--orange); content: "✦"; font-family: serif; font-size: .7rem; vertical-align: middle; }
h1::after { margin: 0 5px 4px 13px; }
@keyframes logo-wave {
  0%, 100% { transform: translateY(-2%) rotate(-5deg) skewX(0deg); }
  25% { transform: translateY(-3.2%) rotate(-4.2deg) skewX(.35deg); }
  50% { transform: translateY(-1.5%) rotate(-5deg) skewX(0deg); }
  75% { transform: translateY(-3%) rotate(-5.8deg) skewX(-.35deg); }
}
@media (max-width: 699px) {
  .brand {
    width: 96vw;
    transform: translateY(-5%) rotate(-2deg);
    transform-origin: 50% 72%;
    animation: mobile-wave 7s ease-in-out infinite;
  }
  .announcement {
    top: calc(50% + clamp(105px, 27vw, 170px));
    bottom: auto;
    width: min(74vw, 320px);
    min-width: 0;
    padding: 14px 18px 13px;
  }
  h1 { font-size: clamp(1.05rem, 5.5vw, 1.4rem); }
  h1::before, h1::after { margin-right: 9px; margin-left: 3px; }
  h1::after { margin-right: 3px; margin-left: 9px; }
}
@keyframes mobile-wave {
  0%, 100% { transform: translateY(-5%) rotate(-2deg); }
  25% { transform: translateY(-6.2%) rotate(-1.2deg); }
  50% { transform: translateY(-4.4%) rotate(-2deg); }
  75% { transform: translateY(-5.8%) rotate(-2.8deg); }
}
@media (min-width: 700px) { .brand { width: min(88vw, 1050px); } }
@media (prefers-reduced-motion: reduce) { .brand { animation: none; } }
