* {
    box-sizing: border-box;
}


:root {

    --bg: #08050a;
    --bg-mid: #130b15;
    --bg-light: #281124;

    --pink: #ff91c9;
    --pink-soft: #ffd0e6;
    --pink-strong: #e45d9d;

    --white: #fff9fc;
    --muted: rgba(255, 249, 252, 0.62);

    --border: rgba(255, 255, 255, 0.12);

}


html {
    background: var(--bg);
    scroll-behavior: smooth;
}


body {

    margin: 0;

    min-height: 100vh;

    overflow-x: hidden;

    background:

        radial-gradient(
            circle at 50% 40%,
            rgba(228, 93, 157, 0.10),
            transparent 30%
        ),

        radial-gradient(
            circle at 20% 85%,
            rgba(150, 76, 150, 0.10),
            transparent 28%
        ),

        linear-gradient(
            145deg,
            var(--bg),
            var(--bg-mid) 55%,
            #09060c
        );

    color: var(--white);

    font-family: "Poppins", sans-serif;

    -webkit-font-smoothing: antialiased;
}


button {
    font: inherit;
}


.site {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    overflow-x: hidden;
    overflow-y: visible;
}


/* ==========================================
   GENERAL SCREEN
========================================== */

.screen {

    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: grid;

    place-items: center;

    padding: 40px 20px;

}


/* ==========================================
   ARRIVAL
========================================== */

.arrival-screen {

    opacity: 0;

    animation:
        arrivalFadeIn 1.2s ease forwards;

}


.arrival-content {

    width: min(92vw, 500px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    z-index: 5;

}


/* =====================================
   NIGHTSMILE AVATAR
===================================== */

#avatar {

    position: relative;

    width: 180px;
    height: 180px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    opacity: 0;

    animation:
        avatarAppear 1s cubic-bezier(.2,.8,.2,1) forwards;

    animation-delay: 2.2s;

}


/* ==============================
   CIRCLE
============================== */

.avatar-circle {

    width: 180px;
    height: 180px;

    padding: 4px;

    border-radius: 50%;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffd0e6,
            #e45d9d,
            #682e63
        );

    box-shadow:

        0 0 25px
        rgba(238, 91, 157, .35),

        0 0 70px
        rgba(238, 91, 157, .12);

    box-sizing: border-box;

    animation:
        avatarFloat 4s ease-in-out infinite;

}


/* ==============================
   IMAGE
============================== */

.avatar-circle img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    background: #1b111b;

}


/* ==============================
   AVATAR APPEAR
============================== */

@keyframes avatarAppear {

    from {

        opacity: 0;

        transform:
            scale(.75)
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            scale(1)
            translateY(0);

    }

}


/* ==============================
   FLOAT
============================== */

@keyframes avatarFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-5px);

    }

}

/* ==========================================
   LITTLE STARS AROUND AVATAR
========================================== */

.spark {

    position: absolute;

    color: var(--pink);

    z-index: 4;

    user-select: none;

}


.spark-a {

    top: 12%;
    left: 3%;

    font-size: 18px;

    animation:
        twinkle 2.7s ease-in-out infinite;

}


.spark-b {

    top: 28%;
    right: 0;

    color: rgba(255, 208, 230, 0.7);

    font-size: 28px;

    animation:
        twinkle 3.3s ease-in-out infinite .4s;

}


.spark-c {

    bottom: 15%;
    right: 8%;

    font-size: 13px;

    animation:
        twinkle 2.4s ease-in-out infinite .8s;

}


/* ==========================================
   OPENING TWINKLING STARS
========================================== */

.twinkle-field {

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 20;

    opacity: 1;

    animation:
        twinkleFieldFade 1.2s ease forwards;

    animation-delay: 2s;

}


.twinkle-field span {

    position: absolute;

    color: var(--pink-soft);

    text-shadow:
        0 0 14px rgba(255, 145, 201, 0.9);

    opacity: 0;

    animation:
        starAppear 1.5s ease-in-out infinite;

}


.twinkle-field span:nth-child(1) {
    left: 14%;
    top: 21%;
    animation-delay: .15s;
}


.twinkle-field span:nth-child(2) {
    left: 29%;
    top: 13%;
    animation-delay: .55s;
    font-size: 12px;
}


.twinkle-field span:nth-child(3) {
    left: 76%;
    top: 20%;
    animation-delay: .9s;
}


.twinkle-field span:nth-child(4) {
    left: 86%;
    top: 42%;
    animation-delay: .35s;
    font-size: 13px;
}


.twinkle-field span:nth-child(5) {
    left: 18%;
    top: 64%;
    animation-delay: .75s;
}


.twinkle-field span:nth-child(6) {
    left: 79%;
    top: 72%;
    animation-delay: .2s;
    font-size: 11px;
}


.twinkle-field span:nth-child(7) {
    left: 45%;
    top: 29%;
    animation-delay: 1s;
    font-size: 10px;
}


.twinkle-field span:nth-child(8) {
    left: 59%;
    top: 80%;
    animation-delay: .6s;
    font-size: 12px;
}


/* ==========================================
   TEXT
========================================== */

/* =====================================
   YOU FOUND ME
===================================== */

.found-text {

    margin:

        14px 0
        12px;

    color: var(--pink-soft);

    font-size:
        clamp(1rem, 2.2vw, 1.15rem);

    font-weight: 500;

    letter-spacing: .02em;

    opacity: 0;

    animation:
        foundReveal .8s ease forwards;

    animation-delay: 3.05s;

}


.enter-button {

    opacity: 0;

    margin: 0;

    animation:
        fadeUp .8s ease forwards;

    animation-delay: 3.75s;

}


/* ==========================================
   BUTTONS
========================================== */

.enter-button,
.continue-button {

    min-height: 48px;

    padding: 12px 19px;

    border:

        1px solid
        rgba(255, 145, 201, 0.35);

    border-radius: 999px;

    background:
        rgba(255, 145, 201, 0.07);

    color: var(--white);

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition:

        transform .18s ease,

        background .18s ease,

        border-color .18s ease,

        box-shadow .18s ease;

    animation:
        fadeUp .9s ease both;

    animation-delay: 2.35s;

}


.enter-button:hover,
.enter-button:focus-visible,
.continue-button:hover,
.continue-button:focus-visible {

    transform: translateY(-2px);

    background:
        rgba(255, 145, 201, 0.13);

    border-color:
        rgba(255, 145, 201, 0.65);

    box-shadow:
        0 10px 35px
        rgba(228, 93, 157, 0.14);

}


