
/* ============================================================
   TRIMEROUS TECHNOLOGY
   ABOUT PAGE — PREMIUM BRAND SYSTEM
   Prefix: tr-about-
   Purpose: Brand / Emotion / Philosophy / Trust
   No Sales CTA Styling
============================================================ */


/* ============================================================
   00 — ROOT VARIABLES
============================================================ */

:root {

    --tr-about-orange: #f05125;
    --tr-about-orange-dark: #d83f18;
    --tr-about-gold: #faa41a;

    --tr-about-black: #101214;
    --tr-about-charcoal: #171a1d;
    --tr-about-dark: #202428;

    --tr-about-white: #ffffff;
    --tr-about-offwhite: #f7f7f5;
    --tr-about-soft: #f1f2f0;

    --tr-about-text: #24282c;
    --tr-about-muted: #6d7378;
    --tr-about-light-text: #aeb4b8;

    --tr-about-border: rgba(16, 18, 20, .10);
    --tr-about-dark-border: rgba(255, 255, 255, .12);

    --tr-about-shadow:
        0 24px 70px rgba(0, 0, 0, .10);

    --tr-about-shadow-soft:
        0 15px 45px rgba(0, 0, 0, .07);

    --tr-about-radius: 24px;
    --tr-about-radius-small: 14px;

    --tr-about-transition:
        all .45s cubic-bezier(.2, .65, .2, 1);
}


/* ============================================================
   01 — GLOBAL ABOUT SCOPE
============================================================ */

.tr-about-section,
.tr-about-hero,
.tr-about-final {

    position: relative;
    overflow: hidden;
}

.tr-about-section *,
.tr-about-hero *,
.tr-about-final * {

    box-sizing: border-box;
}

.tr-about-section img,
.tr-about-hero img,
.tr-about-final img {

    max-width: 100%;
    display: block;
}


/* ============================================================
   02 — HERO
============================================================ */

.tr-about-hero {

    min-height: 760px;
    padding: 130px 0 110px;

    background:
        radial-gradient(
            circle at 72% 35%,
            rgba(240, 81, 37, .12),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(250, 164, 26, .08),
            transparent 25%
        ),
        #c9c9c6;

    display: flex;
    align-items: center;
}


/* subtle technical grid */

.tr-about-hero-grid {

    position: absolute;
    inset: 0;

    opacity: .45;

    background-image:
        linear-gradient(
            rgba(20, 23, 25, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 23, 25, .035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 35%,
            black 80%,
            transparent
        );
}


/* hero content */

.tr-about-hero-content {

    position: relative;
    z-index: 5;

    padding-right: 45px;
}


.tr-about-eyebrow,
.tr-about-section-label,
.tr-about-final-label {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.2px;
    text-transform: uppercase;

    color: var(--tr-about-orange);
}


.tr-about-eyebrow::before,
.tr-about-section-label::before {

    content: "";

    width: 26px;
    height: 2px;

    background: var(--tr-about-orange);

    display: inline-block;
}


.tr-about-hero h1 {

    margin: 25px 0 28px;

    max-width: 680px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(52px, 6vw, 66px);

    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -.8px;

    color: var(--tr-about-black);
}


.tr-about-hero h1 span {

    display: block;

    color: var(--tr-about-orange);
}


.tr-about-hero-content > p {

    max-width: 620px;

    margin: 0 0 18px;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    line-height: 1.9;

    color: var(--tr-about-text);
}


.tr-about-hero-note {

    font-size: 14px !important;
    color: var(--tr-about-muted) !important;

    padding-left: 20px;

    border-left: 2px solid var(--tr-about-orange);
}


/* ============================================================
   HERO VISUAL
============================================================ */

.tr-about-hero-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* image */

.tr-about-hero-image-wrap {

    position: relative;

    width: 88%;
    height: 470px;

    overflow: hidden;

    border-radius: 30px;

    transform: rotate(2deg);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .18);
}


.tr-about-hero-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.78) contrast(1.04);

    transition: transform 1s ease;
}


.tr-about-hero-image-wrap:hover .tr-about-hero-image {

    transform: scale(1.05);
}


.tr-about-image-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(16, 18, 20, .05),
            rgba(240, 81, 37, .22)
        );

    pointer-events: none;
}


/* hero floating cards */

.tr-about-floating-card {

    position: absolute;

    z-index: 8;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 19px;

    background: rgba(255, 255, 255, .92);

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 14px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.13);

    backdrop-filter: blur(12px);
}


.tr-about-float-top {

    top: 48px;
    left: 0;

    transform: translateX(-10px);
}


.tr-about-float-bottom {

    right: 0;
    bottom: 48px;
}


