.spi-lead-module {
    --spi-lead-ink: #0b1322;
    --spi-lead-paper: #ffffff;
    --spi-lead-mist: #f2f5f7;
    --spi-lead-line: #dce3e8;
    --spi-lead-muted: #536171;
    --spi-lead-cyan: #4ae6ff;
    --spi-lead-cyan-dark: #087c92;
    --spi-lead-red: #d92512;
    --spi-lead-shadow: 0 18px 54px rgba(11, 19, 34, 0.14);
    width: 100%;
    max-width: 820px;
    margin: 32px auto;
    color: var(--spi-lead-ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

.spi-lead-module *,
.spi-lead-module *::before,
.spi-lead-module *::after {
    box-sizing: border-box;
}

.spi-lead-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    overflow: hidden;
    border: 1px solid #1e2a3e;
    min-height: 250px;
    max-height: 250px;
    border-radius: 16px;
    background: var(--spi-lead-ink);
    box-shadow: var(--spi-lead-shadow);
}

.spi-lead-shell::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: 3;
    height: 4px;
    background: linear-gradient(90deg, var(--spi-lead-red) 0 18%, var(--spi-lead-cyan) 18% 100%);
    content: "";
}

.spi-lead-intro {
    position: relative;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 20px 22px;
    color: #ffffff;
}

.spi-lead-intro::after {
    position: absolute;
    right: -68px;
    bottom: -112px;
    width: 205px;
    height: 205px;
    border: 1px solid rgba(74, 230, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(74, 230, 255, 0.035), 0 0 0 62px rgba(74, 230, 255, 0.025);
    content: "";
}

.spi-lead-intro-copy,
.spi-lead-proof {
    position: relative;
    z-index: 1;
}

.spi-lead-intro-copy {
    padding-top: 12px;
}

.spi-lead-eyebrow {
    margin: 0 0 5px;
    color: var(--spi-lead-cyan);
    font-family: "Courier New", Courier, monospace;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.spi-lead-heading {
    max-width: 520px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 3.5vw, 35px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1;
}

.spi-lead-heading em {
    color: var(--spi-lead-cyan);
    font-weight: 400;
}

.spi-lead-summary {
    max-width: 530px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11.5px;
    line-height: 1.35;
}

.spi-lead-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.spi-lead-proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 8.5px;
    font-weight: 600;
}

.spi-lead-proof span::before {
    color: var(--spi-lead-cyan);
    content: "✓";
    font-weight: 800;
}

.spi-lead-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 18px;
    background: var(--spi-lead-paper);
}