.enter-button:active,
.continue-button:active {

    transform:
        translateY(0)
        scale(.98);

}


.arrow {

    color: var(--pink);

    font-size: 1.15em;

    transition:
        transform .18s ease;

}


.enter-button:hover .arrow,
.enter-button:focus-visible .arrow {

    transform:
        translateX(4px);

}


/* ==========================================
   BACKGROUND STARS
========================================== */

.stars {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .7;

    background-image:

        radial-gradient(
            circle at 12% 18%,
            rgba(255,255,255,.7) 0 1px,
            transparent 1.5px
        ),

        radial-gradient(
            circle at 84% 12%,
            rgba(255,145,201,.65) 0 1px,
            transparent 1.5px
        ),

        radial-gradient(
            circle at 73% 67%,
            rgba(255,255,255,.45) 0 1px,
            transparent 1.5px
        ),

        radial-gradient(
            circle at 24% 76%,
            rgba(255,145,201,.4) 0 1px,
            transparent 1.5px
        ),

        radial-gradient(
            circle at 55% 25%,
            rgba(255,255,255,.55) 0 1px,
            transparent 1.5px
        );

    background-size:

        240px 240px,
        310px 310px,
        370px 370px,
        280px 280px,
        430px 430px;

    animation:
        drift 28s linear infinite;

}


/* ==========================================
   GLOWS
========================================== */

.glow {

    position: absolute;

    width: 340px;

    aspect-ratio: 1;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(80px);

    opacity: .18;

}


.glow-one {

    left: -150px;
    bottom: -170px;

    background: #c46ba8;

}


.glow-two {

    right: -180px;
    top: -150px;

    background: #e45d9d;

}


/* ==========================================
   GRAIN
========================================== */

.grain {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .035;

    z-index: 10;

    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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");

}


/* ==========================================
   SOUND BUTTON
========================================== */

.sound-toggle {

    position: fixed;

    z-index: 30;

    top: 18px;
    right: 18px;

    min-height: 42px;

    padding: 8px 12px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(8, 5, 10, .55);

    backdrop-filter:
        blur(14px);

    color: var(--muted);

    cursor: pointer;

}


.sound-toggle[aria-pressed="true"] {

    color: var(--white);

    border-color:
        rgba(255,145,201,.38);

}


.sound-icon {

    color: var(--pink);

    font-size: 18px;

}


.sound-label {

    font-size: 11px;

}


.sound-wave {

    height: 15px;

    display: inline-flex;

    align-items: center;

    gap: 2px;

}


.sound-wave i {

    display: block;

    width: 2px;

    height: 6px;

    border-radius: 3px;

    background: var(--pink);

    opacity: .45;

}


.sound-toggle[aria-pressed="true"]
.sound-wave i {

    animation:
        wave .8s ease-in-out infinite alternate;

    opacity: .9;

}


.sound-wave i:nth-child(2) {
    animation-delay: .12s;
}


.sound-wave i:nth-child(3) {
    animation-delay: .24s;
}


.sound-wave i:nth-child(4) {
    animation-delay: .36s;
}


/* ==========================================
   SCREEN 02 INTRO
========================================== */

.intro-screen {

    animation:
        screenIn .9s ease both;

}


.intro-content {

    width: min(92vw, 620px);

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


.intro-avatar-wrap {

    position: relative;

    width: clamp(155px, 27vw, 220px);

    aspect-ratio: 1;

    display: grid;

    place-items: center;

    animation:
        introAvatarIn 1s cubic-bezier(.2,.8,.2,1) both;

}


.intro-avatar {

    width: 86%;

    height: 86%;

    object-fit: contain;

    position: relative;

    z-index: 2;

    filter:
        drop-shadow(
            0 18px 34px rgba(0,0,0,.45)
        );

}


.intro-avatar-wrap::before {

    content: "";

    position: absolute;

    inset: 2%;

    border-radius: 50%;

    border:
        1px solid rgba(255,145,201,.45);

    background:
        rgba(255,145,201,.035);

    box-shadow:
        0 0 0 7px rgba(255,145,201,.025),
        0 0 42px rgba(255,145,201,.12);

    z-index: 1;

}


.intro-halo {

    position: absolute;

    width: 74%;
    height: 74%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,145,201,.18),
            transparent 72%
        );

    filter: blur(8px);

}


.intro-title {

    margin: 16px 0 0;

    display: flex;

    flex-direction: column;

    line-height: 1.03;

    font-size:
        clamp(2.1rem, 7vw, 4.7rem);

    font-weight: 700;

    letter-spacing: -.055em;

    animation:
        titleIn .8s ease both .25s;

}


.intro-title span:first-child {

    color: var(--white);

}


.smile-word {

    color: var(--pink);

}


.intro-subtitle {

    max-width: 520px;

    margin: 22px auto 26px;

    color: var(--muted);

    font-size:
        clamp(.95rem, 2.2vw, 1.12rem);

    line-height: 1.75;

    animation:
        fadeUp .8s ease both .45s;

}


.continue-button {

    animation-delay: .6s;

}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes arrivalFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes arrivalContentIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes foundReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes twinkleFieldFade {

    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }

}


@keyframes starAppear {

    0%, 100% {
        opacity: .15;
        transform:
            scale(.65)
            rotate(0deg);
    }

    45% {
        opacity: 1;
        transform:
            scale(1.15)
            rotate(12deg);
    }

    70% {
        opacity: .45;
        transform:
            scale(.9)
            rotate(-5deg);
    }

}