.tr-about-float-icon {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(240,81,37,.10);

    color: var(--tr-about-orange);

    font-size: 17px;
}


.tr-about-floating-card strong {

    display: block;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 700;

    color: var(--tr-about-black);
}


.tr-about-floating-card span {

    display: block;

    margin-top: 2px;

    font-size: 10px;

    color: var(--tr-about-muted);
}


/* central hero core */

.tr-about-hero-core {

    position: absolute;

    z-index: 10;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: rgba(16,18,20,.92);

    display: grid;
    place-items: center;

    box-shadow:
        0 20px 55px rgba(0,0,0,.28);
}


.tr-about-core-icon {

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50%;

    color: var(--tr-about-gold);

    font-size: 22px;
}


.tr-about-core-ring {

    position: absolute;
    inset: -17px;

    border: 1px solid rgba(240,81,37,.35);

    border-radius: 50%;

    animation: trAboutRotate 18s linear infinite;
}


.tr-about-core-ring::after {

    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--tr-about-orange);

    top: 5px;
    left: 50%;
}


/* hero orbital rings */

.tr-about-hero-orbit {

    position: absolute;

    border: 1px solid rgba(240,81,37,.14);

    border-radius: 50%;

    pointer-events: none;
}


.tr-orbit-one {

    width: 500px;
    height: 500px;

    right: -190px;
    top: 70px;
}


.tr-orbit-two {

    width: 720px;
    height: 720px;

    right: -300px;
    top: -40px;

    border-color: rgba(250,164,26,.08);
}


/* ============================================================
   03 — COMMON SECTION
============================================================ */

.tr-about-section {

    padding: 125px 0;
}


.tr-about-section h2 {

    margin: 20px 0 28px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(42px, 4.5vw, 66px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -.5px;

    color: var(--tr-about-black);
}


.tr-about-section h2 span {

    display: block;

    color: var(--tr-about-orange);
}


.tr-about-content p,
.tr-about-emotion-content p,
.tr-about-partnership-content p,
.tr-about-future-content p {

    margin-bottom: 22px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.95;

    color: var(--tr-about-muted);
}


.tr-about-lead {

    font-size: 18px !important;

    line-height: 1.8 !important;

    color: var(--tr-about-text) !important;

    font-weight: 500;
}


.tr-about-highlight {

    color: var(--tr-about-orange) !important;

    font-weight: 600;
}


/* ============================================================
   04 — WHO WE ARE
============================================================ */

.tr-about-who-we-are {

    background: var(--tr-about-white);
}


.tr-about-who-visual {

    position: relative;

    min-height: 590px;

    padding: 25px;
}


.tr-about-who-image {

    height: 520px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow: var(--tr-about-shadow);
}


.tr-about-who-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.75);
}


.tr-about-who-overlay-card {

    position: absolute;

    left: 0;
    bottom: 70px;

    z-index: 4;

    width: 220px;

    padding: 22px;

    background: var(--tr-about-black);

    border-radius: 18px;

    box-shadow: 0 20px 45px rgba(0,0,0,.22);
}


.tr-about-mini-icon {

    width: 42px;
    height: 42px;

    margin-bottom: 15px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(240,81,37,.14);

    color: var(--tr-about-orange);
}


.tr-about-who-overlay-card strong {

    display: block;

    color: white;

    font-size: 14px;
}


.tr-about-who-overlay-card span {

    display: block;

    margin-top: 5px;

    font-size: 11px;

    color: #aeb4b8;
}


.tr-about-who-stat {

    position: absolute;

    right: 5px;
    top: 55px;

    display: flex;
    flex-direction: column;

    gap: 14px;

    padding: 18px 16px;

    background: rgba(255,255,255,.92);

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,.10);

    backdrop-filter: blur(10px);
}


.tr-about-who-stat > div {

    display: flex;
    align-items: center;
    gap: 10px;
}


.tr-about-who-stat strong {

    font-family: "Oswald", sans-serif;

    font-size: 18px;

    color: var(--tr-about-orange);
}


.tr-about-who-stat span {

    font-size: 10px;

    color: var(--tr-about-muted);
}


.tr-about-stat-line {

    width: 30px;
    height: 1px;

    background: var(--tr-about-border);
}


/* ============================================================
   05 — WHY WE EXIST
============================================================ */

.tr-about-why {

    background: var(--tr-about-offwhite);
}


.tr-about-emotion-visual {

    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
}


.tr-about-emotion-image {

    width: 90%;
    height: 470px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: var(--tr-about-shadow);
}


.tr-about-emotion-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.65);
}


.tr-about-emotion-circle {

    position: absolute;

    right: 0;
    top: 25px;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    border: 1px solid rgba(240,81,37,.30);
}


