:root {
    --bg: #f7f8fc;
    --surface: #ffffff;
    --surface-soft: #eef3f8;
    --text: #0f172a;
    --muted: #667085;
    --line: #dde3ee;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --primary: #5b3df5;
    --primary-soft: rgba(91, 61, 245, 0.10);
    --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.10);
    --shadow-md: 0 16px 35px rgba(15, 23, 42, 0.06);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
}

.affiliate-page {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-dark {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #ffffff;
}

.hero {
    padding: 0 0 56px;
    background:
        radial-gradient(circle at top left, rgba(91, 61, 245, 0.14), transparent 34%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 30%),
        linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}

.hero-topbar {
    padding: 22px 0 12px;
}

.hero-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-link {
    color: var(--muted);
    font-weight: 600;
}

.brand {
    display: inline-flex;
    align-items: center;
    max-width: 220px;
}

.brand-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-strip {
    border-top: 1px solid rgba(221, 227, 238, 0.7);
    border-bottom: 1px solid rgba(221, 227, 238, 0.7);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

.hero-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-strip-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 48px;
    align-items: center;
    padding-top: 42px;
}

.eyebrow,
.section-kicker,
.hero-card-tag,
.pressure-tag,
.light-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.hero-card-tag,
.pressure-tag {
    color: var(--primary);
}

.eyebrow {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(91, 61, 245, 0.14);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.hero-copy h1 {
    margin-top: 18px;
    max-width: 760px;
    font-size: clamp(3rem, 5vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.hero-copy h1 span {
    color: var(--primary);
}

.hero-text {
    margin-top: 20px;
    max-width: 630px;
    font-size: 1.06rem;
    color: var(--muted);
}

.hero-actions,
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-microcopy,
.cta-microcopy {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-benefit {
    padding: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(221, 227, 238, 0.9);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.hero-benefit strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.hero-benefit span {
    display: block;
    color: var(--muted);
    font-size: 0.91rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: 0.25s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-sm {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
}

.btn-xl {
    min-height: 58px;
    padding: 0 28px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    font-size: 15px;
}

.btn-primary {
    background: var(--dark);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.btn-primary:hover {
    background: var(--dark-2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: #c9d2e0;
}

.btn-white {
    background: #ffffff;
    color: var(--dark);
}

.hero-card-wrap {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    width: 100%;
    padding: 28px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(221, 227, 238, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-money-list {
    margin-top: 12px;
}

.hero-money-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.hero-money-row span {
    color: var(--muted);
    font-weight: 600;
}

.hero-money-row strong {
    font-size: 1.18rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-money-row.featured {
    margin: 8px 0;
    padding: 18px 16px;
    border: 1px solid rgba(91, 61, 245, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(91, 61, 245, 0.08) 0%, rgba(91, 61, 245, 0.03) 100%);
}

.hero-money-row.featured strong {
    font-size: 1.6rem;
    color: var(--primary);
}

.money-featured-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.money-featured-copy small {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-card-text {
    margin: 20px 0 22px;
    color: var(--muted);
    font-size: 0.97rem;
}

.hero-bottom-points {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.point-card {
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.point-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
}

.point-icon svg {
    width: 22px;
    height: 22px;
}

.point-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.point-card span {
    color: var(--muted);
    font-size: 0.93rem;
}

.section-head {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-head.narrow {
    margin-left: auto;
    margin-right: auto;
}

.section-head.center {
    text-align: center;
}

.section-head h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.section-head p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 1.02rem;
}

.section-head.light p {
    color: rgba(255, 255, 255, 0.78);
}

.light-kicker {
    color: #c4b5fd;
}

.steps-grid,
.earnings-grid,
.benefits-grid,
.faq-grid {
    display: grid;
    gap: 18px;
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.step-badge {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
}

.step-badge svg {
    width: 24px;
    height: 24px;
}

.step-card h3,
.benefit-card h3,
.faq-card h3,
.reason-card h3,
.pressure-card h3 {
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.step-card p,
.benefit-card p,
.faq-card p,
.reason-card p,
.pressure-card p {
    color: var(--muted);
}

.earnings-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.earn-card {
    padding: 24px 20px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.earn-card.featured {
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(91, 61, 245, 0.34) 0%, rgba(91, 61, 245, 0.18) 100%);
    border-color: rgba(196, 181, 253, 0.30);
}

.earn-card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.earn-card strong {
    display: block;
    margin: 10px 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.earn-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.earn-note {
    max-width: 760px;
    margin: 24px auto 0;
    padding: 18px 20px;
    text-align: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.9);
}

.dark-cta {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
    align-items: start;
}

.reason-list {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.reason-card,
.benefit-card,
.faq-card {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.pressure-card {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(160deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.pressure-card p {
    color: rgba(255, 255, 255, 0.78);
}

.pressure-list {
    margin: 18px 0 22px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.pressure-list li + li {
    margin-top: 8px;
}

.benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits-head {
    text-align: center;
}

.benefits-grid-centered {
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
}

.final-cta-section {
    padding-top: 30px;
}

.final-cta-box {
    padding: 52px 28px;
    text-align: center;
    border-radius: 34px;
    background:
        radial-gradient(circle at top, rgba(91, 61, 245, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.final-cta-box h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.final-cta-box p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--muted);
}

.final-cta-actions {
    justify-content: center;
}

.faq-section {
    padding-top: 34px;
}

@media (max-width: 1100px) {
    .hero-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .hero-card-wrap {
        justify-content: flex-start;
    }

    .hero-benefits,
    .hero-bottom-points,
    .steps-grid,
    .earnings-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 0 0 44px;
    }

    .hero-topbar {
        padding: 18px 0 10px;
    }

    .hero-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-topbar-right,
    .hero-actions,
    .final-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-strip-inner {
        min-height: auto;
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }

    .hero-grid {
        gap: 28px;
        padding-top: 28px;
    }

    .hero-benefits,
    .hero-bottom-points,
    .steps-grid,
    .earnings-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .step-card,
    .benefit-card,
    .faq-card,
    .reason-card,
    .pressure-card,
    .hero-card,
    .final-cta-box {
        padding: 22px;
    }

    .btn {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: 2.7rem;
    }

    .section-head h2,
    .final-cta-box h2 {
        font-size: 2rem;
    }

    .earn-card.featured {
        transform: none;
    }

    .brand {
        max-width: 170px;
    }
}