@keyframes floatAvatar {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


@keyframes pulseHalo {

    0%, 100% {
        transform: scale(.92);
        opacity: .65;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }

}


@keyframes twinkle {

    0%, 100% {
        opacity: .3;
        transform: scale(.85) rotate(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.12) rotate(12deg);
    }

}


@keyframes drift {

    from {
        transform:
            translate3d(0,0,0);
    }

    to {
        transform:
            translate3d(-80px,55px,0);
    }

}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes screenIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes introAvatarIn {

    from {
        opacity: 0;
        transform:
            translateY(18px)
            scale(.82);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


@keyframes titleIn {

    from {
        opacity: 0;
        transform:
            translateY(15px)
            scale(.98);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


@keyframes wave {

    from {
        height: 4px;
    }

    to {
        height: 14px;
    }

}


.arrival-screen.leaving {

    animation:
        arrivalExit .65s ease forwards;

}


@keyframes arrivalExit {

    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(1.025);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .screen {

        padding:
            70px 18px 36px;

    }


    .sound-toggle {

        top: 12px;
        right: 12px;

        min-height: 40px;

        padding:
            7px 10px;

    }


    .sound-label {

        display: none;

    }



    .found-text {

        margin-top: 20px;
        margin-bottom: 17px;

    }


    .intro-avatar-wrap {

        width:
            clamp(145px, 50vw, 195px);

    }


    .intro-title {

        margin-top: 12px;

        font-size:
            clamp(2.15rem, 11vw, 3.5rem);

    }


    .intro-subtitle {

        margin-top: 18px;

        line-height: 1.65;

    }


    .glow {

        width: 240px;

        filter: blur(65px);

    }

}


/* ==========================================
   ACCESSIBILITY
========================================== */

.sr-only {

    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0,0,0,0);

    white-space: nowrap;

    border: 0;

}


[hidden] {

    display: none !important;

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .001ms !important;

        animation-iteration-count: 1 !important;

    }

}
/* SCREEN 01 — FINAL TIMING FIX */

.arrival-screen .found-text {
    animation-delay: 3.05s !important;
}

.arrival-screen .enter-button {
    animation-delay: 3.75s !important;
}

/* ==========================================
   SCREEN 02 — MEET NIGHTSMILE
========================================== */

.intro-screen {
    min-height: 100vh;
    min-height: 100svh;

    display: grid;
    place-items: center;

    padding: 40px 20px;
}


.intro-content {

    width: min(90vw, 560px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


/* ==========================================
   AVATAR AREA
========================================== */

.intro-avatar-area {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transform: translateY(20px) scale(.88);

    animation:
        introAvatarIn 1s
        cubic-bezier(.2,.8,.2,1)
        forwards;

}


/* Actual circle */

.intro-avatar-circle {

    width: 190px;
    height: 190px;

    padding: 4px;

    border-radius: 50%;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffd0e6,
            #e45d9d,
            #682e63
        );

    box-shadow:

        0 0 25px
        rgba(238, 91, 157, .35),

        0 0 70px
        rgba(238, 91, 157, .12);

}


/* Image */

.intro-avatar-circle img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

}


/* ==========================================
   VOICE WAVEFORM
========================================== */

.intro-waveform {

    height: 22px;

    margin-top: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 3px;

}


.intro-waveform span {

    width: 3px;

    height: 5px;

    border-radius: 10px;

    background:
        var(--pink);

    opacity: .35;

}


/* Activated while NightSmile speaks */

.intro-waveform.playing span {

    animation:
        introWave .7s
        ease-in-out
        infinite alternate;

    opacity: .9;

}


.intro-waveform.playing span:nth-child(2) {
    animation-delay: -.15s;
}

.intro-waveform.playing span:nth-child(3) {
    animation-delay: -.35s;
}

.intro-waveform.playing span:nth-child(4) {
    animation-delay: -.5s;
}

.intro-waveform.playing span:nth-child(5) {
    animation-delay: -.25s;
}

.intro-waveform.playing span:nth-child(6) {
    animation-delay: -.45s;
}

.intro-waveform.playing span:nth-child(7) {
    animation-delay: -.1s;
}

.intro-waveform.playing span:nth-child(8) {
    animation-delay: -.3s;
}


@keyframes introWave {

    from {
        height: 4px;
    }

    to {
        height: 19px;
    }

}


/* ==========================================
   INTRO TITLE
========================================== */

.intro-title {

    margin:

        14px 0 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    line-height: 1.04;

    font-size:
        clamp(
            2.3rem,
            7vw,
            4.5rem
        );

    font-weight: 700;

    letter-spacing: -.055em;

    opacity: 0;

    transform: translateY(15px);

    animation:
        introTextIn .8s
        ease forwards;

    animation-delay: .45s;

}


.intro-title span:first-child {

    color:
        var(--white);

}


.smile-word {

    color:
        var(--pink);

}


/* ==========================================
   SUBTITLE
========================================== */

.intro-subtitle {

    max-width: 470px;

    margin:

        18px auto 22px;

    color:
        var(--muted);

    font-size:
        clamp(
            .95rem,
            2.2vw,
            1.1rem
        );

    line-height: 1.7;

    opacity: 0;

    transform: translateY(12px);

    animation:
        introTextIn .8s
        ease forwards;

    animation-delay: .7s;

}


/* ==========================================
   SHOW ME BUTTON
========================================== */

.intro-screen .continue-button {

    opacity: 0;

    transform: translateY(10px);

    animation:
        introTextIn .8s
        ease forwards;

    animation-delay: .95s;

}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes introAvatarIn {

    0% {

        opacity: 0;

        transform:
            translateY(20px)
            scale(.88);

    }

    70% {

        opacity: 1;

        transform:
            translateY(-3px)
            scale(1.02);

    }

    100% {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


@keyframes introTextIn {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .intro-screen {

        padding:
            55px 18px 30px;

    }


    .intro-avatar-circle {

        width: 160px;
        height: 160px;

    }


    .intro-title {

        margin-top: 11px;

        font-size:
            clamp(
                2.25rem,
                11vw,
                3.4rem
            );

    }


    .intro-subtitle {

        margin-top: 16px;

        font-size: .94rem;

        line-height: 1.65;

    }

}

/* ==========================================
   SCREEN 03 — WHAT DO I MAKE?
========================================== */

.choice-screen {

    min-height: 100vh;
    min-height: 100svh;

    display: grid;

    place-items: center;

    padding: 45px 20px;

}


.choice-content {

    width: min(92vw, 720px);

    text-align: center;

}


/* ------------------------------------------
   INTRO TEXT
------------------------------------------ */

.choice-kicker {

    margin: 0 0 8px;

    color: var(--pink);

    font-size: .82rem;

    letter-spacing: .16em;

    text-transform: lowercase;

    opacity: 0;

    animation:
        choiceFadeIn
        .8s
        ease
        forwards;

}


.choice-title {

    margin: 0;

    color: var(--white);

    font-size:
        clamp(
            2.5rem,
            7vw,
            4.5rem
        );

    line-height: 1.02;

    letter-spacing: -.055em;

    font-weight: 700;

    opacity: 0;

    transform:
        translateY(14px);

    animation:
        choiceFadeUp
        .8s
        ease
        .1s
        forwards;

}


.choice-subtitle {

    margin:
        16px auto 30px;

    color: var(--muted);

    font-size:
        clamp(
            .92rem,
            2vw,
            1.05rem
        );

    line-height: 1.65;

    opacity: 0;

    transform:
        translateY(10px);

    animation:
        choiceFadeUp
        .8s
        ease
        .25s
        forwards;

}


/* ------------------------------------------
   OCCASION OPTIONS
------------------------------------------ */

.occasion-grid {

    width: min(100%, 620px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

}


.occasion-card {

    position: relative;

    min-height: 108px;

    border: 1px solid
        rgba(255,255,255,.08);

    border-radius: 22px;

    background:
        rgba(255,255,255,.035);

    color: var(--white);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

    opacity: 0;

    transform:
        translateY(14px);

    animation:
        choiceFadeUp
        .7s
        ease
        forwards;

}


.occasion-card:nth-child(1) {
    animation-delay: .35s;
}

.occasion-card:nth-child(2) {
    animation-delay: .42s;
}

.occasion-card:nth-child(3) {
    animation-delay: .49s;
}

.occasion-card:nth-child(4) {
    animation-delay: .56s;
}

.occasion-card:nth-child(5) {
    animation-delay: .63s;
}

.occasion-card:nth-child(6) {
    animation-delay: .70s;
}


.occasion-card:hover {

    transform:
        translateY(-5px);

    background:
        rgba(228,93,157,.09);

    border-color:
        rgba(228,93,157,.38);

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.22);

}


.occasion-card.selected {

    transform:
        translateY(-4px)
        scale(1.02);

    background:
        rgba(228,93,157,.12);

    border-color:
        rgba(255,180,215,.55);

    box-shadow:
        0 0 30px
        rgba(228,93,157,.12);

}


.occasion-icon {

    font-size: 1.65rem;

    color: var(--pink);

    line-height: 1;

}


.occasion-name {

    font-size: .88rem;

    font-weight: 500;

}


/* ------------------------------------------
   RESPONSE
------------------------------------------ */

.choice-response {

    margin-top: 27px;

    opacity: 0;

    transform:
        translateY(12px);

}


.choice-response.show {

    animation:
        choiceFadeUp
        .65s
        ease
        forwards;

}


.response-text {

    width: min(100%, 520px);

    margin: 0 auto 18px;

    color: var(--muted);

    font-size:
        clamp(
            .94rem,
            2vw,
            1.05rem
        );

    line-height: 1.7;

}


.response-text strong {

    color: var(--white);

}


.response-button {

    margin-top: 3px;

}


/* ------------------------------------------
   ANIMATIONS
------------------------------------------ */

@keyframes choiceFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes choiceFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(14px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ------------------------------------------
   MOBILE
------------------------------------------ */

@media (max-width: 600px) {

    .choice-screen {

        padding:
            40px 16px;

    }


    .choice-title {

        font-size:
            clamp(
                2.35rem,
                11vw,
                3.5rem
            );

    }


    .choice-subtitle {

        margin-bottom: 24px;

    }


    .occasion-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

    }


    .occasion-card {

        min-height: 94px;

        border-radius: 18px;

    }


    .occasion-icon {

        font-size: 1.45rem;

    }

}
/* ==========================================
   SCREEN 04 — THREE LITTLE THINGS
========================================== */

.things-screen {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 20px;
}

.things-content {
    width: min(92vw, 680px);
    text-align: center;
}


.things-kicker {

    margin: 0 0 8px;

    color: var(--pink);

    font-size: .78rem;

    letter-spacing: .16em;

}


.things-title {

    margin: 0;

    color: var(--white);

    font-size:
        clamp(2.4rem, 7vw, 4.3rem);

    line-height: 1.04;

    letter-spacing: -.055em;

}


.things-subtitle {

    margin:
        14px auto 28px;

    color: var(--muted);

    line-height: 1.6;

}


/* ==========================================
   THREE THINGS
========================================== */

.things-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

    width: min(100%, 570px);

    margin: 0 auto;

}


.thing-card {

    width: 100%;

    min-height: 82px;

    padding: 13px 17px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 20px;

    background:
        rgba(255,255,255,.035);

    color: var(--white);

    display: grid;

    grid-template-columns:
        35px 45px 1fr 30px;

    align-items: center;

    text-align: left;

    cursor: pointer;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;

}


.thing-card:hover {

    transform:
        translateX(5px);

    border-color:
        rgba(228,93,157,.4);

    background:
        rgba(228,93,157,.07);

}


.thing-number {

    color:
        rgba(255,255,255,.3);

    font-size: .72rem;

}


.thing-icon {

    font-size: 1.5rem;

}


.thing-info {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.thing-name {

    font-size: .95rem;

    font-weight: 600;

}


.thing-hint {

    color: var(--muted);

    font-size: .72rem;

}


.thing-arrow {

    color: var(--pink);

    font-size: 1.1rem;

    text-align: right;

}


/* ==========================================
   MODALS
========================================== */

.thing-modal {

    position: fixed;

    inset: 0;

    z-index: 100;

    padding: 25px;

    display: grid;

    place-items: center;

    background:
        rgba(7,4,9,.9);

    backdrop-filter:
        blur(15px);

}


.thing-modal[hidden] {

    display: none;

}


.modal-close {

    position: absolute;

    top: 13px;
    right: 1px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background:
        rgba(255,255,255,.06);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 20;
}


/* ==========================================
   LETTER EXPERIENCE
========================================== */

.letter-experience {

    position: relative;
    width: min(92vw, 500px);
    min-height: 460px;
    display: grid;
    place-items: center;

}


.envelope {

    position: relative;

    width: 320px;
    height: 215px;
    border: 0;
    background: transparent;
    cursor: pointer;
    perspective: 900px;

}


.envelope-back {

    position: absolute;

    inset: 0;

    border-radius: 8px;
    background:
    linear-gradient(
        145deg,
        #d987ad,
        #8f456f
    );

    box-shadow:
        0 25px 65px
        rgba(55,20,45,.18);

    overflow: hidden;
    
}

.envelope-back::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            transparent 49%,
            rgba(75,40,35,.18) 50%,
            transparent 51%
        );

}


.envelope-paper {

    position: absolute;

    left: 22px;
    right: 22px;

    bottom: 15px;

    height: 150px;

    border-radius: 4px;

    background:
    #f8dce9;

    transform:
        translateY(65px);

    transition:
        transform .8s
        cubic-bezier(.2,.8,.2,1);

}


.envelope-flap {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 125px;

background:
    linear-gradient(
        145deg,
        #e9a6c5,
        #a95782
    );

    clip-path:
        polygon(
            0 0,
            100% 0,
            50% 100%
        );

    transform-origin:
        top center;

    transition:
        transform .75s
        cubic-bezier(.2,.8,.2,1);

    z-index: 4;

}


.wax-seal {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 58px;
    height: 58px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle at 35% 30%,
            #f28ab8,
            #9f326c
        );

    color: #ffd8ea;

    font-size: 1.35rem;

    box-shadow:
        0 7px 18px
        rgba(60,10,40,.35);

    z-index: 7;

    transition:
        transform .4s ease,
        opacity .35s ease;

}


.envelope-label {

    position: absolute;

    left: 50%;
    bottom: -35px;

    transform:
        translateX(-50%);

    color:
        rgba(255,255,255,.55);

    font-size: .75rem;

    letter-spacing: .12em;

}


.envelope.opened {

    pointer-events: none;

}


.envelope.opened .envelope-flap {

    transform:
        rotateX(180deg);

}


.envelope.opened .envelope-paper {

    transform:
        translateY(-65px);

}


.envelope.opened .wax-seal {

    transform:
        translate(-50%, -50%)
        scale(1.35);

    opacity: 0;

}


.real-letter {

    position: absolute;

    width: min(88vw, 440px);

    max-height: 78vh;

    overflow-y: auto;

    padding:
        35px 30px;

    border-radius: 7px;

    background:
    linear-gradient(
        145deg,
        #f9e1ec,
        #f3cddd
    );

color: #2d1b29;

    text-align: left;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.5);

}


.real-letter[hidden] {

    display: none;

}


.real-letter.revealed {

    animation:
        letterReveal
        .8s
        ease
        forwards;

}


.letter-small {

    color: #a83f72;

    font-size: .68rem;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.real-letter h3 {

    margin:
        17px 0;

    font-size: 1.7rem;

}


.real-letter p {

    font-size: .91rem;

    line-height: 1.75;

}


.letter-sign {

    margin-top: 25px;

    color: #a34d75;

    font-style: italic;

}


@keyframes letterReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px)
            scale(.96);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* ==========================================
   VINYL PLAYER
========================================== */

.vinyl-player {

    position: relative;

    width: min(92vw, 500px);

    padding:
        35px 30px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #21121f,
            #100b13
        );

    text-align: center;

    box-shadow:
        0 25px 80px
        rgba(0,0,0,.45);

}


