/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #ffffff 0%, #f7f3ec 100%);
    color: #1A1A1A;
    overflow-x: hidden;
}

/* HEADER */
.mmr-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px 24px;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-pill {
    background: #1A4C8B;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.header-link {
    color: #1A4C8B;
    text-decoration: none;
    font-weight: 600;
}

/* WATERMARK */
.page-watermark {
    position: fixed;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

/* HERO */
.hero-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.branding-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mmr-logo {
    width: 110px;
    height: auto;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.hero-subtitle {
    font-size: 17px;
    margin-top: 8px;
    max-width: 520px;
}

/* BUTTONS */
.button-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 30px auto;
}

.btn {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #F28C28;
    color: white;
}

.btn-secondary {
    background: #1A4C8B;
    color: white;
}

.btn-tertiary {
    background: white;
    color: #1A4C8B;
    border: 1px solid #1A4C8B;
}

/* HOW CARD */
.how-card {
    background: #f7f3ec;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-top: 40px;
    text-align: left;
}

.how-card h2 {
    margin-top: 0;
}

.how-card ul {
    padding-left: 20px;
}
