/* ==========================================================
   THE DIGITAL CAFE
   VENTURES PAGE

   File: venture.css

   This stylesheet is ONLY for venture.php.
   Do not add header/footer/global CSS here.
========================================================== */


/* ==========================================================
   PAGE CONTAINER
========================================================== */

.tdc-venture-container {
    width: min(90%, 1400px);
    margin: 0 auto;
}


/* ==========================================================
   SECTION 01 — VENTURES HERO
========================================================== */
/* ==========================================================
   SECTION 01 — VENTURES HERO
========================================================== */

.tdc-venture-hero {
    position: relative;
    width: 100%;
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 60px 0;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(242, 99, 34, .09),
            transparent 30%
        ),
        #f8f7f4;

    overflow: hidden;
}

.tdc-venture-hero * {
    box-sizing: border-box;
}


/* ==========================================================
   CONTAINER
========================================================== */

.tdc-venture-container {
    width: min(90%, 1400px);
    margin: 0 auto;
}


/* ==========================================================
   GRID
========================================================== */

.tdc-vhero-grid {
    display: grid;

    grid-template-columns:
        minmax(420px, .92fr)
        minmax(520px, 1.08fr);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.tdc-vhero-content {
    position: relative;
    z-index: 5;

    max-width: 610px;
}


/* LABEL */

.tdc-vhero-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    margin-bottom: 13px;
    padding-left: 32px;

    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .8px;
    text-transform: uppercase;
}

.tdc-vhero-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 22px;
    height: 2px;

    background: #f26322;

    transform: translateY(-50%);
}


/* ==========================================================
   H1
========================================================== */

.tdc-vhero-content h1 {
    margin: 0 0 16px;

    color: #111111;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 750;

    letter-spacing: -1px;
}

.tdc-vhero-content h1 span {
    display: block;

    color: #f26322;
}


/* ==========================================================
   TEXT
========================================================== */

.tdc-vhero-text {
    max-width: 570px;

    margin: 0;

    color: #706a65;

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================================
   BUTTONS
========================================================== */

.tdc-vhero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;
}

.tdc-vhero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 44px;

    padding: 10px 17px;

    border-radius: 6px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.tdc-vhero-btn i {
    font-size: 10px;

    transition: transform .3s ease;
}


/* PRIMARY */

.tdc-vhero-btn-primary {
    background: #f26322;

    border: 1px solid #f26322;

    color: #ffffff;
}

.tdc-vhero-btn-primary:hover {
    background: #111111;

    border-color: #111111;

    transform: translateY(-2px);
}


/* OUTLINE */

.tdc-vhero-btn-outline {
    background: transparent;

    border: 1px solid #cfc9c3;

    color: #111111;
}

.tdc-vhero-btn-outline:hover {
    background: #111111;

    border-color: #111111;

    color: #ffffff;

    transform: translateY(-2px);
}

.tdc-vhero-btn-outline:hover i {
    transform: translateX(3px);
}


/* ==========================================================
   PROOF
========================================================== */

.tdc-vhero-proof {
    display: flex;
    align-items: center;

    gap: 17px;

    margin-top: 27px;
    padding-top: 20px;

    border-top: 1px solid #ded9d4;
}


/* ITEMS */

.tdc-vhero-proof-item {
    display: flex;
    align-items: center;

    gap: 8px;
}

.tdc-vhero-proof-item > strong {
    color: #111111;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.tdc-vhero-proof-item > span {
    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


/* DIVIDER */

.tdc-vhero-proof-divider {
    width: 1px;
    height: 36px;

    background: #ddd7d1;
}


/* MESSAGE */

.tdc-vhero-proof-message {
    display: flex;
    align-items: center;

    gap: 8px;
}

.tdc-vhero-proof-message > i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;

    border-radius: 50%;

    color: #f26322;

    font-size: 11px;
}

.tdc-vhero-proof-message > span {
    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


/* ==========================================================
   ECOSYSTEM
========================================================== */

.tdc-vhero-ecosystem {
    position: relative;

    width: 100%;
    max-width: 620px;
    height: 520px;

    justify-self: end;
}


/* ==========================================================
   ORBITS
========================================================== */

.tdc-vhero-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(17, 17, 17, .09);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.orbit-outer {
    width: 465px;
    height: 465px;

    border-style: dashed;

    animation: tdcVentureOrbit 45s linear infinite;
}

.orbit-inner {
    width: 300px;
    height: 300px;

    border-color: rgba(242, 99, 34, .18);

    animation: tdcVentureOrbitReverse 35s linear infinite;
}


@keyframes tdcVentureOrbit {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes tdcVentureOrbitReverse {

    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

}


/* ==========================================================
   CENTER
========================================================== */

.tdc-vhero-center {
    position: absolute;

    z-index: 6;

    left: 50%;
    top: 50%;

    width: 165px;
    height: 165px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #111111;

    border: 7px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 15px 45px rgba(0,0,0,.15),
        0 0 0 1px rgba(0,0,0,.05);

    transform: translate(-50%, -50%);

    text-align: center;
}


/* CENTER ICON */

.tdc-vhero-center-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 5px;

    background: #f26322;

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
}

.tdc-vhero-center > span {
    color: #aaa6a2;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.tdc-vhero-center > strong {
    color: #ffffff;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.tdc-vhero-center > small {
    margin-top: 3px;

    color: #f26322;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


/* ==========================================================
   CONNECTION LINES
========================================================== */

.tdc-vhero-line {
    position: absolute;

    z-index: 2;

    left: 50%;
    top: 50%;

    display: block;

    background: #ddd5ce;

    transform-origin: left center;

    pointer-events: none;
}


/* TOP */

.line-top {
    width: 132px;
    height: 1px;

    transform:
        rotate(-90deg)
        translateX(5px);
}


/* RIGHT */

.line-right {
    width: 170px;
    height: 1px;

    transform: translateY(-50%);
}


/* BOTTOM */

.line-bottom {
    width: 132px;
    height: 1px;

    transform:
        rotate(90deg)
        translateX(5px);
}


/* LEFT */

.line-left {
    width: 170px;
    height: 1px;

    transform:
        rotate(180deg)
        translateY(50%);
}


/* ==========================================================
   MOVING SIGNAL
========================================================== */

.tdc-vhero-line::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 7px;
    height: 7px;

    background: #f26322;

    border: 2px solid #ffffff;
    border-radius: 50%;

    box-shadow: 0 0 0 3px rgba(242, 99, 34, .12);

    transform: translateY(-50%);

    animation: tdcVentureSignal 3s ease-in-out infinite;
}

.line-right::after {
    animation-delay: .5s;
}

.line-bottom::after {
    animation-delay: 1s;
}

.line-left::after {
    animation-delay: 1.5s;
}


@keyframes tdcVentureSignal {

    0% {
        left: 0;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 7px);
        opacity: 0;
    }

}


/* ==========================================================
   VENTURE ITEMS
========================================================== */

.tdc-vhero-venture {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 180px;

    padding: 10px 12px;

    background: #ffffff;

    border: 1px solid #e3ddd7;
    border-radius: 9px;

    box-shadow: 0 8px 25px rgba(0,0,0,.055);

    color: #111111;

    text-decoration: none;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.tdc-vhero-venture:hover {
    border-color: #f26322;

    box-shadow: 0 13px 30px rgba(0,0,0,.09);
}


/* ICON */

.tdc-vhero-venture-icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e7;

    border-radius: 50%;

    color: #f26322;

    font-size: 13px;

    transition:
        background .3s ease,
        color .3s ease;
}

.tdc-vhero-venture:hover .tdc-vhero-venture-icon {
    background: #f26322;
    color: #ffffff;
}


/* COPY */

.tdc-vhero-venture-copy {
    min-width: 0;
}

.tdc-vhero-venture-copy small {
    display: block;

    color: #99938e;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    text-transform: uppercase;
}

.tdc-vhero-venture-copy strong {
    display: block;

    color: #111111;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 750;
}


/* ==========================================================
   POSITIONS
========================================================== */

/* TOP */

.venture-lyfcure {
    left: 50%;
    top: 20px;

    transform: translateX(-50%);
}

.venture-lyfcure:hover {
    transform:
        translateX(-50%)
        translateY(-4px);
}


/* RIGHT */

.venture-brick {
    right: 0;
    top: 50%;

    transform: translateY(-50%);
}

.venture-brick:hover {
    transform:
        translateY(-50%)
        translateX(4px);
}


/* BOTTOM */

.venture-helps {
    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);
}

.venture-helps:hover {
    transform:
        translateX(-50%)
        translateY(4px);
}


/* LEFT */

.venture-cosmetic {
    left: 0;
    top: 50%;

    transform: translateY(-50%);
}

.venture-cosmetic:hover {
    transform:
        translateY(-50%)
        translateX(-4px);
}


/* ==========================================================
   DECORATIVE DOTS
========================================================== */

.tdc-vhero-dot {
    position: absolute;

    width: 6px;
    height: 6px;

    background: #f26322;

    border-radius: 50%;

    opacity: .35;

    animation: tdcVentureDot 3s ease-in-out infinite;
}

.dot-one {
    top: 15%;
    left: 15%;
}

.dot-two {
    right: 12%;
    bottom: 18%;

    animation-delay: .7s;
}

.dot-three {
    left: 18%;
    bottom: 15%;

    animation-delay: 1.4s;
}