.vinyl-label {

    color: var(--pink);

    font-size: .65rem;

    letter-spacing: .17em;

}


.record-player {

    position: relative;

    width: 285px;
    height: 250px;

    margin:
        15px auto 10px;

}


.vinyl-record {

    position: absolute;

    left: 20px;
    top: 18px;

    width: 215px;
    height: 215px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            #171217 0,
            #171217 3px,
            #211b21 4px,
            #171217 6px
        );

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.4);

}


.vinyl-record::after {

    content: "";

    position: absolute;

    inset: 49%;

    border-radius: 50%;

    background: #09070a;

}


.record-label {

    position: absolute;

    inset: 35%;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #e45d9d,
            #8b3d70
        );

    display: grid;

    place-items: center;

    color: #ffe4f0;

    z-index: 2;

}


.record-label span {

    font-size: 1.25rem;

}


.vinyl-record.spinning {

    animation:
        spinRecord
        2.2s
        linear
        infinite;

}


@keyframes spinRecord {

    to {
        transform:
            rotate(360deg);
    }

}


.tone-arm {

    position: absolute;

    right: 15px;
    top: 10px;

    width: 65px;
    height: 135px;

    border-left:
        6px solid
        #b9afb9;

    border-top:
        6px solid
        #b9afb9;

    border-radius:
        12px 0 0 0;

    transform-origin:
        top left;

    transform:
        rotate(17deg);

    transition:
        transform .5s ease;

    z-index: 5;

}


