/* =========================================================
   TENACITY SOFT
   SOLUTIONS SECTION
========================================================= */

.ts-solutions,
.ts-solutions *,
.ts-solutions *::before,
.ts-solutions *::after {
    box-sizing: border-box;
}


.ts-solutions {
    --solutions-blue: #1688ff;
    --solutions-blue-light: #69c5ff;

    --solutions-yellow: #ffc400;
    --solutions-yellow-light: #ffe477;

    --solutions-text: #f4f7fc;
    --solutions-muted: #9eacbd;

    position: relative;

    z-index: 2;

    margin-top: -2px;

    padding:
        128px 0
        112px;

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(
            circle at 86% 25%,
            rgba(22, 136, 255, 0.085),
            transparent 29%
        ),
        radial-gradient(
            circle at 8% 75%,
            rgba(255, 196, 0, 0.025),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #020914 0%,
            #020b18 50%,
            #020914 100%
        );
}


/* =========================================================
   BACKGROUND
========================================================= */

.ts-solutions__background {
    position: absolute;

    inset: 0;

    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}


.ts-solutions__grid {
    position: absolute;

    inset: 0;

    opacity: 0.07;

    background-image:
        linear-gradient(
            rgba(44, 124, 213, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(44, 124, 213, 0.08) 1px,
            transparent 1px
        );

    background-size:
        94px 94px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 84%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 84%,
            transparent
        );
}


.ts-solutions__glow {
    position: absolute;

    border-radius: 50%;

    filter:
        blur(145px);
}


.ts-solutions__glow--left {
    width: 520px;
    height: 520px;

    left: -360px;
    top: 30%;

    opacity: 0.08;

    background:
        var(--solutions-blue);
}


.ts-solutions__glow--right {
    width: 560px;
    height: 560px;

    right: -370px;
    bottom: 2%;

    opacity: 0.045;

    background:
        var(--solutions-yellow);
}


.ts-solutions__top-blend {
    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 190px;

    background:
        linear-gradient(
            to bottom,
            #020914 0%,
            rgba(2, 9, 20, 0.97) 35%,
            transparent 100%
        );
}


.ts-solutions__bottom-blend {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 150px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(2, 9, 20, 0.7),
            #020914
        );
}


/* =========================================================
   SIMPLE TRANSITION
========================================================= */

.ts-solutions-transition {
    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    z-index: 4;

    height: 84px;

    display: flex;
    align-items: center;

    pointer-events: none;
}


.ts-solutions-transition__container {
    width:
        min(
            calc(100% - 64px),
            1380px
        );

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: 22px;

    margin-inline: auto;
}


.ts-solutions-transition__line {
    position: relative;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(22, 136, 255, 0.22)
        );
}


.ts-solutions-transition__line::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    right: 0;
    top: 50%;

    border-radius: 50%;

    background:
        var(--solutions-blue-light);

    box-shadow:
        0 0 10px rgba(105, 197, 255, 0.7);

    transform:
        translate(50%, -50%);
}


.ts-solutions-transition__line--right {
    background:
        linear-gradient(
            90deg,
            rgba(255, 196, 0, 0.22),
            transparent
        );
}


.ts-solutions-transition__line--right::after {
    left: 0;
    right: auto;

    background:
        var(--solutions-yellow);

    box-shadow:
        0 0 10px rgba(255, 196, 0, 0.65);

    transform:
        translate(-50%, -50%);
}


.ts-solutions-transition__message {
    min-height: 40px;

    display: inline-flex;
    align-items: center;

    gap: 11px;

    color:
        rgba(205, 222, 239, 0.75);

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    white-space: nowrap;
}


.ts-solutions-transition__icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(82, 177, 255, 0.22);

    border-radius: 50%;

    color:
        var(--solutions-blue-light);

    background:
        rgba(22, 136, 255, 0.06);

    box-shadow:
        0 0 20px rgba(22, 136, 255, 0.08);
}


.ts-solutions-transition__icon svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CONTAINER
========================================================= */

.ts-solutions__container {
    position: relative;

    width:
        min(
            calc(100% - 64px),
            1380px
        );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.ts-solutions__header {
    margin-bottom:
        clamp(56px, 6vw, 84px);
}


.ts-solutions__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 20px;

    color:
        var(--solutions-blue-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}


.ts-solutions__eyebrow-line {
    width: 28px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--solutions-yellow),
            rgba(255, 196, 0, 0.12)
        );
}


