/* Source module 00 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Roboto:wght@300;400;500;600;700;800&display=swap');

:root {
    --tech-ink: #101827;
    --tech-muted: #5d697a;
    --tech-line: #dce5ef;
    --tech-soft: #f5f9fd;
    --tech-blue: #246bfe;
    --tech-violet: #7247d8;
    --tech-teal: #11a594;
    --tech-orange: #f08b2b;
    --tech-dark: #0d1424;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.tech-body {
    margin: 0;
    background: #ffffff;
    color: var(--tech-ink);
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}
.tech-container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.tech-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px max(20px, calc((100vw - 1160px) / 2));
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(220,229,239,.9);
    box-shadow: 0 12px 40px rgba(16,24,39,.08);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, padding .25s ease;
}
.tech-nav.is-scrolled { box-shadow: 0 14px 46px rgba(16,24,39,.12); padding-top: 10px; padding-bottom: 10px; }
.tech-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--tech-ink); text-decoration: none; }
.tech-brand:hover { color: var(--tech-ink); text-decoration: none; }
.tech-brand-mark {
    width: 38px; height: 38px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--tech-blue), var(--tech-violet));
    color: white; font-weight: 900; box-shadow: 0 14px 32px rgba(36,107,254,.24);
}
.tech-brand strong { display: block; font-size: 18px; line-height: 1.05; }
.tech-brand small { display: block; color: var(--tech-muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tech-links { display: flex; align-items: center; gap: 28px; }
.tech-links a { color: #243047; text-decoration: none; font-size: 14px; font-weight: 800; }
.tech-links a:hover { color: var(--tech-blue); text-decoration: none; }
.tech-nav-cta {
    color: white !important;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tech-blue), var(--tech-violet));
    box-shadow: 0 12px 28px rgba(36,107,254,.2);
}
.tech-menu-toggle { display: none; border: 0; background: white; color: var(--tech-ink); width: 42px; height: 42px; border-radius: 10px; box-shadow: 0 12px 30px rgba(16,24,39,.1); }
.tech-hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 118px 0 70px; overflow: hidden; }
.tech-hero-media, .tech-hero-media img, .tech-hero-overlay { position: absolute; inset: 0; }
.tech-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04); }
.tech-hero-overlay { background: linear-gradient(90deg, rgba(5,13,29,.92), rgba(10,28,58,.74) 48%, rgba(255,255,255,.08)); }
.tech-hero-content { position: relative; z-index: 1; color: white; max-width: 1160px; }
.tech-eyebrow, .tech-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--tech-blue); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
}
.tech-hero .tech-eyebrow { color: #9fd2ff; }
.tech-hero h1 { max-width: 820px; font-size: clamp(46px, 8vw, 98px); line-height: .96; letter-spacing: 0; font-weight: 900; margin: 22px 0; }
.tech-hero p { max-width: 650px; color: rgba(255,255,255,.78); font-size: clamp(17px, 2vw, 21px); margin-bottom: 34px; }
.tech-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.tech-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 50px; padding: 13px 22px; border-radius: 999px;
    font-weight: 800; text-decoration: none; border: 0; cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tech-button:hover { transform: translateY(-2px); text-decoration: none; }
.tech-button-primary { color: white; background: linear-gradient(135deg, var(--tech-blue), var(--tech-violet)); box-shadow: 0 18px 38px rgba(36,107,254,.3); }
.tech-button-secondary { color: white; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.tech-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 58px; color: rgba(255,255,255,.74); }
.tech-proof strong { display: inline-block; color: white; font-size: 30px; line-height: 1; margin-right: 3px; }
.tech-section { padding: 96px 0; }
.tech-section-head { max-width: 650px; margin-bottom: 42px; }
.tech-section-head h2, .tech-band h2, .tech-cta h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.02; margin: 12px 0 16px; font-weight: 900; }
.tech-section-head p, .tech-cta p { color: var(--tech-muted); font-size: 18px; }
.tech-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tech-service-card {
    padding: 30px; border: 1px solid var(--tech-line); border-radius: 8px;
    background: linear-gradient(180deg, white, #fbfdff); min-height: 230px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tech-service-card:hover { transform: translateY(-6px); border-color: rgba(36,107,254,.32); box-shadow: 0 22px 44px rgba(16,24,39,.09); }
.tech-service-card i, .tech-service-icon {
    width: 48px; height: 48px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(36,107,254,.11), rgba(17,165,148,.12)); color: var(--tech-blue); font-size: 22px;
}
.tech-service-card h3 { margin: 22px 0 10px; font-weight: 900; font-size: 20px; }
.tech-service-card p, .tech-service-detail p, .tech-process-item p, .tech-values p, .tech-blog-card p, .tech-case-body p { color: var(--tech-muted); }
.tech-center { text-align: center; margin-top: 34px; }
.tech-link { display: inline-flex; align-items: center; gap: 8px; color: var(--tech-blue); font-weight: 900; text-decoration: none; }
.tech-link:hover { color: var(--tech-violet); text-decoration: none; }
.tech-band { padding: 92px 0; background: var(--tech-dark); color: white; position: relative; overflow: hidden; }
.tech-band:before { content: ""; position: absolute; inset: auto -10% -40% auto; width: 520px; height: 520px; background: radial-gradient(circle, rgba(17,165,148,.22), transparent 62%); }
.tech-band-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.tech-band .tech-kicker { color: #83d4ff; }
.tech-process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tech-process-item { padding: 26px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.045); }
.tech-process-item strong { color: #83d4ff; font-size: 32px; }
.tech-process-item h3 { margin: 16px 0 8px; font-weight: 900; }
.tech-cta { text-align: center; padding: 70px 30px; border-radius: 8px; background: linear-gradient(135deg, #f4f9ff, #f7f3ff 60%, #f4fffd); border: 1px solid var(--tech-line); }
.tech-page-hero { padding: 150px 0 70px; background: linear-gradient(135deg, #f7fbff, #f7f3ff 56%, #f3fffb); }
.tech-page-hero h1 { max-width: 860px; font-size: clamp(42px, 7vw, 78px); line-height: 1; font-weight: 900; margin: 14px 0 18px; }
.tech-page-hero p { max-width: 710px; color: var(--tech-muted); font-size: 19px; }
.tech-services-list .tech-container { display: grid; gap: 22px; }
.tech-service-detail { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 34px; border: 1px solid var(--tech-line); border-radius: 8px; background: white; }
.tech-service-detail span { display: inline-flex; margin-bottom: 8px; color: var(--tech-blue); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.tech-service-detail h2 { font-size: clamp(25px, 3vw, 34px); font-weight: 900; margin: 0 0 10px; }
.tech-service-detail ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; list-style: none; padding: 0; margin: 22px 0 0; }
.tech-service-detail li { color: #344255; font-weight: 700; }
.tech-service-detail li i { color: var(--tech-teal); margin-right: 8px; }
.tech-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tech-timeline div { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.045); }
.tech-timeline strong { display: block; color: #83d4ff; font-size: 30px; }
.tech-timeline span { font-weight: 900; }
.tech-case-list { display: grid; gap: 22px; }
.tech-case-card { display: grid; grid-template-columns: 310px 1fr; border: 1px solid var(--tech-line); border-radius: 8px; overflow: hidden; background: white; }
.tech-case-panel { padding: 30px; color: white; background: linear-gradient(135deg, var(--tech-blue), var(--tech-violet)); }
.tech-case-panel span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tech-case-panel h2 { margin: 14px 0 24px; font-size: 25px; font-weight: 900; line-height: 1.08; }
.tech-case-panel small { font-weight: 900; }
.tech-case-body { padding: 30px; }
.tech-case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
.tech-case-metrics strong { padding: 12px; border-radius: 8px; background: var(--tech-soft); font-size: 13px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tags span { padding: 7px 10px; border-radius: 999px; background: #edf3f9; color: #405064; font-size: 12px; font-weight: 800; }
.tech-about-grid { display: grid; grid-template-columns: 1fr 430px; gap: 60px; align-items: center; }
.tech-orbit { min-height: 430px; position: relative; border-radius: 8px; border: 1px solid rgba(36,107,254,.16); background: rgba(255,255,255,.65); box-shadow: 0 24px 60px rgba(16,24,39,.09); display: flex; align-items: center; justify-content: center; }
.tech-orbit i { width: 120px; height: 120px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 52px; background: linear-gradient(135deg, var(--tech-blue), var(--tech-violet)); animation: techPulse 3s ease-in-out infinite; }
.tech-orbit span { position: absolute; padding: 9px 13px; border-radius: 999px; background: white; color: #314258; box-shadow: 0 12px 28px rgba(16,24,39,.1); font-weight: 900; font-size: 12px; }
.tech-orbit span:nth-child(1) { top: 42px; left: 34px; }
.tech-orbit span:nth-child(2) { top: 54px; right: 32px; }
.tech-orbit span:nth-child(3) { bottom: 48px; left: 32px; }
.tech-orbit span:nth-child(4) { bottom: 42px; right: 36px; }
.tech-values, .tech-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tech-values article, .tech-blog-card { border: 1px solid var(--tech-line); border-radius: 8px; padding: 28px; background: white; }
.tech-values article:first-child { grid-column: span 2; }
.tech-values h3, .tech-blog-card h2 { font-size: 22px; font-weight: 900; margin: 0 0 10px; }
.tech-blog-card span { color: var(--tech-blue); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.tech-blog-card a { color: var(--tech-blue); font-weight: 900; text-decoration: none; }
.tech-contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: 34px; align-items: start; }
.tech-contact-info { display: grid; gap: 14px; }
.tech-contact-info div { padding: 20px; border: 1px solid var(--tech-line); border-radius: 8px; background: white; }
.tech-contact-info i { color: var(--tech-blue); margin-right: 10px; }
.tech-contact-info span { display: block; color: var(--tech-muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tech-contact-info strong { display: block; margin-top: 3px; }
.tech-contact-info p { padding: 22px; color: white; border-radius: 8px; background: linear-gradient(135deg, var(--tech-blue), var(--tech-violet)); }
.tech-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 30px; border: 1px solid var(--tech-line); border-radius: 8px; background: white; }
.tech-form label { color: #344255; font-weight: 800; }
.tech-form input, .tech-form select, .tech-form textarea { width: 100%; margin-top: 7px; border: 1px solid var(--tech-line); border-radius: 8px; padding: 13px 14px; font: inherit; color: var(--tech-ink); background: #fbfdff; }
.tech-form input:focus, .tech-form select:focus, .tech-form textarea:focus { outline: 3px solid rgba(36,107,254,.14); border-color: var(--tech-blue); }
.tech-form-wide { grid-column: 1 / -1; }
.tech-footer { background: #080e19; color: #aab5c4; padding: 62px 0 22px; }
.tech-footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 60px; }
.tech-footer-brand { color: white; margin-bottom: 18px; }
.tech-footer p { max-width: 430px; }
.tech-footer h3 { color: white; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.tech-footer a { display: block; color: #aab5c4; text-decoration: none; margin: 9px 0; }
.tech-footer a:hover { color: white; text-decoration: none; }
.tech-footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; }
.tech-footer-bottom a { display: inline; margin: 0; }
.tech-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.tech-reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes techPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

@media (max-width: 991px) {
    .tech-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .tech-links { position: absolute; top: calc(100% + 8px); left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 8px; background: white; box-shadow: 0 18px 48px rgba(16,24,39,.16); }
    .tech-links.is-open { display: flex; }
    .tech-links a { padding: 13px 12px; }
    .tech-nav-cta { text-align: center; margin-top: 6px; }
    .tech-service-grid, .tech-band-grid, .tech-case-card, .tech-about-grid, .tech-contact-grid, .tech-footer-grid { grid-template-columns: 1fr; }
    .tech-process, .tech-values, .tech-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-case-metrics, .tech-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .tech-container { width: min(100% - 28px, 1160px); }
    .tech-nav { padding-left: 14px; padding-right: 14px; }
    .tech-brand small { display: none; }
    .tech-hero { min-height: auto; padding-top: 118px; }
    .tech-hero h1 { font-size: 48px; }
    .tech-actions .tech-button { width: 100%; }
    .tech-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .tech-section, .tech-band { padding: 68px 0; }
    .tech-service-grid, .tech-process, .tech-service-detail, .tech-service-detail ul, .tech-case-metrics, .tech-timeline, .tech-values, .tech-blog-grid, .tech-form { grid-template-columns: 1fr; }
    .tech-service-detail { padding: 24px; }
    .tech-values article:first-child { grid-column: auto; }
    .tech-orbit { min-height: 340px; }
    .tech-footer-bottom { flex-direction: column; }
}

.tech-dropdown {
    position: relative;
}
.tech-dropdown > button {
    border: 0;
    background: transparent;
    color: #243047;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.tech-dropdown > button i {
    font-size: 11px;
    transition: transform .2s ease;
}
.tech-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    width: 245px;
    padding: 10px;
    border: 1px solid rgba(220,229,239,.95);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 55px rgba(16,24,39,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.tech-dropdown:hover .tech-dropdown-menu,
.tech-dropdown:focus-within .tech-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tech-dropdown:hover > button i,
.tech-dropdown:focus-within > button i {
    transform: rotate(180deg);
}
.tech-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    color: #243047;
    margin: 0;
}
.tech-dropdown-menu a:hover {
    background: #f3f8ff;
    color: var(--tech-blue);
}
.tech-dropdown-menu a i {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-blue);
    background: rgba(36,107,254,.1);
}
.mixed-hero .tech-hero-overlay {
    background: linear-gradient(90deg, rgba(7,13,26,.92), rgba(12,34,54,.74) 52%, rgba(8,25,44,.2));
}
.home-service-choice {
    background: linear-gradient(135deg, #f7fbff, #f5fffb);
}
.home-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.home-choice-panel {
    display: block;
    min-height: 360px;
    padding: 36px;
    border: 1px solid var(--tech-line);
    border-radius: 8px;
    background: #ffffff;
    text-decoration: none;
    color: var(--tech-ink);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-choice-panel:hover {
    color: var(--tech-ink);
    text-decoration: none;
    transform: translateY(-6px);
    border-color: rgba(36,107,254,.32);
    box-shadow: 0 26px 58px rgba(16,24,39,.12);
}
.home-choice-icon {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-teal);
    background: rgba(17,165,148,.12);
    font-size: 24px;
    margin-bottom: 34px;
}
.home-choice-icon.tech {
    color: var(--tech-blue);
    background: rgba(36,107,254,.11);
}
.home-choice-panel small {
    display: block;
    color: var(--tech-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.home-choice-panel h3 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 14px;
}
.home-choice-panel p {
    color: var(--tech-muted);
    font-size: 17px;
    margin-bottom: 28px;
}
.home-choice-panel strong {
    color: var(--tech-blue);
}
.compact-cta-section {
    padding-top: 78px;
}
.service-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
}
.service-page-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(16,24,39,.12);
}
.staffing-icon {
    color: var(--tech-teal);
    background: linear-gradient(135deg, rgba(17,165,148,.12), rgba(240,139,43,.12));
}
.staffing-domain-band .tech-kicker {
    color: #9ff2dd;
}
.domain-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.domain-chip-grid span {
    padding: 12px 14px;
    border-radius: 999px;
    color: white;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 800;
}

@media (max-width: 991px) {
    .tech-dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        width: auto;
        box-shadow: none;
        border: 0;
        padding: 4px 0 8px;
        background: transparent;
    }
    .tech-dropdown > button {
        padding: 13px 12px;
    }
    .home-choice-grid,
    .service-page-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-choice-panel {
        min-height: auto;
        padding: 26px;
    }
    .service-page-image img {
        height: 260px;
    }
}
.tech-brand-logo img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 190px;
    object-fit: contain;
}
.tech-footer-brand.tech-brand-logo img {
    height: 58px;
    max-width: 210px;
    filter: brightness(0) invert(1);
}
.about-hero {
    background: linear-gradient(135deg, #f7fbff, #f6fffb);
}
.about-hero-grid,
.about-story-grid,
.about-domains-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-hero-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(16,24,39,.12);
}
.about-story-grid h2,
.about-domains-grid h2 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.03;
    font-weight: 900;
    margin: 12px 0 0;
}
.about-story-copy p,
.about-vision-copy p,
.about-domains-grid p {
    color: var(--tech-muted);
    font-size: 18px;
}
.about-lines-section {
    background: #f8fbff;
}
.about-lines-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.about-line-panel {
    padding: 34px;
    border: 1px solid var(--tech-line);
    border-radius: 8px;
    background: #fff;
}
.about-line-panel small {
    display: block;
    color: var(--tech-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about-line-panel h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    font-weight: 900;
    margin: 0 0 14px;
}
.about-line-panel p {
    color: var(--tech-muted);
    font-size: 17px;
}
.about-line-icon {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-teal);
    background: rgba(17,165,148,.12);
    font-size: 24px;
    margin-bottom: 30px;
}
.about-line-panel.technology .about-line-icon {
    color: var(--tech-blue);
    background: rgba(36,107,254,.11);
}
.about-line-panel ul,
.about-principle-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 10px;
}
.about-line-panel li {
    color: #344255;
    font-weight: 800;
}
.about-line-panel li i {
    color: var(--tech-teal);
    margin-right: 9px;
}
.about-vision-band .tech-kicker {
    color: #9ff2dd;
}
.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.about-principle-card {
    padding: 28px;
    border: 1px solid var(--tech-line);
    border-radius: 8px;
    background: #fff;
}
.about-principle-card i {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-blue);
    background: rgba(36,107,254,.1);
    font-size: 20px;
    margin-bottom: 22px;
}
.about-principle-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 10px;
}
.about-principle-card p {
    color: var(--tech-muted);
}
.about-domains-section {
    background: linear-gradient(135deg, #f7fbff, #f5fffb);
}
.domain-chip-grid.light span {
    color: #243047;
    background: #fff;
    border: 1px solid var(--tech-line);
}

@media (max-width: 991px) {
    .about-hero-grid,
    .about-story-grid,
    .about-lines-grid,
    .about-domains-grid {
        grid-template-columns: 1fr;
    }
    .about-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tech-brand-logo img {
        height: 42px;
        max-width: 150px;
    }
    .about-hero-image img {
        height: 300px;
    }
    .about-principles-grid {
        grid-template-columns: 1fr;
    }
}
.tech-brand-logo {
    display: inline-flex;
    width: max-content;
    max-width: max-content;
    flex: 0 0 auto;
    line-height: 0;
}
.tech-brand-logo img {
    display: block;
    width: auto;
    height: 62px;
    max-width: 235px;
    object-fit: contain;
}
.tech-footer .tech-brand-logo {
    display: inline-flex;
    width: max-content;
    max-width: max-content;
    margin-bottom: 18px;
}
.tech-footer-brand.tech-brand-logo img {
    height: 68px;
    max-width: 255px;
    filter: none;
}

@media (max-width: 640px) {
    .tech-brand-logo img {
        height: 50px;
        max-width: 190px;
    }
    .tech-footer-brand.tech-brand-logo img {
        height: 56px;
        max-width: 210px;
    }
}
.tech-footer .tech-brand-logo {
    display: inline-flex;
    width: fit-content;
    max-width: fit-content;
    inline-size: fit-content;
    align-self: flex-start;
    margin: 0 0 18px;
}
.tech-footer .tech-brand-logo img {
    pointer-events: none;
}

/* Shared platform and common page rules migrated from previous global bundle. */
/* Source module 38 */
/* 2026 platform refresh — inspired by the confident, grid-led xtw visual language. */
:root { --tech-ink: #f1f4ec; --tech-muted: #a9b0a5; --tech-line: rgba(239,247,229,.16); --tech-soft: #111511; --tech-blue: #d5ff37; --tech-violet: #d5ff37; --tech-teal: #d5ff37; --tech-dark: #10130f; }
body.tech-body { background: #10130f; color: var(--tech-ink); font-family: Inter, Arial, sans-serif; }
body.tech-body::before { content: ""; position: fixed; inset: 0; z-index: -1; opacity: .38; pointer-events: none; background-image: linear-gradient(rgba(238,247,224,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(238,247,224,.045) 1px, transparent 1px); background-size: 72px 72px; }
.tech-container { width: min(1240px, calc(100% - 48px)); }
.tech-nav, .tech-body .tech-nav { padding: 18px max(24px, calc((100vw - 1240px) / 2)); background: rgba(16,19,15,.86) !important; border-bottom: 1px solid var(--tech-line) !important; box-shadow: none !important; }
.tech-nav.is-scrolled { padding-top: 14px; padding-bottom: 14px; }
.tech-nav .tech-brand-logo img { height: 48px !important; max-width: 180px !important; filter: brightness(0) invert(1); }
.tech-links { gap: 25px; }.tech-links a, .tech-links .tech-dropdown > button { color: #e9ede4 !important; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.tech-links a:hover { color: var(--tech-blue) !important; }.tech-nav-cta, .tech-button-primary { color: #10130f !important; background: var(--tech-blue) !important; box-shadow: none !important; border-radius: 2px !important; }
.tech-nav-cta { padding: 12px 16px; }.tech-dropdown-menu { background: #1a1f18; border: 1px solid var(--tech-line); }.tech-dropdown-menu a { color: white !important; }
.tech-hero, .tech-page-hero { background: #10130f !important; }.tech-page-hero { padding: 190px 0 92px; border-bottom: 1px solid var(--tech-line); }
.tech-page-hero h1, .tech-hero h1, .tech-section-head h2, .tech-band h2, .tech-cta h2 { color: #f4f6ef; font-family: Inter, Arial, sans-serif; font-weight: 600; letter-spacing: -.065em; }
.tech-page-hero h1 { max-width: 980px; font-size: clamp(50px, 7vw, 96px); }.tech-page-hero p, .tech-section-head p { color: var(--tech-muted); max-width: 660px; font-size: 18px; }
.tech-kicker, .tech-eyebrow { color: var(--tech-blue) !important; font-size: 11px; letter-spacing: .13em; }.tech-section { padding: 110px 0; }.tech-section-head { margin-bottom: 54px; }
.tech-button { min-height: 48px; padding: 12px 18px; border-radius: 2px; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }.tech-button-secondary { color: #edf1e8; border-color: var(--tech-line); background: transparent; border-radius: 2px; }.tech-button:hover { transform: translateY(-2px); }
.xw-xtw-hero { min-height: 100svh !important; padding: 185px 0 70px; overflow: hidden; border-bottom: 1px solid var(--tech-line); background: radial-gradient(circle at 80% 46%, rgba(213,255,55,.14), transparent 0 28%), #10130f !important; }
.xw-xtw-hero__content { position: relative; z-index: 2; }.xw-xtw-hero h1 { max-width: 1040px; margin: 22px 0 26px; font-size: clamp(55px, 8vw, 125px); line-height: .91; }.xw-xtw-hero p { max-width: 640px; color: #b9c0b3; font-size: clamp(18px, 2vw, 22px); }
.xw-orbit { position: absolute; right: -11vw; top: 50%; width: min(57vw, 820px); aspect-ratio: 1; border: 1px solid rgba(213,255,55,.34); border-radius: 50%; transform: translateY(-44%); animation: xwOrbitInward 8s cubic-bezier(.42, 0, .2, 1) infinite alternate; }.xw-orbit::before, .xw-orbit::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }.xw-orbit::before { inset: 11%; }.xw-orbit::after { inset: 25%; }.xw-orbit-two { right: 4vw; top: 78%; width: 130px; border-color: rgba(237,241,232,.25); animation: xwOrbitInwardSmall 5s cubic-bezier(.42, 0, .2, 1) infinite alternate; }
@keyframes xwOrbitInward { from { transform: translateY(-44%) scale(1); opacity: .72; } to { transform: translateY(-44%) scale(.58); opacity: 1; } }
@keyframes xwOrbitInwardSmall { from { transform: translateY(-44%) scale(1); opacity: .35; } to { transform: translateY(-44%) scale(.45); opacity: .95; } }
.xw-hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 970px; margin-top: 105px; border-top: 1px solid var(--tech-line); }.xw-hero-metrics div { min-height: 100px; padding: 18px 24px 0 0; border-right: 1px solid var(--tech-line); }.xw-hero-metrics div + div { padding-left: 24px; }.xw-hero-metrics strong, .xw-hero-metrics span { display: block; }.xw-hero-metrics strong { font-size: 15px; font-weight: 600; }.xw-hero-metrics span { margin-top: 7px; color: var(--tech-muted); font-size: 12px; }
.xw-pillar-section { background: #f0f2eb; color: #10130f; }.xw-pillar-section .tech-section-head h2 { color: #10130f; max-width: 790px; }.xw-pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #bfc5b9; border-left: 1px solid #bfc5b9; }.xw-pillar { min-height: 375px; padding: 34px; color: #10130f; text-decoration: none; border-right: 1px solid #bfc5b9; border-bottom: 1px solid #bfc5b9; transition: background .25s ease; }.xw-pillar:hover { color: #10130f; background: var(--tech-blue); text-decoration: none; }.xw-pillar > span { color: #566151; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }.xw-pillar h3 { max-width: 500px; margin: 60px 0 14px; font-size: clamp(27px, 3.5vw, 46px); letter-spacing: -.05em; line-height: .98; }.xw-pillar p { max-width: 470px; color: #4c5649; }.xw-pillar b { display: block; margin-top: 46px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.tech-band { background: #171c15; border-bottom: 1px solid var(--tech-line); }.tech-band .tech-kicker, .tech-process-item strong { color: var(--tech-blue); }.tech-band-grid { gap: 70px; }.tech-process-item { border-radius: 0; background: transparent; padding: 25px; }.tech-process-item h3 { font-size: 19px; }.tech-process-item p { color: #aeb7a8; }
.tech-service-detail, .tech-case-card { border-color: var(--tech-line); background: transparent; border-radius: 0; }.tech-service-detail:hover { background: #171c15; }.tech-service-detail > div > span, .tech-case-panel > span { color: var(--tech-blue); }.tech-service-detail h2, .tech-case-panel h2 { color: #f1f4ec; letter-spacing: -.04em; }.tech-service-detail p, .tech-service-detail li, .tech-case-body p { color: var(--tech-muted); }.tech-service-detail li i { color: var(--tech-blue); }.tech-service-icon, .tech-service-card i { border-radius: 0; background: rgba(213,255,55,.12); color: var(--tech-blue); }
.tech-case-panel { background: #1a2018; }.tech-case-metrics strong, .tech-tags span, .domain-chip-grid span { border-radius: 0; border-color: var(--tech-line); background: transparent; color: #eaf0e3; }.tech-contact-info > div, .tech-form { border-color: var(--tech-line); border-radius: 0; background: #171c15; }.tech-contact-info i { color: var(--tech-blue); }.tech-contact-info span, .tech-contact-info p, .tech-form label { color: var(--tech-muted); }.tech-contact-info strong { color: #f1f4ec; }.tech-form input, .tech-form textarea, .tech-form select { border-radius: 0; border-color: var(--tech-line); background: #10130f; color: #f1f4ec; }
.tech-footer { padding: 80px 0 26px; color: #d9e0d2; background: #0a0c09; border-top: 1px solid var(--tech-line); }.tech-footer p, .tech-footer a, .tech-footer-bottom { color: #9ca596; }.tech-footer h3 { color: var(--tech-blue); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }.tech-footer .tech-footer-brand.tech-brand-logo img { height: 62px !important; filter: brightness(0) invert(1); }

/* Source module 39 */
/* Bring the existing detailed About page into the same platform system. */
.xw-about-page { background: #10130f !important; color: #f1f4ec; }.xw-about-page .xw-about-hero, .xw-about-page .xw-about-cta { background: #10130f !important; border-bottom: 1px solid var(--tech-line); }.xw-about-page .xw-about-hero h1, .xw-about-page .xw-about-section h2, .xw-about-page .xw-about-cta h2 { color: #f1f4ec; font-family: Inter, Arial, sans-serif !important; letter-spacing: -.06em; }.xw-about-page .xw-about-hero p, .xw-about-page .xw-about-copy p, .xw-about-page .xw-about-service-card p, .xw-about-page .xw-about-lead { color: var(--tech-muted); }.xw-about-page .xw-about-muted, .xw-about-page .xw-about-muted-bottom { background: #171c15; }.xw-about-page .xw-about-stat, .xw-about-page .xw-about-service-card, .xw-about-page .xw-about-team-card, .xw-about-page .xw-about-quote { background: #171c15; border-color: var(--tech-line); border-radius: 0; box-shadow: none; }.xw-about-page .xw-about-stat strong, .xw-about-page .xw-about-service-card h3, .xw-about-page .xw-about-team-card h3 { color: #f1f4ec; }.xw-about-page .xw-about-pill, .xw-about-page .xw-about-kicker { color: var(--tech-blue); background: transparent; border-color: var(--tech-line); }.xw-about-page .xw-about-cta-actions > a { border-radius: 0; color: #10130f; background: var(--tech-blue); box-shadow: none; }.xw-about-page .xw-about-contact-grid span, .xw-about-page .xw-about-industries > span { background: transparent; border-color: var(--tech-line); color: #edf1e8; }
@media (max-width: 767px) { .tech-container { width: min(100% - 32px, 1240px); }.tech-links { background: #171c15; border: 1px solid var(--tech-line); }.xw-xtw-hero { padding-top: 155px; }.xw-hero-metrics, .xw-pillar-grid { grid-template-columns: 1fr; }.xw-hero-metrics div, .xw-hero-metrics div + div { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--tech-line); }.xw-pillar { min-height: 300px; }.xw-orbit { right: -54vw; top: 44%; width: 145vw; opacity: .55; }.tech-page-hero { padding: 150px 0 65px; }.tech-section { padding: 74px 0; } }
@media (prefers-reduced-motion: reduce) { .xw-orbit, .xw-orbit-two { animation: none; } }

/* Source module 40 */
/* Light brand system */
:root { --tech-ink: #20251f; --tech-muted: #687067; --tech-line: #dedfd9; --tech-soft: #f7f7f4; --tech-blue: #2474d8; --tech-violet: #2474d8; --tech-teal: #2474d8; --tech-dark: #20251f; }
body.tech-body, .xw-light-page { background: #f7f7f4; color: #20251f; } body.tech-body::before { opacity: .42; background-image: linear-gradient(rgba(32,37,31,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(32,37,31,.035) 1px, transparent 1px); }
.tech-nav, .tech-body .tech-nav { top: 16px !important; inset: 16px 18px auto !important; padding: 11px 20px; border: 1px solid #e1e2dd !important; border-radius: 14px; background: rgba(255,255,255,.94) !important; box-shadow: 0 12px 35px rgba(32,37,31,.08) !important; }
.tech-nav .tech-brand-logo img, .tech-footer .tech-footer-brand.tech-brand-logo img { filter: none !important; }.tech-nav .tech-brand-logo img { height: 44px !important; }.tech-links { gap: 18px; }.tech-links a, .tech-links .tech-dropdown > button { color: #363b35 !important; font-size: 11px; }.tech-links a:hover { color: #2474d8 !important; }.tech-nav-cta, .tech-button-primary { color: #fff !important; background: #2474d8 !important; }.tech-nav-cta { border-radius: 8px !important; }
.tech-page-hero, .tech-hero, .xw-xtw-hero { background: #f7f7f4 !important; }.tech-page-hero { padding-top: 190px; border-bottom-color: var(--tech-line); }.tech-page-hero h1, .tech-hero h1, .tech-section-head h2, .tech-band h2, .tech-cta h2 { color: #20251f; }.tech-page-hero p, .tech-section-head p, .xw-xtw-hero p { color: var(--tech-muted); }.tech-kicker, .tech-eyebrow { color: #2474d8 !important; }.tech-button-secondary { color: #20251f; border-color: #bfc3bb; }
.xw-xtw-hero { background: radial-gradient(circle at 80% 46%, rgba(36,116,216,.11), transparent 0 30%), #f7f7f4 !important; }.xw-orbit { border-color: rgba(36,116,216,.34); }.xw-orbit-two { border-color: rgba(32,37,31,.25); }.xw-hero-metrics { border-color: var(--tech-line); }.xw-hero-metrics div { border-color: var(--tech-line); }.xw-hero-metrics strong { color: #20251f; }
.xw-pillar-section { background: #20251f; color: #fff; }.xw-pillar-section .tech-section-head h2 { color: #fff; }.xw-pillar { color: #fff; border-color: rgba(255,255,255,.2); }.xw-pillar:hover { color: #20251f; background: #efedf1; }.xw-pillar > span, .xw-pillar p { color: #b9bdb6; }.xw-pillar:hover > span, .xw-pillar:hover p { color: #535a51; }
.tech-band, .xw-culture-band, .xw-alliance-band { background: #ecece7; color: #20251f; border-color: var(--tech-line); }.tech-band h2, .xw-culture-band h2, .xw-alliance-band h2 { color: #20251f; }.tech-process-item { border-color: var(--tech-line); }.tech-process-item p { color: var(--tech-muted); }.tech-band .tech-kicker, .tech-process-item strong { color: #2474d8; }
.tech-service-detail, .tech-case-card { border-color: var(--tech-line); }.tech-service-detail:hover { background: #fff; }.tech-service-detail h2, .tech-case-panel h2 { color: #20251f; }.tech-service-detail p, .tech-service-detail li, .tech-case-body p { color: var(--tech-muted); }.tech-service-detail li i, .tech-service-icon, .tech-service-card i { color: #2474d8; }.tech-service-icon, .tech-service-card i { background: #e8f1ff; }.tech-case-panel, .tech-contact-info > div, .tech-form { background: #fff; }.tech-contact-info strong { color: #20251f; }.tech-form input, .tech-form textarea, .tech-form select { color: #20251f; background: #fff; border-color: var(--tech-line); }
.tech-footer { background: #fff; color: #20251f; border-color: var(--tech-line); }.tech-footer p, .tech-footer a, .tech-footer-bottom { color: #687067; }.tech-footer h3 { color: #2474d8; }.tech-footer-legal { display: flex; gap: 18px; }.tech-footer-bottom { display: flex; justify-content: space-between; gap: 20px; }.tech-footer .tech-footer-brand.tech-brand-logo img { filter: none !important; }
.xw-cookie-consent { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: min(360px, calc(100% - 44px)); padding: 22px; border: 1px solid var(--tech-line); border-radius: 12px; background: #fff; box-shadow: 0 18px 45px rgba(32,37,31,.16); }.xw-cookie-consent strong { font-size: 16px; }.xw-cookie-consent p { color: var(--tech-muted); font-size: 13px; }.xw-cookie-consent div { display: flex; align-items: center; gap: 16px; }.xw-cookie-consent button { padding: 9px 15px; border: 0; border-radius: 6px; background: #2474d8; color: #fff; font-weight: 800; }.xw-cookie-consent a { color: #2474d8; font-weight: 700; font-size: 13px; }
.xw-light-hero { background: #fff !important; }.xw-career-intro { display: flex; justify-content: space-between; gap: 25px; align-items: end; margin-bottom: 34px; }.xw-career-intro h2, .xw-partner-head h2, .xw-hiring-section h2 { margin: 8px 0 0; font-size: clamp(34px,4vw,58px); letter-spacing: -.055em; }.xw-job-filters { display: flex; flex-wrap: wrap; gap: 10px; }.xw-job-filters select { padding: 11px 30px 11px 12px; border: 1px solid var(--tech-line); border-radius: 7px; background: #fff; color: #353a34; font-size: 13px; }.xw-job-list { border-top: 1px solid var(--tech-line); }.xw-job-card { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--tech-line); }.xw-job-card > div > span, .xw-partner-card > span { color: #2474d8; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.xw-job-card h3 { margin: 10px 0; font-size: 28px; letter-spacing: -.04em; }.xw-job-card p { max-width: 630px; margin: 0; color: var(--tech-muted); }.xw-job-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }.xw-job-meta small { color: var(--tech-muted); }.xw-job-meta a { margin-top: auto; color: #2474d8; font-size: 12px; font-weight: 800; text-transform: uppercase; text-decoration: none; }
.xw-culture-band { padding: 100px 0; }.xw-culture-band > .tech-container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }.xw-culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }.xw-culture-grid article { padding: 22px; background: #fff; border: 1px solid var(--tech-line); }.xw-culture-grid i { color: #2474d8; }.xw-culture-grid h3 { margin: 25px 0 8px; font-size: 17px; }.xw-culture-grid p { margin: 0; color: var(--tech-muted); font-size: 14px; }.xw-hiring-section { background: #fff; }.xw-benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 35px; }.xw-benefits-grid > div { padding: 28px; border: 1px solid var(--tech-line); }.xw-benefits-grid h3 { margin-top: 0; }.xw-benefits-grid li { margin: 11px 0; color: var(--tech-muted); }
.xw-partner-head { margin-bottom: 44px; }.xw-partner-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--tech-line); }.xw-partner-card { min-height: 285px; padding: 26px; border-right: 1px solid var(--tech-line); border-bottom: 1px solid var(--tech-line); background: #fff; }.xw-partner-logo { display: inline-block; min-height: 48px; margin-bottom: 42px; color: #20251f; font-size: 20px; font-weight: 800; letter-spacing: -.06em; line-height: 48px; }.xw-partner-card h3 { margin: 10px 0; font-size: 24px; letter-spacing: -.04em; }.xw-partner-card p { color: var(--tech-muted); }.xw-alliance-band { padding: 100px 0; text-align: center; }.xw-alliance-band h2 { margin: 10px 0; }.xw-alliance-band p { max-width: 600px; margin: 0 auto 25px; color: var(--tech-muted); }
.xw-partners-hero { padding-bottom: 92px; }.xw-partners-hero__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .8fr); gap: 70px; align-items: center; }.xw-partners-hero__image { margin: 0; overflow: hidden; border-radius: 12px; box-shadow: 0 22px 42px rgba(32,37,31,.13); }.xw-partners-hero__image img { display: block; width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.xw-legal-copy { max-width: 820px; }.xw-legal-copy h2 { font-size: clamp(34px,4vw,58px); letter-spacing: -.055em; }.xw-legal-copy h3 { margin-top: 34px; }.xw-legal-copy p { color: var(--tech-muted); font-size: 17px; line-height: 1.75; }.xw-sitemap-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--tech-line); }.xw-sitemap-grid a { padding: 24px; color: #20251f; border-right: 1px solid var(--tech-line); border-bottom: 1px solid var(--tech-line); text-decoration: none; font-weight: 700; }.xw-sitemap-grid a:hover { background: #e8f1ff; color: #2474d8; }
@media (max-width: 1050px) { .tech-nav { inset-inline: 10px !important; }.tech-links { gap: 10px; }.tech-links a { font-size: 10px; }.xw-partner-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) { .tech-nav, .tech-body .tech-nav { top: 8px !important; inset: 8px 8px auto !important; }.tech-menu-toggle { background: transparent; }.tech-links { background: #fff; border-color: var(--tech-line); }.tech-footer-bottom, .xw-career-intro, .xw-culture-band > .tech-container { display: block; }.tech-footer-legal { flex-wrap: wrap; margin-top: 14px; }.xw-job-card, .xw-benefits-grid { grid-template-columns: 1fr; }.xw-job-meta { margin-top: 5px; }.xw-culture-grid { grid-template-columns: 1fr; margin-top: 30px; }.xw-partner-grid, .xw-sitemap-grid { grid-template-columns: 1fr; }.xw-partner-card, .xw-sitemap-grid a { border-right: 0; } }
@media (max-width: 767px) { .xw-partners-hero__grid { grid-template-columns: 1fr; gap: 30px; }.xw-partners-hero__image img { aspect-ratio: 1.35; } }

/* Source module 41 */
/* Final navigation */
.tech-nav { min-height: 78px; }.tech-nav .tech-brand-logo img { height: 60px !important; max-width: 240px !important; }.tech-resources-dropdown > button { padding: 0; border: 0; background: transparent; }.tech-resources-dropdown .tech-dropdown-menu { min-width: 190px; border-radius: 12px; background: #fff; box-shadow: 0 18px 38px rgba(32,37,31,.12); }.tech-resources-dropdown .tech-dropdown-menu a { padding: 12px 14px; color: #343a33 !important; }.tech-footer, .tech-body .tech-footer { background: #fff !important; color: #20251f !important; border-top: 1px solid #dedfd9 !important; }.tech-footer p, .tech-footer a, .tech-footer span { color: #687067 !important; }.tech-footer h3 { color: #2474d8 !important; }.tech-footer-grid { align-items: start; }.tech-footer-bottom { border-top-color: #dedfd9 !important; }
@media (max-width: 600px) { .tech-nav .tech-brand-logo img { height: 52px !important; max-width: 205px !important; } .tech-nav { min-height: 70px; } }

/* Source module 42 */
/* Home partner motion and balanced navigation */
.tech-nav { justify-content: flex-start; }.tech-links { flex: 1; margin-left: clamp(28px, 5vw, 88px); }.tech-nav-cta { margin-left: auto; }.xw-orbit-three { left: -8vw; right: auto; top: 12%; width: min(30vw, 420px); border-color: rgba(36,116,216,.27); animation: xwOrbitInwardTop 6.5s cubic-bezier(.42,0,.2,1) infinite alternate; }.xw-orbit-three::before { inset: 16%; }.xw-orbit-three::after { inset: 32%; } @keyframes xwOrbitInwardTop { from { transform: translateY(-44%) scale(1); opacity: .28; } to { transform: translateY(-44%) scale(.46); opacity: .85; } }
.xw-partners-strip { padding: 62px 0 55px; overflow: hidden; background: #fff; border-bottom: 1px solid var(--tech-line); }.xw-partners-strip__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 25px; }.xw-partners-strip__head a { color: #2474d8; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }.xw-partner-marquee { width: 100%; overflow: hidden; }.xw-partner-marquee__track { display: flex; width: max-content; animation: xwPartnersRight 30s linear infinite; }.xw-partner-marquee__track span { display: grid; place-items: center; min-width: 220px; height: 74px; margin-right: 18px; padding: 0 30px; border: 1px solid var(--tech-line); border-radius: 10px; background: #f7f7f4; color: #30372f; font-size: 18px; font-weight: 800; letter-spacing: -.04em; }.xw-partner-marquee:hover .xw-partner-marquee__track { animation-play-state: paused; } @keyframes xwPartnersRight { from { transform: translateX(-50%); } to { transform: translateX(0); } } @media (max-width: 767px) { .tech-links { margin-left: 0; }.xw-orbit-three { left: -44vw; top: 14%; width: 100vw; }.xw-partners-strip { padding-block: 44px; }.xw-partner-marquee__track span { min-width: 180px; height: 64px; }.xw-partners-strip__head { align-items: start; flex-direction: column; } } @media (prefers-reduced-motion: reduce) { .xw-orbit-three, .xw-partner-marquee__track { animation: none; } }

/* Source module 43 */
/* Home hero: image-free animated technology field */
body.tech-home-page .xw-xtw-hero {
    isolation: isolate;
    background: #07131d !important;
}
body.tech-home-page .xw-xtw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 73% 44%, rgba(90, 205, 255, .24), transparent 0 18%),
        radial-gradient(circle at 26% 86%, rgba(76, 173, 255, .16), transparent 0 24%),
        linear-gradient(115deg, transparent 24%, rgba(112, 218, 255, .08) 48%, transparent 70%);
}
.xw-neural-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(125, 217, 255, .17) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 217, 255, .17) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .42) 30%, #000 100%);
    animation: xwGridDrift 11s linear infinite;
}
.xw-grid-glow, .xw-scanline, .xw-data-stream, .xw-signal { position: absolute; display: block; }
.xw-grid-glow {
    width: 54vw;
    height: 54vw;
    min-width: 520px;
    min-height: 520px;
    right: -8vw;
    top: 50%;
    border: 1px solid rgba(132, 224, 255, .65);
    border-radius: 50%;
    box-shadow: 0 0 52px rgba(95, 211, 255, .25), inset 0 0 70px rgba(95, 211, 255, .12);
    transform: translateY(-50%) scale(.82);
    animation: xwGridCore 5s ease-in-out infinite alternate;
}
.xw-grid-glow::before, .xw-grid-glow::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }
.xw-grid-glow::before { inset: 12%; }
.xw-grid-glow::after { inset: 29%; }
.xw-scanline {
    width: 140%;
    height: 2px;
    left: -20%;
    top: 0;
    opacity: .7;
    background: linear-gradient(90deg, transparent, #67d8ff 42%, #e4faff 50%, #67d8ff 58%, transparent);
    box-shadow: 0 0 24px #67d8ff;
    animation: xwScan 6.5s linear infinite;
}
.xw-data-stream {
    width: 52vw;
    height: 1px;
    opacity: .8;
    background: linear-gradient(90deg, transparent, #3dbfff 24%, #b6ecff 52%, transparent 76%);
    box-shadow: 0 0 18px rgba(61, 191, 255, .9);
    transform-origin: left center;
    animation: xwStream 4s linear infinite;
}
.xw-data-stream--one { top: 24%; right: -8%; transform: rotate(-28deg); animation-delay: -1.1s; }
.xw-data-stream--two { top: 60%; right: 4%; transform: rotate(18deg); animation-delay: -2.8s; }
.xw-data-stream--three { top: 84%; right: -17%; transform: rotate(-12deg); animation-delay: -3.7s; }
.xw-signal {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dff7ff;
    box-shadow: 0 0 0 5px rgba(103, 216, 255, .16), 0 0 24px 5px #67d8ff;
    animation: xwSignal 2.3s steps(2, end) infinite;
}
.xw-signal--one { top: 27%; left: 59%; animation-delay: -.4s; }
.xw-signal--two { top: 66%; left: 76%; animation-delay: -1.2s; }
.xw-signal--three { top: 42%; left: 88%; animation-delay: -1.8s; }
.xw-signal--four { top: 83%; left: 49%; background: #c7f1ff; box-shadow: 0 0 0 5px rgba(61, 191, 255, .16), 0 0 24px 5px #3dbfff; animation-delay: -.9s; }
body.tech-home-page .xw-xtw-hero__content { z-index: 1; }
body.tech-home-page .xw-xtw-hero .tech-eyebrow { color: #8cddff !important; }
body.tech-home-page .xw-xtw-hero h1 { color: #f5f8ef; max-width: 820px; font-size: clamp(46px, 6.2vw, 92px); text-shadow: 0 12px 34px rgba(0, 0, 0, .45); }
body.tech-home-page .xw-xtw-hero p { color: #c4ccc0; }
body.tech-home-page .xw-xtw-hero .tech-button-secondary { color: #f5f8ef; border-color: rgba(245, 248, 239, .42); }
body.tech-home-page .xw-xtw-hero .xw-hero-metrics { border-color: rgba(245, 248, 239, .2); }
body.tech-home-page .xw-xtw-hero .xw-hero-metrics div { border-color: rgba(245, 248, 239, .2); }
body.tech-home-page .xw-xtw-hero .xw-hero-metrics strong { color: #f5f8ef; }
@keyframes xwGridDrift { to { background-position: 56px 56px; } }
@keyframes xwGridCore { from { transform: translateY(-50%) scale(.76); opacity: .4; } to { transform: translateY(-50%) scale(1); opacity: 1; } }
@keyframes xwScan { from { top: -2%; } to { top: 104%; } }
@keyframes xwStream { 0% { opacity: 0; scale: .25 1; } 22% { opacity: .9; } 70% { opacity: .5; } 100% { opacity: 0; scale: 1 1; } }
@keyframes xwSignal { 0%, 100% { opacity: .18; scale: .65; } 50% { opacity: 1; scale: 1.35; } }
@media (max-width: 767px) {
    .xw-neural-grid { background-size: 38px 38px; mask-image: none; opacity: .78; }
    .xw-grid-glow { right: -60vw; width: 130vw; height: 130vw; min-width: 0; min-height: 0; }
    .xw-data-stream { width: 100vw; }
    .xw-signal--three { left: 82%; }
}
@media (prefers-reduced-motion: reduce) {
    .xw-neural-grid, .xw-grid-glow, .xw-scanline, .xw-data-stream, .xw-signal { animation: none; }
    .xw-scanline { top: 53%; }
}

/* Source module 44 */
/* Centered pill navigation */
.tech-nav,
.tech-body .tech-nav {
    width: 80vw;
    inset: 16px auto auto 50% !important;
    padding: 10px 24px;
    border-radius: 999px;
    transform: translateX(-50%);
}
.tech-nav .tech-links {
    flex: 1;
    justify-content: center;
    margin-left: 0;
    gap: clamp(12px, 1.5vw, 25px);
}
.tech-nav .tech-nav-cta { margin-left: 0; }
.tech-nav .tech-nav-cta { border-radius: 999px !important; }
body.tech-home-page .tech-nav { background: #07131d !important; border-color: rgba(125, 217, 255, .22) !important; }
body.tech-home-page { padding-top: 0; }
@media (min-width: 992px) {
    .tech-nav .tech-brand-logo { position: absolute; left: 24px; }
    .tech-nav .tech-links { width: 100%; }
    .tech-nav .tech-nav-cta { position: absolute; right: 24px; }
}
@media (max-width: 991px) {
    .tech-nav .tech-menu-toggle { margin-left: auto; }
}

/* Source module 45 */
/* Navigation alignment and home hero calls to action */
.tech-nav .tech-links > a,
.tech-nav .tech-links .tech-dropdown > button { font-size: 13px !important; font-weight: 700 !important; }
.tech-nav .tech-resources-dropdown .tech-dropdown-menu a { font-size: 13px !important; font-weight: 700 !important; }
body.tech-home-page .tech-nav .tech-nav-cta { color: #fff !important; }
.tech-nav .tech-links > a:not(.tech-nav-cta),
.tech-nav .tech-links .tech-dropdown,
.tech-nav .tech-links .tech-dropdown > button {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.tech-nav .tech-links .tech-dropdown { height: 100%; }
body.tech-home-page .tech-actions .tech-button { border-radius: 999px !important; }
body.og-blog-index-page .og-page-wrap { padding-top: 132px; }
.og-blog-intro { display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; min-height: calc(80svh - 160px); max-width: 880px; margin: 0 0 42px; padding-bottom: clamp(64px, 10svh, 110px); }
.og-blog-intro h1 { margin: 0 0 14px; color: var(--og-foreground); font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; letter-spacing: -.055em; line-height: 1.04; }
.og-blog-intro p { max-width: 800px; margin: 0; color: var(--og-muted); font-size: clamp(16px, 1.35vw, 19px); line-height: 1.65; }
body.og-blog-index-page .og-search-wrap { position: fixed; top: 108px; right: calc(10vw + 24px); z-index: 45; margin: 0; border-radius: 999px; background: #fff; box-shadow: 0 8px 24px rgba(32, 37, 31, .12); }
@media (max-width: 767px) {
    body.og-blog-index-page .og-page-wrap { padding-top: 106px; }
    .og-blog-intro { min-height: calc(100svh - 106px); margin-bottom: 32px; padding-bottom: 56px; }
    body.og-blog-index-page .og-search-wrap { top: 94px; right: 16px; }
    .tech-nav,
    .tech-body .tech-nav {
        width: calc(100vw - 16px);
        inset: 8px auto auto 50% !important;
        padding-inline: 16px;
    }
    .tech-nav .tech-links { justify-content: flex-start; }
}

/* Source module 46 */
/* Interactive Solutions and Staffing cards */
.xw-pillar-section { background: #07131d; color: #eff8fb; }
.xw-pillar-section .tech-section-head h2 { color: #eff8fb; }
.xw-pillar-section .tech-kicker { color: #8cddff !important; }
.xw-pillar-grid {
    display: flex;
    min-height: 530px;
    overflow: hidden;
    border: 1px solid rgba(125, 217, 255, .3);
    border-radius: 24px;
    background: #06101a;
}
.xw-pillar {
    position: relative;
    isolation: isolate;
    display: flex;
    flex: 1 1 50%;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    min-height: 530px;
    padding: clamp(28px, 4vw, 58px);
    overflow: hidden;
    color: #f5fbff;
    border: 0;
    background-color: #07131d;
    background-position: center;
    background-size: cover;
    transition: flex .6s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.xw-pillar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(3, 12, 24, .96) 0%, rgba(3, 16, 34, .77) 48%, rgba(3, 16, 34, .16) 100%);
    transition: background .45s ease;
}
.xw-pillar--solutions { background-image: url('../images/solutions-cloud-visual.png'); }
.xw-pillar--staffing { background-image: url('../images/staffing-team-visual.png'); }
.xw-pillar:hover { color: #fff; text-decoration: none; }
.xw-pillar:hover::before { background: linear-gradient(90deg, rgba(3, 12, 24, .91) 0%, rgba(3, 16, 34, .56) 54%, rgba(3, 16, 34, .08) 100%); }
.xw-pillar > span { color: #8cddff; font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.xw-pillar h3 { max-width: 560px; margin: 24px 0 14px; color: #fff; font-size: clamp(32px, 4vw, 56px); letter-spacing: -.055em; line-height: .98; }
.xw-pillar p { max-width: 510px; margin: 0; color: rgba(237, 249, 255, .82); font-size: 16px; line-height: 1.6; }
.xw-pillar b { margin-top: 28px; color: #fff; font-size: 12px; letter-spacing: .08em; }
@media (min-width: 768px) {
    .xw-pillar-grid:has(.xw-pillar:hover) .xw-pillar { flex: 3 1 0; }
    .xw-pillar-grid:has(.xw-pillar:hover) .xw-pillar:hover { flex: 7 1 0; }
    .xw-pillar-grid:has(.xw-pillar:hover) .xw-pillar:not(:hover) p,
    .xw-pillar-grid:has(.xw-pillar:hover) .xw-pillar:not(:hover) b { opacity: 0; transform: translateY(12px); }
}
.xw-pillar p, .xw-pillar b { transition: opacity .25s ease, transform .25s ease; }
@media (max-width: 767px) {
    .xw-pillar-grid { display: grid; min-height: 0; border-radius: 16px; }
    .xw-pillar { min-height: 390px; }
}

/* Source module 47 */
/* Light sky-blue mission, vision, and values section */
.xw-values-section { background: #e5f6ff; color: #08213c; }
.xw-values-head { margin-bottom: 48px; text-align: center; }
.xw-values-head .tech-kicker { color: #287fbb !important; }
.xw-values-head h2 { margin: 10px 0 0; color: #08213c; font-size: clamp(38px, 5vw, 62px); letter-spacing: -.06em; }
.xw-values-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(33, 126, 190, .22); border-radius: 22px; background: #f8fdff; box-shadow: 0 22px 48px rgba(14, 78, 124, .1); }
.xw-values-lead, .xw-values-vision { min-height: 300px; padding: clamp(32px, 4vw, 58px); }
.xw-values-lead { background: linear-gradient(135deg, #278fce, #4ba9df); color: #fff; }
.xw-values-vision { background: #d8effb; color: #08213c; }
.xw-values-lead > span, .xw-values-vision > span { display: block; margin-bottom: 18px; font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.xw-values-lead > span { color: #e9f9ff; }.xw-values-vision > span { color: #287fbb; }
.xw-values-lead h3, .xw-values-vision h3 { max-width: 560px; margin: 0 0 20px; font-size: clamp(29px, 3vw, 46px); letter-spacing: -.045em; line-height: 1.06; }
.xw-values-lead p, .xw-values-vision p { max-width: 580px; margin: 0; font-size: 17px; line-height: 1.65; }
.xw-values-lead p { color: rgba(255,255,255,.86); }.xw-values-vision p { color: #42647d; }
.xw-values-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(33, 126, 190, .18); background: #f8fdff; }
.xw-values-list article { min-height: 160px; padding: 30px 28px; border-right: 1px solid rgba(33, 126, 190, .18); }
.xw-values-list article:last-child { border-right: 0; }
.xw-values-list strong { display: block; margin-bottom: 12px; color: #08213c; font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.xw-values-list p { margin: 0; color: #527188; font-size: 15px; line-height: 1.55; }

/* Source module 48 */
/* Continue the dark → light → dark → light section progression. */
.xw-home-band { background: #07131d; color: #eff8fb; border-color: rgba(125, 217, 255, .18); }
.xw-home-band h2 { color: #eff8fb; }.xw-home-band .tech-kicker, .xw-home-band .tech-process-item strong { color: #8cddff !important; }.xw-home-band .tech-process-item h3 { color: #eff8fb; }.xw-home-band .tech-process-item p { color: rgba(231, 246, 255, .68); }
@media (max-width: 767px) {
    .xw-values-head { margin-bottom: 32px; text-align: left; }
    .xw-values-panel { grid-template-columns: 1fr; border-radius: 16px; }
    .xw-values-lead, .xw-values-vision { min-height: 0; padding: 32px 26px; }
    .xw-values-list { grid-column: auto; grid-template-columns: 1fr; }
    .xw-values-list article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(33, 126, 190, .18); }
    .xw-values-list article:last-child { border-bottom: 0; }
}

/* Source module 49 */
/* Latest insights on the home page */
.xw-home-insights { background: #e5f6ff; color: #08213c; }
.xw-home-insights__head { max-width: 850px; margin: 0 auto 46px; text-align: center; }
.xw-home-insights__head .tech-kicker { color: #287fbb !important; }
.xw-home-insights__head h2 { margin: 10px 0 0; color: #08213c; font-size: clamp(38px, 5vw, 62px); letter-spacing: -.06em; }
.xw-home-insights__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.xw-home-insight-card { min-width: 0; overflow: hidden; border-radius: 16px; background: transparent; }
.xw-home-insight-card__image { display: block; aspect-ratio: 1.55; overflow: hidden; border-radius: 16px; background: #cfeafa; }
.xw-home-insight-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.xw-home-insight-card:hover .xw-home-insight-card__image img { transform: scale(1.045); }
.xw-home-insight-card__body { padding: 22px 0 2px; }
.xw-home-insight-card__body > span { display: block; margin-bottom: 14px; color: #5d7b91; font-size: 14px; }
.xw-home-insight-card h3 { min-height: 3.05em; margin: 0 0 18px; color: #08213c; font-size: clamp(20px, 1.8vw, 27px); letter-spacing: -.035em; line-height: 1.25; }
.xw-home-insight-card h3 a { color: inherit; text-decoration: none; }.xw-home-insight-card h3 a:hover { color: #237fbf; }
.xw-home-insight-card__link { display: inline-flex; align-items: center; gap: 8px; color: #237fbf; font-size: 14px; font-weight: 800; text-decoration: none; }.xw-home-insight-card__link:hover { color: #0c5e95; }
.xw-home-insights__action { display: flex; justify-content: center; margin-top: 46px; }.xw-home-insights__action .tech-button { border-radius: 999px !important; background: #298fca !important; }
@media (max-width: 767px) {
    .xw-home-insights__head { margin-bottom: 32px; text-align: left; }
    .xw-home-insights__grid { grid-template-columns: 1fr; gap: 34px; }
    .xw-home-insight-card h3 { min-height: 0; }
    .xw-home-insights__action { justify-content: flex-start; margin-top: 36px; }
}

/* Source module 50 */
/* Why choose X-TechWork */
.xw-why-section { background: #e5f6ff; color: #08213c; }
.xw-why-section__head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr); gap: 24px 80px; align-items: end; margin-bottom: 50px; }
.xw-why-section__head .tech-kicker { grid-column: 1 / -1; color: #287fbb !important; }
.xw-why-section__head h2 { margin: 0; color: #08213c; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.06em; line-height: .98; }
.xw-why-section__head p { max-width: 480px; margin: 0; color: #4f7189; font-size: 17px; line-height: 1.65; }
.xw-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(33, 126, 190, .22); border-radius: 18px; background: rgba(255,255,255,.66); }
.xw-why-grid article { min-height: 280px; padding: 32px 28px; border-right: 1px solid rgba(33, 126, 190, .22); }
.xw-why-grid article:last-child { border-right: 0; }
.xw-why-grid i { display: grid; width: 44px; height: 44px; margin-bottom: 46px; place-items: center; border-radius: 12px; background: #bee8fb; color: #197bb8; font-size: 19px; }
.xw-why-grid h3 { margin: 0 0 12px; color: #08213c; font-size: 22px; letter-spacing: -.035em; }
.xw-why-grid p { margin: 0; color: #54748b; font-size: 15px; line-height: 1.6; }
@media (max-width: 767px) {
    .xw-why-section__head { display: block; margin-bottom: 34px; }
    .xw-why-section__head .tech-kicker { display: block; margin-bottom: 12px; }
    .xw-why-section__head p { margin-top: 18px; }
    .xw-why-grid { grid-template-columns: 1fr; }
    .xw-why-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(33, 126, 190, .22); }
    .xw-why-grid article:last-child { border-bottom: 0; }
    .xw-why-grid i { margin-bottom: 28px; }
}
