/* =========================================================
   TRIMEROUS TECHNOLOGY
   CAREERS PAGE
   EXTERNAL CSS
   PREFIX: tr-career-
========================================================= */


/* =========================================================
   01. ROOT
========================================================= */

.tr-career-hero,
.tr-career-intro,
.tr-career-work-section,
.tr-career-opportunities,
.tr-career-people,
.tr-career-apply,
.tr-career-closing {
    --tr-career-orange: #f05125;
    --tr-career-orange-light: #ff7043;
    --tr-career-yellow: #faa41a;
    --tr-career-dark: #101114;
    --tr-career-dark-two: #17191d;
    --tr-career-text: #25282d;
    --tr-career-muted: #70757d;
    --tr-career-border: #e8e9eb;
    --tr-career-white: #ffffff;
}


/* =========================================================
   02. COMMON
========================================================= */

.tr-career-hero *,
.tr-career-intro *,
.tr-career-work-section *,
.tr-career-opportunities *,
.tr-career-people *,
.tr-career-apply *,
.tr-career-closing * {
    box-sizing: border-box;
}

.tr-career-hero a,
.tr-career-intro a,
.tr-career-work-section a,
.tr-career-opportunities a,
.tr-career-people a,
.tr-career-apply a {
    text-decoration: none;
}

.tr-career-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    line-height: 1.4;
    color: var(--tr-career-orange);
}

.tr-career-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--tr-career-orange),
        var(--tr-career-yellow)
    );
}


/* =========================================================
   03. HERO
========================================================= */

.tr-career-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 120px;
    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(240, 81, 37, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0c0d0f 0%,
            #121417 55%,
            #0c0d0f 100%
        );
}

.tr-career-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );
}

.tr-career-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.tr-career-glow-one {
    width: 260px;
    height: 260px;
    right: 8%;
    top: 12%;
    background: rgba(240, 81, 37, 0.08);
}

.tr-career-glow-two {
    width: 180px;
    height: 180px;
    left: 35%;
    bottom: -80px;
    background: rgba(250, 164, 26, 0.06);
}

.tr-career-hero-content {
    position: relative;
    z-index: 2;
}

.tr-career-hero .tr-career-eyebrow {
    color: #ff875f;
}

.tr-career-hero h1 {
    max-width: 760px;
    margin: 0 0 26px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(46px, 5.4vw, 76px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.8px;
    color: #ffffff;
}

.tr-career-hero h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        #f05125,
        #faa41a
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tr-career-hero-text {
    max-width: 690px;
    margin: 0 0 34px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.68);
}

.tr-career-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.tr-career-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.tr-career-btn i {
    margin-left: 10px;
    font-size: 12px;
}

.tr-career-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        var(--tr-career-orange),
        #e9451e
    );
    box-shadow: 0 12px 30px rgba(240, 81, 37, 0.22);
}

.tr-career-btn-primary:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 17px 36px rgba(240, 81, 37, 0.32);
}

.tr-career-btn-outline {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
}

.tr-career-btn-outline:hover {
    color: #ffffff !important;
    border-color: rgba(250, 164, 26, 0.55);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}


/* =========================================================
   04. HERO VISUAL
========================================================= */

.tr-career-hero-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-career-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.tr-career-orbit-one {
    width: 390px;
    height: 390px;
}

.tr-career-orbit-two {
    width: 290px;
    height: 290px;
}

.tr-career-visual-card {
    position: relative;
    z-index: 2;
    width: min(100%, 360px);
    padding: 30px 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    transform: rotate(2deg);
}

.tr-career-visual-top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.tr-career-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #62d889;
    box-shadow: 0 0 12px rgba(98, 216, 137, 0.65);
}

.tr-career-code-line {
    display: flex;
    align-items: center;
    min-height: 53px;
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.tr-career-code-number {
    width: 48px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
}

.tr-career-code-highlight {
    color: #ff7043;
}

.tr-career-visual-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.28);
}


/* =========================================================
   05. INTRO
========================================================= */

.tr-career-intro {
    padding: 115px 0 105px;
    background: #ffffff;
}

.tr-career-section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.tr-career-section-heading h2,
.tr-career-work-heading h2,
.tr-career-people-heading h2,
.tr-career-apply-content h2 {
    margin: 0 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -1.5px;
    color: var(--tr-career-dark);
}

.tr-career-section-heading h2 span,
.tr-career-work-heading h2 span,
.tr-career-people-heading h2 span,
.tr-career-apply-content h2 span {
    color: var(--tr-career-orange);
}

.tr-career-section-heading > p {
    max-width: 650px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: var(--tr-career-muted);
}

.tr-career-value-grid {
    margin-top: 10px;
}

.tr-career-value-card {
    position: relative;
    height: 100%;
    min-height: 285px;
    padding: 35px 30px;
    overflow: hidden;
    border: 1px solid var(--tr-career-border);
    border-radius: 10px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.tr-career-value-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(240, 81, 37, 0.05);
    transition: transform 0.35s ease;
}