.ts-solutions__heading-grid {
    display: grid;

    grid-template-columns:
        minmax(500px, 1fr)
        minmax(390px, 0.68fr);

    align-items: end;

    gap:
        clamp(48px, 7vw, 120px);
}


.ts-solutions__title {
    max-width: 800px;

    margin: 0;

    color:
        var(--solutions-text);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            3.55vw,
            60px
        );

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -0.052em;
}


.ts-solutions__title span {
    display: block;

    color:
        var(--solutions-yellow);
}


.ts-solutions__intro {
    max-width: 555px;

    margin-left: auto;
}


.ts-solutions__intro p {
    margin:
        0 0 20px;

    color:
        var(--solutions-muted);

    font-size: 16px;

    line-height: 1.75;
}


.ts-solutions__intro-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color:
        var(--solutions-text);

    font-size: 12px;
    font-weight: 750;

    text-decoration: none;

    transition:
        color 200ms ease;
}


.ts-solutions__intro-link:hover {
    color:
        var(--solutions-yellow);
}


.ts-solutions__intro-link svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 200ms ease;
}


.ts-solutions__intro-link:hover svg {
    transform:
        translateX(4px);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.ts-solutions__experience {
    display: grid;

    grid-template-columns:
        minmax(330px, 0.72fr)
        minmax(690px, 1.28fr);

    min-height: 650px;

    border-top:
        1px solid rgba(71, 148, 224, 0.11);

    border-bottom:
        1px solid rgba(71, 148, 224, 0.11);
}


/* =========================================================
   SELECTOR
========================================================= */

.ts-solutions__selector {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        34px 48px
        34px 0;

    border-right:
        1px solid rgba(71, 148, 224, 0.12);
}


.ts-solutions__selector-axis {
    position: absolute;

    width: 1px;

    right: -1px;
    top: 12%;
    bottom: 12%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(22, 136, 255, 0.22) 22%,
            rgba(22, 136, 255, 0.13) 72%,
            rgba(255, 196, 0, 0.22),
            transparent
        );
}


.ts-solution-option {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns:
        14px minmax(0, 1fr) auto;

    align-items: center;

    gap: 17px;

    padding:
        23px 4px
        23px 0;

    border: 0;

    border-bottom:
        1px solid rgba(71, 148, 224, 0.09);

    color: inherit;

    background:
        transparent;

    text-align: left;

    cursor: pointer;

    opacity: 0.62;

    transition:
        opacity 220ms ease,
        padding-left 220ms ease,
        background-color 220ms ease;
}


.ts-solution-option:last-child {
    border-bottom: 0;
}


.ts-solution-option::before {
    content: "";

    position: absolute;

    inset:
        5px -18px
        5px -18px;

    z-index: -1;

    border-radius: 12px;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            rgba(22, 136, 255, 0.07),
            rgba(22, 136, 255, 0.015) 62%,
            transparent
        );

    transition:
        opacity 220ms ease;
}


.ts-solution-option:hover,
.ts-solution-option:focus-visible,
.ts-solution-option.is-active {
    opacity: 1;

    padding-left: 8px;
}


.ts-solution-option:hover::before,
.ts-solution-option:focus-visible::before,
.ts-solution-option.is-active::before {
    opacity: 1;
}


.ts-solution-option:focus-visible {
    outline:
        1px solid rgba(105, 197, 255, 0.35);

    outline-offset: 5px;

    border-radius: 8px;
}


/* Marker */

.ts-solution-option__marker {
    position: relative;

    width: 9px;
    height: 9px;

    border:
        1px solid rgba(52, 143, 230, 0.5);

    border-radius: 50%;

    background:
        #031426;

    box-shadow:
        0 0 0 rgba(22, 136, 255, 0);

    transition:
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}


.ts-solution-option:hover
.ts-solution-option__marker,

.ts-solution-option:focus-visible
.ts-solution-option__marker,

.ts-solution-option.is-active
.ts-solution-option__marker {
    border-color:
        var(--solutions-blue-light);

    background:
        var(--solutions-blue);

    box-shadow:
        0 0 8px rgba(105, 197, 255, 0.95),
        0 0 21px rgba(22, 136, 255, 0.45);

    transform:
        scale(1.18);
}


.ts-solution-option.is-active
.ts-solution-option__marker::after {
    content: "";

    position: absolute;

    inset: -7px;

    border:
        1px solid rgba(105, 197, 255, 0.16);

    border-radius: 50%;
}


/* Selector text */

.ts-solution-option__copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 6px;
}