.tone-arm.playing {

    transform:
        rotate(29deg);

}


.needle {

    position: absolute;

    left: -8px;
    bottom: -4px;

    width: 13px;
    height: 22px;

    background: #cfc5cf;

    transform:
        rotate(20deg);

}


.vinyl-details .now-playing {

    color: var(--pink);

    font-size: .62rem;

    letter-spacing: .14em;

}


.vinyl-details h3 {

    margin:
        8px 0 3px;

    color: var(--white);

    font-size: 1.1rem;

}


.vinyl-details p:last-child {

    margin: 0;

    color: var(--muted);

    font-size: .78rem;

}


.vinyl-controls {

    margin-top: 18px;

}


.vinyl-play {

    width: 52px;
    height: 52px;

    border: 0;

    border-radius: 50%;

    background:
        var(--pink);

    color: white;

    cursor: pointer;

}


.vinyl-progress {

    height: 4px;

    margin-top: 18px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.1);

    overflow: hidden;

}


.vinyl-progress-bar {

    width: 0%;

    height: 100%;

    background:
        var(--pink);

}


.music-times {

    display: flex;

    justify-content: space-between;

    margin-top: 7px;

    color:
        rgba(255,255,255,.4);

    font-size: .65rem;

}


/* ==========================================
   SNAKE GAME
========================================== */

.snake-game {

    position: relative;

    width: min(92vw, 460px);

    padding:
        32px 22px 25px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 26px;

    background:
        #101012;

    text-align: center;

}


.game-label {

    color: var(--pink);

    font-size: .62rem;

    letter-spacing: .15em;

}


.snake-game h3 {

    margin:
        8px 0 4px;

    color: var(--white);

}


.game-instruction {

    margin: 0;

    color: var(--muted);

    font-size: .75rem;

}


.snake-score {

    margin:
        14px 0 10px;

    color: var(--pink);

    font-size: 1rem;

    font-weight: 600;

}


.snake-board {

    position: relative;

    width: min(82vw, 350px);

    aspect-ratio: 1;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(15, 1fr);

    grid-template-rows:
        repeat(15, 1fr);

    background:
        #151518;

    border:
        2px solid
        rgba(255,255,255,.08);

    overflow: hidden;

}


.snake-cell {

    width: 100%;
    height: 100%;

}


.snake-body {
    width: 75%;
    height: 75%;
    margin: 12.5%;
    border-radius: 4px;
    background: #e45d9d;
    box-shadow:
        0 0 6px rgba(228, 93, 157, .8),
        0 0 12px rgba(228, 93, 157, .35);
}


.snake-head {
    border-radius: 5px;
    background: #ffb3d6;
    box-shadow:
        0 0 8px rgba(255, 179, 214, .9),
        0 0 14px rgba(228, 93, 157, .5);
}


.snake-food {

    display: grid;

    place-items: center;

    color: var(--pink);

    font-size: 1rem;

}