.tr-about-emotion-message {

    position: absolute;

    right: 10px;
    bottom: 55px;

    width: 190px;

    padding: 22px;

    background: var(--tr-about-black);

    border-radius: 18px;

    color: white;

    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}


.tr-about-emotion-message i {

    display: block;

    margin-bottom: 15px;

    color: var(--tr-about-orange);

    font-size: 25px;
}


.tr-about-emotion-message span {

    font-size: 12px;

    line-height: 1.7;

    color: #d8dcde;
}


/* emotional statement */

.tr-about-statement {

    margin: 35px 0;

    padding: 5px 0;

    border-top: 1px solid var(--tr-about-border);
    border-bottom: 1px solid var(--tr-about-border);
}


.tr-about-statement > div {

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 16px 0;

    border-bottom: 1px solid var(--tr-about-border);
}


.tr-about-statement > div:last-child {

    border-bottom: 0;
}


.tr-about-statement i {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(240,81,37,.08);

    color: var(--tr-about-orange);
}


.tr-about-statement span {

    font-size: 14px;

    color: var(--tr-about-muted);
}


.tr-about-statement strong {

    color: var(--tr-about-black);
}


/* ============================================================
   06 — OUR BELIEF
============================================================ */

.tr-about-belief {

    background: white;
}


.tr-about-belief-visual {

    position: relative;

    min-height: 540px;

    margin-left: 30px;
}


.tr-about-belief-visual::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 390px;
    height: 390px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(240,81,37,.12);

    border-radius: 50%;
}


.tr-about-belief-visual::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 270px;
    height: 270px;

    transform: translate(-50%, -50%);

    border: 1px dashed rgba(240,81,37,.18);

    border-radius: 50%;
}


.tr-about-belief-core {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 5;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: var(--tr-about-black);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    box-shadow: 0 25px 60px rgba(0,0,0,.20);
}


.tr-about-belief-question {

    font-family: "Oswald", sans-serif;

    font-size: 60px;

    line-height: 1;

    color: var(--tr-about-orange);
}


.tr-about-belief-core span {

    margin-top: 8px;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #b8bdc0;
}


.tr-about-belief-core strong {

    color: white;
}


.tr-about-question-item {

    position: absolute;

    z-index: 8;

    width: 210px;

    padding: 14px 16px;

    background: white;

    border: 1px solid var(--tr-about-border);

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    display: grid;

    grid-template-columns: 30px 30px 1fr;

    align-items: center;

    gap: 8px;
}


.tr-about-question-item span {

    font-family: "Oswald", sans-serif;

    font-size: 12px;

    color: var(--tr-about-orange);
}


.tr-about-question-item i {

    color: var(--tr-about-orange);

    font-size: 15px;
}


.tr-about-question-item strong {

    font-size: 10px;

    line-height: 1.4;

    color: var(--tr-about-text);
}


.question-one {

    top: 15px;
    left: 0;
}


.question-two {

    top: 15px;
    right: 0;
}


.question-three {

    bottom: 15px;
    left: 0;
}


.question-four {

    bottom: 15px;
    right: 0;
}


.tr-about-belief-conclusion {

    margin-top: 45px;

    padding: 30px 35px;

    border-left: 3px solid var(--tr-about-orange);

    background: var(--tr-about-offwhite);

    border-radius: 0 16px 16px 0;
}


.tr-about-belief-conclusion p {

    margin: 0 0 10px;

    color: var(--tr-about-muted);

    font-size: 14px;

    line-height: 1.8;
}


.tr-about-belief-conclusion p:last-child {

    margin-bottom: 0;
}


/* ============================================================
   07 — VALUES
============================================================ */

.tr-about-values {

    background:
        linear-gradient(
            180deg,
            #f7f7f5 0%,
            #ffffff 100%
        );
}


.tr-about-values > .container > .row:first-child p {

    max-width: 580px;

    margin: 0 auto;

    color: var(--tr-about-muted);

    font-size: 14px;
}


.tr-about-value-grid {

    margin-top: 65px;
}


.tr-about-value-grid > div {

    margin-bottom: 28px;
}


.tr-about-value-card {

    position: relative;

    min-height: 300px;

    padding: 35px;

    overflow: hidden;

    background: white;

    border: 1px solid var(--tr-about-border);

    border-radius: 22px;

    transition: var(--tr-about-transition);

    box-shadow:
        0 8px 25px rgba(0,0,0,.025);
}


.tr-about-value-card:hover {

    transform: translateY(-8px);

    border-color: rgba(240,81,37,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);
}


