:root {
    --bt-orange: #ff6a00;
    --bt-orange-soft: rgba(255, 106, 0, .11);
    --bt-black: #111111;
    --bt-text: #171717;
    --bt-muted: #707070;
    --bt-line: rgba(17, 17, 17, .08);
    --bt-card: rgba(255, 255, 255, .88);
    --bt-shadow: 0 24px 70px rgba(17, 17, 17, .09);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--bt-text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 15% 5%, rgba(255, 106, 0, .14), transparent 30%),
        radial-gradient(circle at 85% 0%, rgba(17, 17, 17, .06), transparent 28%),
        #f6f4f1;
}

.bt-company-shell {
    width: min(1060px, calc(100% - 24px));
    margin: 24px auto 72px;
}

.bt-company-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 34px;
    padding: clamp(26px, 5vw, 54px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .73)),
        radial-gradient(circle at 100% 0%, rgba(255, 106, 0, .20), transparent 36%);
    box-shadow: var(--bt-shadow);
}

.bt-company-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 106, 0, .09);
    pointer-events: none;
}

.bt-company-hero-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: var(--bt-orange);
    background: var(--bt-orange-soft);
    font-size: 25px;
    margin-bottom: 18px;
}

.bt-company-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bt-orange);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bt-company-hero h1 {
    max-width: 780px;
    margin: 10px 0 12px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 780;
}

.bt-company-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--bt-muted);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    font-weight: 470;
}

.bt-company-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.bt-company-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 720;
}

.bt-company-btn.primary {
    color: #fff;
    background: var(--bt-black);
    box-shadow: 0 16px 28px rgba(17, 17, 17, .16);
}

.bt-company-btn.secondary {
    color: var(--bt-black);
    background: #fff;
    border-color: var(--bt-line);
}

.bt-company-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.bt-company-mini-card {
    min-height: 126px;
    padding: 20px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .72);
    background: var(--bt-card);
    box-shadow: 0 14px 34px rgba(17, 17, 17, .055);
}

.bt-company-mini-card strong {
    display: block;
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 760;
    letter-spacing: -.02em;
}

.bt-company-mini-card span {
    display: block;
    color: var(--bt-muted);
    font-size: 14px;
    line-height: 1.48;
    font-weight: 470;
}

.bt-company-content-card {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .76);
    background: rgba(255, 255, 255, .90);
    box-shadow: var(--bt-shadow);
    overflow: hidden;
}

.bt-company-content-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px;
    border-bottom: 1px solid var(--bt-line);
    background: rgba(255, 255, 255, .72);
}

.bt-company-content-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--bt-orange);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.bt-company-content-head h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 760;
}

.bt-company-content-head em {
    flex: 0 0 auto;
    color: var(--bt-muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    white-space: nowrap;
}

.bt-company-sections {
    padding: 10px 26px 26px;
}

.bt-company-section {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--bt-line);
}

.bt-company-section:last-child {
    border-bottom: 0;
}

.bt-company-section-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(17, 17, 17, .045);
    color: var(--bt-orange);
    font-size: 13px;
    font-weight: 780;
}

.bt-company-section h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.18;
    letter-spacing: -.03em;
    font-weight: 740;
}

.bt-company-section p {
    max-width: 820px;
    margin: 0;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.68;
    font-weight: 460;
}

.bt-company-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 106, 0, .20);
    background: rgba(255, 106, 0, .08);
    color: #58300c;
}

.bt-company-note i {
    margin-top: 3px;
    color: var(--bt-orange);
}

.bt-company-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 520;
}

@media (max-width: 760px) {
    .bt-company-shell {
        width: min(100% - 18px, 1060px);
        margin-top: 16px;
        margin-bottom: 48px;
    }

    .bt-company-hero {
        border-radius: 28px;
        padding: 24px 20px;
    }

    .bt-company-hero-icon {
        width: 56px;
        height: 56px;
        border-radius: 20px;
        font-size: 22px;
    }

    .bt-company-hero h1 {
        font-size: 38px;
        letter-spacing: -.055em;
    }

    .bt-company-hero p {
        font-size: 15px;
    }

    .bt-company-hero-actions {
        flex-direction: column;
    }

    .bt-company-btn {
        width: 100%;
    }

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

    .bt-company-content-head {
        display: block;
        padding: 22px 20px;
    }

    .bt-company-content-head em {
        display: inline-block;
        margin-top: 10px;
        white-space: normal;
    }

    .bt-company-sections {
        padding: 4px 20px 20px;
    }

    .bt-company-section {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 0;
    }

    .bt-company-section-number {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .bt-company-section h3 {
        font-size: 18px;
    }

    .bt-company-section p {
        font-size: 14px;
    }
}
