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

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #585c6e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background image */
.bg {
    position: fixed;
    inset: 0;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Frosted glass overlay */
.bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(217, 217, 217, 0.20);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Content container */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    gap: 0;
}

/* Coming soon ticker */
.ticker-wrap {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-text {
    display: inline-block;
    font-family: 'Glacial Indifference', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.19);
    letter-spacing: -0.02em;
    animation: ticker 18s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Main headline group */
.headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    line-height: 1;
}

.headline-line {
    font-family: 'Baskerville', 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    color: #e9dffe;
    letter-spacing: -0.03em;
    text-align: center;
    line-height: 1.125;
}

.headline-wonderful {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.flower-img {
    width: clamp(60px, 7.5vw, 108px);
    height: auto;
    display: inline-block;
    transform: rotate(0.2deg);
    position: relative;
    top: 0;
    flex-shrink: 0;
    margin-right: -10px;
}

/* CTA pill button */
.cta-btn {
    display: block;
    background: #ffffff;
    border-radius: 100px;
    padding: 24px 48px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 32px;
    min-width: 380px;
}

.cta-btn span {
    font-family: 'Glacial Indifference', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #476381;
    letter-spacing: -0.03em;
    display: block;
}

/* Name */
.name {
    font-family: 'Glacial Indifference', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #476381;
    letter-spacing: -0.03em;
}
