:root {
    --font-weight: 650;
}

.hero {
    padding: 0 0 10px;
}

.heroTitle {
    font-size: 32px;
    font-weight: var(--font-weight);
    margin: 0;
    line-height: var(--line-height);
}

.heroText {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: var(--line-height);
    max-width: 760px;
}

.ctaGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, .25);
    background: rgba(56, 189, 248, .08);
    cursor: pointer;
    transition: transform .08s ease, border-color .15s ease, background .15s ease;
}

.btn:hover {
    background: rgba(56, 189, 248, .12);
    border-color: rgba(56, 189, 248, .45);
}

.btn:active {
    transform: scale(.99);
}

.btnTitle {
    font-weight: var(--font-weight);
    font-size: 16px;
}

.arrow {
    font-weight: 900;
    color: rgba(56, 189, 248, .95);
}