.tr-career-value-card:hover {
    border-color: rgba(240, 81, 37, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(15, 18, 22, 0.09);
}

.tr-career-value-card:hover::after {
    transform: scale(1.45);
}

.tr-career-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border-radius: 8px;
    color: var(--tr-career-orange);
    background: rgba(240, 81, 37, 0.08);
    font-size: 22px;
}

.tr-career-card-number {
    position: absolute;
    top: 31px;
    right: 28px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #c9cbd0;
}

.tr-career-value-card h3 {
    margin: 0 0 13px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--tr-career-dark);
}

.tr-career-value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: var(--tr-career-muted);
}


/* =========================================================
   06. WORK SECTION
========================================================= */

.tr-career-work-section {
    padding: 110px 0;
    background: #f7f8f9;
}

.tr-career-work-heading {
    padding-right: 40px;
}

.tr-career-work-heading h2 {
    margin-bottom: 20px;
}

.tr-career-work-heading > p {
    max-width: 450px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: var(--tr-career-muted);
}

.tr-career-domain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tr-career-domain-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 150px;
    padding: 27px 24px;
    border: 1px solid #e4e6e9;
    border-radius: 9px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.tr-career-domain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 81, 37, 0.22);
    box-shadow: 0 18px 40px rgba(20, 24, 30, 0.07);
}

.tr-career-domain-icon {
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 7px;
    background: #101114;
    color: #ffffff;
    font-size: 16px;
}

.tr-career-domain-card h3 {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--tr-career-dark);
}

.tr-career-domain-card p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: var(--tr-career-muted);
}


/* =========================================================
   07. OPPORTUNITIES
========================================================= */

.tr-career-opportunities {
    padding: 115px 0;
    background: #ffffff;
}

.tr-career-opportunity-panel {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(250, 164, 26, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #111214,
            #1b1d21
        );
    box-shadow: 0 25px 70px rgba(10, 12, 15, 0.14);
}

.tr-career-opportunity-content {
    flex: 1;
    padding: 60px 65px;
}

.tr-career-opportunity-badge {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 11px;
    border: 1px solid rgba(250, 164, 26, 0.3);
    border-radius: 3px;
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #faa41a;
}

.tr-career-opportunity-content h3 {
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: 31px;
    font-weight: 600;
    color: #ffffff;
}

.tr-career-opportunity-content p {
    max-width: 650px;
    margin: 0 0 25px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.58);
}

.tr-career-text-link {
    display: inline-flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ff7043 !important;
}

.tr-career-text-link i {
    margin-left: 10px;
    transition: transform 0.25s ease;
}

.tr-career-text-link:hover i {
    transform: translateX(5px);
}

.tr-career-opportunity-side {
    width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.tr-career-mini-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tr-career-mini-stat strong {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #faa41a;
}

.tr-career-mini-stat span {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   08. PEOPLE / TRAITS
========================================================= */

.tr-career-people {
    padding: 110px 0;
    background: #f7f8f9;
}

.tr-career-people-heading {
    padding-right: 55px;
}

.tr-career-people-heading > p {
    max-width: 480px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: var(--tr-career-muted);
}

.tr-career-traits {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tr-career-trait {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 23px 0;
    border-bottom: 1px solid #e1e3e6;
}

.tr-career-trait:first-child {
    padding-top: 5px;
}

.tr-career-trait:last-child {
    border-bottom: 0;
}

.tr-career-trait-icon {
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--tr-career-orange);
    background: rgba(240, 81, 37, 0.09);
    font-size: 11px;
}

.tr-career-trait h3 {
    margin: 0 0 5px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--tr-career-dark);
}

.tr-career-trait p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: var(--tr-career-muted);
}


/* =========================================================
   09. APPLY CTA
========================================================= */

.tr-career-apply {
    padding: 110px 0;
    background: #ffffff;
}

.tr-career-apply-box {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    padding: 65px 70px;
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 92% 50%,
            rgba(240, 81, 37, 0.12),
            transparent 30%
        ),
        #f6f7f8;
}

.tr-career-apply-content {
    position: relative;
    z-index: 2;
    max-width: 710px;
}

.tr-career-apply-content h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.tr-career-apply-content p {
    max-width: 650px;
    margin: 0 0 27px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: var(--tr-career-muted);
}

.tr-career-apply-mark {
    position: absolute;
    right: 70px;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(240, 81, 37, 0.12);
    border-radius: 50%;
    transform: translateY(-50%);
}

.tr-career-apply-mark::before,
.tr-career-apply-mark::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(240, 81, 37, 0.08);
    border-radius: 50%;
}

.tr-career-apply-mark::before {
    width: 145px;
    height: 145px;
}

.tr-career-apply-mark::after {
    width: 235px;
    height: 235px;
}

.tr-career-apply-mark span {
    position: relative;
    z-index: 2;
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    color: rgba(240, 81, 37, 0.15);
}