@keyframes tdcVentureDot {

    0%,
    100% {
        transform: scale(1);
        opacity: .25;
    }

    50% {
        transform: scale(1.8);
        opacity: .7;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-venture-hero {
        min-height: auto;
    }

    .tdc-vhero-grid {
        grid-template-columns:
            minmax(350px, .9fr)
            minmax(430px, 1.1fr);

        gap: 35px;
    }

    .tdc-vhero-ecosystem {
        height: 480px;
    }

    .orbit-outer {
        width: 410px;
        height: 410px;
    }

    .orbit-inner {
        width: 270px;
        height: 270px;
    }

    .tdc-vhero-venture {
        min-width: 160px;
    }

}


/* ==========================================================
   MOBILE — UNDER 768PX
========================================================== */

@media (max-width: 767px) {

    .tdc-venture-hero {
        min-height: auto;

        padding: 44px 0;
    }

    .tdc-venture-container {
        width: 90%;
    }


    /* GRID */

    .tdc-vhero-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    /* LABEL */

    .tdc-vhero-label {
        padding-left: 28px;

        font-size: 14px;
        line-height: 1.4;
    }

    .tdc-vhero-label::before {
        width: 18px;
    }


    /* H1 */

    .tdc-vhero-content h1 {
        font-size: 30px;
        line-height: 1.2;

        letter-spacing: -.5px;
    }

    .tdc-vhero-content h1 span {
        display: block;
    }


    /* BODY */

    .tdc-vhero-text {
        font-size: 16px;
        line-height: 1.5;
    }


    /* BUTTONS */

    .tdc-vhero-actions {
        align-items: stretch;
        flex-direction: column;

        margin-top: 20px;
    }

    .tdc-vhero-btn {
        width: 100%;
    }


    /* PROOF */

    .tdc-vhero-proof {
        flex-wrap: wrap;

        gap: 12px;

        margin-top: 22px;
    }

    .tdc-vhero-proof-divider {
        height: 32px;
    }

    .tdc-vhero-proof-message {
        width: 100%;

        padding-top: 11px;

        border-top: 1px solid #e2ddd8;
    }


    /* ======================================================
       MOBILE ECOSYSTEM
    ====================================================== */

    .tdc-vhero-ecosystem {
        max-width: 430px;
        height: 430px;

        justify-self: center;
    }


    .orbit-outer {
        width: 320px;
        height: 320px;
    }

    .orbit-inner {
        width: 215px;
        height: 215px;
    }


    /* CENTER */

    .tdc-vhero-center {
        width: 130px;
        height: 130px;

        border-width: 5px;
    }

    .tdc-vhero-center-icon {
        width: 32px;
        height: 32px;

        font-size: 11px;
    }

    .tdc-vhero-center > strong {
        font-size: 18px;
        line-height: 1.3;
    }


    /* CARDS */

    .tdc-vhero-venture {
        min-width: 0;
        width: 145px;

        gap: 7px;

        padding: 8px;
    }

    .tdc-vhero-venture-icon {
        width: 35px;
        height: 35px;

        font-size: 11px;
    }

    .tdc-vhero-venture-copy small {
        font-size: 10px;
    }

    .tdc-vhero-venture-copy strong {
        font-size: 14px;
        line-height: 1.4;
    }


    /* POSITIONS */

    .venture-lyfcure {
        top: 0;
    }

    .venture-brick {
        right: -5px;
    }

    .venture-helps {
        bottom: 0;
    }

    .venture-cosmetic {
        left: -5px;
    }


    /* LINES */

    .line-top,
    .line-bottom {
        width: 105px;
    }

    .line-left,
    .line-right {
        width: 115px;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .tdc-vhero-ecosystem {
        width: 100%;
        height: 390px;
    }

    .orbit-outer {
        width: 285px;
        height: 285px;
    }

    .orbit-inner {
        width: 195px;
        height: 195px;
    }

    .tdc-vhero-center {
        width: 118px;
        height: 118px;
    }

    .tdc-vhero-venture {
        width: 128px;
    }

    .tdc-vhero-venture-icon {
        width: 32px;
        height: 32px;
    }

    .tdc-vhero-venture-copy small {
        display: none;
    }

    .tdc-vhero-venture-copy strong {
        font-size: 13px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .orbit-outer,
    .orbit-inner,
    .tdc-vhero-line::after,
    .tdc-vhero-dot {
        animation: none;
    }

}



/* ==========================================================
   SECTION 02 — WHY WE BUILD VENTURES
========================================================== */
/* ==========================================================
   SECTION 02 — WHY WE BUILD VENTURES
========================================================== */

.tdc-venture-philosophy {
    position: relative;
    width: 100%;

    padding: 55px 0;

    background: #ffffff;

    overflow: hidden;
}

.tdc-venture-philosophy * {
    box-sizing: border-box;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.tdc-vph-grid {
    display: grid;

    grid-template-columns:
        minmax(320px, .72fr)
        minmax(600px, 1.28fr);

    align-items: center;

    gap: 65px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.tdc-vph-content {
    max-width: 480px;
}


/* LABEL */

.tdc-vph-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    margin-bottom: 10px;
    padding-left: 31px;

    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .8px;
    text-transform: uppercase;
}

.tdc-vph-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 21px;
    height: 2px;

    background: #f26322;

    transform: translateY(-50%);
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-vph-content h2 {
    margin: 0 0 13px;

    color: #111111;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}

.tdc-vph-content h2 span {
    display: block;

    color: #f26322;
}


/* ==========================================================
   TEXT
========================================================== */

.tdc-vph-content p {
    font-size: 16px;
}

.tdc-vph-lead {
    margin: 0 0 9px;

    color: #2b2927;

    line-height: 1.6;
    font-weight: 600;
}

.tdc-vph-text {
    margin: 0;

    color: #706a65;

    line-height: 1.6;
}


/* ==========================================================
   HOUSE PHILOSOPHY
========================================================== */

.tdc-vph-house {
    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    margin-top: 20px;
    padding-top: 18px;

    border-top: 1px solid #e5e0db;
}


.tdc-vph-house-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;

    border-radius: 50%;

    color: #f26322;

    font-size: 14px;
}


.tdc-vph-house-copy > span {
    display: block;

    margin-bottom: 2px;

    color: #99938e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-vph-house-copy strong {
    display: block;

    color: #111111;

    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}


.tdc-vph-house-copy em {
    color: #f26322;

    font-style: normal;
}


/* ==========================================================
   VENTURE LAB
========================================================== */

.tdc-vph-lab {
    position: relative;

    padding: 22px 22px 19px;

    background: #111111;

    border-radius: 10px;

    overflow: hidden;
}


/* SUBTLE BACKGROUND */

.tdc-vph-lab::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -140px;
    top: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .22),
            transparent 68%
        );

    pointer-events: none;
}


/* ==========================================================
   LAB HEADER
========================================================== */

.tdc-vph-lab-head {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
    padding-bottom: 14px;

    border-bottom: 1px solid rgba(255,255,255,.09);
}


.tdc-vph-lab-head > div > span {
    display: block;

    margin-bottom: 2px;

    color: #77726e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-vph-lab-head h3 {
    margin: 0;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


/* LIVE */

.tdc-vph-live {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: #1c1c1c;

    border: 1px solid #2a2a2a;
    border-radius: 20px;

    color: #b5b0ac;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    white-space: nowrap;
}


.tdc-vph-live i {
    width: 7px;
    height: 7px;

    background: #f26322;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(242,99,34,.12);

    animation:
        tdcVphLive 1.8s ease-in-out infinite;
}


@keyframes tdcVphLive {

    0%,
    100% {
        opacity: .45;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* ==========================================================
   PROCESS
========================================================== */

.tdc-vph-process {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 7px;
}


/* ==========================================================
   STEP
========================================================== */

.tdc-vph-step {
    position: relative;

    flex: 1;

    min-width: 0;

    padding: 12px 9px;

    background: #181818;

    border: 1px solid #272727;
    border-radius: 7px;

    text-align: center;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.tdc-vph-step:hover {
    background: #1d1d1d;

    border-color: #f26322;

    transform: translateY(-3px);
}


/* NUMBER */

.tdc-vph-step-number {
    position: absolute;

    right: 7px;
    top: 5px;

    color: #55514e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-vph-step-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 8px;

    background: #252525;

    border-radius: 50%;

    color: #f26322;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease;
}


.tdc-vph-step:hover .tdc-vph-step-icon {
    background: #f26322;

    color: #ffffff;
}


/* COPY */

.tdc-vph-step-copy strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-vph-step-copy span {
    display: block;

    color: #898480;

    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   ARROWS
========================================================== */

.tdc-vph-arrow {
    flex: 0 0 auto;

    color: #f26322;

    font-size: 9px;
}


/* ==========================================================
   LOOP
========================================================== */

.tdc-vph-loop {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 14px;
}


.tdc-vph-loop > span {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            to right,
            #333333,
            #f26322
        );
}


.tdc-vph-loop > div {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #8f8a86;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;

    white-space: nowrap;
}


.tdc-vph-loop i {
    color: #f26322;

    font-size: 11px;

    animation:
        tdcVphRotate 6s linear infinite;
}


@keyframes tdcVphRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* ==========================================================
   PRINCIPLES
========================================================== */

.tdc-vph-principles {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 25px;

    border-top: 1px solid #e3ded9;
    border-left: 1px solid #e3ded9;
}


/* ==========================================================
   PRINCIPLE
========================================================== */

.tdc-vph-principle {
    position: relative;

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    padding: 15px 17px;

    background: #ffffff;

    border-right: 1px solid #e3ded9;
    border-bottom: 1px solid #e3ded9;

    transition:
        background .3s ease;
}


.tdc-vph-principle:hover {
    background: #fff9f5;
}


/* NUMBER */

.tdc-vph-principle-number {
    position: absolute;

    right: 13px;
    top: 9px;

    color: #c0bab5;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-vph-principle-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e7;

    border-radius: 50%;

    color: #f26322;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease;
}


.tdc-vph-principle:hover
.tdc-vph-principle-icon {

    background: #f26322;

    color: #ffffff;
}


/* ==========================================================
   PRINCIPLE CONTENT
========================================================== */

.tdc-vph-principle-copy h3 {
    margin: 0 0 3px;

    color: #111111;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}


.tdc-vph-principle-copy p {
    margin: 0;

    padding-right: 15px;

    color: #77716c;

    font-size: 16px;
    line-height: 1.5;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-vph-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .tdc-vph-content {
        max-width: 720px;
    }


    .tdc-vph-process {
        gap: 6px;
    }


    .tdc-vph-principles {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-venture-philosophy {
        padding: 44px 0;
    }


    /* LABEL */

    .tdc-vph-label {
        padding-left: 28px;

        font-size: 14px;
        line-height: 1.4;
    }


    .tdc-vph-label::before {
        width: 18px;
    }


    /* HEADING */

    .tdc-vph-content h2 {
        font-size: 24px;
        line-height: 1.25;
    }


    .tdc-vph-content h2 span {
        display: inline;
    }


    /* TEXT */

    .tdc-vph-lead,
    .tdc-vph-text {
        font-size: 16px;
        line-height: 1.5;
    }


    /* HOUSE */

    .tdc-vph-house {
        grid-template-columns:
            44px
            minmax(0, 1fr);
    }


    .tdc-vph-house-icon {
        width: 44px;
        height: 44px;
    }


    /* LAB */

    .tdc-vph-lab {
        padding: 18px 15px;
    }


    .tdc-vph-lab-head {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;

        margin-bottom: 15px;
    }


    .tdc-vph-lab-head h3 {
        font-size: 20px;
        line-height: 1.3;
    }


    /* PROCESS */

    .tdc-vph-process {
        flex-direction: column;

        align-items: stretch;

        gap: 6px;
    }


    .tdc-vph-step {
        display: grid;

        grid-template-columns:
            40px
            minmax(0, 1fr);

        align-items: center;

        gap: 10px;

        padding: 10px 12px;

        text-align: left;
    }


    .tdc-vph-step-icon {
        width: 40px;
        height: 40px;

        margin: 0;

        grid-row: 1 / 3;
    }


    .tdc-vph-step-copy strong {
        font-size: 16px;
        line-height: 1.4;
    }


    .tdc-vph-step-copy span {
        font-size: 14px;
        line-height: 1.4;
    }


    .tdc-vph-arrow {
        align-self: center;

        transform: rotate(90deg);
    }


    /* LOOP */

    .tdc-vph-loop {
        margin-top: 12px;
    }


    /* PRINCIPLES */

    .tdc-vph-principles {
        margin-top: 22px;
    }


    .tdc-vph-principle {
        padding: 14px;
    }


    .tdc-vph-principle-copy h3 {
        font-size: 20px;
        line-height: 1.3;
    }


    .tdc-vph-principle-copy p {
        padding-right: 0;

        font-size: 16px;
        line-height: 1.5;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-vph-live i,
    .tdc-vph-loop i {
        animation: none;
    }

}


/* ==========================================================
   SECTION 03 — LYFCURE
========================================================== */
/* ==========================================================
   SECTION 03 — LYFCURE
========================================================== */

.tdc-venture-lyfcure {
    position: relative;
    width: 100%;
    padding: 55px 0;
    background: #f8f7f4;
    overflow: hidden;
}

.tdc-venture-lyfcure * {
    box-sizing: border-box;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.tdc-vshow-grid {
    display: grid;
    grid-template-columns:
        minmax(380px, .82fr)
        minmax(600px, 1.18fr);

    align-items: center;
    gap: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.tdc-vshow-content {
    max-width: 520px;
}


/* TOP LINE */

.tdc-vshow-topline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.tdc-vshow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    background: #111111;
    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.tdc-vshow-category {
    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .5px;
    text-transform: uppercase;
}


/* ==========================================================
   BRAND
========================================================== */

.tdc-vshow-brand {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 13px;
}

.tdc-vshow-brand-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2f7d1f;
    border-radius: 8px;

    color: #ffffff;

    font-size: 15px;
}

.tdc-vshow-brand span {
    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}

.tdc-vshow-brand strong {
    display: block;

    color: #111111;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-vshow-content h2 {
    margin: 0 0 13px;

    color: #111111;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}

.tdc-vshow-content h2 span {
    display: block;
    color: #2f7d1f;
}


/* ==========================================================
   TEXT
========================================================== */

.tdc-vshow-lead,
.tdc-vshow-text {
    font-size: 16px;
}

.tdc-vshow-lead {
    margin: 0 0 9px;

    color: #2b2927;

    line-height: 1.6;
    font-weight: 600;
}

.tdc-vshow-text {
    margin: 0;

    color: #706a65;

    line-height: 1.6;
}


/* ==========================================================
   TAGS
========================================================== */

.tdc-vshow-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}

.tdc-vshow-tags > span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    background: #ffffff;

    border: 1px solid #ded9d4;
    border-radius: 20px;

    color: #625d59;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.tdc-vshow-tags i {
    color: #2f7d1f;
    font-size: 10px;
}


/* ==========================================================
   ACTION
========================================================== */

.tdc-vshow-action {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 20px;
    padding-top: 17px;

    border-top: 1px solid #dfdad5;
}

.tdc-vshow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px 15px;

    background: #111111;

    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;
}

.tdc-vshow-btn:hover {
    background: #2f7d1f;
    transform: translateY(-2px);
}

.tdc-vshow-btn i {
    font-size: 10px;
}

.tdc-vshow-action > span {
    color: #2f7d1f;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   RIGHT — LYFCURE LAB
========================================================== */

.tdc-lyf-lab {
    position: relative;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2ddd8;
    border-radius: 11px;

    box-shadow: 0 15px 45px rgba(0,0,0,.05);

    overflow: hidden;
}

.tdc-lyf-lab::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -130px;
    top: -150px;

    background:
        radial-gradient(
            circle,
            rgba(47,125,31,.11),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   LAB HEADER
========================================================== */

.tdc-lyf-lab-head {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 15px;
    margin-bottom: 18px;

    border-bottom: 1px solid #e8e3de;
}

.tdc-lyf-lab-head > div > span {
    display: block;

    color: #99938e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}

.tdc-lyf-lab-head h3 {
    margin: 2px 0 0;

    color: #111111;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


/* STATUS */

.tdc-lyf-status {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: #f2f8f0;

    border: 1px solid #d8e8d3;
    border-radius: 20px;

    color: #2f7d1f;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    white-space: nowrap;
}

.tdc-lyf-status i {
    width: 7px;
    height: 7px;

    background: #2f7d1f;

    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(47,125,31,.10);

    animation: tdcLyfPulse 2s ease-in-out infinite;
}

@keyframes tdcLyfPulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


/* ==========================================================
   JOURNEY
========================================================== */

.tdc-lyf-journey {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: 100%;
}


/* STEP */

.tdc-lyf-step {
    position: relative;

    flex: 1;

    min-width: 0;

    padding: 14px 8px;

    background: #faf9f7;

    border: 1px solid #e5e0db;
    border-radius: 8px;

    text-align: center;

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.tdc-lyf-step:hover {
    background: #f6faf5;
    border-color: #2f7d1f;

    transform: translateY(-3px);
}


/* NUMBER */

.tdc-lyf-step-no {
    position: absolute;

    right: 7px;
    top: 5px;

    color: #b2aca7;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-lyf-step-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 8px;

    background: #eaf4e7;

    border-radius: 50%;

    color: #2f7d1f;

    font-size: 13px;

    transition:
        background .3s ease,
        color .3s ease;
}

.tdc-lyf-step:hover .tdc-lyf-step-icon {
    background: #2f7d1f;
    color: #ffffff;
}


/* COPY */

.tdc-lyf-step-copy > span {
    display: block;

    margin-bottom: 2px;

    color: #2f7d1f;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}

.tdc-lyf-step-copy strong {
    display: block;

    color: #111111;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   CONNECTORS
========================================================== */

.tdc-lyf-connector {
    position: relative;

    flex: 0 0 32px;
    height: 20px;
}

.tdc-lyf-connector > span {
    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: #cfdcc9;
}

.tdc-lyf-connector i {
    position: absolute;

    z-index: 2;

    right: 2px;
    top: 50%;

    color: #2f7d1f;

    font-size: 8px;

    transform: translateY(-50%);
}


/* ==========================================================
   LEARNING PANEL
========================================================== */

.tdc-lyf-learning {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    margin-top: 18px;
    padding: 13px 14px;

    background: #111111;

    border-radius: 8px;
}

.tdc-lyf-learning-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2f7d1f;

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
}

.tdc-lyf-learning span {
    display: block;

    margin-bottom: 2px;

    color: #8f8a86;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}

.tdc-lyf-learning p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.5;
}

.tdc-lyf-learning strong {
    color: #7fbd70;
}


/* ==========================================================
   METRICS
========================================================== */

.tdc-lyf-metrics {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 14px;

    border-top: 1px solid #e7e2dd;
}

.tdc-lyf-metrics > div {
    padding: 12px 10px 0;
}

.tdc-lyf-metrics > div + div {
    border-left: 1px solid #e7e2dd;
}

.tdc-lyf-metrics span {
    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}

.tdc-lyf-metrics strong {
    display: block;

    color: #111111;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-vshow-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tdc-vshow-content {
        max-width: 760px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-venture-lyfcure {
        padding: 44px 0;
    }


    /* TOP */

    .tdc-vshow-category {
        font-size: 14px;
        line-height: 1.4;
    }


    /* BRAND */

    .tdc-vshow-brand strong {
        font-size: 20px;
        line-height: 1.3;
    }


    /* HEADING */

    .tdc-vshow-content h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .tdc-vshow-content h2 span {
        display: inline;
    }


    /* TEXT */

    .tdc-vshow-lead,
    .tdc-vshow-text {
        font-size: 16px;
        line-height: 1.5;
    }


    /* ACTION */

    .tdc-vshow-action {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }

    .tdc-vshow-btn {
        width: 100%;
    }


    /* LAB */

    .tdc-lyf-lab {
        padding: 17px 14px;
    }

    .tdc-lyf-lab-head {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

    .tdc-lyf-lab-head h3 {
        font-size: 20px;
        line-height: 1.3;
    }


    /* JOURNEY */

    .tdc-lyf-journey {
        flex-direction: column;
        align-items: stretch;
    }

    .tdc-lyf-step {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);

        align-items: center;

        gap: 10px;

        padding: 10px 12px;

        text-align: left;
    }

    .tdc-lyf-step-icon {
        grid-row: 1 / 3;

        margin: 0;
    }

    .tdc-lyf-step-copy > span {
        font-size: 14px;
        line-height: 1.4;
    }

    .tdc-lyf-step-copy strong {
        font-size: 16px;
        line-height: 1.4;
    }


    /* CONNECTOR */

    .tdc-lyf-connector {
        flex: 0 0 25px;
        width: 20px;
        height: 25px;

        margin: 0 auto;
    }

    .tdc-lyf-connector > span {
        left: 50%;
        right: auto;
        top: 0;

        width: 1px;
        height: 100%;
    }

    .tdc-lyf-connector i {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;

        transform:
            translateX(-50%)
            rotate(90deg);
    }


    /* LEARNING */

    .tdc-lyf-learning {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .tdc-lyf-learning-icon {
        width: 42px;
        height: 42px;
    }

    .tdc-lyf-learning p {
        font-size: 16px;
        line-height: 1.5;
    }


    /* METRICS */

    .tdc-lyf-metrics {
        grid-template-columns: 1fr;
    }

    .tdc-lyf-metrics > div {
        padding: 10px 0;
    }

    .tdc-lyf-metrics > div + div {
        border-left: 0;
        border-top: 1px solid #e7e2dd;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-lyf-status i {
        animation: none;
    }

}


/* ==========================================================
   SECTION 04 — BRICK REALTORS
========================================================== */

/* ==========================================================
   SECTION 04 — BRICK REALTORS
========================================================== */

.tdc-venture-brick {
    --brick-accent: #b85c38;
    --brick-soft: #f7ebe5;
    --brick-border: #eadbd3;

    position: relative;
    width: 100%;

    padding: 55px 0;

    background: #ffffff;

    overflow: hidden;
}

.tdc-venture-brick * {
    box-sizing: border-box;
}


/* ==========================================================
   GRID
========================================================== */

.tdc-brick-grid {
    display: grid;

    grid-template-columns:
        minmax(600px, 1.18fr)
        minmax(380px, .82fr);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT — PROPERTY LAB
========================================================== */

.tdc-brick-lab {
    position: relative;

    padding: 22px;

    background: #111111;

    border-radius: 11px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.10);

    overflow: hidden;
}


/* DECORATIVE GLOW */

.tdc-brick-lab::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -150px;
    bottom: -170px;

    background:
        radial-gradient(
            circle,
            rgba(184,92,56,.24),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   LAB HEADER
========================================================== */

.tdc-brick-lab-head {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 15px;
    padding-bottom: 14px;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}


.tdc-brick-lab-head > div > span {
    display: block;

    color: #77726e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-brick-lab-head h3 {
    margin: 2px 0 0;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


/* STATUS */

.tdc-brick-status {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: #1c1c1c;

    border: 1px solid #303030;
    border-radius: 20px;

    color: #c7c2be;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    white-space: nowrap;
}


.tdc-brick-status i {
    width: 7px;
    height: 7px;

    background: var(--brick-accent);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(184,92,56,.13);

    animation:
        tdcBrickPulse 2s ease-in-out infinite;
}


@keyframes tdcBrickPulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* ==========================================================
   SEARCH
========================================================== */

.tdc-brick-search {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        38px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 10px;

    padding: 9px 10px;

    background: #ffffff;

    border-radius: 7px;
}


/* SEARCH ICON */

.tdc-brick-search-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--brick-soft);

    border-radius: 6px;

    color: var(--brick-accent);

    font-size: 12px;
}


/* COPY */

.tdc-brick-search-copy span {
    display: block;

    color: #99938e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-brick-search-copy strong {
    display: block;

    color: #111111;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* SEARCH BUTTON */

.tdc-brick-search-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 6px 11px;

    background: var(--brick-accent);

    border-radius: 5px;

    color: #ffffff;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   JOURNEY
========================================================== */

.tdc-brick-journey {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    margin-top: 15px;
}


/* ==========================================================
   STEP
========================================================== */

.tdc-brick-step {
    position: relative;

    flex: 1;

    min-width: 0;

    padding: 13px 7px;

    background: #181818;

    border: 1px solid #292929;
    border-radius: 7px;

    text-align: center;

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}


.tdc-brick-step:hover {
    background: #1e1e1e;

    border-color: var(--brick-accent);

    transform: translateY(-3px);
}


/* NUMBER */

.tdc-brick-step-no {
    position: absolute;

    right: 6px;
    top: 4px;

    color: #55514e;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-brick-step-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 7px;

    background: #29201c;

    border-radius: 50%;

    color: #d98260;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease;
}


.tdc-brick-step:hover
.tdc-brick-step-icon {

    background: var(--brick-accent);

    color: #ffffff;
}


/* LABEL */

.tdc-brick-step > span:not(.tdc-brick-step-no) {
    display: block;

    margin-bottom: 2px;

    color: #a9664d;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


/* TITLE */

.tdc-brick-step > strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   CONNECTOR
========================================================== */

.tdc-brick-connector {
    position: relative;

    flex: 0 0 31px;

    height: 20px;
}


.tdc-brick-connector > span {
    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: #4a3831;
}


.tdc-brick-connector i {
    position: absolute;

    z-index: 2;

    right: 2px;
    top: 50%;

    color: var(--brick-accent);

    font-size: 8px;

    transform: translateY(-50%);
}


/* ==========================================================
   LEARNING
========================================================== */

.tdc-brick-learning {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        44px
        minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    margin-top: 15px;
    padding: 12px 13px;

    background: #ffffff;

    border-radius: 7px;
}


.tdc-brick-learning-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--brick-accent);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
}


.tdc-brick-learning span {
    display: block;

    margin-bottom: 2px;

    color: #99938e;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-brick-learning p {
    margin: 0;

    color: #373330;

    font-size: 16px;
    line-height: 1.5;
}


.tdc-brick-learning strong {
    color: var(--brick-accent);
}


/* ==========================================================
   METRICS
========================================================== */

.tdc-brick-metrics {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 13px;

    border-top:
        1px solid rgba(255,255,255,.10);
}


.tdc-brick-metrics > div {
    padding: 11px 9px 0;
}


.tdc-brick-metrics > div + div {
    border-left:
        1px solid rgba(255,255,255,.10);
}


.tdc-brick-metrics span {
    display: block;

    margin-bottom: 1px;

    color: #6f6a66;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-brick-metrics strong {
    display: block;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   RIGHT CONTENT
========================================================== */

.tdc-brick-content {
    max-width: 520px;
}


/* ==========================================================
   TOPLINE
========================================================== */

.tdc-brick-topline {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.tdc-brick-number {
    width: 30px;
    height: 30px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #111111;

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}


.tdc-brick-category {
    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .5px;
    text-transform: uppercase;
}


/* ==========================================================
   BRAND
========================================================== */

.tdc-brick-brand {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 13px;
}


.tdc-brick-brand-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--brick-accent);

    border-radius: 8px;

    color: #ffffff;

    font-size: 15px;
}


.tdc-brick-brand span {
    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-brick-brand strong {
    display: block;

    color: #111111;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-brick-content h2 {
    margin: 0 0 13px;

    color: #111111;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}


.tdc-brick-content h2 span {
    display: block;

    color: var(--brick-accent);
}


/* ==========================================================
   BODY
========================================================== */

.tdc-brick-lead,
.tdc-brick-text {
    font-size: 16px;
}


.tdc-brick-lead {
    margin: 0 0 9px;

    color: #2b2927;

    line-height: 1.6;
    font-weight: 600;
}


.tdc-brick-text {
    margin: 0;

    color: #706a65;

    line-height: 1.6;
}


/* ==========================================================
   TAGS
========================================================== */

.tdc-brick-tags {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}


.tdc-brick-tags > span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    background: #faf7f5;

    border: 1px solid #e5ddd8;
    border-radius: 20px;

    color: #625d59;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


.tdc-brick-tags i {
    color: var(--brick-accent);

    font-size: 10px;
}


/* ==========================================================
   ACTION
========================================================== */

.tdc-brick-action {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;
    padding-top: 17px;

    border-top: 1px solid #dfdad5;
}


.tdc-brick-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px 15px;

    background: #111111;

    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;
}


.tdc-brick-btn:hover {
    background: var(--brick-accent);

    transform: translateY(-2px);
}


.tdc-brick-btn i {
    font-size: 10px;

    transition: transform .3s ease;
}


.tdc-brick-btn:hover i {
    transform: translateX(3px);
}


.tdc-brick-action > span {
    color: var(--brick-accent);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-brick-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .tdc-brick-content {
        max-width: 760px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-venture-brick {
        padding: 44px 0;
    }


    /* ======================================================
       CONTENT FIRST ON MOBILE
    ====================================================== */

    .tdc-brick-content {
        order: 1;
    }


    .tdc-brick-lab {
        order: 2;

        padding: 17px 14px;
    }


    /* BRAND */

    .tdc-brick-brand strong {
        font-size: 20px;
        line-height: 1.3;
    }


    /* HEADING */

    .tdc-brick-content h2 {
        font-size: 24px;
        line-height: 1.25;
    }


    .tdc-brick-content h2 span {
        display: inline;
    }


    /* BODY */

    .tdc-brick-lead,
    .tdc-brick-text {
        font-size: 16px;
        line-height: 1.5;
    }


    /* ACTION */

    .tdc-brick-action {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }


    .tdc-brick-btn {
        width: 100%;
    }


    /* ======================================================
       LAB HEADER
    ====================================================== */

    .tdc-brick-lab-head {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }


    .tdc-brick-lab-head h3 {
        font-size: 20px;
        line-height: 1.3;
    }


    /* SEARCH */

    .tdc-brick-search {
        grid-template-columns:
            36px
            minmax(0, 1fr);
    }


    .tdc-brick-search-btn {
        grid-column: 1 / -1;

        width: 100%;
    }


    /* ======================================================
       JOURNEY
    ====================================================== */

    .tdc-brick-journey {
        flex-direction: column;

        align-items: stretch;
    }


    .tdc-brick-step {
        display: grid;

        grid-template-columns:
            40px
            minmax(0, 1fr);

        align-items: center;

        gap: 3px 10px;

        padding: 10px 12px;

        text-align: left;
    }


    .tdc-brick-step-icon {
        grid-row: 1 / 3;

        width: 40px;
        height: 40px;

        margin: 0;
    }


    .tdc-brick-step > span:not(.tdc-brick-step-no) {
        font-size: 14px;
        line-height: 1.4;
    }


    .tdc-brick-step > strong {
        font-size: 16px;
        line-height: 1.4;
    }


    /* CONNECTOR */

    .tdc-brick-connector {
        flex: 0 0 25px;

        width: 20px;
        height: 25px;

        margin: 0 auto;
    }


    .tdc-brick-connector > span {
        left: 50%;
        right: auto;
        top: 0;

        width: 1px;
        height: 100%;
    }


    .tdc-brick-connector i {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;

        transform:
            translateX(-50%)
            rotate(90deg);
    }


    /* LEARNING */

    .tdc-brick-learning {
        grid-template-columns:
            42px
            minmax(0, 1fr);
    }


    .tdc-brick-learning-icon {
        width: 42px;
        height: 42px;
    }


    .tdc-brick-learning p {
        font-size: 16px;
        line-height: 1.5;
    }


    /* METRICS */

    .tdc-brick-metrics {
        grid-template-columns: 1fr;
    }


    .tdc-brick-metrics > div {
        padding: 10px 0;
    }


    .tdc-brick-metrics > div + div {
        border-left: 0;

        border-top:
            1px solid rgba(255,255,255,.10);
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-brick-status i {
        animation: none;
    }

}

/* ==========================================================
   SECTION 05 — 24X7 HELPS
========================================================== */

/* ==========================================================
   SECTION 05 — 24X7 HELPS
========================================================== */

.tdc-venture-helps {

    --helps-accent: #2476d3;
    --helps-dark: #111111;
    --helps-soft: #edf5ff;
    --helps-border: #dbe8f5;

    position: relative;

    width: 100%;

    padding: 55px 0;

    background: #f8f7f4;

    overflow: hidden;
}

.tdc-venture-helps * {
    box-sizing: border-box;
}


/* ==========================================================
   GRID
========================================================== */

.tdc-helps-grid {

    display: grid;

    grid-template-columns:
        minmax(380px, .82fr)
        minmax(600px, 1.18fr);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.tdc-helps-content {
    max-width: 520px;
}


/* ==========================================================
   TOPLINE
========================================================== */

.tdc-helps-topline {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.tdc-helps-number {

    width: 30px;
    height: 30px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: #111111;

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}


.tdc-helps-category {

    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}


/* ==========================================================
   BRAND
========================================================== */

.tdc-helps-brand {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 13px;
}


.tdc-helps-brand-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: var(--helps-accent);

    border-radius: 8px;

    color: #ffffff;

    font-size: 15px;
}


.tdc-helps-brand span {

    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-helps-brand strong {

    display: block;

    color: #111111;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-helps-content h2 {

    margin: 0 0 13px;

    color: #111111;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}


.tdc-helps-content h2 span {

    display: block;

    color: var(--helps-accent);
}


/* ==========================================================
   TEXT
========================================================== */

.tdc-helps-lead,
.tdc-helps-text {
    font-size: 16px;
}


.tdc-helps-lead {

    margin: 0 0 9px;

    color: #2b2927;

    line-height: 1.6;
    font-weight: 600;
}


.tdc-helps-text {

    margin: 0;

    color: #706a65;

    line-height: 1.6;
}


/* ==========================================================
   TAGS
========================================================== */

.tdc-helps-tags {

    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}


.tdc-helps-tags > span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    background: #ffffff;

    border: 1px solid #ded9d4;

    border-radius: 20px;

    color: #625d59;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


.tdc-helps-tags i {

    color: var(--helps-accent);

    font-size: 10px;
}


/* ==========================================================
   ACTION
========================================================== */

.tdc-helps-action {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid #dfdad5;
}


.tdc-helps-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px 15px;

    background: #111111;

    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;
}


.tdc-helps-btn:hover {

    background: var(--helps-accent);

    transform: translateY(-2px);
}


.tdc-helps-btn i {

    font-size: 10px;

    transition: transform .3s ease;
}


.tdc-helps-btn:hover i {
    transform: translateX(3px);
}


.tdc-helps-action > span {

    color: var(--helps-accent);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   RIGHT — HELP DISPATCH LAB
========================================================== */

.tdc-helps-lab {

    position: relative;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2ddd8;

    border-radius: 11px;

    box-shadow:
        0 15px 45px rgba(0,0,0,.05);

    overflow: hidden;
}


/* DECORATIVE GLOW */

.tdc-helps-lab::before {

    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    right: -140px;
    top: -160px;

    background:
        radial-gradient(
            circle,
            rgba(36,118,211,.13),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   LAB HEADER
========================================================== */

.tdc-helps-lab-head {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 14px;

    padding-bottom: 14px;

    border-bottom: 1px solid #e8e3de;
}


.tdc-helps-lab-head > div > span {

    display: block;

    color: #99938e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-helps-lab-head h3 {

    margin: 2px 0 0;

    color: #111111;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


/* STATUS */

.tdc-helps-status {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: var(--helps-soft);

    border: 1px solid var(--helps-border);

    border-radius: 20px;

    color: var(--helps-accent);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    white-space: nowrap;
}


.tdc-helps-status i {

    width: 7px;
    height: 7px;

    background: var(--helps-accent);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(36,118,211,.10);

    animation:
        tdcHelpsPulse 1.8s ease-in-out infinite;
}


@keyframes tdcHelpsPulse {

    0%,
    100% {

        opacity: .45;

        transform: scale(.85);
    }

    50% {

        opacity: 1;

        transform: scale(1.15);
    }

}


/* ==========================================================
   REQUEST BAR
========================================================== */

.tdc-helps-request {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        40px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 10px;

    padding: 10px;

    background: #111111;

    border-radius: 8px;
}


.tdc-helps-request-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--helps-accent);

    border-radius: 6px;

    color: #ffffff;

    font-size: 12px;
}


.tdc-helps-request-copy span {

    display: block;

    color: #77726e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-helps-request-copy strong {

    display: block;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-helps-request-live {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    padding: 7px 10px;

    background: #ffffff;

    border-radius: 5px;

    color: #111111;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-helps-request-live i {

    color: var(--helps-accent);

    font-size: 9px;
}


/* ==========================================================
   PROCESS
========================================================== */

.tdc-helps-process {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    margin-top: 15px;
}


/* STEP */

.tdc-helps-step {

    position: relative;

    flex: 1;

    min-width: 0;

    padding: 13px 7px;

    background: #faf9f7;

    border: 1px solid #e5e0db;

    border-radius: 7px;

    text-align: center;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.tdc-helps-step:hover {

    background: #f4f8fd;

    border-color: var(--helps-accent);

    transform: translateY(-3px);
}


/* NUMBER */

.tdc-helps-step-no {

    position: absolute;

    right: 6px;
    top: 4px;

    color: #b2aca7;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-helps-step-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 7px;

    background: var(--helps-soft);

    border-radius: 50%;

    color: var(--helps-accent);

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease;
}


.tdc-helps-step:hover
.tdc-helps-step-icon {

    background: var(--helps-accent);

    color: #ffffff;
}


/* COPY */

.tdc-helps-step-copy span {

    display: block;

    margin-bottom: 2px;

    color: var(--helps-accent);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-helps-step-copy strong {

    display: block;

    color: #111111;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   CONNECTORS
========================================================== */

.tdc-helps-connector {

    position: relative;

    flex: 0 0 31px;

    height: 20px;
}


.tdc-helps-connector > span {

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: #cddcec;
}


.tdc-helps-connector i {

    position: absolute;

    z-index: 2;

    right: 2px;
    top: 50%;

    color: var(--helps-accent);

    font-size: 8px;

    transform: translateY(-50%);
}


/* ==========================================================
   ACTIVE REQUEST
========================================================== */

.tdc-helps-active {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 14px;

    padding: 10px 12px;

    background: var(--helps-soft);

    border: 1px solid var(--helps-border);

    border-radius: 7px;
}


.tdc-helps-active-left {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}


.tdc-helps-active-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: var(--helps-accent);

    border-radius: 50%;

    color: #ffffff;

    font-size: 10px;
}


.tdc-helps-active-left div > span {

    display: block;

    color: #6f8aaa;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-helps-active-left strong {

    display: block;

    color: #111111;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-helps-active-badge {

    flex: 0 0 auto;

    padding: 5px 8px;

    background: #ffffff;

    border-radius: 20px;

    color: var(--helps-accent);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   LEARNING PANEL
========================================================== */

.tdc-helps-learning {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        45px
        minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    margin-top: 14px;

    padding: 12px 13px;

    background: #111111;

    border-radius: 8px;
}


.tdc-helps-learning-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--helps-accent);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
}


.tdc-helps-learning span {

    display: block;

    margin-bottom: 2px;

    color: #77726e;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-helps-learning p {

    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.5;
}


.tdc-helps-learning strong {
    color: #79b9ff;
}


/* ==========================================================
   METRICS
========================================================== */

.tdc-helps-metrics {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 13px;

    border-top: 1px solid #e7e2dd;
}


.tdc-helps-metrics > div {

    padding: 11px 9px 0;
}


.tdc-helps-metrics > div + div {

    border-left: 1px solid #e7e2dd;
}


.tdc-helps-metrics span {

    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-helps-metrics strong {

    display: block;

    color: #111111;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-helps-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .tdc-helps-content {

        max-width: 760px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-venture-helps {

        padding: 44px 0;
    }


    /* BRAND */

    .tdc-helps-brand strong {

        font-size: 20px;
        line-height: 1.3;
    }


    /* HEADING */

    .tdc-helps-content h2 {

        font-size: 24px;
        line-height: 1.25;
    }


    .tdc-helps-content h2 span {

        display: inline;
    }


    /* TEXT */

    .tdc-helps-lead,
    .tdc-helps-text {

        font-size: 16px;
        line-height: 1.5;
    }


    /* ACTION */

    .tdc-helps-action {

        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }


    .tdc-helps-btn {

        width: 100%;
    }


    /* LAB */

    .tdc-helps-lab {

        padding: 17px 14px;
    }


    .tdc-helps-lab-head {

        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }


    .tdc-helps-lab-head h3 {

        font-size: 20px;
        line-height: 1.3;
    }


    /* REQUEST */

    .tdc-helps-request {

        grid-template-columns:
            38px
            minmax(0, 1fr);
    }


    .tdc-helps-request-live {

        grid-column: 1 / -1;

        width: 100%;
    }


    /* ======================================================
       PROCESS
    ====================================================== */

    .tdc-helps-process {

        flex-direction: column;

        align-items: stretch;
    }


    .tdc-helps-step {

        display: grid;

        grid-template-columns:
            40px
            minmax(0, 1fr);

        align-items: center;

        gap: 3px 10px;

        padding: 10px 12px;

        text-align: left;
    }


    .tdc-helps-step-icon {

        grid-row: 1 / 3;

        width: 40px;
        height: 40px;

        margin: 0;
    }


    .tdc-helps-step-copy span {

        font-size: 14px;
        line-height: 1.4;
    }


    .tdc-helps-step-copy strong {

        font-size: 16px;
        line-height: 1.4;
    }


    /* CONNECTOR */

    .tdc-helps-connector {

        flex: 0 0 25px;

        width: 20px;
        height: 25px;

        margin: 0 auto;
    }


    .tdc-helps-connector > span {

        left: 50%;
        right: auto;
        top: 0;

        width: 1px;
        height: 100%;
    }


    .tdc-helps-connector i {

        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;

        transform:
            translateX(-50%)
            rotate(90deg);
    }


    /* ACTIVE */

    .tdc-helps-active {

        align-items: flex-start;
    }


    .tdc-helps-active-badge {

        display: none;
    }


    /* LEARNING */

    .tdc-helps-learning {

        grid-template-columns:
            42px
            minmax(0, 1fr);
    }


    .tdc-helps-learning-icon {

        width: 42px;
        height: 42px;
    }


    .tdc-helps-learning p {

        font-size: 16px;
        line-height: 1.5;
    }


    /* METRICS */

    .tdc-helps-metrics {

        grid-template-columns: 1fr;
    }


    .tdc-helps-metrics > div {

        padding: 10px 0;
    }


    .tdc-helps-metrics > div + div {

        border-left: 0;

        border-top: 1px solid #e7e2dd;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-helps-status i {

        animation: none;
    }

}

/* ==========================================================
   SECTION 06 — COSMETIC CLINICS
========================================================== */

/* ==========================================================
   SECTION 06 — COSMETIC CLINICS
========================================================== */

.tdc-venture-cosmetic {

    --cosmetic-accent: #9c5c82;
    --cosmetic-accent-dark: #7f4569;
    --cosmetic-soft: #f8eef4;
    --cosmetic-border: #eadbe4;

    position: relative;

    width: 100%;

    padding: 55px 0;

    background: #ffffff;

    overflow: hidden;
}

.tdc-venture-cosmetic * {
    box-sizing: border-box;
}


/* ==========================================================
   GRID
========================================================== */

.tdc-cosmetic-grid {

    display: grid;

    grid-template-columns:
        minmax(600px, 1.18fr)
        minmax(380px, .82fr);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT — DISCOVERY LAB
========================================================== */

.tdc-cosmetic-lab {

    position: relative;

    padding: 22px;

    background: #111111;

    border-radius: 11px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .10);

    overflow: hidden;
}


.tdc-cosmetic-lab::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(156, 92, 130, .28),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   LAB HEADER
========================================================== */

.tdc-cosmetic-lab-head {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 14px;

    padding-bottom: 14px;

    border-bottom:
        1px solid rgba(255, 255, 255, .09);
}


.tdc-cosmetic-lab-head > div > span {

    display: block;

    color: #77726e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-cosmetic-lab-head h3 {

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


/* STATUS */

.tdc-cosmetic-status {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: #1c1c1c;

    border: 1px solid #303030;

    border-radius: 20px;

    color: #c9c4c6;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    white-space: nowrap;
}


.tdc-cosmetic-status i {

    width: 7px;
    height: 7px;

    background: #c97ba9;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(201, 123, 169, .12);

    animation:
        tdcCosmeticPulse 1.8s ease-in-out infinite;
}


@keyframes tdcCosmeticPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* ==========================================================
   SEARCH ENGINE
========================================================== */

.tdc-cosmetic-search {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        40px;

    align-items: stretch;

    gap: 7px;

    padding: 7px;

    background: #ffffff;

    border-radius: 8px;
}


.tdc-cosmetic-search-field {

    display: grid;

    grid-template-columns:
        35px
        minmax(0, 1fr);

    align-items: center;

    gap: 8px;

    padding: 7px 9px;

    background: #faf8f9;

    border: 1px solid #eee6eb;

    border-radius: 6px;
}


.tdc-cosmetic-search-icon {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--cosmetic-soft);

    border-radius: 50%;

    color: var(--cosmetic-accent);

    font-size: 10px;
}


.tdc-cosmetic-search-field div > span {

    display: block;

    color: #a19a9e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-cosmetic-search-field strong {

    display: block;

    color: #111111;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.tdc-cosmetic-search-btn {

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--cosmetic-accent);

    border-radius: 6px;

    color: #ffffff;

    font-size: 11px;
}


/* ==========================================================
   DISCOVERY HEAD
========================================================== */

.tdc-cosmetic-discovery-head {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin: 15px 0 9px;
}


.tdc-cosmetic-discovery-head div > span {

    display: block;

    color: #716c6f;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-cosmetic-discovery-head strong {

    display: block;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-cosmetic-match {

    padding: 5px 9px;

    background: rgba(156, 92, 130, .15);

    border: 1px solid rgba(201, 123, 169, .25);

    border-radius: 20px;

    color: #d99cbe;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   DISCOVERY FLOW
========================================================== */

.tdc-cosmetic-flow {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
}


/* STEP */

.tdc-cosmetic-step {

    position: relative;

    flex: 1;

    min-width: 0;

    padding: 13px 7px;

    background: #191819;

    border: 1px solid #2c292b;

    border-radius: 7px;

    text-align: center;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.tdc-cosmetic-step:hover {

    background: #211d20;

    border-color: var(--cosmetic-accent);

    transform: translateY(-3px);
}


/* NUMBER */

.tdc-cosmetic-step-no {

    position: absolute;

    right: 6px;
    top: 4px;

    color: #575155;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-cosmetic-step-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 7px;

    background: #2c2028;

    border-radius: 50%;

    color: #d48eb6;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease;
}


.tdc-cosmetic-step:hover
.tdc-cosmetic-step-icon {

    background: var(--cosmetic-accent);

    color: #ffffff;
}


/* STEP COPY */

.tdc-cosmetic-step-copy span {

    display: block;

    margin-bottom: 2px;

    color: #c47ca5;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-cosmetic-step-copy strong {

    display: block;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   CONNECTORS
========================================================== */

.tdc-cosmetic-connector {

    position: relative;

    flex: 0 0 31px;

    height: 20px;
}


.tdc-cosmetic-connector > span {

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: #503746;
}


.tdc-cosmetic-connector i {

    position: absolute;

    right: 2px;
    top: 50%;

    z-index: 2;

    color: #c97ba9;

    font-size: 8px;

    transform: translateY(-50%);
}


/* ==========================================================
   INSIGHT
========================================================== */

.tdc-cosmetic-insight {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        44px
        minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding: 12px 13px;

    background: #ffffff;

    border-radius: 7px;
}


.tdc-cosmetic-insight-icon {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--cosmetic-accent);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
}


.tdc-cosmetic-insight span {

    display: block;

    margin-bottom: 2px;

    color: #99938e;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-cosmetic-insight p {

    margin: 0;

    color: #373330;

    font-size: 16px;
    line-height: 1.5;
}


.tdc-cosmetic-insight strong {

    color: var(--cosmetic-accent);
}


/* ==========================================================
   METRICS
========================================================== */

.tdc-cosmetic-metrics {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 13px;

    border-top:
        1px solid rgba(255, 255, 255, .10);
}


.tdc-cosmetic-metrics > div {

    padding: 11px 9px 0;
}


.tdc-cosmetic-metrics > div + div {

    border-left:
        1px solid rgba(255, 255, 255, .10);
}


.tdc-cosmetic-metrics span {

    display: block;

    margin-bottom: 1px;

    color: #6f6a66;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-cosmetic-metrics strong {

    display: block;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   RIGHT — CONTENT
========================================================== */

.tdc-cosmetic-content {

    max-width: 520px;
}


/* ==========================================================
   TOPLINE
========================================================== */

.tdc-cosmetic-topline {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.tdc-cosmetic-number {

    width: 30px;
    height: 30px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: #111111;

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}


.tdc-cosmetic-category {

    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}


/* ==========================================================
   BRAND
========================================================== */

.tdc-cosmetic-brand {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 13px;
}


.tdc-cosmetic-brand-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: var(--cosmetic-accent);

    border-radius: 8px;

    color: #ffffff;

    font-size: 15px;
}


.tdc-cosmetic-brand span {

    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-cosmetic-brand strong {

    display: block;

    color: #111111;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-cosmetic-content h2 {

    margin: 0 0 13px;

    color: #111111;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}


.tdc-cosmetic-content h2 span {

    display: block;

    color: var(--cosmetic-accent);
}


/* ==========================================================
   TEXT
========================================================== */

.tdc-cosmetic-lead,
.tdc-cosmetic-text {

    font-size: 16px;
}


.tdc-cosmetic-lead {

    margin: 0 0 9px;

    color: #2b2927;

    line-height: 1.6;
    font-weight: 600;
}


.tdc-cosmetic-text {

    margin: 0;

    color: #706a65;

    line-height: 1.6;
}


/* ==========================================================
   TAGS
========================================================== */

.tdc-cosmetic-tags {

    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}


.tdc-cosmetic-tags > span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    background: #fbf7f9;

    border: 1px solid #e8dfe4;

    border-radius: 20px;

    color: #625d59;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


.tdc-cosmetic-tags i {

    color: var(--cosmetic-accent);

    font-size: 10px;
}


/* ==========================================================
   CTA
========================================================== */

.tdc-cosmetic-action {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid #dfdad5;
}


.tdc-cosmetic-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px 15px;

    background: #111111;

    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;
}


.tdc-cosmetic-btn:hover {

    background: var(--cosmetic-accent);

    transform: translateY(-2px);
}


.tdc-cosmetic-btn i {

    font-size: 10px;

    transition: transform .3s ease;
}


.tdc-cosmetic-btn:hover i {

    transform: translateX(3px);
}


.tdc-cosmetic-action > span {

    color: var(--cosmetic-accent);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-cosmetic-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .tdc-cosmetic-content {

        max-width: 760px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-venture-cosmetic {

        padding: 44px 0;
    }


    /* STORY FIRST */

    .tdc-cosmetic-content {

        order: 1;
    }


    .tdc-cosmetic-lab {

        order: 2;

        padding: 17px 14px;
    }


    /* BRAND */

    .tdc-cosmetic-brand strong {

        font-size: 20px;
        line-height: 1.3;
    }


    /* HEADING */

    .tdc-cosmetic-content h2 {

        font-size: 24px;
        line-height: 1.25;
    }


    .tdc-cosmetic-content h2 span {

        display: inline;
    }


    /* TEXT */

    .tdc-cosmetic-lead,
    .tdc-cosmetic-text {

        font-size: 16px;
        line-height: 1.5;
    }


    /* CTA */

    .tdc-cosmetic-action {

        align-items: flex-start;

        flex-direction: column;

        gap: 9px;
    }


    .tdc-cosmetic-btn {

        width: 100%;
    }


    /* LAB HEADER */

    .tdc-cosmetic-lab-head {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .tdc-cosmetic-lab-head h3 {

        font-size: 20px;
        line-height: 1.3;
    }


    /* SEARCH */

    .tdc-cosmetic-search {

        grid-template-columns: 1fr;
    }


    .tdc-cosmetic-search-btn {

        min-height: 38px;
    }


    /* DISCOVERY HEAD */

    .tdc-cosmetic-discovery-head {

        align-items: flex-start;
    }


    /* FLOW */

    .tdc-cosmetic-flow {

        flex-direction: column;

        align-items: stretch;
    }


    .tdc-cosmetic-step {

        display: grid;

        grid-template-columns:
            40px
            minmax(0, 1fr);

        align-items: center;

        gap: 3px 10px;

        padding: 10px 12px;

        text-align: left;
    }


    .tdc-cosmetic-step-icon {

        grid-row: 1 / 3;

        width: 40px;
        height: 40px;

        margin: 0;
    }


    .tdc-cosmetic-step-copy span {

        font-size: 14px;
        line-height: 1.4;
    }


    .tdc-cosmetic-step-copy strong {

        font-size: 16px;
        line-height: 1.4;
    }


    /* CONNECTOR */

    .tdc-cosmetic-connector {

        flex: 0 0 25px;

        width: 20px;
        height: 25px;

        margin: 0 auto;
    }


    .tdc-cosmetic-connector > span {

        left: 50%;
        right: auto;
        top: 0;

        width: 1px;
        height: 100%;
    }


    .tdc-cosmetic-connector i {

        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;

        transform:
            translateX(-50%)
            rotate(90deg);
    }


    /* INSIGHT */

    .tdc-cosmetic-insight {

        grid-template-columns:
            42px
            minmax(0, 1fr);
    }


    .tdc-cosmetic-insight-icon {

        width: 42px;
        height: 42px;
    }


    .tdc-cosmetic-insight p {

        font-size: 16px;
        line-height: 1.5;
    }


    /* METRICS */

    .tdc-cosmetic-metrics {

        grid-template-columns: 1fr;
    }


    .tdc-cosmetic-metrics > div {

        padding: 10px 0;
    }


    .tdc-cosmetic-metrics > div + div {

        border-left: 0;

        border-top:
            1px solid rgba(255, 255, 255, .10);
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-cosmetic-status i {
        animation: none;
    }

}

/* ==========================================================
   SECTION 07 — ONE CAFE. FOUR MARKETS.
========================================================== */

/* ==========================================================
   SECTION 07 — ONE GROWTH LAB
========================================================== */

.tdc-growth-lab-section {

    --gl-orange: #f26322;
    --gl-dark: #111111;
    --gl-green: #2f7d1f;
    --gl-brick: #b85c38;
    --gl-blue: #2476d3;
    --gl-pink: #9c5c82;

    position: relative;

    width: 100%;

    padding: 55px 0;

    background: #f8f7f4;

    overflow: hidden;
}


.tdc-growth-lab-section * {
    box-sizing: border-box;
}


/* ==========================================================
   INTRO
========================================================== */

.tdc-gl-intro {

    max-width: 720px;

    margin: 0 auto 30px;

    text-align: center;
}


.tdc-gl-label {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 8px;

    color: #77716c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.tdc-gl-label::before,
.tdc-gl-label::after {

    content: "";

    width: 20px;
    height: 1px;

    background: var(--gl-orange);
}


.tdc-gl-intro h2 {

    margin: 0 0 10px;

    color: #111111;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}


.tdc-gl-intro h2 span {

    color: var(--gl-orange);
}


.tdc-gl-intro p {

    max-width: 650px;

    margin: 0 auto;

    color: #706a65;

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================================
   ECOSYSTEM MAP
========================================================== */

.tdc-gl-map {

    display: grid;

    grid-template-columns:
        minmax(230px, 1fr)
        70px
        230px
        70px
        minmax(230px, 1fr);

    align-items: center;

    max-width: 1100px;

    margin: 0 auto;
}


/* ==========================================================
   VENTURE SIDES
========================================================== */

.tdc-gl-side {

    display: grid;

    gap: 13px;
}


/* ==========================================================
   VENTURE CARD
========================================================== */

.tdc-gl-venture {

    position: relative;

    display: grid;

    grid-template-columns:
        46px
        minmax(0, 1fr);

    align-items: center;

    gap: 11px;

    min-height: 90px;

    padding: 13px;

    background: #ffffff;

    border: 1px solid #e3ded9;
    border-radius: 8px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.tdc-gl-venture:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);
}


/* ICON */

.tdc-gl-venture-icon {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 13px;
}


/* COPY */

.tdc-gl-venture-copy > span {

    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-gl-venture-copy strong {

    display: block;

    margin-bottom: 2px;

    color: #111111;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-gl-venture-copy small {

    display: block;

    color: #77716c;

    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   VENTURE COLORS
========================================================== */

/* LYFCURE */

.tdc-gl-lyf .tdc-gl-venture-icon {

    background: #eaf4e7;

    color: var(--gl-green);
}


.tdc-gl-lyf:hover {

    border-color: var(--gl-green);
}


/* BRICK */

.tdc-gl-brick .tdc-gl-venture-icon {

    background: #f7ebe5;

    color: var(--gl-brick);
}


.tdc-gl-brick:hover {

    border-color: var(--gl-brick);
}


/* HELPS */

.tdc-gl-helps .tdc-gl-venture-icon {

    background: #edf5ff;

    color: var(--gl-blue);
}


.tdc-gl-helps:hover {

    border-color: var(--gl-blue);
}


/* COSMETIC */

.tdc-gl-cosmetic .tdc-gl-venture-icon {

    background: #f8eef4;

    color: var(--gl-pink);
}


.tdc-gl-cosmetic:hover {

    border-color: var(--gl-pink);
}


/* ==========================================================
   CONNECTOR LINES
========================================================== */

.tdc-gl-lines {

    display: grid;

    gap: 72px;
}


.tdc-gl-line {

    display: flex;

    align-items: center;

    width: 100%;
}


.tdc-gl-line span {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d6d0cb,
            var(--gl-orange)
        );
}


.tdc-gl-line i {

    color: var(--gl-orange);

    font-size: 8px;
}


.tdc-gl-lines-right
.tdc-gl-line span {

    background:
        linear-gradient(
            90deg,
            var(--gl-orange),
            #d6d0cb
        );
}


/* ==========================================================
   CENTER GROWTH LAB
========================================================== */

.tdc-gl-center {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 230px;
    height: 230px;
}


/* OUTER RING */

.tdc-gl-center-ring {

    width: 210px;
    height: 210px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px dashed #d6c9c0;
    border-radius: 50%;

    animation:
        tdcGlRotate 35s linear infinite;
}


/* INNER CORE */

.tdc-gl-center-core {

    width: 165px;
    height: 165px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #111111;

    border-radius: 50%;

    text-align: center;

    box-shadow:
        0 12px 35px rgba(0,0,0,.16);

    animation:
        tdcGlCounterRotate 35s linear infinite;
}


/* CUP */

.tdc-gl-cup {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 6px;

    background: var(--gl-orange);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
}


.tdc-gl-center-core small {

    display: block;

    margin-bottom: 1px;

    color: #8d8783;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-gl-center-core h3 {

    margin: 0 0 4px;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


.tdc-gl-center-core p {

    margin: 0;

    color: #aaa4a0;

    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   ORBIT DOTS
========================================================== */

.tdc-gl-orbit-dot {

    position: absolute;

    width: 9px;
    height: 9px;

    background: var(--gl-orange);

    border: 2px solid #f8f7f4;

    border-radius: 50%;

    box-shadow:
        0 0 0 3px rgba(242,99,34,.12);
}


.tdc-gl-orbit-dot.dot-one {

    top: 18px;
    left: 65px;
}


.tdc-gl-orbit-dot.dot-two {

    right: 15px;
    top: 105px;
}


.tdc-gl-orbit-dot.dot-three {

    bottom: 23px;
    left: 53px;
}


/* ==========================================================
   ROTATION
========================================================== */

@keyframes tdcGlRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes tdcGlCounterRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }

}


/* ==========================================================
   OUTPUT PANEL
========================================================== */

.tdc-gl-output {

    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    align-items: center;

    gap: 20px;

    max-width: 1100px;

    margin: 24px auto 0;

    padding: 14px 16px;

    background: #111111;

    border-radius: 8px;
}


/* TITLE */

.tdc-gl-output-title {

    padding-right: 18px;

    border-right:
        1px solid rgba(255,255,255,.10);
}


.tdc-gl-output-title span {

    display: block;

    margin-bottom: 2px;

    color: #77726e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-gl-output-title strong {

    display: block;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* OUTPUT ITEMS */

.tdc-gl-output-items {

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 7px;
}


.tdc-gl-output-item {

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    min-height: 60px;

    padding: 7px;

    background: #1a1a1a;

    border: 1px solid #292929;
    border-radius: 6px;

    text-align: center;

    transition:
        background .3s ease,
        border-color .3s ease;
}


.tdc-gl-output-item:hover {

    background: #211a17;

    border-color: var(--gl-orange);
}


.tdc-gl-output-item i {

    color: var(--gl-orange);

    font-size: 11px;
}


.tdc-gl-output-item span {

    color: #d0cbc7;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
}


/* ==========================================================
   CLOSING STATEMENT
========================================================== */

.tdc-gl-closing {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    max-width: 800px;

    margin: 18px auto 0;

    text-align: center;
}


.tdc-gl-closing-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: #fff0e7;

    border-radius: 50%;

    color: var(--gl-orange);

    font-size: 10px;
}


.tdc-gl-closing p {

    margin: 0;

    color: #625d59;

    font-size: 16px;
    line-height: 1.6;
}


.tdc-gl-closing strong {

    color: #111111;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-gl-map {

        grid-template-columns:
            1fr
            55px
            200px
            55px
            1fr;
    }


    .tdc-gl-center {

        width: 200px;
        height: 200px;
    }


    .tdc-gl-center-ring {

        width: 190px;
        height: 190px;
    }


    .tdc-gl-center-core {

        width: 150px;
        height: 150px;
    }


    .tdc-gl-output {

        grid-template-columns: 1fr;
    }


    .tdc-gl-output-title {

        padding-right: 0;
        padding-bottom: 10px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.10);
    }


    .tdc-gl-output-items {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-growth-lab-section {

        padding: 44px 0;
    }


    /* INTRO */

    .tdc-gl-intro {

        margin-bottom: 24px;

        text-align: left;
    }


    .tdc-gl-label {

        font-size: 14px;
        line-height: 1.4;
    }


    .tdc-gl-label::after {

        display: none;
    }


    .tdc-gl-intro h2 {

        font-size: 24px;
        line-height: 1.25;
    }


    .tdc-gl-intro h2 span {

        display: block;
    }


    .tdc-gl-intro p {

        font-size: 16px;
        line-height: 1.5;
    }


    /* ======================================================
       MOBILE MAP
    ====================================================== */

    .tdc-gl-map {

        display: flex;

        flex-direction: column;

        gap: 12px;

        width: 100%;
    }


    /* CENTER FIRST */

    .tdc-gl-center {

        order: 1;

        width: 190px;
        height: 190px;

        margin: 0 auto 5px;
    }


    .tdc-gl-center-ring {

        width: 185px;
        height: 185px;
    }


    .tdc-gl-center-core {

        width: 145px;
        height: 145px;
    }


    .tdc-gl-center-core h3 {

        font-size: 20px;
        line-height: 1.3;
    }


    .tdc-gl-center-core p {

        font-size: 14px;
        line-height: 1.4;
    }


    /* SIDES */

    .tdc-gl-side {

        width: 100%;

        gap: 8px;
    }


    .tdc-gl-side-left {

        order: 2;
    }


    .tdc-gl-side-right {

        order: 3;
    }


    /* HIDE CONNECTORS */

    .tdc-gl-lines {

        display: none;
    }


    /* CARDS */

    .tdc-gl-venture {

        min-height: auto;

        padding: 11px 12px;
    }


    .tdc-gl-venture-copy strong {

        font-size: 16px;
        line-height: 1.4;
    }


    .tdc-gl-venture-copy small {

        font-size: 14px;
        line-height: 1.4;
    }


    /* OUTPUT */

    .tdc-gl-output {

        margin-top: 20px;

        padding: 14px;
    }


    .tdc-gl-output-title strong {

        font-size: 16px;
        line-height: 1.4;
    }


    .tdc-gl-output-items {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .tdc-gl-output-item {

        min-height: 65px;
    }


    .tdc-gl-output-item span {

        font-size: 14px;
        line-height: 1.4;
    }


    /* CLOSING */

    .tdc-gl-closing {

        align-items: flex-start;

        text-align: left;
    }


    .tdc-gl-closing p {

        font-size: 16px;
        line-height: 1.5;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-gl-center-ring,
    .tdc-gl-center-core {

        animation: none;
    }

}

/* ==========================================================
   SECTION 08 — FINAL CTA
========================================================== */
/* ==========================================================
   SECTION 08 — FINAL CTA
========================================================== */

.tdc-venture-final-cta {

    --vcta-orange: #f26322;
    --vcta-orange-light: #ff8b52;

    position: relative;

    width: 100%;

    padding: 60px 0;

    background: #111111;

    overflow: hidden;
}


.tdc-venture-final-cta * {
    box-sizing: border-box;
}


/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.tdc-vcta-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.tdc-vcta-glow-one {

    width: 500px;
    height: 500px;

    left: -280px;
    top: -280px;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .18),
            transparent 68%
        );
}


.tdc-vcta-glow-two {

    width: 450px;
    height: 450px;

    right: -260px;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .12),
            transparent 68%
        );
}


/* CUP WATERMARK */

.tdc-vcta-watermark {

    position: absolute;

    right: 4%;
    top: 50%;

    color: rgba(255,255,255,.018);

    font-size: 340px;

    line-height: 1;

    transform: translateY(-50%) rotate(-12deg);

    pointer-events: none;
}


/* ==========================================================
   GRID
========================================================== */

.tdc-vcta-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(380px, .82fr)
        minmax(600px, 1.18fr);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.tdc-vcta-content {

    max-width: 520px;
}


/* LABEL */

.tdc-vcta-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    color: var(--vcta-orange-light);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.tdc-vcta-label i {

    font-size: 12px;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-vcta-content h2 {

    margin: 0 0 14px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -.7px;
}


.tdc-vcta-content h2 span {

    display: block;

    color: var(--vcta-orange);
}


/* ==========================================================
   TEXT
========================================================== */

.tdc-vcta-content > p {

    margin: 0;

    color: #aaa5a1;

    font-size: 16px;
    line-height: 1.65;
}


.tdc-vcta-content .tdc-vcta-highlight {

    margin-top: 10px;

    color: #d1ccc8;
}


.tdc-vcta-highlight strong {

    color: #ffffff;
}


/* ==========================================================
   CTA BUTTONS
========================================================== */

.tdc-vcta-actions {

    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 22px;
}


.tdc-vcta-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding: 10px 15px;

    border-radius: 6px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


/* PRIMARY */

.tdc-vcta-primary {

    background: var(--vcta-orange);

    border: 1px solid var(--vcta-orange);

    color: #ffffff;
}


.tdc-vcta-primary:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #111111;

    transform: translateY(-2px);
}


.tdc-vcta-primary i {

    font-size: 10px;

    transition: transform .3s ease;
}


.tdc-vcta-primary:hover i {

    transform: translateX(3px);
}


/* SECONDARY */

.tdc-vcta-secondary {

    background: transparent;

    border: 1px solid #3b3b3b;

    color: #ffffff;
}


.tdc-vcta-secondary:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #111111;

    transform: translateY(-2px);
}


/* ==========================================================
   RIGHT — BREWING PROCESS
========================================================== */

.tdc-vcta-brew {

    position: relative;

    padding: 22px;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 11px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* ==========================================================
   BREW HEADER
========================================================== */

.tdc-vcta-brew-head {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 17px;

    padding-bottom: 14px;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


.tdc-vcta-brew-head > div > span {

    display: block;

    color: #77726e;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-vcta-brew-head h3 {

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


/* LIVE BADGE */

.tdc-vcta-live {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: rgba(242,99,34,.10);

    border: 1px solid rgba(242,99,34,.25);

    border-radius: 20px;

    color: var(--vcta-orange-light);

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-vcta-live i {

    width: 7px;
    height: 7px;

    background: var(--vcta-orange);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(242,99,34,.12);

    animation:
        tdcVctaPulse 1.7s ease-in-out infinite;
}


@keyframes tdcVctaPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* ==========================================================
   PROCESS
========================================================== */

.tdc-vcta-process {

    display: flex;

    align-items: center;
}


/* STEP */

.tdc-vcta-step {

    position: relative;

    flex: 1;

    min-width: 0;

    padding: 13px 7px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 7px;

    text-align: center;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.tdc-vcta-step:hover {

    background: rgba(242,99,34,.08);

    border-color: rgba(242,99,34,.45);

    transform: translateY(-3px);
}


/* NUMBER */

.tdc-vcta-step-number {

    position: absolute;

    right: 6px;
    top: 4px;

    color: #595551;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
}


/* ICON */

.tdc-vcta-step-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 7px;

    background: rgba(242,99,34,.10);

    border: 1px solid rgba(242,99,34,.15);

    border-radius: 50%;

    color: var(--vcta-orange-light);

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease;
}


.tdc-vcta-step:hover
.tdc-vcta-step-icon {

    background: var(--vcta-orange);

    color: #ffffff;
}


.tdc-vcta-step > div:last-child > span {

    display: block;

    margin-bottom: 2px;

    color: #807a76;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-vcta-step strong {

    display: block;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   CONNECTOR
========================================================== */

.tdc-vcta-line {

    position: relative;

    flex: 0 0 30px;

    height: 20px;
}


.tdc-vcta-line span {

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #4b3930,
            var(--vcta-orange)
        );
}


.tdc-vcta-line i {

    position: absolute;

    right: 1px;
    top: 50%;

    z-index: 2;

    color: var(--vcta-orange);

    font-size: 8px;

    transform: translateY(-50%);
}


/* ==========================================================
   RESULT
========================================================== */

.tdc-vcta-result {

    display: grid;

    grid-template-columns:
        44px
        minmax(0,1fr)
        auto;

    align-items: center;

    gap: 11px;

    margin-top: 15px;

    padding: 11px 13px;

    background: #ffffff;

    border-radius: 7px;
}


.tdc-vcta-result-icon {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--vcta-orange);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
}


.tdc-vcta-result > div > span {

    display: block;

    margin-bottom: 1px;

    color: #99938e;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-transform: uppercase;
}


.tdc-vcta-result strong {

    display: block;

    color: #111111;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


.tdc-vcta-result-arrow {

    color: var(--vcta-orange);

    font-size: 16px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-vcta-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .tdc-vcta-content {

        max-width: 700px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-venture-final-cta {

        padding: 45px 0;
    }


    .tdc-vcta-watermark {

        font-size: 220px;

        right: -70px;
    }


    /* HEADING */

    .tdc-vcta-content h2 {

        font-size: 28px;
        line-height: 1.2;
    }


    .tdc-vcta-content > p {

        font-size: 16px;
        line-height: 1.55;
    }


    /* BUTTONS */

    .tdc-vcta-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .tdc-vcta-btn {

        width: 100%;
    }


    /* PANEL */

    .tdc-vcta-brew {

        padding: 16px 14px;
    }


    .tdc-vcta-brew-head {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .tdc-vcta-brew-head h3 {

        font-size: 20px;
    }


    /* PROCESS VERTICAL */

    .tdc-vcta-process {

        flex-direction: column;

        align-items: stretch;
    }


    .tdc-vcta-step {

        display: grid;

        grid-template-columns:
            42px
            minmax(0,1fr);

        align-items: center;

        gap: 3px 10px;

        padding: 10px 12px;

        text-align: left;
    }


    .tdc-vcta-step-icon {

        grid-row: 1 / 3;

        margin: 0;
    }


    .tdc-vcta-step > div:last-child > span {

        font-size: 12px;
    }


    .tdc-vcta-step strong {

        font-size: 16px;
    }


    /* CONNECTOR VERTICAL */

    .tdc-vcta-line {

        flex: 0 0 24px;

        width: 20px;
        height: 24px;

        margin: 0 auto;
    }


    .tdc-vcta-line span {

        left: 50%;
        right: auto;
        top: 0;

        width: 1px;
        height: 100%;

        background:
            linear-gradient(
                180deg,
                #4b3930,
                var(--vcta-orange)
            );
    }


    .tdc-vcta-line i {

        right: auto;
        left: 50%;
        top: auto;
        bottom: -1px;

        transform:
            translateX(-50%)
            rotate(90deg);
    }


    /* RESULT */

    .tdc-vcta-result {

        grid-template-columns:
            42px
            minmax(0,1fr);
    }


    .tdc-vcta-result-icon {

        width: 42px;
        height: 42px;
    }


    .tdc-vcta-result-arrow {

        display: none;
    }


    .tdc-vcta-result strong {

        font-size: 16px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-vcta-live i {

        animation: none;
    }

}