@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;900&family=Work+Sans:wght@400;500;700&display=swap');

:root {
    --color-red: #FF0000;
    --color-white: #FFFFFF;
    --color-plum: #6F003C;
    --color-surface: #FFF5F8;
    --color-text: #210012;
    --color-muted: #6A3A53;
}

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

body {
    font-family: 'Work Sans', 'Segoe UI', sans-serif;
    color: var(--color-text);
    min-height: 100vh;
    background: radial-gradient(circle at 85% 10%, #FFD4E4 0%, transparent 40%),
                radial-gradient(circle at 10% 90%, #FFE7CC 0%, transparent 45%),
                linear-gradient(165deg, #FFFFFF 0%, #FFF1F6 55%, #FFE7F1 100%);
}

.page-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(255, 0, 0, 0.03) 25%, transparent 25%),
        linear-gradient(300deg, rgba(111, 0, 60, 0.04) 25%, transparent 25%);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

.layout {
    position: relative;
    z-index: 1;
    width: min(960px, 100% - 2rem);
    margin: 0 auto;
    padding: 2.5rem 0 3rem;
    display: grid;
    gap: 1.4rem;
}

.hero-banner {
    display: grid;
    gap: 1.2rem;
    align-items: center;
    grid-template-columns: 140px 1fr;
    background: linear-gradient(135deg, var(--color-red) 0%, #C80019 45%, var(--color-plum) 100%);
    color: var(--color-white);
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 20px 42px rgba(111, 0, 60, 0.24);
    animation: heroEnter 600ms ease-out;
}

.hero-logo {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.92;
    margin-bottom: 0.35rem;
}

h1,
h2,
.footer-title {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

h1 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.15;
    margin-bottom: 0.55rem;
}

.hero-banner-copy p {
    line-height: 1.5;
}

.card {
    background: var(--color-white);
    border: 1px solid rgba(111, 0, 60, 0.13);
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 14px 30px rgba(111, 0, 60, 0.08);
}

h2 {
    font-size: 1.28rem;
    margin-bottom: 0.8rem;
    color: var(--color-plum);
}

.card p {
    line-height: 1.72;
    margin-bottom: 0.9rem;
}

.card p:last-child {
    margin-bottom: 0;
}

ol {
    padding-left: 1.2rem;
    line-height: 1.7;
}

.cta-row {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 10px 18px rgba(255, 0, 0, 0.24);
}

.btn-secondary {
    color: var(--color-plum);
    border: 1px solid rgba(111, 0, 60, 0.35);
    background: rgba(111, 0, 60, 0.06);
}

.footer {
    text-align: center;
    padding: 1.2rem;
    color: var(--color-muted);
}

.footer-title {
    color: var(--color-plum);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--color-red);
    font-weight: 700;
    text-decoration: none;
}

.footer-note {
    font-size: 0.86rem;
}

.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 400ms ease, transform 400ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 740px) {
    .hero-banner {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: min(280px, 100%);
    }
}