.ts-solution-option__copy small {
    color:
        rgba(105, 197, 255, 0.67);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    transition:
        color 220ms ease;
}


.ts-solution-option:hover
.ts-solution-option__copy small,

.ts-solution-option:focus-visible
.ts-solution-option__copy small,

.ts-solution-option.is-active
.ts-solution-option__copy small {
    color:
        var(--solutions-blue-light);
}


.ts-solution-option__copy strong {
    color:
        rgba(238, 244, 251, 0.72);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 19px;
    font-weight: 650;

    line-height: 1.2;

    letter-spacing: -0.025em;

    transition:
        color 220ms ease;
}


.ts-solution-option:hover
.ts-solution-option__copy strong,

.ts-solution-option:focus-visible
.ts-solution-option__copy strong,

.ts-solution-option.is-active
.ts-solution-option__copy strong {
    color:
        var(--solutions-text);
}


.ts-solution-option__copy > span {
    max-width: 330px;

    color:
        rgba(158, 172, 189, 0.67);

    font-size: 12px;

    line-height: 1.5;

    transition:
        color 220ms ease;
}


.ts-solution-option:hover
.ts-solution-option__copy > span,

.ts-solution-option:focus-visible
.ts-solution-option__copy > span,

.ts-solution-option.is-active
.ts-solution-option__copy > span {
    color:
        var(--solutions-muted);
}


/* Arrow */

.ts-solution-option__arrow {
    width: 18px;
    height: 18px;

    fill: none;

    stroke:
        rgba(158, 172, 189, 0.55);

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        stroke 220ms ease,
        transform 220ms ease;
}


.ts-solution-option:hover
.ts-solution-option__arrow,

.ts-solution-option:focus-visible
.ts-solution-option__arrow {
    stroke:
        var(--solutions-blue-light);

    transform:
        translateX(4px);
}


.ts-solution-option.is-active
.ts-solution-option__arrow {
    stroke:
        var(--solutions-yellow);

    transform:
        translateX(4px);
}


/* =========================================================
   STAGE
========================================================= */

.ts-solutions__stage {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 48%,
            rgba(22, 136, 255, 0.075),
            transparent 36%
        );
}


.ts-solutions__stage-grid {
    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(56, 135, 217, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(56, 135, 217, 0.08) 1px,
            transparent 1px
        );

    background-size:
        68px 68px;

    -webkit-mask-image:
        radial-gradient(
            circle at 68% 50%,
            #000,
            transparent 72%
        );

    mask-image:
        radial-gradient(
            circle at 68% 50%,
            #000,
            transparent 72%
        );
}


.ts-solutions__stage-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    right: -210px;
    top: 50%;

    border-radius: 50%;

    opacity: 0.23;

    background:
        radial-gradient(
            circle,
            rgba(22, 136, 255, 0.3),
            transparent 70%
        );

    filter:
        blur(46px);

    transform:
        translateY(-50%);
}


/* =========================================================
   PANELS
========================================================= */

.ts-solution-panel {
    position: absolute;

    inset: 0;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.82fr)
        minmax(410px, 1.18fr);

    align-items: center;

    gap:
        clamp(38px, 5vw, 70px);

    padding:
        52px 46px
        52px 60px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translate3d(24px, 0, 0);

    transition:
        opacity 400ms ease,
        visibility 400ms ease,
        transform 400ms
        cubic-bezier(
            0.18,
            0.75,
            0.2,
            1
        );
}


.ts-solution-panel.is-active {
    position: relative;

    min-height: 648px;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate3d(0, 0, 0);
}


.ts-solution-panel__copy {
    position: relative;

    z-index: 4;
}


