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

:root {
    --pink: #ff4f87;
    --purple: #7656d8;
    --dark: #18141c;
    --muted: #77717c;
}

body {
    min-height: 100vh;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: #fff8fb;
}

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

    background:
        radial-gradient(
            circle at 10% 15%,
            #ffd1e1 0,
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            #ddd2ff 0,
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fffafd,
            #f6f1ff
        );
}

.glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
}

.glow-one {
    top: -220px;
    right: -120px;
    background: #ff78a6;
}

.glow-two {
    bottom: -230px;
    left: -120px;
    background: #9276ff;
}

.page {
    display: none;

    height: 100vh;
    width: 100%;

    padding: 50px 7%;

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

    flex-direction: column;

    text-align: center;

    animation: pageIn .65s ease;
}

.page.active {
    display: flex;
}

@keyframes pageIn {

    from {
        opacity: 0;
        transform:
            translateY(25px)
            scale(.97);
    }

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

.eyebrow {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.number {
    position: absolute;
    top: 30px;
    left: 6%;

    color: #aaa;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
}

h1 {
    max-width: 1000px;

    font-size:
        clamp(55px, 10vw, 125px);

    line-height: .88;

    letter-spacing: -7px;

    margin-bottom: 30px;
}

h1 span,
h2 span {
    color: var(--pink);
}

h2 {
    max-width: 900px;

    font-size:
        clamp(42px, 7vw, 82px);

    line-height: .93;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

p {
    max-width: 620px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.65;

    margin-bottom: 28px;
}

button {
    border: none;

    background: var(--dark);

    color: white;

    padding: 17px 31px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    margin: 8px;

    transition: .25s;
}

button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.15);
}

.giant-emoji {
    font-size: 75px;
    margin-bottom: 20px;
}

.map-pin {
    font-size: 80px;
    margin-bottom: 20px;
}

.fake-stat {
    width: min(500px, 90%);

    padding: 35px;

    background: white;

    border-radius: 30px;

    box-shadow:
        0 25px 70px
        rgba(60,30,70,.10);

    margin-bottom: 25px;
}

.fake-stat span,
.fake-stat strong,
.fake-stat small {
    display: block;
}

.fake-stat span {
    color: #aaa;

    font-size: 10px;

    letter-spacing: 3px;
}

.fake-stat strong {
    font-size: 80px;

    color: var(--pink);

    margin: 10px;
}

.fake-stat small {
    color: #999;
}

.statement {
    font-size:
        clamp(40px, 7vw, 85px);

    font-weight: 900;

    letter-spacing: -5px;

    max-width: 850px;

    margin-bottom: 30px;
}

.statement span,
.big-line span {
    color: var(--pink);
}

.letter {
    width: min(600px, 92%);

    padding: 40px;

    background: white;

    border-radius: 32px;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.10);

    margin-bottom: 25px;
}

.letter small {
    color: var(--pink);

    letter-spacing: 3px;
}

.letter h2 {
    font-size: 45px;
    margin: 15px 0;
}

.letter strong {
    display: block;

    font-size: 18px;

    color: var(--purple);
}

.big-line {
    max-width: 850px;

    font-size:
        clamp(45px, 8vw, 95px);

    font-weight: 900;

    line-height: .95;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.loan-card {
    width: min(600px, 92%);

    background: #1a161d;

    color: white;

    padding: 45px;

    border-radius: 35px;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.20);

    margin-bottom: 25px;
}

.loan-card small {
    color: #bdb4c0;

    letter-spacing: 3px;
}

.loan-card h2 {
    font-size: 38px;
    margin: 20px 0;
}

.loan-card p {
    color: #c3bbc5;
}

.interest {
    font-size: 35px;

    color: #ff7da5;

    font-weight: 900;

    margin: 25px 0;
}

.bread {
    font-size: 100px;

    animation: float 2s ease-in-out infinite;
}