.tr-about-value-card::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -65px;
    bottom: -65px;

    border: 1px solid rgba(240,81,37,.13);

    border-radius: 50%;
}


.tr-about-value-icon {

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background: rgba(240,81,37,.08);

    color: var(--tr-about-orange);

    font-size: 22px;

    margin-bottom: 30px;

    transition: var(--tr-about-transition);
}


.tr-about-value-card:hover .tr-about-value-icon {

    background: var(--tr-about-orange);

    color: white;

    transform: rotate(-5deg) scale(1.05);
}


.tr-about-value-number {

    position: absolute;

    top: 27px;
    right: 30px;

    font-family: "Oswald", sans-serif;

    font-size: 42px;

    color: rgba(16,18,20,.045);
}


.tr-about-value-card h3 {

    position: relative;

    margin: 0 0 13px;

    font-family: "Oswald", sans-serif;

    font-size: 28px;

    font-weight: 500;

    color: var(--tr-about-black);
}


.tr-about-value-card p {

    position: relative;

    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: var(--tr-about-muted);
}


/* ============================================================
   08 — HUMAN SIDE
============================================================ */

.tr-about-human {

    background: var(--tr-about-black);

    color: white;
}


.tr-about-human .tr-about-section-label {

    color: var(--tr-about-gold);
}


.tr-about-human .tr-about-section-label::before {

    background: var(--tr-about-gold);
}


.tr-about-human h2 {

    color: white;
}


.tr-about-human h2 span {

    color: var(--tr-about-orange);
}


.tr-about-human .tr-about-lead {

    color: #e0e3e4 !important;
}


.tr-about-human .tr-about-content p {

    color: #aeb4b8;
}


.tr-about-human-visual {

    position: relative;

    height: 570px;

    overflow: hidden;

    border-radius: 28px;
}


.tr-about-human-visual img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(.2) saturate(.65);

    transition: transform 1s ease;
}


.tr-about-human-visual:hover img {

    transform: scale(1.04);
}


.tr-about-human-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.75)
        );
}


.tr-about-human-caption {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px;

    background: rgba(16,18,20,.82);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 15px;

    backdrop-filter: blur(10px);
}


.tr-about-human-caption > i {

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(240,81,37,.15);

    color: var(--tr-about-orange);
}


.tr-about-human-caption strong {

    display: block;

    font-size: 13px;

    color: white;
}


.tr-about-human-caption span {

    display: block;

    margin-top: 3px;

    font-size: 10px;

    color: #aeb4b8;
}


.tr-about-human-points {

    margin: 35px 0;
}


.tr-about-human-points > div {

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.tr-about-human-points i {

    width: 30px;

    color: var(--tr-about-orange);

    text-align: center;
}


.tr-about-human-points span {

    font-size: 13px;

    color: #c5cacc;
}


/* ============================================================
   09 — TECHNOLOGY PHILOSOPHY
============================================================ */

.tr-about-technology {

    background: var(--tr-about-offwhite);
}


.tr-about-tech-visual {

    position: relative;

    width: 470px;
    height: 470px;

    max-width: 100%;

    margin: auto;

    border-radius: 50%;
}


.tr-about-tech-image {

    position: absolute;

    inset: 65px;

    overflow: hidden;

    border-radius: 50%;

    box-shadow: 0 25px 60px rgba(0,0,0,.16);
}


.tr-about-tech-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.55) contrast(1.05);
}


.tr-about-tech-image-overlay {

    position: absolute;

    inset: 0;

    background: rgba(16,18,20,.35);
}


.tr-about-tech-ring {

    position: absolute;

    border: 1px solid rgba(240,81,37,.20);

    border-radius: 50%;
}


.tr-about-tech-ring.ring-one {

    inset: 20px;
}


.tr-about-tech-ring.ring-two {

    inset: 0;

    border-style: dashed;

    border-color: rgba(250,164,26,.22);
}


.tr-about-tech-ring.ring-three {

    inset: 45px;

    border-color: rgba(255,255,255,.25);
}


.tr-about-tech-core {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 85px;
    height: 85px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--tr-about-orange);

    color: white;

    font-size: 25px;

    box-shadow:
        0 0 0 12px rgba(240,81,37,.12),
        0 20px 50px rgba(240,81,37,.28);

    z-index: 5;
}


.tr-about-tech-node {

    position: absolute;

    z-index: 8;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    background: rgba(255,255,255,.94);

    border: 1px solid rgba(0,0,0,.08);

    border-radius: 30px;

    box-shadow: 0 12px 30px rgba(0,0,0,.10);

    font-size: 10px;

    color: var(--tr-about-text);
}


.tr-about-tech-node i {

    color: var(--tr-about-orange);
}


