/* Source module 01 */
/* X-TechWork animated homepage hero */
.mixed-hero {
    min-height: calc(100svh - 0px);
    padding: clamp(118px, 14svh, 156px) 0 clamp(64px, 9svh, 92px);
    isolation: isolate;
    background:
        radial-gradient(circle at 82% 18%, rgba(27, 166, 196, .22), transparent 34%),
        radial-gradient(circle at 24% 78%, rgba(36, 107, 254, .16), transparent 31%),
        linear-gradient(135deg, #07131f 0%, #0d3441 48%, #0f5363 100%);
}
.mixed-hero .tech-hero-media {
    display: none;
}
.mixed-hero .tech-hero-overlay {
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(3, 11, 21, .88) 0%, rgba(5, 19, 31, .72) 42%, rgba(8, 45, 59, .44) 100%),
        linear-gradient(180deg, rgba(2, 7, 14, .55), rgba(2, 12, 22, .18) 42%, rgba(2, 9, 18, .62));
}
.tech-hero-bars {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.tech-hero-bars:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.tech-hero-bars span {
    position: absolute;
    left: var(--x);
    bottom: -28%;
    width: clamp(18px, 2vw, 30px);
    height: var(--h);
    border-radius: 999px;
    background: linear-gradient(180deg, transparent 0%, rgba(151, 223, 255, .18) 18%, rgba(191, 237, 255, .72) 52%, rgba(44, 183, 218, .2) 84%, transparent 100%);
    filter: blur(7px);
    opacity: .62;
    animation: techHeroBarRise var(--t) linear infinite;
    animation-delay: var(--d);
}
.tech-hero-bars span:nth-child(2n) {
    width: clamp(24px, 2.8vw, 42px);
    opacity: .42;
    filter: blur(10px);
}
.tech-hero-bars span:nth-child(3n) {
    background: linear-gradient(180deg, transparent 0%, rgba(79, 225, 199, .16) 18%, rgba(161, 255, 231, .58) 54%, rgba(30, 176, 164, .18) 86%, transparent 100%);
}
.mixed-hero .tech-hero-content {
    width: min(1160px, calc(100% - 40px));
    max-width: 1160px;
    padding-left: clamp(0px, 1.4vw, 18px);
}
.mixed-hero .tech-eyebrow {
    color: #a9ddff;
    font-size: clamp(11px, 1.1vw, 14px);
    line-height: 1.35;
    letter-spacing: .09em;
}
.mixed-hero h1 {
    max-width: 760px;
    margin: clamp(18px, 2.3vw, 28px) 0 clamp(18px, 2.2vw, 26px);
    font-size: clamp(46px, 7.1vw, 112px);
    line-height: .94;
    text-wrap: balance;
}
.mixed-hero p {
    max-width: 660px;
    margin: 0 0 clamp(28px, 3.5vw, 42px);
    color: rgba(255, 255, 255, .8);
    font-size: clamp(17px, 1.55vw, 23px);
    line-height: 1.55;
}
.mixed-hero .tech-actions {
    gap: 16px;
}
.mixed-hero .tech-button {
    min-height: 58px;
    padding: 15px 24px;
    font-size: clamp(15px, 1.25vw, 18px);
    white-space: nowrap;
}
.mixed-hero .tech-button-secondary {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(218, 237, 255, .34);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

@keyframes techHeroBarRise {
    0% {
        transform: translate3d(0, 20%, 0) scaleY(.78);
        opacity: 0;
    }
    12% {
        opacity: .5;
    }
    72% {
        opacity: .55;
    }
    100% {
        transform: translate3d(0, -152svh, 0) scaleY(1.08);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .mixed-hero {
        min-height: 760px;
        padding-top: 138px;
        align-items: center;
    }
    .mixed-hero h1 {
        max-width: 720px;
        font-size: clamp(54px, 10vw, 88px);
    }
    .mixed-hero p {
        max-width: 610px;
    }
}

@media (max-width: 640px) {
    .mixed-hero {
        min-height: 100svh;
        padding: 112px 0 48px;
    }
    .mixed-hero .tech-hero-content {
        width: min(100% - 28px, 1160px);
        padding-left: 0;
    }
    .mixed-hero h1 {
        max-width: 100%;
        font-size: clamp(42px, 13.2vw, 64px);
        line-height: .98;
    }
    .mixed-hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.62;
    }
    .mixed-hero .tech-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mixed-hero .tech-button {
        width: 100%;
        min-height: 54px;
        white-space: normal;
    }
    .tech-hero-bars span {
        width: 18px;
        filter: blur(8px);
    }
}

@media (max-width: 380px) {
    .mixed-hero h1 {
        font-size: clamp(38px, 12vw, 46px);
    }
    .mixed-hero .tech-eyebrow {
        font-size: 10px;
    }
}

/* Source module 02 */
/* X-TechWork homepage hero type refinement */
.mixed-hero .tech-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mixed-hero h1 {
    max-width: 900px;
    font-size: clamp(46px, 5.8vw, 86px);
    line-height: .98;
}
.mixed-hero p {
    max-width: 690px;
}

@media (max-width: 991px) {
    .mixed-hero h1 {
        max-width: 760px;
        font-size: clamp(50px, 9vw, 78px);
    }
}

@media (max-width: 640px) {
    .mixed-hero h1 {
        max-width: 100%;
        font-size: clamp(40px, 11.2vw, 58px);
        line-height: 1.02;
    }
}

@media (max-width: 380px) {
    .mixed-hero h1 {
        font-size: clamp(36px, 10.8vw, 44px);
    }
}

/* Source module 03 */
/* X-TechWork homepage mobile CTA width */
@media (max-width: 640px) {
    .mixed-hero .tech-actions {
        width: 100%;
        max-width: 100%;
    }
}

/* Source module 04 */
/* X-TechWork transparent home header and locked hero viewport */
.tech-nav {
    --tech-nav-progress: 0;
    transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease, padding .24s ease, backdrop-filter .24s ease;
}
.tech-nav .tech-logo-light {
    display: none;
}
.tech-home-page {
    background: #07131f;
}
.tech-home-page .tech-nav {
    background-color: rgba(5, 16, 28, calc(.84 * var(--tech-nav-progress)));
    border-bottom-color: rgba(173, 217, 236, calc(.18 * var(--tech-nav-progress)));
    box-shadow: 0 18px 52px rgba(0, 0, 0, calc(.26 * var(--tech-nav-progress)));
    backdrop-filter: blur(calc(2px + (16px * var(--tech-nav-progress))));
}
.tech-home-page .tech-nav:not(.is-scrolled) {
    background-color: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}
.tech-home-page .tech-nav .tech-logo-dark {
    display: none;
}
.tech-home-page .tech-nav .tech-logo-light {
    display: block;
}
.tech-home-page .tech-nav .tech-links > a,
.tech-home-page .tech-nav .tech-dropdown > button {
    color: rgba(255, 255, 255, .9);
}
.tech-home-page .tech-nav .tech-links > a:hover,
.tech-home-page .tech-nav .tech-dropdown > button:hover {
    color: #a9ddff;
}
.tech-home-page .tech-nav .tech-dropdown-menu a {
    color: #243047;
}
.tech-home-page .tech-nav .tech-dropdown-menu a:hover {
    color: var(--tech-blue);
}
.tech-home-page .mixed-hero {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    padding-top: clamp(118px, 13svh, 148px);
    padding-bottom: clamp(48px, 7svh, 76px);
}
.tech-home-page .home-service-choice {
    background: linear-gradient(135deg, #f7fbff, #f5fffb);
}

@media (min-width: 1440px) {
    .tech-home-page .mixed-hero .tech-hero-content {
        width: min(1160px, calc(100% - 96px));
        padding-left: 0;
    }
    .tech-home-page .mixed-hero h1 {
        max-width: 900px;
        font-size: 86px;
    }
    .tech-home-page .mixed-hero p {
        max-width: 690px;
    }
}

@media (max-width: 991px) {
    .tech-home-page .tech-nav .tech-links.is-open {
        background: rgba(255, 255, 255, .98);
    }
    .tech-home-page .tech-nav .tech-links.is-open > a,
    .tech-home-page .tech-nav .tech-links.is-open .tech-dropdown > button {
        color: #243047;
    }
    .tech-home-page .tech-nav .tech-links.is-open > a:hover,
    .tech-home-page .tech-nav .tech-links.is-open .tech-dropdown > button:hover {
        color: var(--tech-blue);
    }
    .tech-home-page .mixed-hero {
        min-height: 100vh;
        min-height: 100svh;
        height: auto;
    }
}

@media (max-width: 640px) {
    .tech-home-page .mixed-hero {
        padding-top: 110px;
        padding-bottom: 48px;
    }
}

/* Source module 05 */
/* X-TechWork 3D service chooser hero */
.tech-home-page .mixed-hero {
    align-items: center;
}
.hero-choice-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 64px));
    max-width: 1240px;
    color: #fff;
    display: grid;
    gap: clamp(22px, 4svh, 38px);
}
.hero-choice-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}
.hero-choice-heading .tech-eyebrow {
    color: #a9ddff;
}
.hero-choice-heading p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    text-align: right;
}
.hero-choice-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
    perspective: 1400px;
}
.hero-service-panel {
    position: relative;
    min-height: clamp(420px, 55svh, 560px);
    padding: clamp(28px, 3.4vw, 46px);
    border: 1px solid rgba(218, 237, 255, .18);
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transform-style: preserve-3d;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
    animation: heroPanelSettle .85s ease both;
}
.hero-service-panel:nth-child(2) {
    animation-delay: .12s;
}
.hero-service-panel:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .96;
}
.hero-service-panel:after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: 17px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.13), transparent 38%),
        radial-gradient(circle at 82% 14%, rgba(255,255,255,.18), transparent 22%);
    pointer-events: none;
}
.hero-service-staffing:before {
    background:
        radial-gradient(circle at 20% 18%, rgba(44, 214, 182, .32), transparent 34%),
        linear-gradient(145deg, rgba(9, 73, 73, .92), rgba(7, 23, 34, .94) 62%, rgba(10, 42, 34, .96));
}
.hero-service-tech:before {
    background:
        radial-gradient(circle at 78% 16%, rgba(78, 139, 255, .36), transparent 34%),
        linear-gradient(145deg, rgba(18, 42, 95, .94), rgba(8, 18, 37, .95) 58%, rgba(53, 39, 105, .95));
}
.hero-service-panel:hover,
.hero-service-panel:focus-visible {
    color: #fff;
    text-decoration: none;
    transform: rotateX(5deg) rotateY(-7deg) translateY(-10px) translateZ(20px);
    border-color: rgba(255, 255, 255, .36);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .34);
    outline: none;
}
.hero-service-tech:hover,
.hero-service-tech:focus-visible {
    transform: rotateX(5deg) rotateY(7deg) translateY(-10px) translateZ(20px);
}
.hero-service-glow {
    position: absolute;
    inset: auto -14% -22% auto;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    filter: blur(36px);
    opacity: .6;
    animation: heroGlowDrift 7s ease-in-out infinite;
}
.hero-service-panel small {
    display: inline-flex;
    align-items: center;
    margin-top: clamp(170px, 28svh, 250px);
    color: rgba(205, 239, 255, .82);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
    transform: translateZ(34px);
}
.hero-service-panel strong {
    display: block;
    max-width: 520px;
    margin: 12px 0 14px;
    font-size: clamp(40px, 5.2vw, 72px);
    font-weight: 900;
    line-height: .94;
    letter-spacing: 0;
    transform: translateZ(48px);
}
.hero-service-panel em {
    display: block;
    max-width: 500px;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(15px, 1.35vw, 18px);
    font-style: normal;
    line-height: 1.55;
    transform: translateZ(34px);
}
.hero-service-enter {
    position: absolute;
    left: clamp(28px, 3.4vw, 46px);
    bottom: clamp(28px, 3.4vw, 42px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-weight: 900;
    transform: translateZ(56px);
    transition: background .24s ease, transform .24s ease;
}
.hero-service-panel:hover .hero-service-enter,
.hero-service-panel:focus-visible .hero-service-enter {
    background: rgba(255, 255, 255, .2);
    transform: translateZ(72px) translateX(4px);
}
.hero-3d-object {
    position: absolute;
    top: clamp(30px, 5svh, 54px);
    right: clamp(30px, 4vw, 54px);
    width: clamp(132px, 15vw, 210px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    animation: heroObjectFloat 5.8s ease-in-out infinite;
}
.hero-3d-object i {
    position: relative;
    z-index: 3;
    width: 45%;
    aspect-ratio: 1;
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: clamp(30px, 4vw, 54px);
    background: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 28px 70px rgba(0,0,0,.3);
    transform: rotateX(58deg) rotateZ(-28deg) translateZ(42px);
}
.hero-3d-object span {
    position: absolute;
    width: 44%;
    aspect-ratio: 1;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.11);
    transform-style: preserve-3d;
}
.hero-3d-object span:nth-child(2) {
    left: 3%;
    bottom: 13%;
    transform: rotateX(62deg) rotateZ(-32deg) translateZ(12px);
}
.hero-3d-object span:nth-child(3) {
    right: 2%;
    top: 8%;
    transform: rotateX(62deg) rotateZ(-32deg) translateZ(2px);
}
.hero-3d-object span:nth-child(4) {
    right: 16%;
    bottom: 0;
    transform: rotateX(62deg) rotateZ(-32deg) translateZ(-16px);
}
.staffing-object span {
    box-shadow: 0 0 38px rgba(45, 217, 185, .26);
}
.tech-object span {
    box-shadow: 0 0 38px rgba(93, 143, 255, .3);
}

@keyframes heroPanelSettle {
    from {
        opacity: 0;
        transform: translateY(34px) rotateX(8deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}
@keyframes heroObjectFloat {
    0%, 100% {
        transform: translate3d(0, 0, 40px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translate3d(0, -16px, 62px) rotateX(4deg) rotateY(-7deg);
    }
}
@keyframes heroGlowDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-20px, -16px, 0) scale(1.08);
    }
}

@media (max-width: 991px) {
    .tech-home-page .mixed-hero {
        height: auto;
        min-height: 100svh;
    }
    .hero-choice-shell {
        width: min(100% - 32px, 760px);
        padding-top: 18px;
    }
    .hero-choice-heading {
        align-items: start;
        flex-direction: column;
    }
    .hero-choice-heading p {
        text-align: left;
    }
    .hero-choice-stage {
        grid-template-columns: 1fr;
    }
    .hero-service-panel {
        min-height: 330px;
    }
    .hero-service-panel small {
        margin-top: 132px;
    }
    .hero-service-panel strong {
        font-size: clamp(34px, 9vw, 56px);
    }
}

@media (max-width: 640px) {
    .hero-choice-shell {
        width: min(100% - 28px, 760px);
        gap: 16px;
    }
    .hero-choice-heading p {
        display: none;
    }
    .hero-choice-stage {
        gap: 14px;
    }
    .hero-service-panel {
        min-height: 292px;
        padding: 24px;
        border-radius: 14px;
    }
    .hero-service-panel small {
        margin-top: 108px;
        font-size: 10px;
    }
    .hero-service-panel strong {
        font-size: clamp(30px, 11vw, 44px);
    }
    .hero-service-panel em {
        font-size: 14px;
        line-height: 1.45;
    }
    .hero-service-enter {
        left: 24px;
        bottom: 22px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }
    .hero-3d-object {
        width: 112px;
        top: 22px;
        right: 22px;
    }
}

/* Source module 06 */
/* X-TechWork clean reference-style service path hero */
.tech-body {
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
}
.tech-home-page .mixed-hero {
    align-items: center;
    padding-top: clamp(106px, 11svh, 132px);
    padding-bottom: clamp(34px, 5svh, 54px);
}
.hero-path-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 72px));
    max-width: 1240px;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: clamp(42px, 6vw, 80px);
    align-items: center;
}
.hero-path-copy {
    align-self: center;
}
.hero-path-copy .tech-eyebrow {
    color: #a8dfff;
    font-size: 13px;
    letter-spacing: .14em;
}
.hero-path-copy h1 {
    max-width: 360px;
    margin: 24px 0 18px;
    color: #fff;
    font-size: clamp(42px, 4.4vw, 68px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: 0;
}
.hero-path-copy p {
    max-width: 360px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.62;
    font-weight: 400;
}
.hero-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    min-height: clamp(500px, 62svh, 610px);
    border: 1px solid rgba(211, 237, 247, .18);
    background: rgba(211, 237, 247, .16);
    perspective: 1300px;
}
.hero-path {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(30px, 3.4vw, 48px);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transform-style: preserve-3d;
    background:
        linear-gradient(150deg, rgba(255,255,255,.075), rgba(255,255,255,.018) 48%, rgba(255,255,255,.05)),
        rgba(5, 22, 34, .76);
    transition: transform .42s cubic-bezier(.2,.8,.2,1), background .32s ease;
    animation: heroPathIn .8s ease both;
}
.hero-path:nth-child(2) {
    animation-delay: .1s;
}
.hero-path:hover,
.hero-path:focus-visible {
    color: #fff;
    text-decoration: none;
    transform: translateY(-8px) rotateX(4deg);
    background:
        linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.025) 48%, rgba(255,255,255,.08)),
        rgba(8, 33, 48, .88);
    outline: none;
}
.hero-path:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .82;
    transition: opacity .3s ease, transform .3s ease;
}
.hero-path-staffing:before {
    background:
        radial-gradient(circle at 18% 22%, rgba(60, 225, 190, .25), transparent 34%),
        linear-gradient(160deg, rgba(10, 83, 78, .58), transparent 64%);
}
.hero-path-tech:before {
    background:
        radial-gradient(circle at 78% 20%, rgba(94, 158, 255, .28), transparent 34%),
        linear-gradient(160deg, rgba(58, 82, 157, .62), transparent 64%);
}
.hero-path:hover:before,
.hero-path:focus-visible:before {
    opacity: 1;
    transform: scale(1.04);
}
.hero-path-index {
    position: absolute;
    top: clamp(26px, 3vw, 42px);
    left: clamp(30px, 3.4vw, 48px);
    color: rgba(255,255,255,.42);
    font-size: 14px;
    font-weight: 500;
}
.hero-path-kicker {
    color: rgba(189, 231, 247, .82);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translateZ(28px);
}
.hero-path strong {
    display: block;
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(34px, 3.7vw, 58px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
    transform: translateZ(42px);
}
.hero-path em {
    display: block;
    max-width: 440px;
    color: rgba(255,255,255,.72);
    font-size: clamp(15px, 1.15vw, 17px);
    font-style: normal;
    line-height: 1.58;
    font-weight: 400;
    transform: translateZ(30px);
}
.hero-path-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transform: translateZ(44px);
}
.hero-path-action i {
    transition: transform .24s ease;
}
.hero-path:hover .hero-path-action i,
.hero-path:focus-visible .hero-path-action i {
    transform: translateX(6px);
}
.hero-path-visual {
    position: absolute;
    top: clamp(54px, 8svh, 86px);
    right: clamp(34px, 4vw, 62px);
    width: clamp(118px, 12vw, 170px);
    aspect-ratio: 1;
    transform-style: preserve-3d;
    animation: heroPathFloat 6s ease-in-out infinite;
}
.hero-path-visual i {
    position: absolute;
    inset: 26%;
    z-index: 4;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.11);
    transform: rotateX(58deg) rotateZ(-32deg) translateZ(40px);
    box-shadow: 0 22px 58px rgba(0,0,0,.26);
}
.hero-path-visual span {
    position: absolute;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.075);
    transform: rotateX(58deg) rotateZ(-32deg);
}
.hero-path-visual span:nth-child(2) {
    left: 4%;
    bottom: 12%;
    transform: rotateX(58deg) rotateZ(-32deg) translateZ(8px);
}
.hero-path-visual span:nth-child(3) {
    right: 4%;
    top: 7%;
    transform: rotateX(58deg) rotateZ(-32deg) translateZ(-4px);
}
.hero-path-visual span:nth-child(4) {
    right: 18%;
    bottom: 0;
    transform: rotateX(58deg) rotateZ(-32deg) translateZ(-18px);
}