.ts-solution-panel__label {
    display: block;

    margin-bottom: 13px;

    color:
        var(--solutions-blue-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.ts-solution-panel__copy h3 {
    margin:
        0 0 18px;

    color:
        var(--solutions-text);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            27px,
            2.35vw,
            38px
        );

    font-weight: 650;

    line-height: 1.16;

    letter-spacing: -0.043em;
}


.ts-solution-panel__copy > p {
    margin:
        0 0 28px;

    color:
        var(--solutions-muted);

    font-size: 14px;

    line-height: 1.7;
}


.ts-solution-panel__results {
    display: grid;

    gap: 12px;
}


.ts-solution-panel__results span {
    display: flex;
    align-items: center;

    gap: 10px;

    color:
        #dce8f5;

    font-size: 12px;
    font-weight: 650;
}


.ts-solution-panel__results svg {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    fill: none;

    stroke:
        var(--solutions-yellow);

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.ts-solution-panel__visual {
    position: relative;

    min-height: 470px;
}


/* =========================================================
   SOFTWARE VISUAL
========================================================= */

.ts-software-visual {
    position: absolute;

    width: 520px;
    height: 405px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);
}


.ts-software-visual__window {
    position: absolute;

    width: 470px;
    height: 340px;

    left: 50%;
    top: 50%;

    overflow: hidden;

    border:
        1px solid rgba(72, 166, 255, 0.23);

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(7, 35, 67, 0.96),
            rgba(3, 16, 31, 0.99)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 35px 75px rgba(0, 0, 0, 0.4),
        0 0 48px rgba(22, 136, 255, 0.08);

    transform:
        translate(-50%, -50%)
        perspective(1000px)
        rotateY(-5deg)
        rotateX(2deg);
}


.ts-software-visual__toolbar {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding:
        0 15px;

    border-bottom:
        1px solid rgba(71, 151, 230, 0.12);
}


.ts-software-visual__toolbar span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(119, 157, 195, 0.35);
}


.ts-software-visual__toolbar span:first-child {
    background:
        var(--solutions-yellow);
}


.ts-software-visual__toolbar i {
    width: 110px;
    height: 6px;

    margin-left: auto;

    border-radius: 999px;

    background:
        rgba(96, 152, 207, 0.12);
}


.ts-software-visual__sidebar {
    position: absolute;

    width: 55px;

    left: 0;
    top: 42px;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;

    padding-top: 21px;

    border-right:
        1px solid rgba(71, 151, 230, 0.12);
}


.ts-software-visual__sidebar span {
    width: 20px;
    height: 20px;

    border-radius: 6px;

    background:
        rgba(89, 154, 218, 0.1);
}


.ts-software-visual__sidebar span.is-active {
    background:
        rgba(22, 136, 255, 0.35);

    box-shadow:
        0 0 14px rgba(22, 136, 255, 0.22);
}


.ts-software-visual__workspace {
    position: absolute;

    left: 55px;
    right: 0;
    top: 42px;
    bottom: 0;

    padding:
        18px;
}


.ts-software-visual__metrics {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin-bottom: 12px;
}


.ts-software-visual__metrics span {
    height: 59px;

    border:
        1px solid rgba(68, 153, 237, 0.12);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 55, 94, 0.5),
            rgba(5, 24, 44, 0.75)
        );
}


.ts-software-visual__body {
    display: grid;

    grid-template-columns:
        minmax(0, 1.6fr)
        minmax(100px, 0.72fr);

    gap: 10px;
}


.ts-software-visual__chart,
.ts-software-visual__list {
    height: 198px;

    border:
        1px solid rgba(68, 153, 237, 0.12);

    border-radius: 10px;

    background:
        rgba(3, 18, 35, 0.7);
}


.ts-software-visual__chart {
    position: relative;

    overflow: hidden;
}


.ts-software-visual__chart::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(58, 132, 207, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(58, 132, 207, 0.07) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}


.ts-software-visual__chart svg {
    position: absolute;

    left: 7%;
    right: 4%;
    bottom: 12%;

    width: 89%;
    height: 72%;
}


.ts-software-visual__chart path {
    fill: none;

    stroke:
        var(--solutions-blue-light);

    stroke-width: 2;

    stroke-linecap: round;

    filter:
        drop-shadow(
            0 0 5px rgba(22, 136, 255, 0.8)
        );
}


.ts-software-visual__list {
    display: flex;
    flex-direction: column;

    gap: 12px;

    padding:
        17px 13px;
}


.ts-software-visual__list span {
    height: 28px;

    border-radius: 6px;

    background:
        rgba(77, 143, 209, 0.09);
}


.ts-software-visual__node {
    position: absolute;

    z-index: 5;

    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(75, 173, 255, 0.28);

    border-radius: 16px;

    color:
        var(--solutions-blue-light);

    background:
        rgba(4, 24, 46, 0.97);

    box-shadow:
        0 0 26px rgba(22, 136, 255, 0.14),
        0 18px 36px rgba(0, 0, 0, 0.3);
}


.ts-software-visual__node svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.ts-software-visual__node--users {
    left: 0;
    bottom: 42px;
}


.ts-software-visual__node--database {
    right: 0;
    top: 53px;

    border-color:
        rgba(255, 196, 0, 0.25);

    color:
        var(--solutions-yellow);
}


/* =========================================================
   AUTOMATION VISUAL
========================================================= */

