:root {
    color-scheme: dark;
    font-family: Inter, ui-rounded, "SF Pro Rounded", "SF Pro Display", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.22), transparent 28rem),
        radial-gradient(circle at 80% 75%, rgba(56, 189, 248, 0.2), transparent 30rem),
        linear-gradient(145deg, #19052f 0%, #371066 46%, #101b4c 100%);
}

.stage {
    position: relative;
    display: grid;
    width: 100vw;
    min-height: 100vh;
    place-items: center;
    isolation: isolate;
}

.stage::before {
    position: absolute;
    z-index: -2;
    width: min(76vw, 62rem);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 0 8rem rgba(192, 132, 252, 0.18);
    content: "";
}

.confetti {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: min(92vw, 76rem);
    height: min(92vw, 76rem);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.jumbotron {
    width: min(88vw, 64rem);
    padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(1.75rem, 4vw, 3.25rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
    box-shadow:
        0 2rem 7rem rgba(6, 4, 35, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-align: center;
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.eyebrow {
    margin: 0 0 1rem;
    color: #d8b4fe;
    font-size: clamp(0.72rem, 1.4vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(4.5rem, 13vw, 10rem);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 0.9;
    text-shadow: 0 0.18em 0.8em rgba(12, 4, 38, 0.38);
}

h1 span {
    display: inline-block;
    margin-left: 0.08em;
    font-size: 0.72em;
    transform: rotate(7deg);
}

.subheading {
    margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 650;
}

@media (prefers-reduced-motion: reduce) {
    .confetti {
        display: none;
    }
}
