/* Affiliate program page — LigiComms. Shared tokens & components live in site.css;
   the apply form reuses home-contact.css's .form-card/.field/.f-row/.send-btn. */

/* HERO */
.afp-hero { position: relative; padding: 92px 0 60px; text-align: center; background: radial-gradient(820px 420px at 50% -12%, rgba(44, 79, 124, .55), transparent 62%), var(--navy-950); }
.afp-hero h1 { font-size: clamp(36px, 5.4vw, 58px); font-weight: 800; margin: 18px auto 20px; max-width: 20ch; }
.afp-hero h1 .grad { background: linear-gradient(92deg, #ffb054, #ff7a9c); -webkit-background-clip: text; background-clip: text; color: transparent; }
.afp-sub { color: var(--ink-dim); font-size: 17px; max-width: 62ch; margin: 0 auto 30px; }

/* HOW IT WORKS */
.afp-how { padding: 70px 0; border-top: 1px solid var(--line); }
.afp-how h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; text-align: center; margin-bottom: 44px; }
.afp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.afp-step { padding: 24px 20px; border-radius: 18px; border: 1px solid var(--line); background: rgba(12, 30, 53, .5); }
.afp-step-num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-weight: 800; font-size: 14px; color: #25160a; background: linear-gradient(135deg, #ffb054, #ff7a9c); margin-bottom: 14px; }
.afp-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.afp-step p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.6; }

/* WORKED EXAMPLE */
.afp-example { padding: 70px 0; border-top: 1px solid var(--line); }
.afp-example h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; text-align: center; margin-bottom: 32px; }
.afp-example-card { max-width: 620px; margin: 0 auto; border-radius: 20px; padding: 30px 32px; background: linear-gradient(165deg, rgba(30, 58, 95, .5), rgba(12, 30, 53, .85)); border: 1px solid rgba(169, 189, 212, .2); }
.afp-example-rows { display: flex; flex-direction: column; gap: 4px; }
.afp-example-row { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-dim); }
.afp-example-row:last-child { border-bottom: none; }
.afp-example-row::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--wa); flex: none; margin-top: 3px; font-size: 13px; }
.afp-example-note { margin-top: 18px; font-size: 13px; color: var(--ink-faint); }

/* APPLY */
.afp-apply { padding: 30px 0 110px; }
.afp-apply-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: start; }
.afp-apply h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 14px; }
.afp-apply-lede { font-size: 15px; color: var(--ink-dim); margin-bottom: 22px; max-width: 46ch; }
.afp-apply-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.afp-apply-points li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-dim); }
.afp-apply-points i { color: var(--wa); }

@media (max-width: 920px) {
    .afp-steps { grid-template-columns: repeat(2, 1fr); }
    .afp-apply-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 560px) {
    .afp-steps { grid-template-columns: 1fr; }
    .afp-example-card { padding: 24px 20px; }
}