.ts-automation-visual {
    position: absolute;

    width: 430px;
    height: 430px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);
}


.ts-automation-visual__core {
    position: absolute;

    width: 94px;
    height: 94px;

    left: 50%;
    top: 50%;

    z-index: 5;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 196, 0, 0.28);

    border-radius: 24px;

    color:
        var(--solutions-yellow);

    background:
        linear-gradient(
            145deg,
            rgba(24, 53, 77, 0.96),
            rgba(4, 20, 39, 0.98)
        );

    box-shadow:
        0 0 36px rgba(22, 136, 255, 0.12),
        0 24px 50px rgba(0, 0, 0, 0.35);

    transform:
        translate(-50%, -50%);
}


.ts-automation-visual__core svg {
    width: 43px;
    height: 43px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.ts-automation-visual__orbit {
    position: absolute;

    inset: 22%;

    border:
        1px solid rgba(22, 136, 255, 0.22);

    border-radius: 50%;

    animation:
        tsAutomationOrbit
        18s linear infinite;
}


.ts-automation-visual__orbit--outer {
    inset: 7%;

    border-color:
        rgba(255, 196, 0, 0.12);

    animation-duration:
        34s;

    animation-direction:
        reverse;
}


@keyframes tsAutomationOrbit {

    to {
        transform:
            rotate(360deg);
    }

}


.ts-automation-visual__item {
    position: absolute;

    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(72, 167, 255, 0.24);

    border-radius: 18px;

    color:
        var(--solutions-blue-light);

    background:
        rgba(4, 23, 44, 0.97);

    box-shadow:
        0 0 27px rgba(22, 136, 255, 0.1),
        0 18px 36px rgba(0, 0, 0, 0.28);
}


.ts-automation-visual__item svg {
    width: 31px;
    height: 31px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.ts-automation-visual__item--top {
    left: 50%;
    top: 0;

    transform:
        translateX(-50%);
}


.ts-automation-visual__item--right {
    right: 0;
    top: 50%;

    transform:
        translateY(-50%);
}


.ts-automation-visual__item--bottom {
    left: 50%;
    bottom: 0;

    color:
        var(--solutions-yellow);

    transform:
        translateX(-50%);
}


.ts-automation-visual__item--left {
    left: 0;
    top: 50%;

    transform:
        translateY(-50%);
}


/* =========================================================
   WEB VISUAL
========================================================= */

.ts-web-visual {
    position: absolute;

    width: 520px;
    height: 405px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);
}


.ts-web-visual__browser {
    position: absolute;

    width: 470px;
    height: 330px;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(72, 166, 255, 0.22);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(7, 35, 67, 0.96),
            rgba(3, 16, 31, 0.99)
        );

    box-shadow:
        0 34px 75px rgba(0, 0, 0, 0.4),
        0 0 48px rgba(22, 136, 255, 0.08);

    transform:
        translate(-50%, -50%)
        perspective(1000px)
        rotateY(-5deg);
}


.ts-web-visual__browser-top {
    height: 40px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding:
        0 14px;

    border-bottom:
        1px solid rgba(71, 151, 230, 0.12);
}


.ts-web-visual__browser-top span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(117, 153, 190, 0.36);
}


.ts-web-visual__browser-top span:first-child {
    background:
        var(--solutions-yellow);
}


.ts-web-visual__browser-top i {
    width: 220px;
    height: 7px;

    margin-left: auto;

    border-radius: 999px;

    background:
        rgba(84, 144, 202, 0.1);
}


.ts-web-visual__navigation {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding:
        0 18px;
}


.ts-web-visual__navigation strong {
    width: 60px;
    height: 9px;

    margin-right: auto;

    border-radius: 999px;

    background:
        rgba(255, 196, 0, 0.56);
}


.ts-web-visual__navigation span {
    width: 40px;
    height: 5px;

    border-radius: 999px;

    background:
        rgba(107, 157, 205, 0.13);
}


.ts-web-visual__hero {
    display: grid;

    grid-template-columns:
        1fr 0.92fr;

    gap: 15px;

    padding:
        24px 20px;
}


.ts-web-visual__copy {
    padding-top: 17px;
}


.ts-web-visual__copy small {
    width: 70px;
    height: 6px;

    display: block;

    margin-bottom: 15px;

    border-radius: 999px;

    background:
        var(--solutions-yellow);
}


.ts-web-visual__copy strong {
    width: 90%;
    height: 18px;

    display: block;

    margin-bottom: 8px;

    border-radius: 5px;

    background:
        rgba(230, 242, 255, 0.78);
}


