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

body{
    font-family:Inter,sans-serif;
    background:#F8DDE8;
    color:#24324A;
}
.hero {
    min-height: calc(100vh - 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}
.hero{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

}

.sparkle{

    font-size:34px;

    margin-bottom:20px;

}

h1{

    font-family:"Cormorant Garamond",serif;

    font-size:88px;

    font-weight:600;

    margin-bottom:20px;

}

h2{
    color:#B81F68;
    font-size:28px;
    font-weight:400;
    margin-bottom:30px;
}

.intro{

    max-width:650px;

    line-height:1.8;

    font-size:20px;

    margin-bottom:45px;

}

.join-button {
    display: inline-block;
    background: #B81F68;
    color: white;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

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

button{
    background:#B81F68;
    color:white;
    border:none;
    padding:18px 38px;
    border-radius:50px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

button:hover{

    transform:translateY(-4px);

}
.launch-bar {
    width: 100%;
    overflow: hidden;
    background: #B81F68;
    color: #ffffff;
    padding: 12px 0;
}

.launch-track {
    display: flex;
    width: max-content;
    gap: 56px;
    white-space: nowrap;
    animation: launch-scroll 24s linear infinite;
}

.launch-track span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes launch-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-logo {
    width: min(520px, 82vw);
    height: auto;
    margin-bottom: 22px;
}

.signup-form {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.signup-input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 16px 18px;
    border: 2px solid #24324A;
    border-radius: 50px;
    background: #ffffff;
    color: #24324A;
    font: inherit;
    outline: none;
}

.signup-input:focus {
    border-color: #B81F68;
}

.signup-button {
    background: #B81F68;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font: inherit;
    cursor: pointer;
    transition: 0.3s;
}

.signup-button:hover {
    transform: translateY(-3px);
}

.signup-message {
    width: 100%;
    display: none;
    margin-top: 8px;
    color: #24324A;
    font-weight: 600;
}

.signup-message.show {
    display: block;
}

.mailchimp-frame {
    display: none;
}

@media (max-width: 600px) {
    .signup-form {
        flex-direction: column;
        gap: 14px;
    }

    .signup-input {
        width: 100%;
        flex: none;
        min-height: 56px;
        padding: 16px 20px;
    }

    .signup-button {
        width: 100%;
        flex: none;
    }
}
.signup-note {
    width: 100%;
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.5;
    color: #24324A;
    opacity: 0.8;
    text-align: center;
}
.social-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2px;
    margin-bottom: 50px;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #24324A;
    border-radius: 50%;
    color: #24324A;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-icon:hover {
    background: #B81F68;
    border-color: #B81F68;
    color: #ffffff;
    transform: translateY(-3px);
}