.snake-controls {

    width: 150px;

    margin:
        14px auto 10px;

    display: grid;

    grid-template-columns:
        repeat(3, 48px);

    gap: 4px;

    justify-content: center;

}


.snake-key {

    width: 48px;
    height: 42px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 9px;

    background:
        rgba(255,255,255,.05);

    color: white;

    cursor: pointer;

    font-size: 1rem;

}


.snake-key.up {

    grid-column: 2;

}


.snake-key.left {

    grid-column: 1;

}


.snake-key.down {

    grid-column: 2;

}


.snake-key.right {

    grid-column: 3;

}


.game-start {

    padding:
        10px 22px;

    border:
        1px solid
        rgba(228,93,157,.4);

    border-radius: 30px;

    background:
        rgba(228,93,157,.08);

    color: white;

    cursor: pointer;

}


.game-result {

    min-height: 20px;

    margin:
        8px 0 0;

    color: var(--muted);

    font-size: .75rem;

}

/* ==========================================
   SNAKE — EXTRA STATES
========================================== */

.game-instruction strong {
    color: var(--white);
}


.crash-count {

    margin: 7px 0 10px;

    color:
        rgba(255,255,255,.35);

    font-size: .65rem;

    letter-spacing: .04em;

}


/* THREE CRASHES */

.game-out,
.game-win {

    position: absolute;

    inset: 0;

    z-index: 15;

    display: grid;

    place-items: center;

    padding: 25px;

    background:
        rgba(10,7,12,.94);

    border-radius: 26px;

}


.game-out[hidden],
.game-win[hidden] {

    display: none;

}


.out-card {

    width: 100%;

    max-width: 330px;

    text-align: center;

}


.out-emoji {

    font-size: 2.2rem;

    margin-bottom: 10px;

}


.out-card h4 {

    margin: 0;

    color: var(--white);

    font-size: 1.05rem;

}


.out-card p {

    margin:
        10px 0 20px;

    color: var(--muted);

    font-size: .8rem;

    line-height: 1.6;

}


.out-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

}


.out-actions button {

    min-height: 44px;

    padding:
        9px 15px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 25px;

    background:
        rgba(255,255,255,.05);

    color: white;

    cursor: pointer;

}


.out-actions button:first-child {

    border-color:
        rgba(228,93,157,.45);

    background:
        rgba(228,93,157,.1);

}


/* WIN */

.game-win {

    overflow: hidden;

}


.game-win::before,
.game-win::after {

    content: "♡";

    position: absolute;

    color: var(--pink);

    font-size: 2rem;

    animation:
        celebrateFloat
        2.5s
        ease-in-out
        infinite;

}


.game-win::before {

    left: 12%;

    top: 20%;

}


.game-win::after {

    right: 12%;

    bottom: 20%;

    animation-delay: .7s;

}


.win-hearts {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-bottom: 12px;

}


.win-hearts span {

    display: inline-block;

    color: var(--pink);

    font-size: 1.5rem;

    animation:
        heartPop
        .6s
        ease
        both;

}


.win-hearts span:nth-child(2) {
    animation-delay: .08s;
}

.win-hearts span:nth-child(3) {
    animation-delay: .16s;
}

.win-hearts span:nth-child(4) {
    animation-delay: .24s;
}

.win-hearts span:nth-child(5) {
    animation-delay: .32s;
}


.win-small {

    margin: 0;

    color: var(--pink);

    font-size: .65rem;

    letter-spacing: .2em;

}


.game-win h4 {

    margin:
        6px 0 12px;

    color: var(--white);

    font-size: 2.4rem;

    letter-spacing: -.05em;

}


.game-win p:not(.win-small) {

    color: var(--muted);

    font-size: .82rem;

    line-height: 1.6;

}


.game-win button {

    margin-top: 15px;

    min-height: 44px;

    padding:
        10px 18px;

    border: 0;

    border-radius: 25px;

    background:
        var(--pink);

    color: white;

    cursor: pointer;

}


@keyframes heartPop {

    0% {

        opacity: 0;

        transform:
            scale(.3)
            translateY(15px);

    }

    70% {

        transform:
            scale(1.2);

    }

    100% {

        opacity: 1;

        transform:
            scale(1);

    }

}


@keyframes celebrateFloat {

    0%, 100% {

        transform:
            translateY(0)
            rotate(-10deg);

        opacity: .4;

    }

    50% {

        transform:
            translateY(-25px)
            rotate(10deg);

        opacity: 1;

    }

}

/* ==========================================
   IMAGINE THIS — REVEAL
========================================== */

.imagine-section {
    width: min(100%, 590px);
    margin: 55px auto 0;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.07);

    display: none;
    opacity: 0;
    transform: translateY(18px);
}

.imagine-section.show {
    display: block;
    animation: imagineIn .8s ease forwards;
}

@keyframes imagineIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   SCREEN 05 — SHOWCASE
========================================== */

.showcase-screen {
    min-height: 100vh;
    min-height: 100svh;
    padding: 70px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-content {
    width: min(92vw, 680px);
    text-align: center;
}


/* ==========================================
   INTRO
========================================== */

.showcase-kicker {
    margin: 0 0 9px;

    color: var(--pink);

    font-size: .72rem;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.showcase-title {
    margin: 0;

    color: var(--white);

    font-size:
        clamp(2.35rem, 7vw, 4.2rem);

    line-height: 1.04;

    letter-spacing: -.055em;
}


.showcase-subtitle {
    width: min(100%, 500px);

    margin:
        17px auto 32px;

    color: var(--muted);

    font-size: .92rem;

    line-height: 1.75;
}


/* ==========================================
   SHOWCASE CARDS
========================================== */

.showcase-list {
    width: min(100%, 570px);

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 13px;
}


.showcase-card {
    position: relative;

    width: 100%;

    min-height: 125px;

    padding: 0;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 22px;

    overflow: hidden;

    background:
        rgba(255,255,255,.035);

    color: var(--white);

    cursor: pointer;

    display: grid;

    grid-template-columns:
        145px 1fr;

    text-align: left;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.showcase-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(255,145,201,.38);

    background:
        rgba(255,145,201,.055);

    box-shadow:
        0 18px 50px
        rgba(0,0,0,.22);
}


/* ==========================================
   VIDEO THUMBNAIL
========================================== */

.showcase-thumbnail {
    position: relative;

    min-height: 125px;

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255,145,201,.25),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #35152e,
            #130b15 75%
        );

    overflow: hidden;
}


.showcase-thumbnail::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,145,201,.18);

    box-shadow:
        0 0 45px
        rgba(255,145,201,.12);
}