.node-ai {

    top: 32px;
    left: 50%;

    transform: translateX(-50%);
}


.node-data {

    right: 15px;
    top: 50%;

    transform: translateY(-50%);
}


.node-auto {

    bottom: 32px;
    left: 50%;

    transform: translateX(-50%);
}


.node-software {

    left: 15px;
    top: 50%;

    transform: translateY(-50%);
}


.tr-about-tech-statement {

    display: flex;
    align-items: center;

    gap: 18px;

    margin: 35px 0;

    padding: 22px;

    background: white;

    border-radius: 18px;

    box-shadow: var(--tr-about-shadow-soft);

    border-left: 3px solid var(--tr-about-orange);
}


.tr-about-tech-statement-icon {

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(240,81,37,.08);

    color: var(--tr-about-orange);
}


.tr-about-tech-statement span {

    display: block;

    font-size: 12px;

    color: var(--tr-about-muted);
}


.tr-about-tech-statement strong {

    display: block;

    margin-top: 4px;

    font-family: "Oswald", sans-serif;

    font-size: 25px;

    font-weight: 500;

    color: var(--tr-about-black);
}


/* ============================================================
   10 — BUSINESS + TECHNOLOGY ECOSYSTEM
============================================================ */

.tr-about-business-tech {

    background: white;
}


.tr-about-ecosystem {

    position: relative;

    min-height: 570px;

    max-width: 650px;

    margin-left: auto;
}


.tr-about-ecosystem-center {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;

    text-align: center;
}


.tr-about-ecosystem-core {

    width: 120px;
    height: 120px;

    margin: auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--tr-about-black);

    color: var(--tr-about-orange);

    font-size: 28px;

    box-shadow:
        0 0 0 15px rgba(240,81,37,.06),
        0 25px 60px rgba(0,0,0,.18);
}


.tr-about-ecosystem-center span {

    display: block;

    margin-top: 15px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--tr-about-black);
}


/* ecosystem lines */

.tr-about-ecosystem-line {

    position: absolute;

    left: 50%;
    top: 50%;

    height: 1px;

    width: 190px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(240,81,37,.45),
            rgba(240,81,37,.04)
        );
}


.line-one {
    transform: rotate(-145deg);
}

.line-two {
    transform: rotate(-35deg);
}

.line-three {
    transform: rotate(0deg);
}

.line-four {
    transform: rotate(35deg);
}

.line-five {
    transform: rotate(145deg);
}


.tr-about-ecosystem-node {

    position: absolute;

    z-index: 8;

    width: 145px;

    padding: 15px 12px;

    text-align: center;

    background: white;

    border: 1px solid var(--tr-about-border);

    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    transition: var(--tr-about-transition);
}


.tr-about-ecosystem-node:hover {

    transform: translateY(-5px);

    border-color: rgba(240,81,37,.30);

    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}


.tr-about-ecosystem-node i {

    display: block;

    margin-bottom: 9px;

    color: var(--tr-about-orange);

    font-size: 18px;
}


.tr-about-ecosystem-node span {

    font-size: 10px;

    line-height: 1.4;

    color: var(--tr-about-text);
}


.ecosystem-one {

    left: 5px;
    top: 40px;
}


.ecosystem-two {

    right: 5px;
    top: 40px;
}


.ecosystem-three {

    left: 0;
    bottom: 55px;
}


.ecosystem-four {

    right: 0;
    bottom: 55px;
}


.ecosystem-five {

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);
}


/* ============================================================
   11 — PARTNERSHIP
============================================================ */

.tr-about-partnership {

    background: var(--tr-about-offwhite);
}


.tr-about-partnership-visual {

    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow: var(--tr-about-shadow);
}


.tr-about-partnership-visual img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.65);
}


.tr-about-partnership-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(16,18,20,.05),
            rgba(16,18,20,.65)
        );
}


.tr-about-partnership-symbol {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 25px;

    background: rgba(16,18,20,.78);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 20px;

    backdrop-filter: blur(12px);
}


.tr-partner-person {

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.10);

    color: white;

    font-size: 20px;
}


.tr-partner-person.person-left {

    border: 1px solid rgba(240,81,37,.55);
}


.tr-partner-person.person-right {

    border: 1px solid rgba(250,164,26,.55);
}


.tr-partner-connection {

    display: flex;
    align-items: center;

    gap: 5px;
}


.tr-partner-connection span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--tr-about-orange);
}


.tr-about-client-principles {

    margin: 35px 0;
}


.tr-about-client-principles > div {

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 16px 0;

    border-bottom: 1px solid var(--tr-about-border);
}


