:root {
    --warm-white: #FAF9F7;
    --white: #FFFFFF;
    --lilac: #B8A3D3;
    --lilac-dark: #9D88C0;
    --mint: #A8E6CF;
    --charcoal: #3A3A3C;
    --light-gray: #E7E7E7;
    --text-gray: #666666;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--mint);
    opacity: 0.05;
    z-index: -1;
}

.container {
    max-width: 650px;
    width: 100%;
    background-color: var(--white);
    border-radius: 20px;
    padding: 56px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(168, 230, 207, 0.1);
    text-align: center;
}

.landing-container {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    max-width: 580px;
    width: 100%;
    text-align: center;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
    text-align: center;
}

.confirmation-text, .description {
    font-size: 18px;
    opacity: .8;
    line-height: 1.6;
    margin-bottom: 32px;
}

.download-section {
    margin-top: 24px;
}

.download-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(184, 163, 211, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.download-card:hover {
    box-shadow: 0 8px 20px rgba(168, 230, 207, 0.15);
    transform: translateY(-2px);
}

.download-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.download-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.download-btn.lilac {
    background-color: var(--lilac);
    color: var(--charcoal);
}

.download-btn.lilac:hover {
    background-color: var(--lilac-dark);
    box-shadow: 0 6px 12px rgba(184, 163, 211, 0.3);
}

.download-btn.mint {
    background-color: var(--mint);
    color: var(--charcoal);
}

.download-btn.mint:hover {
    background-color: #97d4bb;
    box-shadow: 0 6px 12px rgba(168, 230, 207, 0.3);
}

#mce-EMAIL {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 16px;
}

#mc-embedded-subscribe {
    width: 100%;
    background: var(--lilac);
    color: var(--charcoal);
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

#mc-embedded-subscribe:hover {
    background: var(--lilac-dark);
}

.reassurance-text, .reassurance {
    font-size: 14px;
    color: rgba(0,0,0,0.55);
    margin-top: 12px;
    font-style: italic;
}

.footer {
    margin-top: 20px;
    opacity: .7;
    font-size: 12px;
}

@media (max-width: 768px) {
    .container, .landing-container {
        padding: 40px 28px;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .confirmation-text, .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container, .landing-container {
        padding: 32px 20px;
    }
    
    .headline {
        font-size: 26px;
    }
    
    .download-card {
        padding: 20px;
    }
}

.us-note {
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
    margin: -20px 0 32px 0;
    font-style: italic;
    opacity: 0.8;
}