@keyframes heroPathIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroPathFloat {
    0%, 100% {
        transform: translate3d(0, 0, 32px) rotateY(0);
    }
    50% {
        transform: translate3d(0, -14px, 54px) rotateY(-8deg);
    }
}

@media (min-width: 1440px) {
    .tech-home-page .mixed-hero .hero-path-shell {
        width: min(1240px, calc(100% - 128px));
    }
}

@media (max-width: 991px) {
    .tech-home-page .mixed-hero {
        height: auto;
        min-height: 100svh;
    }
    .hero-path-shell {
        width: min(100% - 32px, 760px);
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 26px;
    }
    .hero-path-copy h1 {
        max-width: 680px;
        margin: 16px 0 10px;
        font-size: clamp(36px, 8vw, 54px);
    }
    .hero-path-copy p {
        max-width: 620px;
    }
    .hero-path-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-path {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .hero-path-shell {
        width: min(100% - 28px, 760px);
        gap: 18px;
        padding-top: 8px;
    }
    .hero-path-copy .tech-eyebrow {
        font-size: 11px;
    }
    .hero-path-copy h1 {
        font-size: clamp(30px, 10vw, 42px);
    }
    .hero-path-copy p {
        display: none;
    }
    .hero-path {
        min-height: 275px;
        padding: 24px;
    }
    .hero-path-index {
        top: 22px;
        left: 24px;
    }
    .hero-path strong {
        font-size: clamp(28px, 9vw, 38px);
    }
    .hero-path em {
        font-size: 14px;
        line-height: 1.45;
    }
    .hero-path-action {
        margin-top: 18px;
        font-size: 13px;
    }
    .hero-path-visual {
        width: 104px;
        top: 26px;
        right: 24px;
    }
}

/* Source module 07 */
/* X-TechWork final crisp hero typography override */
body.tech-home-page .mixed-hero .hero-path-copy h1 {
    max-width: 360px !important;
    font-size: clamp(42px, 4.1vw, 64px) !important;
    font-weight: 500 !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}
body.tech-home-page .mixed-hero .hero-path strong {
    font-size: clamp(34px, 3.3vw, 52px) !important;
    font-weight: 500 !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
}
body.tech-home-page .mixed-hero .hero-path-copy p,
body.tech-home-page .mixed-hero .hero-path em {
    font-weight: 400 !important;
}

@media (max-width: 991px) {
    body.tech-home-page .mixed-hero .hero-path-copy h1 {
        max-width: 680px !important;
        font-size: clamp(36px, 8vw, 52px) !important;
    }
}

@media (max-width: 640px) {
    body.tech-home-page .mixed-hero .hero-path-copy h1 {
        font-size: clamp(30px, 10vw, 40px) !important;
    }
    body.tech-home-page .mixed-hero .hero-path strong {
        font-size: clamp(28px, 9vw, 38px) !important;
    }
}

/* Source module 08 */
/* X-TechWork clean reference-inspired typography pass */
:root {
    --xtech-font: Roboto, "Helvetica Neue", Arial, sans-serif;
    --xtech-teal-text: #1f556d;
    --xtech-teal-muted: #4f7382;
    --xtech-footer-bg: #e7eef2;
}
body.tech-body {
    font-family: var(--xtech-font);
    font-weight: 400;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.tech-links a,
.tech-dropdown > button {
    font-family: var(--xtech-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
}
.tech-nav-cta {
    font-weight: 500;
}
.tech-eyebrow,
.tech-kicker {
    font-weight: 700;
    letter-spacing: .08em;
}
.hero-path-copy h1,
.hero-path strong,
.tech-section-head h2,
.tech-band h2,
.tech-cta h2,
.tech-page-hero h1,
.about-story-grid h2,
.about-domains-grid h2,
.about-line-panel h2 {
    font-family: var(--xtech-font);
    font-weight: 500;
    letter-spacing: 0;
}
.hero-path-copy p,
.hero-path em,
.tech-section-head p,
.tech-cta p,
.tech-page-hero p,
.about-story-copy p,
.about-vision-copy p,
.about-domains-grid p,
.tech-service-card p,
.tech-service-detail p,
.tech-process-item p,
.tech-values p,
.tech-blog-card p,
.tech-case-body p {
    font-family: var(--xtech-font);
    font-weight: 400;
    letter-spacing: 0;
}
.hero-path-kicker,
.hero-path-action,
.home-choice-panel small,
.tech-service-detail span,
.tech-blog-card span {
    font-family: var(--xtech-font);
    font-weight: 500;
}
.tech-service-card h3,
.tech-process-item h3,
.tech-values h3,
.tech-blog-card h2,
.about-principle-card h3,
.home-choice-panel h3 {
    font-family: var(--xtech-font);
    font-weight: 500;
    letter-spacing: 0;
}
.tech-footer {
    background: var(--xtech-footer-bg);
    color: var(--xtech-teal-text);
    border-top: 12px solid #0f4e68;
}
.tech-footer h3 {
    color: var(--xtech-teal-text);
    font-family: var(--xtech-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 18px;
}
.tech-footer p,
.tech-footer a,
.tech-footer span,
.tech-footer strong {
    color: var(--xtech-teal-text);
    font-family: var(--xtech-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: 0;
}
.tech-footer a {
    margin: 14px 0;
}
.tech-footer a:hover {
    color: #0d4157;
}
.tech-footer-bottom {
    border-top-color: rgba(31,85,109,.16);
}
.tech-footer-brand.tech-brand-logo img {
    filter: none;
}

@media (max-width: 640px) {
    .tech-links a,
    .tech-dropdown > button {
        font-size: 15px;
    }
    .tech-footer h3 {
        font-size: 18px;
    }
    .tech-footer p,
    .tech-footer a,
    .tech-footer span,
    .tech-footer strong {
        font-size: 16px;
    }
}

/* Source module 09 */
/* X-TechWork final clean reference-clean typography lock */
:root {
    --tech-font-clean: Roboto, "Helvetica Neue", Arial, sans-serif;
}

body.tech-body,
body.tech-body button,
body.tech-body input,
body.tech-body textarea,
body.tech-body select {
    font-family: var(--tech-font-clean);
    font-weight: 400;
    letter-spacing: 0;
}

.tech-nav,
.tech-links,
.tech-dropdown-menu,
.tech-hero,
.hero-path,
.tech-section,
.tech-footer {
    font-family: var(--tech-font-clean);
}

.tech-links a,
.tech-dropdown > button,
.tech-dropdown-menu a {
    font-weight: 500;
    letter-spacing: 0;
}

.hero-path-copy h1 {
    font-size: clamp(42px, 4vw, 62px) !important;
    font-weight: 500 !important;
    line-height: 1.08 !important;
}

.hero-path-copy p {
    font-size: clamp(17px, 1.25vw, 20px) !important;
    font-weight: 400 !important;
    line-height: 1.62 !important;
}

.hero-path strong {
    font-size: clamp(34px, 3vw, 50px) !important;
    font-weight: 500 !important;
    line-height: 1.06 !important;
}

.hero-path em,
.hero-path-action,
.hero-path-kicker {
    font-weight: 400 !important;
}

.hero-path-kicker,
.tech-eyebrow,
.tech-kicker {
    letter-spacing: .08em;
}

.tech-footer {
    background: #e7eef2 !important;
    color: #1f556d !important;
    border-top: 12px solid #0f4e68 !important;
    padding-top: 64px;
}

.tech-footer-grid {
    grid-template-columns: 1.1fr .8fr .8fr !important;
    gap: clamp(52px, 8vw, 120px) !important;
}

.tech-footer h3 {
    color: #1f556d !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin-bottom: 18px !important;
}

.tech-footer p,
.tech-footer a,
.tech-footer span {
    color: #1f556d !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.62 !important;
    letter-spacing: 0 !important;
}

.tech-footer a {
    margin: 13px 0 !important;
}

.tech-footer a:hover {
    color: #0d4157 !important;
}

.tech-footer-bottom {
    border-top-color: rgba(31,85,109,.16) !important;
}

@media (max-width: 991px) {
    .tech-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 38px !important;
    }
    .tech-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .hero-path-copy h1 {
        font-size: clamp(31px, 10vw, 40px) !important;
    }
    .hero-path strong {
        font-size: clamp(28px, 9vw, 38px) !important;
    }
    .tech-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .tech-footer h3 {
        font-size: 18px !important;
    }
    .tech-footer p,
    .tech-footer a,
    .tech-footer span {
        font-size: 16px !important;
    }
}

/* Home critical nav and hero rules migrated from the layout. */
body.tech-home-page { background: #f7f7f4; }
body.tech-home-page .tech-nav:not(.is-scrolled) {
    background: #ffffff !important;
    border-bottom-color: rgba(125, 217, 255, .22) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .22) !important;
}
body.tech-home-page .tech-nav.is-scrolled {
    background: #ffffff !important;
    border-bottom-color: #e1e8ed !important;
    box-shadow: 0 12px 30px rgba(17, 69, 101, .12) !important;
    backdrop-filter: blur(18px);
}
body.tech-home-page .tech-nav .tech-logo-dark { display: block !important; }
body.tech-home-page .tech-nav .tech-logo-light { display: none !important; }
body.tech-home-page .tech-nav .tech-links > a,
body.tech-home-page .tech-nav .tech-dropdown > button { color: #242824 !important; }
body.tech-home-page .mixed-hero {
    min-height: 100vh !important;
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100svh !important;
}
@media (min-width: 1440px) {
    body.tech-home-page .mixed-hero { height: 100svh !important; min-height: 100svh !important; }
}

/* Home scroll reveal rules migrated from the home Blade. */
.tech-home-page.is-scroll-reveal-ready main > .tech-section,
.tech-home-page.is-scroll-reveal-ready main > .tech-band {
    opacity: 0;
    transform: translate3d(0, 72px, 0) scale(.985);
    transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.tech-home-page.is-scroll-reveal-ready main > .tech-section.is-section-visible,
.tech-home-page.is-scroll-reveal-ready main > .tech-band.is-section-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .tech-home-page.is-scroll-reveal-ready main > .tech-section,
    .tech-home-page.is-scroll-reveal-ready main > .tech-band {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