/* =========================================================
   10. CLOSING
========================================================= */

.tr-career-closing {
    padding: 35px 0;
    background: #101114;
}

.tr-career-closing-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-career-closing-line {
    display: none;
}

.tr-career-closing p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.tr-career-closing strong {
    margin: 0 8px;
    color: #f05125;
}


/* =========================================================
   11. LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .tr-career-hero {
        padding-top: 165px;
        padding-bottom: 140px;
    }

    .tr-career-hero-visual {
        min-height: 500px;
    }

}


/* =========================================================
   12. TABLET
========================================================= */

@media (max-width: 991px) {

    .tr-career-hero {
        padding: 120px 0 90px;
    }

    .tr-career-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .tr-career-hero .tr-career-eyebrow {
        justify-content: center;
    }

    .tr-career-hero h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .tr-career-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .tr-career-hero-actions {
        justify-content: center;
    }

    .tr-career-hero-visual {
        min-height: 400px;
        margin-top: 55px;
    }

    .tr-career-work-heading {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .tr-career-people-heading {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .tr-career-opportunity-content {
        padding: 50px;
    }

    .tr-career-opportunity-side {
        width: 190px;
        padding: 30px;
    }

    .tr-career-apply-box {
        padding: 55px;
    }

    .tr-career-apply-mark {
        right: 40px;
    }

}


/* =========================================================
   13. MOBILE
========================================================= */

@media (max-width: 767px) {

    .tr-career-hero {
        padding: 105px 0 70px;
    }

    .tr-career-hero h1 {
        font-size: 43px;
        line-height: 1.12;
        letter-spacing: -1.8px;
    }

    .tr-career-hero-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .tr-career-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .tr-career-btn {
        width: 100%;
        max-width: 290px;
    }

    .tr-career-hero-visual {
        min-height: 330px;
        margin-top: 35px;
    }

    .tr-career-orbit-one {
        width: 300px;
        height: 300px;
    }

    .tr-career-orbit-two {
        width: 220px;
        height: 220px;
    }

    .tr-career-visual-card {
        max-width: 310px;
        padding: 25px;
    }

    .tr-career-code-line {
        min-height: 46px;
        font-size: 20px;
    }

    .tr-career-intro,
    .tr-career-work-section,
    .tr-career-opportunities,
    .tr-career-people,
    .tr-career-apply {
        padding: 75px 0;
    }

    .tr-career-section-heading {
        margin-bottom: 40px;
    }

    .tr-career-section-heading h2,
    .tr-career-work-heading h2,
    .tr-career-people-heading h2,
    .tr-career-apply-content h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .tr-career-value-card {
        min-height: auto;
        margin-bottom: 18px;
    }

    .tr-career-domain-grid {
        grid-template-columns: 1fr;
    }

    .tr-career-domain-card {
        min-height: auto;
    }

    .tr-career-opportunity-panel {
        display: block;
    }

    .tr-career-opportunity-content {
        padding: 40px 28px;
    }

    .tr-career-opportunity-content h3 {
        font-size: 27px;
    }

    .tr-career-opportunity-side {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 24px 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .tr-career-mini-stat {
        gap: 7px;
    }

    .tr-career-mini-stat strong {
        font-size: 15px;
    }

    .tr-career-mini-stat span {
        font-size: 9px;
    }

    .tr-career-trait {
        gap: 13px;
    }

    .tr-career-apply-box {
        min-height: auto;
        padding: 45px 28px;
    }

    .tr-career-apply-mark {
        display: none;
    }

    .tr-career-apply-content p {
        font-size: 13px;
    }

    .tr-career-closing {
        padding: 28px 15px;
    }

    .tr-career-closing p {
        font-size: 8px;
        line-height: 2;
    }

    .tr-career-closing strong {
        margin: 0 4px;
    }

}


/* =========================================================
   14. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tr-career-hero {
        padding-top: 90px;
    }

    .tr-career-hero h1 {
        font-size: 37px;
    }

    .tr-career-eyebrow {
        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .tr-career-hero-visual {
        min-height: 290px;
    }

    .tr-career-orbit-one {
        width: 260px;
        height: 260px;
    }

    .tr-career-orbit-two {
        width: 190px;
        height: 190px;
    }

    .tr-career-visual-card {
        max-width: 285px;
        padding: 22px;
    }

    .tr-career-visual-top {
        margin-bottom: 20px;
    }

    .tr-career-code-line {
        min-height: 40px;
        font-size: 18px;
    }

    .tr-career-code-number {
        width: 40px;
    }

    .tr-career-section-heading h2,
    .tr-career-work-heading h2,
    .tr-career-people-heading h2,
    .tr-career-apply-content h2 {
        font-size: 29px;
    }

    .tr-career-value-card {
        padding: 28px 24px;
    }

    .tr-career-domain-card {
        padding: 23px 20px;
    }

    .tr-career-opportunity-side {
        gap: 8px;
    }

}