.tr-about-client-principles > div > span {

    font-family: "Oswald", sans-serif;

    font-size: 20px;

    color: rgba(240,81,37,.45);
}


.tr-about-client-principles > div > div {

    display: flex;
    align-items: center;

    gap: 12px;
}


.tr-about-client-principles i {

    color: var(--tr-about-orange);
}


.tr-about-client-principles strong {

    font-size: 12px;

    font-weight: 500;

    color: var(--tr-about-text);
}


/* ============================================================
   12 — PHILOSOPHY
============================================================ */

.tr-about-philosophy {

    background: white;
}


.tr-about-philosophy-visual {

    min-height: 450px;

    display: grid;
    place-items: center;

    position: relative;
}


.tr-about-philosophy-visual::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(240,81,37,.12);

    border-radius: 50%;
}


.tr-about-philosophy-card {

    position: relative;

    z-index: 5;

    width: 290px;

    padding: 40px 35px;

    background: var(--tr-about-black);

    border-radius: 25px;

    color: white;

    box-shadow: 0 30px 70px rgba(0,0,0,.18);

    transform: rotate(-3deg);

    transition: var(--tr-about-transition);
}


.tr-about-philosophy-card:hover {

    transform: rotate(0) translateY(-8px);
}


.tr-about-philosophy-icon {

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 17px;

    background: rgba(240,81,37,.13);

    color: var(--tr-about-orange);

    font-size: 21px;
}


.tr-about-philosophy-card > span {

    display: block;

    font-size: 10px;

    letter-spacing: 2px;

    color: #9da3a6;
}


.tr-about-philosophy-card > strong {

    display: block;

    margin: 8px 0 25px;

    font-family: "Oswald", sans-serif;

    font-size: 30px;

    font-weight: 500;

    color: white;
}


.tr-about-philosophy-card small {

    display: block;

    font-size: 11px;

    line-height: 1.7;

    color: #b8bdc0;
}


.tr-about-philosophy-list {

    margin-bottom: 35px;
}


.tr-about-philosophy-list > div {

    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 14px;

    font-size: 13px;

    line-height: 1.7;

    color: var(--tr-about-muted);
}


.tr-about-philosophy-list i {

    margin-top: 3px;

    color: var(--tr-about-orange);
}


.tr-about-philosophy-statement {

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 25px;

    margin-top: 30px;

    background: var(--tr-about-offwhite);

    border-radius: 18px;

    border-left: 3px solid var(--tr-about-orange);
}


.tr-about-philosophy-statement > i {

    color: var(--tr-about-orange);

    font-size: 25px;
}


.tr-about-philosophy-statement span {

    font-family: "Oswald", sans-serif;

    font-size: 23px;

    line-height: 1.35;

    color: var(--tr-about-black);
}


.tr-about-philosophy-statement strong {

    color: var(--tr-about-orange);
}


/* ============================================================
   13 — FUTURE
============================================================ */

.tr-about-future {

    background: var(--tr-about-offwhite);
}


.tr-about-future-visual {

    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow: var(--tr-about-shadow);
}


.tr-about-future-visual img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.65);
}


.tr-about-future-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(16,18,20,.05),
            rgba(16,18,20,.82)
        );
}


.tr-about-future-points {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.tr-about-future-points > div {

    padding: 14px;

    background: rgba(16,18,20,.78);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 13px;

    backdrop-filter: blur(10px);
}


.tr-about-future-points span {

    display: block;

    margin-bottom: 7px;

    font-family: "Oswald", sans-serif;

    font-size: 17px;

    color: var(--tr-about-orange);
}


.tr-about-future-points i {

    margin-right: 7px;

    color: var(--tr-about-gold);
}


.tr-about-future-points strong {

    font-size: 10px;

    font-weight: 500;

    color: white;
}


.tr-about-future-content {

    margin-top: 30px;

    padding-left: 25px;

    border-left: 2px solid var(--tr-about-orange);
}


/* ============================================================
   14 — FINAL PURPOSE
============================================================ */

.tr-about-final {

    position: relative;

    padding: 155px 0 165px;

    background: var(--tr-about-black);

    color: white;

    text-align: center;
}


.tr-about-final-background {

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(240,81,37,.14),
            transparent 30%
        );
}


.tr-about-final h2 {

    position: relative;
    z-index: 5;

    margin: 25px auto 40px;

    max-width: 900px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(46px, 5.5vw, 78px);

    line-height: 1.05;

    font-weight: 500;

    color: white;
}


.tr-about-final h2 span {

    display: block;

    color: var(--tr-about-orange);
}


.tr-about-final-label {

    position: relative;
    z-index: 5;

    color: var(--tr-about-gold);
}