.ts-web-visual__copy strong:nth-child(3) {
    width: 67%;
}


.ts-web-visual__copy p {
    width: 84%;
    height: 32px;

    margin:
        15px 0;

    border-radius: 5px;

    background:
        rgba(106, 158, 208, 0.11);
}


.ts-web-visual__copy i {
    width: 90px;
    height: 30px;

    display: block;

    border-radius: 7px;

    background:
        var(--solutions-blue);
}


.ts-web-visual__graphic {
    display: grid;
    place-items: center;

    border:
        1px solid rgba(72, 166, 255, 0.14);

    border-radius: 14px;

    background:
        radial-gradient(
            circle,
            rgba(22, 136, 255, 0.2),
            rgba(4, 23, 44, 0.85)
        );
}


.ts-web-visual__graphic span {
    width: 100px;
    height: 100px;

    border:
        1px solid rgba(105, 197, 255, 0.25);

    border-radius: 28px;

    box-shadow:
        inset 0 0 28px rgba(22, 136, 255, 0.12),
        0 0 30px rgba(22, 136, 255, 0.08);

    transform:
        rotate(18deg);
}


.ts-web-visual__mobile {
    position: absolute;

    width: 108px;
    height: 215px;

    right: 0;
    bottom: 0;

    padding:
        13px 10px;

    border:
        1px solid rgba(79, 171, 255, 0.28);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            #082746,
            #03111f
        );

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.38),
        0 0 28px rgba(22, 136, 255, 0.1);
}


.ts-web-visual__mobile > span {
    width: 32px;
    height: 4px;

    display: block;

    margin:
        0 auto 13px;

    border-radius: 999px;

    background:
        rgba(104, 162, 218, 0.18);
}


.ts-web-visual__mobile div {
    height: 80px;

    margin-bottom: 12px;

    border-radius: 13px;

    background:
        radial-gradient(
            circle,
            rgba(22, 136, 255, 0.24),
            rgba(5, 28, 52, 0.8)
        );
}


.ts-web-visual__mobile i {
    width: 100%;
    height: 8px;

    display: block;

    margin-bottom: 8px;

    border-radius: 999px;

    background:
        rgba(103, 160, 214, 0.15);
}


.ts-web-visual__mobile i:last-child {
    width: 60%;
}


/* =========================================================
   INFRASTRUCTURE VISUAL
========================================================= */

.ts-infrastructure-visual {
    position: absolute;

    width: 440px;
    height: 430px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);
}


.ts-infrastructure-visual__cloud {
    position: absolute;

    width: 130px;
    height: 100px;

    left: 50%;
    top: 25px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(105, 197, 255, 0.25);

    border-radius: 28px;

    color:
        var(--solutions-blue-light);

    background:
        radial-gradient(
            circle,
            rgba(22, 136, 255, 0.19),
            rgba(4, 23, 44, 0.94)
        );

    box-shadow:
        0 0 35px rgba(22, 136, 255, 0.12),
        0 20px 45px rgba(0, 0, 0, 0.3);

    transform:
        translateX(-50%);
}


.ts-infrastructure-visual__cloud svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.ts-infrastructure-visual__connection {
    position: absolute;

    width: 1px;
    height: 82px;

    left: 50%;
    top: 125px;

    background:
        linear-gradient(
            to bottom,
            var(--solutions-blue-light),
            rgba(22, 136, 255, 0.12)
        );
}


.ts-infrastructure-visual__servers {
    position: absolute;

    width: 300px;

    left: 50%;
    top: 205px;

    display: grid;

    gap: 10px;

    transform:
        translateX(-50%);
}


.ts-infrastructure-visual__servers div {
    height: 55px;

    display: flex;
    align-items: center;

    padding:
        0 16px;

    border:
        1px solid rgba(72, 164, 253, 0.19);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 36, 68, 0.94),
            rgba(3, 17, 33, 0.98)
        );

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.22);
}


.ts-infrastructure-visual__servers span {
    width: 58%;
    height: 7px;

    border-radius: 999px;

    background:
        rgba(89, 152, 213, 0.13);
}


.ts-infrastructure-visual__servers i {
    width: 8px;
    height: 8px;

    margin-left: auto;

    border-radius: 50%;

    background:
        #25dc7c;

    box-shadow:
        0 0 10px rgba(37, 220, 124, 0.6);
}


