/* Affiliate landing styles */
body[data-page="affiliate"] {
    background: #f7f8fb;
    color: #0d1321;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
}

body[data-page="affiliate"] .main-header {
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.7) 70%, rgba(9, 9, 11, 0) 100%);
    border-bottom: 1px solid rgba(13, 19, 33, 0.12);
}

.affiliate-page {
    gap: 32px;
}

.affiliate-hero {
    text-align: center;
    display: grid;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
}

.affiliate-hero h1 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.affiliate-hero p {
    margin: 0;
    font-size: clamp(1rem, 3.2vw, 1.18rem);
    color: rgba(13, 19, 33, 0.7);
    line-height: 1.65;
}

.affiliate-cta {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #0b6efe 0%, #12aae0 100%);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 16px 40px -22px rgba(11, 110, 254, 0.5);
}

.affiliate-cta:hover,
.affiliate-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 46px -18px rgba(9, 112, 255, 0.6);
}

.affiliate-section {
    display: grid;
    gap: 18px;
}

.affiliate-section h2 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.affiliate-section ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 12px;
}

.affiliate-section li {
    line-height: 1.65;
}

.affiliate-section li strong {
    color: #0d1321;
}

.affiliate-inline-cta {
    display: inline-flex;
    margin-top: 12px;
}

@media (max-width: 640px) {
    .affiliate-page {
        gap: 24px;
    }
}
