.iv-origin-card {
    grid-column: span 2;
}

.iv-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iv-launch-banner {
    border-block: 1px solid var(--iv-border);
    background: rgba(103, 232, 249, 0.06);
}

.iv-launch-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.iv-launch-banner p {
    margin: 0;
    color: var(--iv-muted);
    line-height: 1.55;
    max-width: 52rem;
}

.iv-launch-banner strong {
    color: var(--iv-cyan);
}

.iv-btn--sm {
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
}

.iv-section-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.iv-link-inline {
    color: var(--iv-cyan);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.iv-footer__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.iv-method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.iv-method {
    padding: 1rem;
    border-top: 1px solid var(--iv-border-strong);
}

.iv-method strong {
    display: block;
    color: var(--iv-cyan);
    margin-bottom: 0.75rem;
}

.iv-method p {
    color: var(--iv-muted);
    line-height: 1.65;
}

@media (max-width: 960px) {
    .iv-origin-card {
        grid-column: auto;
    }

    .iv-card-grid--three {
        grid-template-columns: 1fr;
    }

    .iv-method-grid {
        grid-template-columns: 1fr;
    }
}