.tr-about-final-visual {

    position: relative;

    width: 180px;
    height: 180px;

    margin: 45px auto;

    display: grid;
    place-items: center;
}


.tr-about-final-icon {

    position: relative;

    z-index: 5;

    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--tr-about-orange);

    color: white;

    font-size: 28px;

    box-shadow:
        0 0 0 15px rgba(240,81,37,.08),
        0 0 0 30px rgba(240,81,37,.04);
}


.tr-about-final-orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}


.orbit-large {

    width: 500px;
    height: 500px;
}


.orbit-small {

    width: 300px;
    height: 300px;

    border-color: rgba(240,81,37,.18);

    transform:
        translate(-50%, -50%)
        rotate(35deg);
}


.tr-about-final-line-one,
.tr-about-final-line-two,
.tr-about-final-line-three {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 90px;
    height: 1px;

    background: rgba(240,81,37,.35);

    transform-origin: left center;
}


.tr-about-final-line-one {
    transform: rotate(0deg);
}

.tr-about-final-line-two {
    transform: rotate(120deg);
}

.tr-about-final-line-three {
    transform: rotate(240deg);
}


.tr-about-final-text {

    position: relative;
    z-index: 5;

    max-width: 700px;

    margin: auto;
}


.tr-about-final-text p {

    margin: 0 0 10px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #aeb4b8;
}


.tr-about-final-line-text {

    position: relative;
    z-index: 5;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.10);

    font-family: "Oswald", sans-serif;

    font-size: 25px;

    color: white;
}


/* ============================================================
   15 — ANIMATIONS
============================================================ */

@keyframes trAboutRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes trAboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


.tr-about-floating-card {

    animation:
        trAboutFloat 5s ease-in-out infinite;
}


.tr-about-float-bottom {

    animation-delay: -2.5s;
}


/* ============================================================
   16 — TABLET
============================================================ */

@media (max-width: 991px) {

    .tr-about-section {
        padding: 90px 0;
    }


    .tr-about-hero {

        min-height: auto;

        padding: 110px 0 80px;
    }


    .tr-about-hero-content {

        padding-right: 0;

        margin-bottom: 65px;

        text-align: center;
    }


    .tr-about-eyebrow {

        justify-content: center;
    }


    .tr-about-hero h1 {

        font-size: 65px;

        margin-left: auto;
        margin-right: auto;
    }


    .tr-about-hero-content > p {

        margin-left: auto;
        margin-right: auto;
    }


    .tr-about-hero-note {

        display: inline-block;

        text-align: left;
    }


    .tr-about-who-visual {

        margin-bottom: 55px;
    }


    .tr-about-emotion-visual {

        margin-bottom: 55px;
    }


    .tr-about-belief-visual {

        margin-top: 60px;

        margin-left: 0;
    }


    .tr-about-tech-visual {

        margin: 0 auto 60px;
    }


    .tr-about-ecosystem {

        margin: 70px auto 0;
    }


    .tr-about-partnership-visual {

        margin-bottom: 55px;
    }


    .tr-about-philosophy-visual {

        margin-bottom: 55px;
    }


    .tr-about-future-visual {

        margin-top: 55px;
    }
}


/* ============================================================
   17 — MOBILE
============================================================ */