.ts-infrastructure-visual__status {
    position: absolute;

    width: 180px;
    height: 48px;

    left: 50%;
    bottom: 0;

    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        0 14px;

    border:
        1px solid rgba(255, 196, 0, 0.2);

    border-radius: 12px;

    background:
        rgba(4, 21, 39, 0.97);

    transform:
        translateX(-50%);
}


.ts-infrastructure-visual__status i {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #25dc7c;

    box-shadow:
        0 0 10px rgba(37, 220, 124, 0.65);
}


.ts-infrastructure-visual__status span {
    width: 70px;
    height: 7px;

    border-radius: 999px;

    background:
        rgba(95, 153, 210, 0.14);
}


.ts-infrastructure-visual__status strong {
    width: 32px;
    height: 7px;

    margin-left: auto;

    border-radius: 999px;

    background:
        rgba(255, 196, 0, 0.42);
}


/* =========================================================
   CONCLUSION
========================================================= */

.ts-solutions__conclusion {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 40px;

    margin-top:
        clamp(72px, 8vw, 108px);

    padding:
        29px 31px;

    overflow: hidden;

    border:
        1px solid rgba(75, 162, 247, 0.15);

    border-radius: 18px;

    background:
        linear-gradient(
            105deg,
            rgba(8, 30, 56, 0.82),
            rgba(4, 17, 32, 0.94)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.028),
        0 25px 60px rgba(0, 0, 0, 0.21);
}


.ts-solutions__conclusion::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -175px;
    top: -180px;

    border-radius: 50%;

    opacity: 0.2;

    background:
        radial-gradient(
            circle,
            rgba(255, 196, 0, 0.32),
            transparent 70%
        );
}


.ts-solutions__conclusion-copy {
    position: relative;

    z-index: 2;
}


.ts-solutions__conclusion-copy > span {
    display: block;

    margin-bottom: 8px;

    color:
        var(--solutions-blue-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.ts-solutions__conclusion-copy h3 {
    max-width: 820px;

    margin: 0;

    color:
        var(--solutions-text);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            21px,
            1.9vw,
            29px
        );

    font-weight: 620;

    line-height: 1.27;

    letter-spacing: -0.032em;
}


.ts-solutions__conclusion-button {
    position: relative;

    z-index: 3;

    min-height: 60px;

    display: inline-flex;
    align-items: center;

    gap: 14px;

    padding:
        9px 21px;

    border:
        1px solid rgba(255, 224, 98, 0.72);

    border-radius: 11px;

    color:
        #07101b;

    background:
        linear-gradient(
            135deg,
            #ffdc59,
            #ffc400 58%,
            #ffb800
        );

    box-shadow:
        0 14px 35px rgba(255, 196, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);

    text-decoration: none;

    transition:
        transform 200ms ease,
        box-shadow 200ms ease;
}


.ts-solutions__conclusion-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 19px 43px rgba(255, 196, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.57);
}