.showcase-thumbnail::after {
    content: "✦  ✧  ♡";

    position: absolute;

    top: 15px;
    left: 15px;

    color:
        rgba(255,208,230,.35);

    font-size: .7rem;

    letter-spacing: .5em;
}


.showcase-thumbnail-two {
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255,208,230,.2),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #291329,
            #0e080f 75%
        );
}


.showcase-play {
    position: relative;

    z-index: 2;

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    padding-left: 3px;

    border:
        1px solid
        rgba(255,145,201,.5);

    border-radius: 50%;

    background:
        rgba(8,5,10,.55);

    color: var(--pink);

    font-size: .85rem;

    box-shadow:
        0 0 30px
        rgba(255,145,201,.18);

    transition:
        transform .2s ease,
        background .2s ease;
}


.showcase-card:hover
.showcase-play {
    transform:
        scale(1.08);

    background:
        rgba(255,145,201,.12);
}


.showcase-duration {
    position: absolute;

    left: 13px;
    bottom: 10px;

    z-index: 3;

    padding:
        4px 8px;

    border-radius: 999px;

    background:
        rgba(8,5,10,.6);

    color:
        rgba(255,255,255,.6);

    font-size: .58rem;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* ==========================================
   CARD INFORMATION
========================================== */

.showcase-info {
    min-width: 0;

    padding:
        21px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;
}


.showcase-type {
    color: var(--pink);

    font-size: .61rem;

    font-weight: 600;

    letter-spacing: .14em;
}


.showcase-name {
    color: var(--white);

    font-size: 1rem;

    font-weight: 600;
}


.showcase-hint {
    margin-top: 5px;

    color: var(--muted);

    font-size: .7rem;
}


/* ==========================================
   SKIP
========================================== */

.showcase-skip {
    margin-top: 22px;

    padding:
        9px 4px;

    border: 0;

    background: transparent;

    color:
        rgba(255,255,255,.42);

    font-size: .72rem;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}


.showcase-skip:hover {
    color: var(--pink);

    transform:
        translateX(3px);
}


/* ==========================================
   ENDING
========================================== */

.showcase-ending {
    width: min(100%, 590px);

    margin:
        55px auto 0;

    padding-top: 35px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    color: var(--muted);

    line-height: 1.8;

    animation:
        showcaseEndingIn
        .8s
        ease
        forwards;
}


.showcase-ending[hidden] {
    display: none;
}


.showcase-line {
    width: 35px;
    height: 1px;

    margin:
        0 auto 25px;

    background:
        rgba(255,145,201,.55);
}


.showcase-ending p {
    margin:
        0 0 20px;

    font-size: .9rem;
}


.showcase-ending blockquote {
    margin:
        28px auto;

    color: var(--white);

    font-size:
        clamp(1.1rem, 3.5vw, 1.45rem);

    font-weight: 500;

    line-height: 1.55;

    letter-spacing: -.02em;
}


.showcase-final {
    color:
        rgba(255,255,255,.58) !important;

    margin-top: 28px !important;
}


.showcase-final::first-letter {
    color: var(--pink);
}


/* ==========================================
   SCREEN 05 — VIDEO MODAL
========================================== */

.showcase-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(5, 3, 7, .94);
    backdrop-filter: blur(18px);
}

.showcase-modal-inner {
    position: relative;
    width: min(94vw, 1200px);
    max-height: 94vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    animation: showcaseModalIn .35s ease both;
}

/* VIDEO AREA */

.showcase-video-wrap {
    position: relative;

    width: auto;
    max-width: 94vw;
    max-height: 78vh;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    overflow: hidden;

    background: #050306;

    box-shadow:
        0 30px 100px rgba(0,0,0,.55),
        0 0 50px rgba(228,93,157,.10);
}

.showcase-video-wrap video {
    display: block;

    width: auto;
    height: auto;

    max-width: 94vw;
    max-height: 78vh;

    object-fit: contain;

    border-radius: 18px;
}

/* CLOSE BUTTON */