@media (max-width: 767px) {

    .tr-about-section {

        padding: 75px 0;
    }


    .tr-about-hero {

        padding: 90px 0 70px;
    }


    .tr-about-hero h1 {

        font-size: 48px;

        line-height: 1.05;
    }


    .tr-about-hero-content > p {

        font-size: 14px;

        line-height: 1.8;
    }


    .tr-about-hero-visual {

        min-height: 430px;
    }


    .tr-about-hero-image-wrap {

        width: 92%;
        height: 390px;

        border-radius: 22px;
    }


    .tr-about-floating-card {

        padding: 10px 12px;

        gap: 8px;
    }


    .tr-about-float-top {

        left: 0;
        top: 30px;
    }


    .tr-about-float-bottom {

        right: 0;
        bottom: 30px;
    }


    .tr-about-float-icon {

        width: 34px;
        height: 34px;

        font-size: 13px;
    }


    .tr-about-floating-card strong {

        font-size: 11px;
    }


    .tr-about-floating-card span {

        font-size: 8px;
    }


    .tr-about-hero-core {

        width: 75px;
        height: 75px;
    }


    .tr-about-core-icon {

        width: 45px;
        height: 45px;

        font-size: 17px;
    }


    .tr-about-section h2 {

        font-size: 42px;

        line-height: 1.08;
    }


    .tr-about-content p,
    .tr-about-emotion-content p,
    .tr-about-partnership-content p,
    .tr-about-future-content p {

        font-size: 13px;

        line-height: 1.85;
    }


    .tr-about-lead {

        font-size: 16px !important;
    }


    /* WHO */

    .tr-about-who-visual {

        min-height: 430px;

        padding: 12px;
    }


    .tr-about-who-image {

        height: 390px;

        border-radius: 22px;
    }


    .tr-about-who-overlay-card {

        left: 0;
        bottom: 35px;

        width: 190px;

        padding: 17px;
    }


    .tr-about-who-stat {

        right: 0;
        top: 30px;
    }


    /* WHY */

    .tr-about-emotion-visual {

        min-height: 420px;
    }


    .tr-about-emotion-image {

        height: 390px;

        width: 90%;
    }


    .tr-about-emotion-message {

        right: 0;
        bottom: 30px;

        width: 170px;

        padding: 17px;
    }


    .tr-about-statement > div {

        gap: 12px;
    }


    /* BELIEF */

    .tr-about-belief-visual {

        min-height: 500px;
    }


    .tr-about-belief-visual::before {

        width: 300px;
        height: 300px;
    }


    .tr-about-belief-visual::after {

        width: 210px;
        height: 210px;
    }


    .tr-about-belief-core {

        width: 135px;
        height: 135px;
    }


    .tr-about-belief-question {

        font-size: 48px;
    }


    .tr-about-question-item {

        width: 175px;

        padding: 11px;

        grid-template-columns: 23px 23px 1fr;
    }


    .tr-about-question-item strong {

        font-size: 8px;
    }


    /* VALUES */

    .tr-about-value-grid {

        margin-top: 45px;
    }


    .tr-about-value-card {

        min-height: 270px;

        padding: 28px;
    }


    /* HUMAN */

    .tr-about-human-visual {

        height: 410px;

        margin-bottom: 50px;
    }


    .tr-about-human-caption {

        left: 15px;
        right: 15px;
        bottom: 15px;
    }


    /* TECHNOLOGY */

    .tr-about-tech-visual {

        width: 350px;
        height: 350px;
    }


    .tr-about-tech-image {

        inset: 50px;
    }


    .tr-about-tech-node {

        font-size: 8px;

        padding: 7px 9px;
    }


    .tr-about-tech-core {

        width: 65px;
        height: 65px;

        font-size: 18px;
    }


    /* ECOSYSTEM */

    .tr-about-ecosystem {

        min-height: 530px;
    }


    .tr-about-ecosystem-node {

        width: 115px;

        padding: 11px 8px;
    }


    .tr-about-ecosystem-node span {

        font-size: 8px;
    }


    .tr-about-ecosystem-line {

        width: 145px;
    }


    .tr-about-ecosystem-core {

        width: 90px;
        height: 90px;
    }


    /* PARTNERSHIP */

    .tr-about-partnership-visual {

        height: 390px;
    }


    /* PHILOSOPHY */

    .tr-about-philosophy-visual {

        min-height: 380px;
    }


    .tr-about-philosophy-card {

        width: 255px;

        padding: 30px;
    }


    /* FUTURE */

    .tr-about-future-visual {

        height: 430px;
    }


    .tr-about-future-points {

        grid-template-columns: 1fr;

        max-height: 300px;

        overflow: hidden;
    }


    /* FINAL */

    .tr-about-final {

        padding: 110px 0 120px;
    }


    .tr-about-final h2 {

        font-size: 45px;
    }


    .tr-about-final-visual {

        margin: 35px auto;
    }


    .orbit-large {

        width: 330px;
        height: 330px;
    }


    .orbit-small {

        width: 220px;
        height: 220px;
    }


    .tr-about-final-line-text {

        font-size: 21px;
    }
}


/* ============================================================
   18 — SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .tr-about-hero h1 {

        font-size: 41px;
    }


    .tr-about-section h2 {

        font-size: 36px;
    }


    .tr-about-eyebrow,
    .tr-about-section-label {

        font-size: 9px;

        letter-spacing: 1.6px;
    }


    .tr-about-belief-visual {

        transform: scale(.88);

        transform-origin: center;
    }


    .tr-about-ecosystem {

        transform: scale(.85);

        transform-origin: center;
    }


    .tr-about-tech-visual {

        transform: scale(.88);
    }


    .tr-about-final h2 {

        font-size: 38px;
    }
}


/* ============================================================
   19 — REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .tr-about-floating-card,
    .tr-about-core-ring {

        animation: none;
    }


    .tr-about-value-card,
    .tr-about-philosophy-card,
    .tr-about-ecosystem-node,
    .tr-about-hero-image,
    .tr-about-human-visual img {

        transition: none;
    }
}