.ts-solutions__conclusion-button > svg {
    width: 21px;
    height: 21px;

    flex: 0 0 21px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.ts-solutions__conclusion-button > span {
    display: flex;
    flex-direction: column;

    gap: 6px;
}


.ts-solutions__conclusion-button small {
    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    opacity: 0.67;
}


.ts-solutions__conclusion-button strong {
    font-size: 14px;
    font-weight: 850;

    white-space: nowrap;
}


/* =========================================================
   REVEAL
========================================================= */

[data-solutions-reveal] {
    opacity: 0;

    transform:
        translate3d(0, 24px, 0);

    transition:
        opacity 720ms ease,
        transform 720ms
        cubic-bezier(
            0.18,
            0.75,
            0.2,
            1
        );
}


[data-solutions-reveal].is-visible {
    opacity: 1;

    transform:
        translate3d(0, 0, 0);
}


/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1280px) {

    .ts-solutions__container,
    .ts-solutions-transition__container {
        width:
            min(
                calc(100% - 48px),
                1220px
            );
    }


    .ts-solutions__experience {
        grid-template-columns:
            minmax(300px, 0.72fr)
            minmax(630px, 1.28fr);
    }


    .ts-solutions__selector {
        padding-right: 34px;
    }


    .ts-solution-panel {
        grid-template-columns:
            minmax(270px, 0.8fr)
            minmax(370px, 1.2fr);

        padding:
            48px 34px
            48px 44px;
    }


    .ts-software-visual,
    .ts-web-visual {
        transform:
            translate(-50%, -50%)
            scale(0.9);
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 980px) {

    .ts-solutions {
        padding:
            120px 0
            94px;
    }


    .ts-solutions__container,
    .ts-solutions-transition__container {
        width:
            min(
                calc(100% - 38px),
                820px
            );
    }


    .ts-solutions-transition__message {
        font-size: 9px;
    }


    .ts-solutions__heading-grid {
        grid-template-columns: 1fr;

        gap: 23px;
    }


    .ts-solutions__intro {
        max-width: 650px;

        margin-left: 0;
    }


    .ts-solutions__experience {
        display: block;

        min-height: 0;

        border-top: 0;
    }


    .ts-solutions__selector {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            0 22px;

        padding:
            0 0 28px;

        border-right: 0;

        border-bottom:
            1px solid rgba(71, 148, 224, 0.12);
    }


    .ts-solutions__selector-axis {
        display: none;
    }


    .ts-solution-option {
        min-height: 125px;

        padding:
            18px 0;
    }


    .ts-solution-option::before {
        inset:
            4px -10px;
    }


    .ts-solutions__stage {
        min-height: 650px;
    }


    .ts-solution-panel {
        grid-template-columns:
            minmax(260px, 0.78fr)
            minmax(370px, 1.22fr);

        padding:
            48px 20px;
    }


    .ts-solution-panel.is-active {
        min-height: 650px;
    }


    .ts-solutions__conclusion {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .ts-solutions__conclusion-button {
        justify-self: start;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 680px) {

    .ts-solutions {
        padding:
            108px 0
            76px;
    }


    .ts-solutions__container,
    .ts-solutions-transition__container {
        width:
            calc(100% - 28px);
    }


    .ts-solutions-transition {
        height: 66px;
    }


    .ts-solutions-transition__container {
        grid-template-columns:
            minmax(20px, 1fr)
            auto
            minmax(20px, 1fr);

        gap: 12px;
    }


    .ts-solutions-transition__message {
        font-size: 0;
    }


    .ts-solutions-transition__message span:last-child {
        display: none;
    }


    .ts-solutions-transition__icon {
        width: 38px;
        height: 38px;
    }


    .ts-solutions__title {
        font-size:
            clamp(
                35px,
                10vw,
                46px
            );
    }


    .ts-solutions__intro p {
        font-size: 15px;

        line-height: 1.65;
    }


    .ts-solutions__selector {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .ts-solution-option {
        min-height: 0;

        padding:
            19px 0;
    }


    .ts-solution-option::before {
        inset:
            4px -7px;
    }


    .ts-solution-option__copy > span {
        font-size: 13px;
    }


    .ts-solutions__stage {
        min-height: 770px;
    }


    .ts-solution-panel {
        grid-template-columns: 1fr;

        align-content: start;

        gap: 36px;

        padding:
            42px 0;
    }


    .ts-solution-panel.is-active {
        min-height: 770px;
    }


    .ts-solution-panel__copy h3 {
        font-size:
            clamp(
                27px,
                8vw,
                35px
            );
    }


    .ts-solution-panel__copy > p {
        font-size: 14px;
    }


    .ts-solution-panel__visual {
        min-height: 390px;
    }


    .ts-software-visual,
    .ts-web-visual {
        transform:
            translate(-50%, -50%)
            scale(0.73);
    }


    .ts-automation-visual {
        transform:
            translate(-50%, -50%)
            scale(0.78);
    }


    .ts-infrastructure-visual {
        transform:
            translate(-50%, -50%)
            scale(0.8);
    }


    .ts-solutions__conclusion {
        gap: 20px;

        margin-top: 66px;

        padding:
            24px 20px;
    }


    .ts-solutions__conclusion-button {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .ts-solutions__stage {
        min-height: 720px;
    }


    .ts-solution-panel.is-active {
        min-height: 720px;
    }


    .ts-software-visual,
    .ts-web-visual {
        transform:
            translate(-50%, -50%)
            scale(0.62);
    }


    .ts-automation-visual {
        transform:
            translate(-50%, -50%)
            scale(0.66);
    }


    .ts-infrastructure-visual {
        transform:
            translate(-50%, -50%)
            scale(0.68);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ts-solutions *,
    .ts-solutions *::before,
    .ts-solutions *::after {
        animation-duration:
            0.01ms !important;

        transition-duration:
            0.01ms !important;
    }


    [data-solutions-reveal] {
        opacity: 1;

        transform: none;
    }

}


/* =========================================================
   PAUSE ANIMATIONS OUTSIDE VIEWPORT
========================================================= */

.ts-solutions.is-outside-viewport
.ts-automation-visual__orbit {
    animation-play-state: paused;
}