.showcase-modal-close {
    position: absolute;

    top: -16px;
    right: -16px;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    background: rgba(15,8,17,.9);
    color: var(--white);

    font-size: 1.5rem;
    line-height: 1;

    display: grid;
    place-items: center;

    cursor: pointer;

    z-index: 10;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.showcase-modal-close:hover {
    transform: scale(1.06);
    background: rgba(233,138,183,.14);
    border-color: rgba(233,138,183,.6);
}

/* VIDEO DETAILS */

.showcase-video-details {
    width: 100%;
    max-width: 760px;

    margin-top: 18px;

    text-align: center;
}

.showcase-video-type {
    display: block;

    margin-bottom: 7px;

    color: var(--pink);
    font-size: .65rem;
    font-weight: 600;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.showcase-video-details h3 {
    margin: 0 0 5px;

    color: var(--white);

    font-size: clamp(1rem, 2.5vw, 1.35rem);
}

.showcase-video-details p {
    margin: 0;

    color: rgba(255,255,255,.5);

    font-size: .82rem;
}

/* MODAL ANIMATION */

@keyframes showcaseModalIn {
    from {
        opacity: 0;
        transform: scale(.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* MOBILE */

@media (max-width: 600px) {

    .showcase-modal {
        padding: 14px;
    }

    .showcase-modal-inner {
        width: 100%;
        max-height: 94vh;
    }

    .showcase-video-wrap {
        max-width: 94vw;
        max-height: 76vh;
        border-radius: 14px;
    }

    .showcase-video-wrap video {
        max-width: 94vw;
        max-height: 76vh;
        border-radius: 14px;
    }

    .showcase-modal-close {
        top: -13px;
        right: -5px;

        width: 38px;
        height: 38px;

        font-size: 1.3rem;
    }

    .showcase-video-details {
        margin-top: 14px;
    }

}

.showcase-video-type {
    color: var(--pink);

    font-size: .61rem;

    letter-spacing: .14em;
}


.showcase-video-details h3 {
    margin:
        6px 0 5px;

    color: var(--white);

    font-size: 1.2rem;
}


.showcase-video-details p {
    margin: 0;

    color: var(--muted);

    font-size: .78rem;

    line-height: 1.6;
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes showcaseEndingIn {

    from {
        opacity: 0;

        transform:
            translateY(18px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes showcaseModalIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .showcase-screen {
        padding:
            55px 15px 45px;
    }


    .showcase-title {
        font-size:
            clamp(2.15rem, 10vw, 3rem);
    }


    .showcase-subtitle {
        font-size: .84rem;

        margin-bottom: 26px;
    }


    .showcase-card {
        grid-template-columns:
            112px 1fr;

        min-height: 105px;

        border-radius: 18px;
    }


    .showcase-thumbnail {
        min-height: 105px;
    }


    .showcase-thumbnail::before {
        width: 92px;
        height: 92px;
    }


    .showcase-play {
        width: 42px;
        height: 42px;
    }


    .showcase-info {
        padding:
            16px 14px;
    }


    .showcase-name {
        font-size: .88rem;
    }


    .showcase-hint {
        font-size: .65rem;
    }


    .showcase-modal {
        padding: 10px;
    }


    .showcase-modal-inner {
        padding: 9px;

        border-radius: 18px;
    }


    .showcase-video-wrap {
        border-radius: 12px;
    }


    .showcase-video-wrap video {
        max-height: 68vh;
    }


    .showcase-video-details {
        padding:
            14px 5px 5px;
    }

}

/* ================================
   SCREEN 6 — NIGHTSMILE ENQUIRY
================================ */

.enquiry-screen {
    min-height: 100vh;
    padding: 70px 20px;
    background:
        radial-gradient(circle at 50% 15%, rgba(213, 82, 145, .14), transparent 35%),
        #0b070c;
    color: var(--white);
}

.enquiry-content {
    width: min(680px, 100%);
    margin: 0 auto;
}

.enquiry-kicker,
.step-label {
    color: #e98ab7;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.enquiry-title {
    font-size: clamp(2.2rem, 8vw, 4rem);
    line-height: 1;
    margin-bottom: 22px;
}

.enquiry-intro,
.enquiry-success p {
    color: rgba(255,255,255,.68);
    line-height: 1.8;
    max-width: 540px;
}

.form-step {
    margin-top: 55px;
    animation: enquiryFade .5s ease both;
}

.form-step h3 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 24px;
}

.step-help {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    line-height: 1.7;
    margin-top: -10px;
    margin-bottom: 20px;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.option-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.form-option {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
    color: var(--white);
    padding: 18px 16px;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: .25s ease;
    font-family: inherit;
}

.form-option:hover {
    border-color: rgba(233,138,183,.65);
    background: rgba(233,138,183,.08);
    transform: translateY(-2px);
}

.form-option.selected {
    border-color: #e98ab7;
    background: rgba(233,138,183,.13);
    box-shadow: 0 0 25px rgba(233,138,183,.08);
}

.form-option span {
    display: block;
    font-size: 1rem;
}

.form-option small {
    display: block;
    color: rgba(255,255,255,.45);
    margin-top: 6px;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.check-grid label {
    cursor: pointer;
}

.check-grid input {
    display: none;
}

.check-grid span {
    display: block;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
    transition: .25s ease;
}

.check-grid input:checked + span {
    border-color: #e98ab7;
    background: rgba(233,138,183,.12);
}

.input-label,
.textarea-label {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    margin-bottom: 22px;
}

.input-label input,
.textarea-label textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 9px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    color: white;
    outline: none;
    font: inherit;
}

.textarea-label textarea {
    min-height: 130px;
    resize: vertical;
}

.input-label input:focus,
.textarea-label textarea:focus {
    border-color: #e98ab7;
}

.enquiry-screen .continue-button,
.enquiry-screen .submit-button {
    border: 0;
    margin-top: 20px;
    padding: 15px 22px;
    border-radius: 999px;
    background: #e98ab7;
    color: #1b0c16;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.enquiry-screen .continue-button:hover,
.enquiry-screen .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,138,183,.2);
}

.enquiry-screen .arrow {
    margin-left: 8px;
}

.enquiry-screen .continue-button.secondary {
    background: rgba(255,255,255,.07);
    color: white;
}

.arrow {
    margin-left: 8px;
}

.starting-price {
    margin-top: 22px;
    color: rgba(255,255,255,.42);
    font-size: .78rem;
    line-height: 1.7;
}

.contact-question {
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.contact-options .form-option {
    padding: 13px 18px;
}

.form-note {
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    margin-top: 15px;
}

.enquiry-success {
    padding: 60px 0;
    animation: enquiryFade .7s ease both;
}

.success-star {
    color: #e98ab7;
    font-size: 2rem;
    margin-bottom: 20px;
}

.enquiry-success h2 {
    font-size: clamp(2.5rem, 9vw, 4.5rem);
    margin-bottom: 25px;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.success-actions .continue-button {
    text-decoration: none;
    margin-top: 0;
}

@keyframes enquiryFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {

    .enquiry-screen {
        padding: 55px 17px;
    }

    .option-grid,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .option-grid.two {
        grid-template-columns: 1fr 1fr;
    }

    .form-step {
        margin-top: 45px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .continue-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

.enquiry-screen .back-button {
    display: block;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.45);
    padding: 10px 0;
    margin-top: 18px;
    font: inherit;
    font-size: .82rem;
    cursor: pointer;
    transition: .2s ease;
}

.enquiry-screen .back-button:hover {
    color: #e98ab7;
    transform: translateX(-3px);
}

/* ==========================================
   SCREEN 6 — CONTACT CHOICES
========================================== */

.enquiry-screen .contact-choice {
    margin-top: 45px;
    animation: enquiryFade .5s ease both;
}

.enquiry-screen .contact-choice h3 {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
    margin-bottom: 14px;
}

.enquiry-screen .contact-choice-text {
    color: rgba(255,255,255,.58);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 25px;
}

.enquiry-screen .contact-platforms {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.enquiry-screen .platform-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 17px;

    padding: 16px 18px;

    background: rgba(255,255,255,.035);
    color: white;

    text-align: left;
    font: inherit;

    cursor: pointer;
    transition: .25s ease;
}

.enquiry-screen .platform-button:hover {
    transform: translateY(-2px);
    border-color: rgba(233,138,183,.65);
    background: rgba(233,138,183,.08);
}

.enquiry-screen .platform-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(233,138,183,.1);

    font-size: 1.2rem;
}

.enquiry-screen .platform-button strong {
    display: block;
    font-size: .95rem;
}

.enquiry-screen .platform-button small {
    display: block;
    margin-top: 4px;

    color: rgba(255,255,255,.4);
    font-size: .75rem;
}

.enquiry-screen .platform-button.disabled {
    opacity: .35;
    cursor: not-allowed;
}

.enquiry-screen .platform-button.disabled:hover {
    transform: none;
    border-color: rgba(255,255,255,.11);
    background: rgba(255,255,255,.035);
}