.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 58px;
    padding: 0 28px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.button::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60%;
    width: 40%;
    content: "";
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 500ms ease;
}

.button:hover::before {
    left: 130%;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background:
        linear-gradient(
            180deg,
            #1e4f9e 0%,
            #163f8b 100%
        );
    box-shadow:
        0 15px 38px rgba(22, 63, 139, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button--primary:hover {
    box-shadow:
        0 20px 48px rgba(22, 63, 139, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button--secondary {
    border-color: var(--arme-border);
    color: var(--arme-button-secondary-fg);
    background: var(--arme-button-secondary-bg);
    backdrop-filter: blur(16px);
}

.button--secondary:hover {
    border-color: rgba(22, 63, 139, 0.4);
}

.stat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 2px 18px;
}

.stat:first-child {
    padding-left: 6px;
}

.stat:last-child {
    padding-right: 6px;
}

.stat:not(:last-child)::after {
    position: absolute;
    top: 22%;
    right: 0;
    bottom: 22%;
    width: 1px;
    content: "";
    background: var(--arme-stat-divider);
}

.stat__icon {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    color: var(--arme-stat-icon);
    place-items: center;
}

.stat__icon .material-symbols-outlined {
    display: block;
    font-size: 30px;
    font-variation-settings:
        "FILL" 0,
        "wght" 300,
        "GRAD" 0,
        "opsz" 24;
    line-height: 1;
}

.stat__copy {
    min-width: 0;
}

.stat__value {
    margin: 0;
    color: var(--arme-stat-value);
    font-size: clamp(0.92rem, 1.1vw, 1.1rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.stat__label {
    margin: 2px 0 0;
    overflow: hidden;
    color: var(--arme-stat-label);
    font-size: 0.74rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}