.spi-lead-prompt {
    margin: 0;
    font-size: clamp(20px, 2.4vw, 23px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.spi-lead-helper {
    margin: 2px 0 9px;
    color: var(--spi-lead-muted);
    font-size: 10.5px;
}

.spi-lead-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.spi-lead-option {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 88px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 4px;
    padding: 9px 27px 9px 9px;
    border: 1px solid var(--spi-lead-line);
    border-radius: 10px;
    background: var(--spi-lead-paper);
    color: var(--spi-lead-ink);
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.spi-lead-option:hover {
    border-color: #9caeb8;
    box-shadow: 0 10px 24px rgba(11, 19, 34, 0.09);
    transform: translateY(-2px);
}

.spi-lead-option:focus-visible,
.spi-lead-book:focus-visible,
.spi-lead-privacy:focus-visible {
    outline: 3px solid rgba(8, 124, 146, 0.35);
    outline-offset: 3px;
}

.spi-lead-option-icon {
    display: inline-flex;
    width: auto;
    height: 20px;
    align-items: center;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--spi-lead-mist);
    color: var(--spi-lead-cyan-dark);
    font-family: "Courier New", Courier, monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spi-lead-option strong,
.spi-lead-option small {
    display: block;
}

.spi-lead-option strong {
    margin-bottom: 1px;
    font-size: 12px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.spi-lead-option small {
    color: var(--spi-lead-muted);
    font-size: 9.5px;
    line-height: 1.2;
}

.spi-lead-option-arrow {
    position: absolute;
    top: 8px;
    right: 8px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--spi-lead-cyan);
    font-size: 13px;
    font-weight: 800;
    transition: transform 160ms ease;
}

.spi-lead-option:hover .spi-lead-option-arrow {
    transform: translateX(2px);
}

.spi-lead-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid var(--spi-lead-line);
}

.spi-lead-secondary p {
    margin: 0;
    color: var(--spi-lead-muted);
    font-size: 9.5px;
}

.spi-lead-book {
    flex: 0 0 auto;
    color: var(--spi-lead-ink);
    font-size: 10.5px;
    font-weight: 800;
    text-underline-offset: 3px;
}

.spi-lead-legal {
    margin: 4px 0 0;
    color: #7b8794;
    font-size: 8px;
    line-height: 1.2;
}

.spi-lead-privacy {
    color: inherit;
    text-underline-offset: 2px;
}

@media (max-width: 700px) {
    .spi-lead-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        max-height: none;
    }

    .spi-lead-intro {
        min-height: auto;
        gap: 28px;
        padding: 28px 30px;
    }

    .spi-lead-intro-copy {
        padding-top: 0;
    }

    .spi-lead-heading {
        max-width: 680px;
        font-size: 37px;
    }

    .spi-lead-summary {
        font-size: 14px;
    }

    .spi-lead-proof {
        margin-top: 16px;
    }

    .spi-lead-proof span {
        padding: 5px 8px;
        font-size: 10.5px;
    }

    .spi-lead-actions {
        padding: 26px 30px;
    }

    .spi-lead-prompt {
        font-size: 24px;
    }

    .spi-lead-helper {
        margin: 4px 0 12px;
        font-size: 12px;
    }

    .spi-lead-options {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .spi-lead-option {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) 28px;
        min-height: 58px;
        align-items: center;
        gap: 10px;
        padding: 9px;
    }

    .spi-lead-option-arrow {
        position: static;
        width: 28px;
        height: 28px;
    }

    .spi-lead-option strong {
        font-size: 14px;
    }

    .spi-lead-option small {
        font-size: 11.5px;
    }

    .spi-lead-secondary {
        margin-top: 10px;
        padding-top: 10px;
    }

    .spi-lead-secondary p {
        font-size: 11.5px;
    }

    .spi-lead-book {
        font-size: 12px;
    }

    .spi-lead-legal {
        margin-top: 7px;
        font-size: 9.5px;
    }
}

@media (max-width: 520px) {
    .spi-lead-module {
        margin: 28px auto;
    }

    .spi-lead-shell {
        border-radius: 16px;
    }

    .spi-lead-intro,
    .spi-lead-actions {
        padding: 22px 20px;
    }

    .spi-lead-intro {
        gap: 24px;
    }

    .spi-lead-heading {
        font-size: 34px;
    }

    .spi-lead-summary {
        font-size: 13px;
    }

    .spi-lead-proof {
        margin-top: 14px;
    }

    .spi-lead-proof span {
        padding: 5px 7px;
        font-size: 10px;
    }

    .spi-lead-secondary {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spi-lead-option,
    .spi-lead-option-arrow {
        transition: none;
    }
}

/* Beat article body heading/link styles such as `.article-fulltext h2` and `.article-fulltext a`. */
.spi-lead-module .spi-lead-heading {
    max-width: 520px;
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 3.5vw, 35px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1;
}

.spi-lead-module .spi-lead-prompt {
    margin: 0;
    color: var(--spi-lead-ink);
    font-size: clamp(20px, 2.4vw, 23px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.spi-lead-module .spi-lead-option,
.spi-lead-module .spi-lead-option:hover {
    color: var(--spi-lead-ink);
    text-decoration: none;
}

.spi-lead-module .spi-lead-book,
.spi-lead-module .spi-lead-book:hover {
    color: var(--spi-lead-ink);
}

.spi-lead-module .spi-lead-privacy,
.spi-lead-module .spi-lead-privacy:hover {
    color: inherit;
}

@media (max-width: 700px) {
    .spi-lead-module .spi-lead-heading {
        max-width: 680px;
        font-size: 37px;
    }

    .spi-lead-module .spi-lead-prompt {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .spi-lead-module .spi-lead-heading {
        font-size: 34px;
    }
}
