/* Homepage: company identity and engineering track record. */
.company-proof {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 12%, rgba(210, 85, 42, .1), transparent 27%),
        var(--bg);
}

.company-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .38;
    background-image:
        linear-gradient(rgba(26, 24, 21, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 24, 21, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.company-proof__grid {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
    gap: clamp(48px, 7vw, 92px);
    align-items: center;
}

.company-proof__story {
    max-width: 590px;
}

.company-proof__story h2 {
    max-width: 650px;
    margin-bottom: 26px;
}

.company-proof__lead {
    margin-bottom: 16px;
    color: var(--text);
    font-size: clamp(1.08rem, 1.5vw, 1.24rem);
    line-height: 1.55;
}

.company-proof__story > p:not(.company-proof__lead) {
    max-width: 560px;
    color: var(--text-soft);
    font-size: .98rem;
}

.company-proof__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
}

.company-proof__text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 4px;
    transition: color .2s ease, border-color .2s ease;
}

.company-proof__text-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.company-proof__card {
    position: relative;
    isolation: isolate;
    min-height: 500px;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(244, 239, 229, .13);
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: var(--text-on-dark);
    background:
        radial-gradient(circle at 100% 0, rgba(210, 85, 42, .25), transparent 39%),
        linear-gradient(145deg, #12110f, #201914);
    box-shadow: var(--shadow-lg);
}

.company-proof__card::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(244, 239, 229, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 239, 229, .09) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(135deg, #000, transparent 75%);
}

.company-proof__identity {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 239, 229, .14);
}

.company-proof__mark {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    color: #fff;
    background: var(--accent);
    font: 700 24px/1 var(--font-sans);
    box-shadow: 0 10px 30px rgba(210, 85, 42, .3);
}

.company-proof__overline {
    display: block;
    margin-bottom: 6px;
    color: var(--muted-on-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.company-proof__identity strong {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    font-weight: 500;
}

.company-proof__relation {
    display: grid;
    grid-template-columns: 18px 18px 1fr;
    align-items: center;
    gap: 13px;
    padding: 24px 0 28px 14px;
}

.company-proof__relation-line {
    width: 1px;
    height: 54px;
    margin: -28px auto 0;
    background: linear-gradient(var(--accent), rgba(210, 85, 42, .15));
}

.company-proof__product-mark {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: linear-gradient(145deg, #ec7046, var(--accent));
    transform: rotate(45deg);
}

.company-proof__relation strong,
.company-proof__relation span:last-child {
    display: block;
}

.company-proof__relation strong {
    margin-bottom: 3px;
    font-size: 17px;
}

.company-proof__relation span:last-child {
    color: var(--muted-on-dark);
    font-size: 13px;
}

.company-proof__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border: 1px solid rgba(244, 239, 229, .14);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(244, 239, 229, .025);
}

.company-proof__facts > div {
    min-height: 100px;
    padding: 20px 22px;
}

.company-proof__facts > div:nth-child(odd) {
    border-right: 1px solid rgba(244, 239, 229, .12);
}

.company-proof__facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(244, 239, 229, .12);
}

.company-proof__facts dt {
    margin-bottom: 6px;
    color: var(--text-on-dark);
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1;
}

.company-proof__facts dd {
    margin: 0;
    color: var(--muted-on-dark);
    font-size: 12px;
    line-height: 1.35;
}

.company-proof__note {
    position: relative;
    margin: 24px 0 0;
    padding-left: 18px;
    color: rgba(244, 239, 229, .72);
    font-size: 13px;
    line-height: 1.55;
}

.company-proof__note::before {
    content: "";
    position: absolute;
    top: .45em;
    bottom: .45em;
    left: 0;
    width: 3px;
    border-radius: 99px;
    background: var(--accent);
}

@media (max-width: 980px) {
    .company-proof__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .company-proof__story {
        max-width: 720px;
    }

    .company-proof__card {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .company-proof::before {
        background-size: 48px 48px;
    }

    .company-proof__story h2 {
        margin-bottom: 20px;
    }

    .company-proof__lead {
        font-size: 1rem;
    }

    .company-proof__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-top: 26px;
    }

    .company-proof__card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .company-proof__identity {
        align-items: flex-start;
    }

    .company-proof__mark {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 11px;
        font-size: 20px;
    }

    .company-proof__overline {
        line-height: 1.45;
    }

    .company-proof__facts {
        grid-template-columns: 1fr;
    }

    .company-proof__facts > div {
        min-height: 0;
        padding: 17px 18px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(244, 239, 229, .12);
    }

    .company-proof__facts > div:last-child {
        border-bottom: 0;
    }
}