@keyframes float {

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

.bread + .eyebrow {
    margin-top: 20px;
}

.beautiful-card {
    width: min(500px, 90%);

    background: white;

    padding: 40px;

    border-radius: 32px;

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

    margin-bottom: 25px;
}

.heart {
    color: var(--pink);

    font-size: 65px;

    animation: heartbeat 1.3s infinite;
}

@keyframes heartbeat {

    50% {
        transform: scale(1.15);
    }
}

.beautiful-card strong {
    display: block;

    font-size: 28px;

    margin: 10px;
}

.quote-mark {
    color: #ffb2c9;

    font-size: 120px;

    height: 70px;
}

.quote {
    font-size:
        clamp(45px, 8vw, 100px);

    font-weight: 900;

    line-height: .9;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.quote span {
    color: var(--pink);
}

.glass {
    width: min(600px, 90%);

    padding: 30px;

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

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

    backdrop-filter: blur(20px);

    border-radius: 28px;

    box-shadow:
        0 20px 60px
        rgba(50,30,70,.08);

    margin-bottom: 25px;
}

.glass span,
.glass strong {
    display: block;
}

.glass span {
    color: var(--pink);

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.glass strong {
    font-size: 25px;
}

.emoji-line {
    font-size: 28px;

    letter-spacing: 7px;

    margin: 20px;
}

.agenda {
    width: min(650px, 95%);

    display: grid;

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

    gap: 12px;

    margin-bottom: 25px;
}

.agenda div {
    padding: 22px;

    background: white;

    border-radius: 20px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.06);

    font-size: 18px;
}

.snack-card,
.drink-card {
    width: min(450px, 90%);

    background: white;

    padding: 40px;

    border-radius: 32px;

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

    margin-bottom: 25px;
}

.snack-card div {
    font-size: 70px;
}

.snack-card strong,
.drink-card strong {
    display: block;

    font-size: 32px;

    margin: 10px;
}

.snack-card small,
.drink-card small {
    color: #999;
}

.drink-card {
    background:
        linear-gradient(
            135deg,
            #ffe0ea,
            #e3d9ff
        );

    font-size: 60px;
}

.date-grid,
.time-grid,
.location-grid {
    width: min(700px, 95%);

    display: grid;

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

    gap: 14px;

    margin-bottom: 20px;
}

.date-grid button,
.time-grid button,
.location-grid button {
    background: white;

    color: var(--dark);

    border: 2px solid transparent;

    border-radius: 24px;

    padding: 25px;

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

.date-grid button.selected,
.time-grid button.selected,
.location-grid button.selected {
    border-color: var(--pink);

    background: #fff0f5;
}

.date-grid strong,
.date-grid small {
    display: block;
}

.date-grid strong {
    font-size: 25px;
}

.date-grid small {
    margin-top: 8px;

    color: var(--pink);
}

.hidden {
    display: none !important;
}

.route {
    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 25px;

    margin-bottom: 30px;
}

.route b {
    color: var(--pink);
}

.timeline {
    width: min(600px, 90%);

    margin-bottom: 25px;
}

.timeline div {
    padding: 15px;

    border-bottom:
        1px solid #e6e0e6;

    text-align: left;

    font-size: 17px;
}

.timeline span {
    color: var(--pink);

    font-weight: 900;

    margin-right: 15px;
}

.effects {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    max-width: 700px;

    margin-bottom: 25px;
}

.effects span {
    padding: 15px 20px;

    background: white;

    border-radius: 40px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.07);

    font-weight: bold;
}

.big-heart {
    color: var(--pink);

    font-size: 110px;

    text-shadow:
        0 15px 40px
        rgba(255,79,135,.30);

    animation: heartbeat 1.3s infinite;
}

.final-question {
    max-width: 800px;

    font-size:
        clamp(40px, 7vw, 80px);

    font-weight: 900;

    line-height: .95;

    margin-bottom: 30px;
}

.buttons {
    margin-top: 10px;
}

.yes {
    background:
        linear-gradient(
            135deg,
            #ff4f87,
            #8059dc
        );

    font-size: 17px;
}

.maybe {
    background: white;

    color: var(--dark);

    border: 1px solid #ddd;
}

.ticket {
    width: min(650px, 92%);

    background: white;

    padding: 30px;

    border-radius: 30px;

    box-shadow:
        0 30px 90px
        rgba(0,0,0,.12);

    margin-bottom: 25px;
}

.ticket-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 18px;
}

.ticket-header span {
    color: var(--pink);

    font-size: 30px;
}

.ticket hr {
    border: 0;

    border-top:
        2px dashed #ddd;

    margin: 25px 0;
}

.ticket-info {
    display: grid;

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

    gap: 10px;
}

.ticket-info small,
.ticket-info strong {
    display: block;
}

.ticket-info small {
    color: #aaa;

    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.ticket-info strong {
    font-size: 12px;
}

.progress {
    position: fixed;

    bottom: 20px;

    left: 6%;
    right: 6%;

    height: 3px;

    background: #0001;

    border-radius: 20px;
}

#bar {
    display: block;

    width: 4%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--purple)
        );

    transition: .45s;
}

#hearts {
    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 100;

    overflow: hidden;
}

.floating-heart {
    position: absolute;

    bottom: -50px;

    animation:
        floatHeart
        linear
        forwards;
}

@keyframes floatHeart {

    to {
        transform:
            translateY(-115vh)
            rotate(35deg);

        opacity: 0;
    }
}

@media(max-width:650px) {

    h1 {
        letter-spacing: -4px;
    }

    h2 {
        letter-spacing: -3px;
    }

    .agenda,
    .date-grid,
    .time-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .ticket-info {
        grid-template-columns: 1fr;
    }

    .page {
        padding:
            45px 18px;
    }

    .loan-card {
        padding: 30px 20px;
    }
}