:root {
    --pml-purple: #7200B9;
    --pml-purple-dark: #5c0095;
    --pml-text: #303336;
    --pml-light: #f7f7f8;
    --pml-border: rgba(48, 51, 54, 0.12);
    --pml-dark: #303336;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--pml-text);
    background: #fff;
    font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* HEADER */

.pml-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--pml-border);
}

.pml-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(48, 51, 54, 0.08);
}

.pml-logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.pml-logo span,
.pml-footer-logo span {
    color: var(--pml-purple);
}

.pml-header .nav-link {
    padding: 1.8rem 0 !important;
    color: var(--pml-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.pml-header .nav-link:hover,
.pml-header .nav-link.active {
    color: var(--pml-purple);
}

.pml-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 100px;
    background: var(--pml-purple);
    color: white !important;
    font-size: 0.9rem;
    font-weight: 700;
}

.pml-header-cta:hover {
    background: var(--pml-purple-dark);
}
/* =========================================================
   PAPER MUG LAB — LARGE TWO-LINE LOGO
========================================================= */

.pml-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    text-decoration: none;

    line-height: 1;
}


/* =========================================================
   TRIANGLE BRAND MARK
========================================================= */

.pml-logo-mark {
    position: relative;

    width: 0;
    height: 0;

    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-bottom: 32px solid var(--pml-purple);

    display: block;

    transform: rotate(0deg);

    filter:
        drop-shadow(0 7px 12px rgba(114, 0, 185, .18));

    transition:
        transform .3s ease,
        filter .3s ease;
}


/* Inner cut */

.pml-logo-mark::after {
    content: "";

    position: absolute;

    left: -7px;
    top: 14px;

    width: 14px;
    height: 2px;

    background: transparent;

    transform: rotate(-2deg);
}


/* Small secondary cut */

.pml-logo-mark::before {
    content: "";

    position: absolute;

    left: -4px;
    top: 19px;

    width: 8px;
    height: 2px;

    background: transparent;

    opacity: .8;
}


/* Hover */

/* .pml-logo:hover .pml-logo-mark {
    transform:
        rotate(8deg)
        translateY(-2px);

    filter:
        drop-shadow(0 10px 18px rgba(114, 0, 185, .28));
} */


/* =========================================================
   TWO-LINE WORDMARK
========================================================= */

.pml-logo-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

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

    font-size: 30px;
    line-height: .88;

    font-weight: 700;

    letter-spacing: -1px;

    color: var(--pml-text);
}


/* Paper Mug */

.pml-logo-line:first-child {
    color: var(--pml-text);
}


/* Lab */

.pml-logo-lab {
    margin-top: 5px;

    color: var(--pml-purple);

    font-size: 17px;

    font-weight: 600;

    letter-spacing: 1px;
}


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

@media (max-width: 575px) {

    .pml-logo {
        gap: 11px;
    }

    .pml-logo-mark {
        border-left-width: 13px;
        border-right-width: 13px;
        border-bottom-width: 25px;
    }

    .pml-logo-text {
        font-size: 18px;
        letter-spacing: -.8px;
    }

    .pml-logo-lab {
        margin-top: 4px;
        font-size: 15px;
    }

}

/* HERO */

.pml-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--pml-border);
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(114, 0, 185, 0.12),
            transparent 30%
        ),
        #fff;
}

.pml-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 9px 15px;
    border: 1px solid rgba(114, 0, 185, 0.2);
    border-radius: 100px;
    color: var(--pml-purple);
    background: rgba(114, 0, 185, 0.04);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pml-eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pml-purple);
}

.pml-hero-title {
    margin: 0;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.pml-hero-title strong {
    color: var(--pml-purple);
}

.pml-hero-description {
    max-width: 620px;
    margin-top: 32px;
    color: rgba(48, 51, 54, 0.65);
    font-size: 1.1rem;
    line-height: 1.8;
}

.pml-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.pml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 100px;
    font-weight: 700;
    transition: 0.25s ease;
}

.pml-btn-primary {
    color: white;
    background: var(--pml-purple);
}

.pml-btn-primary:hover {
    color: white;
    background: var(--pml-purple-dark);
    transform: translateY(-2px);
}

.pml-btn-outline {
    border: 1px solid var(--pml-border);
}

.pml-btn-outline:hover {
    color: var(--pml-purple);
    border-color: var(--pml-purple);
}


/* HERO VISUAL */

.pml-hero-visual {
    position: relative;
    height: 500px;
}

.pml-visual-grid {
    position: absolute;
    inset: 40px 0;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(48, 51, 54, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 51, 54, 0.1) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
}

.pml-orbit {
    position: absolute;
    border: 1px solid rgba(114, 0, 185, 0.25);
    border-radius: 50%;
}

.orbit-one {
    width: 430px;
    height: 430px;
    top: 25px;
    left: 5%;
}

.orbit-two {
    width: 330px;
    height: 330px;
    top: 75px;
    left: 16%;
}

.pml-visual-card {
    position: absolute;
    width: 340px;
    height: 390px;
    top: 55px;
    left: 50%;
    padding: 25px;
    transform: translateX(-50%) rotate(5deg);
    border-radius: 45px;
    background: var(--pml-purple);
    box-shadow: 0 30px 80px rgba(114, 0, 185, 0.25);
    transition: 0.5s ease;
}

.pml-visual-card:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.03);
}

.pml-card-top {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
}

.pml-card-center {
    position: absolute;
    top: 50%;
    left: 35px;
    right: 35px;
    transform: translateY(-50%);
}

.pml-card-line {
    width: 65%;
    height: 10px;
    margin-top: 10px;
    border-radius: 20px;
    background: rgba(48, 51, 54, 0.12);
}

.pml-card-line.large {
    width: 85%;
    height: 15px;
}

.pml-card-line.short {
    width: 45%;
}

.pml-card-blocks {
    position: absolute;
    right: 35px;
    bottom: 35px;
    left: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pml-card-blocks div {
    height: 75px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
}


/* GENERAL */

.pml-intro,
.pml-problem,
.pml-process,
.pml-work {
    padding: 130px 0;
}

.pml-section-label {
    margin-bottom: 22px;
    color: var(--pml-purple);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.pml-section-label.light {
    color: rgba(255, 255, 255, 0.55);
}

.pml-section-title {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
}

.pml-section-title.light {
    color: white;
}

.pml-section-description {
    max-width: 680px;
    margin-top: 30px;
    color: rgba(48, 51, 54, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =========================================================
   TECHNICAL EXPERTISE — ANIMATED SYSTEM
========================================================= */

.pml-expertise-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background: #fff;
}


/* =========================================================
   HEADING
========================================================= */

.pml-expertise-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.pml-expertise-heading h2 {
    max-width: 800px;
    margin: 18px 0 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 700;

    color: var(--pml-text);
}

.pml-expertise-heading h2 span {
    display: block;
    color: var(--pml-purple);
}

.pml-expertise-heading-right {
    padding-bottom: 5px;
}

.pml-expertise-heading-right p {
    max-width: 500px;
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(48, 51, 54, .62);
}


/* =========================================================
   MAIN MAP
========================================================= */

.pml-expertise-map {
    position: relative;

    display: grid;
    grid-template-columns: .9fr 1.2fr .9fr;

    min-height: 570px;

    border: 1px solid var(--pml-border);
    border-radius: 28px;

    overflow: hidden;

    background: #fafafa;
}


/* =========================================================
   LEFT
========================================================= */

.pml-expertise-side {
    padding: 35px;

    border-right: 1px solid var(--pml-border);

    background: rgba(255,255,255,.75);
}

.pml-expertise-label {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 35px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(48,51,54,.45);
}

.pml-live-dot {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;

    background: var(--pml-purple);

    box-shadow:
        0 0 0 5px rgba(114,0,185,.08);

    animation: pmlLivePulse 2s ease-in-out infinite;
}

@keyframes pmlLivePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(114,0,185,.08);
    }

    50% {
        box-shadow:
            0 0 0 9px rgba(114,0,185,.03);
    }

}

.pml-expertise-side-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 17px;

    padding: 21px 0;

    border-bottom: 1px solid var(--pml-border);

    cursor: pointer;

    transition:
        padding .3s ease,
        opacity .3s ease;
}

.pml-expertise-side-item:hover,
.pml-expertise-side-item.active {
    padding-left: 8px;
}

.pml-expertise-side-item .number {
    min-width: 25px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;

    color: rgba(48,51,54,.35);
}

.pml-expertise-side-item.active .number {
    color: var(--pml-purple);
}

.pml-expertise-side-item strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;

    color: var(--pml-text);
}

.pml-expertise-side-item small {
    display: block;
    margin-top: 3px;

    font-size: 16px;

    color: rgba(48,51,54,.45);
}

.pml-expertise-side-item > i {
    margin-left: auto;

    opacity: 0;

    font-size: 14px;

    color: var(--pml-purple);

    transform: translate(-5px, 5px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.pml-expertise-side-item:hover > i,
.pml-expertise-side-item.active > i {
    opacity: 1;
    transform: translate(0, 0);
}


/* =========================================================
   CENTER
========================================================= */

.pml-expertise-center {
    position: relative;

    min-height: 570px;

    overflow: hidden;

    background: var(--pml-dark);
}

.pml-expertise-grid {
    position: absolute;
    inset: 0;

    opacity: .22;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    animation: pmlGridMove 18s linear infinite;
}

@keyframes pmlGridMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 45px 45px;
    }

}


/* =========================================================
   GLOW
========================================================= */

.pml-expertise-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background: rgba(114,0,185,.24);

    filter: blur(65px);

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

    animation: pmlGlowPulse 4s ease-in-out infinite;
}

@keyframes pmlGlowPulse {

    0%,
    100% {
        opacity: .45;
        transform: translate(-50%, -50%) scale(.9);
    }

    50% {
        opacity: .8;
        transform: translate(-50%, -50%) scale(1.15);
    }

}


/* =========================================================
   ORBITS
========================================================= */

.pml-expertise-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 50%;

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

.orbit-a {
    width: 210px;
    height: 210px;

    animation: pmlOrbitRotate 12s linear infinite;
}

.orbit-b {
    width: 350px;
    height: 350px;

    animation: pmlOrbitRotateReverse 18s linear infinite;
}

.orbit-c {
    width: 490px;
    height: 490px;

    animation: pmlOrbitRotate 26s linear infinite;
}

@keyframes pmlOrbitRotate {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

@keyframes pmlOrbitRotateReverse {

    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }

}


/* =========================================================
   CENTER CORE
========================================================= */

.pml-expertise-center-core {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 155px;
    height: 155px;

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

    border-radius: 50%;

    background: var(--pml-purple);

    color: #fff;

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

    box-shadow:
        0 0 0 1px rgba(255,255,255,.12),
        0 25px 80px rgba(0,0,0,.35);

    animation: pmlCorePulse 4s ease-in-out infinite;

    z-index: 5;
}

@keyframes pmlCorePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(255,255,255,.12),
            0 25px 80px rgba(0,0,0,.35);
    }

    50% {
        box-shadow:
            0 0 0 12px rgba(114,0,185,.08),
            0 25px 90px rgba(0,0,0,.45);
    }

}

.pml-expertise-core-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: 50%;

    font-size: 17px;
}

.pml-expertise-center-core strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
}

.pml-expertise-center-core > span {
    margin-top: 5px;

    font-size: 7px;
    letter-spacing: 1.2px;

    color: rgba(255,255,255,.65);
}


/* =========================================================
   NODES
========================================================= */

.pml-expertise-node {
    position: absolute;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    color: #fff;

    font-size: 15px;

    backdrop-filter: blur(5px);

    z-index: 4;

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.pml-expertise-node:hover,
.pml-expertise-node.is-focused {
    background: var(--pml-purple);

    box-shadow:
        0 0 30px rgba(114,0,185,.5);

    transform: scale(1.18);
}

.node-a {
    top: 18%;
    left: 24%;
}

.node-b {
    top: 26%;
    right: 17%;
}

.node-c {
    bottom: 20%;
    left: 19%;
}

.node-d {
    right: 22%;
    bottom: 17%;
}


/* =========================================================
   CONNECTION LINES
========================================================= */

.pml-expertise-line {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 1px;

    transform-origin: center;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    opacity: .5;

    z-index: 2;
}

.line-a {
    height: 220px;

    transform:
        translate(-50%, -50%)
        rotate(42deg);

    animation:
        pmlLinePulse 3s ease-in-out infinite;
}

.line-b {
    height: 250px;

    transform:
        translate(-50%, -50%)
        rotate(118deg);

    animation:
        pmlLinePulse 3s ease-in-out 1s infinite;
}

.line-c {
    height: 230px;

    transform:
        translate(-50%, -50%)
        rotate(218deg);

    animation:
        pmlLinePulse 3s ease-in-out .5s infinite;
}

.line-d {
    height: 270px;

    transform:
        translate(-50%, -50%)
        rotate(300deg);

    animation:
        pmlLinePulse 3s ease-in-out 1.5s infinite;
}

@keyframes pmlLinePulse {

    0%,
    100% {
        opacity: .2;
    }

    50% {
        opacity: .75;
    }

}


/* =========================================================
   PARTICLES
========================================================= */

.pml-particle {
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 12px rgba(255,255,255,.7);

    z-index: 3;
}

.particle-a {
    top: 30%;
    left: 32%;

    animation:
        pmlParticleMoveA 4s ease-in-out infinite;
}

.particle-b {
    top: 67%;
    left: 30%;

    animation:
        pmlParticleMoveB 5s ease-in-out infinite;
}

.particle-c {
    top: 34%;
    right: 28%;

    animation:
        pmlParticleMoveC 4.5s ease-in-out infinite;
}

.particle-d {
    right: 31%;
    bottom: 28%;

    animation:
        pmlParticleMoveD 5.5s ease-in-out infinite;
}

@keyframes pmlParticleMoveA {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: .3;
    }

    50% {
        transform: translate(55px, 35px);
        opacity: 1;
    }

}

@keyframes pmlParticleMoveB {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: .2;
    }

    50% {
        transform: translate(70px, -45px);
        opacity: 1;
    }

}

@keyframes pmlParticleMoveC {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: .3;
    }

    50% {
        transform: translate(-60px, 50px);
        opacity: 1;
    }

}

@keyframes pmlParticleMoveD {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: .2;
    }

    50% {
        transform: translate(-65px, -45px);
        opacity: 1;
    }

}


/* =========================================================
   RIGHT STACK
========================================================= */

.pml-expertise-stack {
    padding: 35px;

    border-left: 1px solid var(--pml-border);

    background: rgba(255,255,255,.75);
}

.pml-expertise-stack-title {
    display: flex;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--pml-border);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(48,51,54,.42);
}

.pml-stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    padding: 30px 0;
}

.pml-stack-tags span {
    padding: 9px 12px;

    border: 1px solid var(--pml-border);

    border-radius: 50px;

    background: #fff;

    font-size: 16px;
    font-weight: 600;

    color: var(--pml-text);

    cursor: pointer;

    transition:
        color .2s ease,
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.pml-stack-tags span:hover,
.pml-stack-tags span.is-focused {
    border-color: var(--pml-purple);

    background: rgba(114,0,185,.05);

    color: var(--pml-purple);

    transform: translateY(-2px);
}

.pml-expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 15px;

    color: var(--pml-purple);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
}

.pml-expertise-link span {
    font-size: 16px;

    transition: transform .2s ease;
}

.pml-expertise-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM
========================================================= */

.pml-expertise-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 15px;

    border: 1px solid var(--pml-border);

    border-radius: 18px;

    overflow: hidden;
}

.pml-expertise-bottom > div {
    display: grid;
    grid-template-columns: 45px 1fr;

    padding: 22px 25px;

    border-right: 1px solid var(--pml-border);
}

.pml-expertise-bottom > div:last-child {
    border-right: 0;
}

.pml-expertise-bottom-icon {
    grid-row: span 2;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(114,0,185,.07);

    color: var(--pml-purple);

    font-size: 15px;
}

.pml-expertise-bottom strong {
    align-self: end;

    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
}

.pml-expertise-bottom small {
    align-self: start;

    margin-top: 3px;

    font-size: 14px;

    color: rgba(48,51,54,.45);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-expertise-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pml-expertise-map {
        grid-template-columns: 1fr;
    }

    .pml-expertise-side {
        border-right: 0;
        border-bottom: 1px solid var(--pml-border);
    }

    .pml-expertise-center {
        min-height: 500px;
    }

    .pml-expertise-stack {
        border-left: 0;
        border-top: 1px solid var(--pml-border);
    }

    .pml-expertise-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .pml-expertise-bottom > div:nth-child(2) {
        border-right: 0;
    }

    .pml-expertise-bottom > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--pml-border);
    }

}


@media (max-width: 575px) {

    .pml-expertise-section {
        padding: 85px 0;
    }

    .pml-expertise-heading h2 {
        letter-spacing: -2px;
    }

    .pml-expertise-map {
        border-radius: 20px;
    }

    .pml-expertise-side,
    .pml-expertise-stack {
        padding: 25px;
    }

    .pml-expertise-center {
        min-height: 390px;
    }

    .orbit-a {
        width: 160px;
        height: 160px;
    }

    .orbit-b {
        width: 270px;
        height: 270px;
    }

    .orbit-c {
        width: 380px;
        height: 380px;
    }

    .pml-expertise-center-core {
        width: 125px;
        height: 125px;
    }

    .pml-expertise-core-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
    }

    .pml-expertise-center-core strong {
        font-size: 14px;
    }

    .node-a {
        left: 14%;
    }

    .node-b {
        right: 10%;
    }

    .node-c {
        left: 10%;
    }

    .node-d {
        right: 14%;
    }

    .pml-expertise-bottom {
        grid-template-columns: 1fr;
    }

    .pml-expertise-bottom > div {
        border-right: 0;
        border-bottom: 1px solid var(--pml-border);
    }

    .pml-expertise-bottom > div:last-child {
        border-bottom: 0;
    }

}


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

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

    .pml-expertise-grid,
    .pml-expertise-glow,
    .pml-expertise-orbit,
    .pml-expertise-center-core,
    .pml-live-dot,
    .pml-expertise-line,
    .pml-particle {
        animation: none !important;
    }

}

/* =========================================================
   WORK SECTION
========================================================= */

.pml-work-section {
    position: relative;
    padding: 130px 0;
    background: #fff;
    overflow: hidden;
}


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

.pml-work-header {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.pml-work-header h2 {
    margin: 18px 0 0;

    max-width: 700px;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(46px, 6vw, 76px);
    line-height: .96;
    letter-spacing: -3px;
    font-weight: 700;

    color: var(--pml-text);
}

.pml-work-header h2 span {
    display: block;
    color: var(--pml-purple);
}

.pml-work-header-right {
    max-width: 480px;
}

.pml-work-header-right p {
    margin: 0 0 25px;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(48, 51, 54, .62);
}

.pml-work-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--pml-text);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
}

.pml-work-view-all i {
    color: var(--pml-purple);
}


/* =========================================================
   FEATURED PROJECT
========================================================= */

.pml-work-featured {
    display: grid;
    grid-template-columns: .85fr 1.15fr;

    min-height: 560px;

    border-radius: 28px;

    overflow: hidden;

    background: var(--pml-dark);
}


/* CONTENT */

.pml-work-featured-content {
    display: flex;
    flex-direction: column;

    padding: 50px;
}

.pml-work-meta {
    display: flex;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.12);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,.4);
}

.pml-work-featured-title {
    margin-top: auto;
    margin-bottom: auto;
}

.pml-work-category {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    color: var(--pml-purple);
}

.pml-work-featured-title h3 {
    margin: 0 0 20px;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;

    letter-spacing: -2px;

    color: #fff;
}

.pml-work-featured-title p {
    max-width: 450px;

    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255,255,255,.58);
}


/* PLATFORMS */

.pml-work-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 35px;
}

.pml-work-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 12px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;

    font-size: 14px;

    color: rgba(255,255,255,.7);
}

.pml-work-platforms i {
    color: var(--pml-purple);
}


/* PROJECT LINK */

.pml-work-project-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    margin-top: 35px;

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
}

.pml-work-project-link i {
    color: var(--pml-purple);

    transition: transform .25s ease;
}

.pml-work-project-link:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   FEATURED VISUAL
========================================================= */

.pml-work-featured-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 560px;

    background:
        radial-gradient(
            circle at center,
            rgba(114,0,185,.3),
            transparent 50%
        );
}


/* GRID */

.pml-work-featured-visual::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(
            rgba(255,255,255,.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.1) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}


/* SCREEN */

.pml-work-screen {
    position: relative;

    width: 75%;
    max-width: 620px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 14px;

    background: #161719;

    box-shadow:
        0 40px 100px rgba(0,0,0,.5);

    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);

    transition: transform .5s ease;

    z-index: 2;
}

.pml-work-featured:hover .pml-work-screen {
    transform:
        perspective(1200px)
        rotateY(0)
        rotateX(0)
        translateY(-8px);
}

.pml-work-screen-top {
    display: flex;
    gap: 5px;

    padding: 10px 13px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.pml-work-screen-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255,255,255,.25);
}


/* DASHBOARD */

.pml-work-dashboard {
    display: flex;

    min-height: 320px;
}

.pml-dashboard-sidebar {
    width: 55px;

    padding: 25px 15px;

    border-right: 1px solid rgba(255,255,255,.08);
}

.pml-dashboard-sidebar span {
    display: block;

    width: 22px;
    height: 5px;

    margin-bottom: 22px;

    border-radius: 5px;

    background: rgba(255,255,255,.12);
}

.pml-dashboard-sidebar span.active {
    background: var(--pml-purple);
}


.pml-dashboard-main {
    flex: 1;

    padding: 25px;
}

.pml-dashboard-heading {
    display: flex;
    justify-content: space-between;

    margin-bottom: 25px;
}

.pml-dashboard-heading span:first-child {
    width: 100px;
    height: 9px;

    border-radius: 5px;

    background: rgba(255,255,255,.5);
}

.pml-dashboard-heading span:last-child {
    width: 45px;
    height: 9px;

    border-radius: 5px;

    background: rgba(114,0,185,.7);
}


.pml-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    margin-bottom: 25px;
}

.pml-dashboard-cards div {
    height: 70px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 7px;

    background: rgba(255,255,255,.04);
}


.pml-dashboard-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pml-dashboard-table span {
    display: block;

    height: 7px;

    border-radius: 5px;

    background: rgba(255,255,255,.1);
}

.pml-dashboard-table span:nth-child(1) {
    width: 90%;
}

.pml-dashboard-table span:nth-child(2) {
    width: 75%;
}

.pml-dashboard-table span:nth-child(3) {
    width: 85%;
}

.pml-dashboard-table span:nth-child(4) {
    width: 65%;
}

.pml-dashboard-table span:nth-child(5) {
    width: 80%;
}


/* FLOATING TAG */

.pml-work-floating-tag {
    position: absolute;

    right: 8%;
    bottom: 16%;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 15px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 600;

    color: rgba(255,255,255,.8);

    z-index: 4;
}

.pml-work-floating-tag i {
    color: var(--pml-purple);
}


/* =========================================================
   SECONDARY CARDS
========================================================= */

.pml-work-secondary {
    margin-top: 18px;
}

.pml-work-card {
    height: 100%;

    border: 1px solid var(--pml-border);

    border-radius: 22px;

    overflow: hidden;

    background: #fafafa;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.pml-work-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(48,51,54,.1);
}


.pml-work-card-top {
    display: flex;
    justify-content: space-between;

    padding: 22px 25px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pml-work-number {
    color: rgba(48,51,54,.35);
}

.pml-work-card .pml-work-category {
    margin: 0;
}


/* CARD VISUAL */

.pml-work-card-visual {
    height: 270px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--pml-dark);
}


/* MAIL */

.pml-mail-system {
    width: 65%;
    padding: 18px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 10px;

    background: #18191b;

    transform: rotate(-3deg);

    transition: transform .4s ease;
}

.pml-work-card:hover .pml-mail-system {
    transform: rotate(0) scale(1.03);
}

.pml-mail-header {
    display: flex;
    justify-content: space-between;

    margin-bottom: 18px;
}

.pml-mail-header span:first-child {
    width: 70px;
}

.pml-mail-header span:last-child {
    width: 25px;
}

.pml-mail-header span {
    height: 7px;

    border-radius: 5px;

    background: rgba(255,255,255,.25);
}

.pml-mail-row {
    display: grid;
    grid-template-columns: 25% 55% 20%;
    gap: 8px;

    padding: 12px 0;

    border-top: 1px solid rgba(255,255,255,.07);
}

.pml-mail-row span {
    height: 6px;

    border-radius: 5px;

    background: rgba(255,255,255,.1);
}

.pml-mail-row.active span:first-child {
    background: var(--pml-purple);
}


/* CRM */

.pml-crm-system {
    width: 68%;
    padding: 25px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 10px;

    background: #18191b;

    transform: rotate(3deg);

    transition: transform .4s ease;
}

.pml-work-card:hover .pml-crm-system {
    transform: rotate(0) scale(1.03);
}

.pml-crm-chart {
    display: flex;
    align-items: end;
    gap: 8px;

    height: 120px;

    margin-bottom: 25px;
}

.pml-crm-chart span {
    flex: 1;

    border-radius: 4px 4px 0 0;

    background: rgba(255,255,255,.1);
}

.pml-crm-chart span:nth-child(1) {
    height: 30%;
}

.pml-crm-chart span:nth-child(2) {
    height: 45%;
}

.pml-crm-chart span:nth-child(3) {
    height: 38%;
}

.pml-crm-chart span:nth-child(4) {
    height: 65%;
}

.pml-crm-chart span:nth-child(5) {
    height: 55%;
}

.pml-crm-chart span:nth-child(6) {
    height: 85%;

    background: var(--pml-purple);
}


.pml-crm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pml-crm-stats div {
    padding: 10px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 6px;
}

.pml-crm-stats strong,
.pml-crm-stats small {
    display: block;

    height: 6px;

    border-radius: 5px;

    background: rgba(255,255,255,.15);
}

.pml-crm-stats strong {
    width: 60%;
    margin-bottom: 8px;
}


/* CARD CONTENT */

.pml-work-card-content {
    padding: 30px;
}

.pml-work-card-content h3 {
    margin: 0 0 12px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;

    color: var(--pml-text);
}

.pml-work-card-content p {
    min-height: 55px;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(48,51,54,.58);
}


.pml-work-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
}

.pml-work-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pml-work-tech span {
    padding: 6px 9px;

    border: 1px solid var(--pml-border);

    border-radius: 50px;

    font-size: 9px;

    color: rgba(48,51,54,.6);
}

.pml-work-card-footer > a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--pml-purple);

    color: #fff;

    text-decoration: none;

    transition: transform .25s ease;
}

.pml-work-card-footer > a:hover {
    transform: translate(2px, -2px);
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.pml-work-bottom {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 55px;
}

.pml-work-bottom-line {
    width: 45px;
    height: 1px;

    background: var(--pml-purple);
}

.pml-work-bottom p {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;

    color: rgba(48,51,54,.65);
}

.pml-work-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-left: auto;

    color: var(--pml-purple);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-work-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pml-work-featured {
        grid-template-columns: 1fr;
    }

    .pml-work-featured-content {
        min-height: 500px;
    }

    .pml-work-featured-visual {
        min-height: 450px;
    }

}


@media (max-width: 575px) {

    .pml-work-section {
        padding: 85px 0;
    }

    .pml-work-header h2 {
        letter-spacing: -2px;
    }

    .pml-work-featured-content {
        padding: 30px;
    }

    .pml-work-featured-title h3 {
        font-size: 40px;
    }

    .pml-work-featured-visual {
        min-height: 330px;
    }

    .pml-work-screen {
        width: 85%;
    }

    .pml-work-dashboard {
        min-height: 220px;
    }

    .pml-dashboard-sidebar {
        width: 40px;
        padding: 18px 10px;
    }

    .pml-dashboard-main {
        padding: 18px;
    }

    .pml-work-floating-tag {
        right: 5%;
        bottom: 10%;
    }

    .pml-work-card-visual {
        height: 230px;
    }

    .pml-work-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .pml-work-bottom a {
        margin-left: 65px;
    }

}

/* SERVICES */

.pml-service-overview {
    background: var(--pml-light);
    border-top: 1px solid var(--pml-border);
    border-bottom: 1px solid var(--pml-border);
}

.pml-service-card {
    position: relative;
    display: flex;
    /* min-height: 600px; */
    flex-direction: column;
    justify-content: space-between;
    padding: 55px;
    border-right: 1px solid var(--pml-border);
    transition: 0.35s ease;
}

.pml-service-card:hover {
    color: white;
    background: var(--pml-purple);
}

.pml-service-card h3 {
    /* margin-top: 100px; */
    font-size: 2.6rem;
    font-weight: 700;
}

.pml-service-card p {
    max-width: 370px;
    margin-top: 20px;
    color: rgba(48, 51, 54, 0.6);
    line-height: 1.7;
}

.pml-service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.pml-service-card ul {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.pml-service-card li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.pml-service-card li::before {
    content: "•";
    margin-right: 10px;
    color: var(--pml-purple);
}

.pml-service-card:hover li::before {
    color: white;
}

.pml-service-arrow {
    position: absolute;
    right: 50px;
    bottom: 50px;
    font-size: 2rem;
}


/* PROBLEM */

.pml-problem {
    border-bottom: 1px solid var(--pml-border);
}

.pml-problem-heading {
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
}

.pml-problem p {
    color: rgba(48, 51, 54, 0.6);
    line-height: 1.8;
}

.pml-text-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--pml-purple);
    font-weight: 700;
}


/* SERVICES DARK */

.pml-services {
    padding: 130px 0;
    color: white;
    background: var(--pml-dark);
}

.pml-capability-grid {
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.pml-capability {
    min-height: 180px;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.3s ease;
}

.pml-capability:hover {
    background: var(--pml-purple);
}

.pml-capability h3 {
    margin-top: 50px;
    font-size: 1rem;
}


/* PROCESS */

.pml-process {
    border-bottom: 1px solid var(--pml-border);
}

.pml-process-item {
    display: grid;
    grid-template-columns: 70px 180px 1fr;
    gap: 20px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--pml-border);
}

.pml-process-item > span {
    color: var(--pml-purple);
    font-weight: 700;
}

.pml-process-item h3 {
    margin: 0;
    font-size: 1.15rem;
}

.pml-process-item p {
    margin: 0;
    color: rgba(48, 51, 54, 0.55);
}


/* WORK */

.pml-work {
    background: var(--pml-light);
}

.pml-project-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--pml-border);
    background: white;
    transition: 0.35s ease;
}

.pml-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(48, 51, 54, 0.08);
}

.pml-project-visual {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--pml-dark);
}

.pml-project-visual span {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 700;
}

.pml-project-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    border: 30px solid var(--pml-purple);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.5s ease;
}

.pml-project-card:hover .pml-project-shape {
    transform: translate(-50%, -50%) rotate(90deg) scale(1.15);
}

.pml-project-content {
    padding: 30px;
}

.pml-project-content small {
    color: var(--pml-purple);
    font-weight: 700;
}

.pml-project-content h3 {
    margin-top: 8px;
    font-size: 1.8rem;
}

.pml-project-content p {
    margin: 18px 0;
    color: rgba(48, 51, 54, 0.6);
    line-height: 1.7;
}

.pml-project-content strong {
    color: var(--pml-purple);
}


/* WHY */

.pml-why {
    padding: 130px 0;
    color: white;
    background: var(--pml-purple);
}

.pml-reason {
    height: 100%;
    padding: 30px 0;
}

.pml-reason span {
    font-size: 2rem;
    opacity: 0.5;
}

.pml-reason h3 {
    margin-top: 30px;
}

.pml-reason p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}


/* FINAL CTA */

.pml-final-cta {
    padding: 150px 0;
}

.pml-final-content h2 {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.pml-final-content h2 strong {
    color: var(--pml-purple);
}


/* FOOTER */

.pml-footer {
    padding: 90px 0 30px;
    color: white;
    background: var(--pml-dark);
}

.pml-footer-logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.pml-footer-description {
    max-width: 450px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.pml-footer-discuss {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    color: white;
    font-weight: 700;
}

.pml-footer-heading {
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pml-footer-links {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.pml-footer-links li {
    margin-bottom: 12px;
}

.pml-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.pml-footer-links a:hover {
    color: white;
}

.pml-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pml-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

.pml-footer-bottom-links {
    display: flex;
    gap: 25px;
}

.pml-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .pml-header .nav-link {
        padding: 10px 0 !important;
    }

    .pml-header-cta {
        margin-bottom: 20px;
    }

    .pml-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .pml-hero-visual {
        margin-top: 60px;
    }

    .pml-service-card {
        min-height: 500px;
        border-right: 0;
        border-bottom: 1px solid var(--pml-border);
    }

    .pml-process-item {
        grid-template-columns: 60px 150px 1fr;
    }

}


@media (max-width: 767px) {

    .pml-hero-title {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .pml-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pml-btn {
        width: 100%;
    }

    .pml-hero-visual {
        height: 380px;
    }

    .pml-visual-card {
        width: 280px;
        height: 330px;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 250px;
        height: 250px;
    }

    .pml-intro,
    .pml-problem,
    .pml-process,
    .pml-work,
    .pml-services,
    .pml-why {
        padding: 90px 0;
    }

    .pml-service-card {
        padding: 35px;
    }

    .pml-process-item {
        display: block;
    }

    .pml-process-item > span {
        display: block;
        margin-bottom: 10px;
    }

    .pml-process-item p {
        margin-top: 10px;
    }

    .pml-footer-bottom {
        flex-direction: column;
    }

}

/* =========================================================
   AI STOP PAGE
========================================================= */


/* ---------------------------------------------------------
   AI HERO
--------------------------------------------------------- */

.pml-ai-hero {
    position: relative;
    overflow: hidden;

    min-height: 760px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid var(--pml-border);

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(114, 0, 185, 0.12),
            transparent 35%
        ),
        #ffffff;
}

.pml-ai-title {
    max-width: 850px;

    margin: 0;

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

    font-size: clamp(3.5rem, 7vw, 6.5rem);

    font-weight: 700;

    line-height: 0.95;

    letter-spacing: -0.07em;
}

.pml-ai-title strong {
    color: var(--pml-purple);
    font-weight: inherit;
}

.pml-ai-description {
    max-width: 650px;

    margin-top: 32px;

    color: rgba(48, 51, 54, 0.65);

    font-size: 1.08rem;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   AI HERO VISUAL
--------------------------------------------------------- */

.pml-ai-visual {
    position: relative;

    width: 100%;
    height: 520px;
}


/* Grid */

.ai-grid {
    position: absolute;

    inset: 10px;

    background-image:
        linear-gradient(
            rgba(114, 0, 185, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(114, 0, 185, 0.12) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

    mask-image: radial-gradient(
        circle,
        black 15%,
        transparent 75%
    );

    -webkit-mask-image: radial-gradient(
        circle,
        black 15%,
        transparent 75%
    );
}


/* Outer circles */

.ai-circle {
    position: absolute;

    border: 1px solid rgba(114, 0, 185, 0.22);

    border-radius: 50%;
}

.ai-circle-one {
    width: 430px;
    height: 430px;

    top: 45px;
    left: 50%;

    transform: translateX(-50%);
}

.ai-circle-two {
    width: 300px;
    height: 300px;

    top: 110px;
    left: 50%;

    transform: translateX(-50%);
}


/* AI Core */

.ai-core {
    position: absolute;

    top: 170px;
    left: 50%;

    width: 180px;
    height: 180px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    border-radius: 50%;

    color: #ffffff;

    background: var(--pml-purple);

    box-shadow:
        0 0 0 15px rgba(114, 0, 185, 0.07),
        0 25px 70px rgba(114, 0, 185, 0.3);

    animation: ai-core-pulse 4s ease-in-out infinite;
}

.ai-core-label,
.ai-core-status {
    font-family: "DM Sans", sans-serif;

    font-size: 0.55rem;

    font-weight: 700;

    letter-spacing: 0.15em;
}

.ai-core-symbol {
    margin: 8px 0;

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

    font-size: 3rem;

    font-weight: 700;

    letter-spacing: -0.06em;
}


/* Core animation */

@keyframes ai-core-pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 15px rgba(114, 0, 185, 0.07),
            0 25px 70px rgba(114, 0, 185, 0.25);
    }

    50% {
        box-shadow:
            0 0 0 25px rgba(114, 0, 185, 0.04),
            0 30px 90px rgba(114, 0, 185, 0.35);
    }

}


/* ---------------------------------------------------------
   AI NODES
--------------------------------------------------------- */

.ai-node {
    position: absolute;

    z-index: 5;

    padding: 9px 15px;

    border: 1px solid rgba(114, 0, 185, 0.22);

    border-radius: 100px;

    color: var(--pml-purple);

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(48, 51, 54, 0.08);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    transition: 0.3s ease;
}

.ai-node:hover {
    color: #ffffff;

    background: var(--pml-purple);

    border-color: var(--pml-purple);

    transform: translateY(-3px);
}


/* Node positions */

.node-one {
    top: 80px;
    left: 0;
}

.node-two {
    top: 210px;
    right: 0;
}

.node-three {
    bottom: 80px;
    left: 10px;
}

.node-four {
    right: 20px;
    bottom: 50px;
}


/* ---------------------------------------------------------
   AI INTRO
--------------------------------------------------------- */

.pml-ai-intro {
    padding: 130px 0;

    background: #ffffff;
}


/* ---------------------------------------------------------
   AI SERVICES
--------------------------------------------------------- */

.pml-ai-services {
    padding: 130px 0;

    background: var(--pml-light);

    border-top: 1px solid var(--pml-border);

    border-bottom: 1px solid var(--pml-border);
}

.pml-ai-service-grid {
    border-top: 1px solid var(--pml-border);

    border-left: 1px solid var(--pml-border);
}

.pml-ai-service {
    position: relative;

    display: flex;

    min-height: 360px;

    flex-direction: column;

    justify-content: space-between;

    padding: 42px;

    border-right: 1px solid var(--pml-border);

    border-bottom: 1px solid var(--pml-border);

    background: #ffffff;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.pml-ai-service:hover {
    color: #ffffff;

    background: var(--pml-purple);
}

.pml-ai-service .service-number {
    color: var(--pml-purple);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.08em;
}

.pml-ai-service:hover .service-number {
    color: rgba(255, 255, 255, 0.55);
}

.pml-ai-service h3 {
    max-width: 440px;

    margin-top: 70px;

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

    font-size: 2rem;

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.pml-ai-service p {
    max-width: 470px;

    margin-top: 18px;

    color: rgba(48, 51, 54, 0.6);

    line-height: 1.75;
}

.pml-ai-service:hover p {
    color: rgba(255, 255, 255, 0.7);
}


/* Service arrow */

.service-arrow {
    position: absolute;

    right: 35px;
    bottom: 30px;

    display: flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(114, 0, 185, 0.2);

    border-radius: 50%;

    color: var(--pml-purple);

    font-size: 1.3rem;

    transition: 0.3s ease;
}

.pml-ai-service:hover .service-arrow {
    color: var(--pml-purple);

    background: #ffffff;

    border-color: #ffffff;

    transform: rotate(45deg);
}


/* Dark service card */

.pml-ai-service-dark {
    color: #ffffff;

    background: var(--pml-dark);
}

.pml-ai-service-dark p {
    color: rgba(255, 255, 255, 0.55);
}

.pml-ai-service-dark .service-number {
    color: rgba(255, 255, 255, 0.45);
}

.pml-ai-service-dark:hover {
    background: var(--pml-purple);
}


/* ---------------------------------------------------------
   AI PROBLEM / TERMINAL
--------------------------------------------------------- */

.pml-ai-problem {
    padding: 130px 0;

    background: #ffffff;
}


/* Terminal */

.pml-ai-terminal {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    background: #151515;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12);
}


/* Terminal header */

.terminal-header {
    position: relative;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 16px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-header > span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);
}

.terminal-header small {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.35);

    font-family: monospace;

    font-size: 0.65rem;
}


/* Terminal body */

.terminal-body {
    min-height: 350px;

    padding: 30px;

    color: rgba(255, 255, 255, 0.65);

    font-family: monospace;

    font-size: 0.85rem;

    line-height: 1.7;
}

.terminal-body p {
    margin-bottom: 18px;
}

.terminal-body p span {
    color: #b768ef;
}

.terminal-success {
    color: #9be3ae !important;
}

.terminal-cursor {
    color: #ffffff !important;

    animation: terminal-blink 1s infinite;
}

@keyframes terminal-blink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }

}


/* ---------------------------------------------------------
   AI APPROACH
--------------------------------------------------------- */

.pml-ai-approach {
    padding: 130px 0;

    color: #ffffff;

    background: var(--pml-dark);
}

.pml-ai-approach-card {
    min-height: 290px;

    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.pml-ai-approach-card:hover {
    background: var(--pml-purple);

    border-color: var(--pml-purple);

    transform: translateY(-5px);
}

.pml-ai-approach-card > span {
    color: rgba(255, 255, 255, 0.4);

    font-size: 0.75rem;

    font-weight: 800;
}

.pml-ai-approach-card h3 {
    margin-top: 70px;

    font-size: 1.3rem;

    font-weight: 700;
}

.pml-ai-approach-card p {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.55);

    line-height: 1.7;
}

.pml-ai-approach-card:hover p {
    color: rgba(255, 255, 255, 0.72);
}


/* ---------------------------------------------------------
   AI TECHNOLOGY
--------------------------------------------------------- */

.pml-ai-tech {
    padding: 130px 0;

    background: #ffffff;
}

.pml-tech-list {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 60px;
}

.pml-tech-list span {
    display: inline-flex;

    align-items: center;

    padding: 13px 20px;

    border: 1px solid var(--pml-border);

    border-radius: 100px;

    font-size: 0.85rem;

    font-weight: 600;

    transition: 0.25s ease;
}

.pml-tech-list span:hover {
    color: #ffffff;

    border-color: var(--pml-purple);

    background: var(--pml-purple);

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   AI CTA
--------------------------------------------------------- */

.pml-ai-cta {
    padding: 100px 0;

    background: var(--pml-light);
}

.pml-ai-cta-inner {
    position: relative;

    overflow: hidden;

    padding: 80px;

    border: 1px solid var(--pml-border);

    background: #ffffff;
}

.pml-ai-cta-inner::after {
    content: "";

    position: absolute;

    right: -120px;
    bottom: -160px;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(114, 0, 185, 0.15);

    border-radius: 50%;
}

.pml-ai-cta-inner::before {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -90px;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(114, 0, 185, 0.15);

    border-radius: 50%;
}

.pml-ai-cta h2 {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0;

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

    font-size: clamp(3rem, 6vw, 5.5rem);

    font-weight: 700;

    line-height: 0.98;

    letter-spacing: -0.06em;
}

.pml-ai-cta h2 strong {
    display: block;

    color: var(--pml-purple);
}


/* ---------------------------------------------------------
   AI RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1199px) {

    .pml-ai-title {
        font-size: clamp(3.5rem, 7vw, 5.5rem);
    }

    .pml-ai-visual {
        transform: scale(0.9);
    }

}


@media (max-width: 991px) {

    .pml-ai-hero {
        min-height: auto;

        padding: 100px 0;
    }

    .pml-ai-visual {
        margin-top: 60px;

        transform: none;
    }

    .pml-ai-service {
        min-height: 330px;
    }

    .pml-ai-problem {
        padding: 100px 0;
    }

}


@media (max-width: 767px) {

    .pml-ai-hero {
        padding: 80px 0;
    }

    .pml-ai-title {
        font-size: clamp(3.1rem, 15vw, 5rem);

        letter-spacing: -0.065em;
    }

    .pml-ai-description {
        font-size: 1rem;
    }

    .pml-ai-visual {
        height: 390px;

        margin-top: 40px;
    }

    .ai-circle-one {
        width: 320px;
        height: 320px;

        top: 35px;
    }

    .ai-circle-two {
        width: 220px;
        height: 220px;

        top: 85px;
    }

    .ai-core {
        top: 115px;

        width: 145px;
        height: 145px;
    }

    .ai-core-symbol {
        font-size: 2.3rem;
    }

    .node-one {
        top: 45px;
        left: 0;
    }

    .node-two {
        top: 150px;
        right: 0;
    }

    .node-three {
        bottom: 60px;
        left: 0;
    }

    .node-four {
        right: 0;
        bottom: 30px;
    }

    .pml-ai-intro,
    .pml-ai-services,
    .pml-ai-problem,
    .pml-ai-approach,
    .pml-ai-tech {
        padding: 90px 0;
    }

    .pml-ai-service {
        min-height: 300px;

        padding: 30px;
    }

    .pml-ai-service h3 {
        margin-top: 50px;

        font-size: 1.7rem;
    }

    .pml-ai-approach-card {
        min-height: 250px;
    }

    .pml-ai-approach-card h3 {
        margin-top: 50px;
    }

    .pml-ai-cta {
        padding: 60px 0;
    }

    .pml-ai-cta-inner {
        padding: 45px 25px;
    }

    .pml-ai-cta h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .terminal-body {
        min-height: 300px;

        padding: 25px;

        font-size: 0.75rem;
    }

}

/* =========================================================
   GO LIVE PAGE
========================================================= */

.pml-go-live-hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(114, 0, 185, 0.12),
            transparent 32%
        ),
        #f7f7f8;
    overflow: hidden;
}

.pml-go-live-title {
    max-width: 780px;
    margin: 25px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: .92;
    letter-spacing: -0.065em;
    font-weight: 700;
    color: var(--pml-text);
}

.pml-go-live-title span {
    display: block;
    color: var(--pml-purple);
}

.pml-go-live-description {
    max-width: 650px;
    margin-bottom: 35px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(48, 51, 54, .72);
}

.pml-go-live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pml-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.pml-btn span {
    font-size: 1.15rem;
}

.pml-btn-primary {
    color: #fff;
    background: var(--pml-purple);
}

.pml-btn-primary:hover {
    color: #fff;
    background: var(--pml-purple-dark);
    transform: translateY(-2px);
}

.pml-btn-outline {
    color: var(--pml-text);
    border: 1px solid var(--pml-border);
    background: #fff;
}

.pml-btn-outline:hover {
    color: var(--pml-purple);
    border-color: var(--pml-purple);
}


/* ---------------------------------------------------------
   SERVER VISUAL
--------------------------------------------------------- */

.pml-server-visual {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-rack {
    position: relative;
    width: 290px;
    padding: 25px 18px;
    border-radius: 14px;
    background: #303336;
    box-shadow:
        0 35px 80px rgba(48, 51, 54, .28),
        0 0 70px rgba(114, 0, 185, .14);
    transform: perspective(900px) rotateY(-10deg);
}

.server-rack::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.12);
    pointer-events: none;
}

.server-unit {
    position: relative;
    height: 75px;
    margin-bottom: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 7px;
    background: #222426;
    border: 1px solid rgba(255,255,255,.07);
}

.server-unit:last-child {
    margin-bottom: 0;
}

.server-unit span {
    margin-left: auto;
    font-family: "Space Grotesk", sans-serif;
    font-size: .72rem;
    letter-spacing: .14em;
    color: rgba(255,255,255,.4);
}

.server-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7200B9;
    box-shadow: 0 0 14px rgba(114, 0, 185, .9);
}

.server-lines {
    width: 65px;
    height: 5px;
    border-top: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.server-status {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,.1);
    font-size: .67rem;
    letter-spacing: .13em;
    font-weight: 700;
}

.server-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pml-purple);
    box-shadow: 0 0 10px rgba(114,0,185,.6);
}

.server-floating {
    position: absolute;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid var(--pml-border);
    border-radius: 5px;
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.server-floating-one {
    top: 100px;
    right: 10px;
}

.server-floating-two {
    left: 10px;
    top: 200px;
}

.server-floating-three {
    right: 30px;
    bottom: 100px;
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.pml-go-live-intro {
    padding: 130px 0;
    background: #fff;
}

.pml-section-eyebrow {
    display: inline-block;
    font-family: "Space Grotesk", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pml-purple);
}

.pml-go-live-intro h2,
.pml-infrastructure h2,
.pml-go-live-capabilities h2,
.pml-go-live-why h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -.055em;
    color: var(--pml-text);
}

.pml-go-live-intro h2 span,
.pml-infrastructure h2 span,
.pml-go-live-capabilities h2 span,
.pml-go-live-why h2 span {
    color: var(--pml-purple);
}

.pml-go-live-intro p {
    max-width: 750px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(48,51,54,.68);
}


/* ---------------------------------------------------------
   SERVICES
--------------------------------------------------------- */

.pml-go-live-services {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.pml-section-heading h2 {
    margin: 20px 0 0;
    max-width: 650px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.pml-section-heading h2 span {
    color: var(--pml-purple);
}

.pml-section-heading p {
    max-width: 360px;
    margin: 0;
    color: rgba(48,51,54,.65);
    line-height: 1.7;
}

.pml-go-live-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 35px;
    border: 1px solid var(--pml-border);
    border-radius: 8px;
    background: #fff;
    transition: .35s ease;
    overflow: hidden;
}

.pml-go-live-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    bottom: -65px;
    border-radius: 50%;
    background: rgba(114,0,185,.06);
    transition: .35s ease;
}

.pml-go-live-card:hover {
    transform: translateY(-7px);
    border-color: rgba(114,0,185,.35);
    box-shadow: 0 25px 60px rgba(48,51,54,.08);
}

.pml-go-live-card:hover::after {
    transform: scale(1.4);
}

.pml-card-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: .72rem;
    letter-spacing: .15em;
    color: rgba(48,51,54,.4);
}

.pml-go-live-icon {
    display: inline-flex;
    margin: 35px 0 20px;
    padding: 8px 11px;
    border-radius: 4px;
    background: rgba(114,0,185,.08);
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.pml-go-live-card h3 {
    margin-bottom: 15px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
}

.pml-go-live-card p {
    margin-bottom: 25px;
    color: rgba(48,51,54,.64);
    line-height: 1.7;
}

.pml-go-live-card a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--pml-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
}

.pml-go-live-card a span {
    transition: .25s ease;
}

.pml-go-live-card a:hover span {
    transform: translate(3px,-3px);
}

.pml-go-live-card-dark {
    color: #fff;
    background: #303336;
    border-color: #303336;
}

.pml-go-live-card-dark p {
    color: rgba(255,255,255,.62);
}

.pml-go-live-card-dark .pml-card-number {
    color: rgba(255,255,255,.35);
}


/* ---------------------------------------------------------
   INFRASTRUCTURE FLOW
--------------------------------------------------------- */

.pml-infrastructure {
    padding: 130px 0;
    background: #fff;
}

.pml-infrastructure p {
    max-width: 550px;
    color: rgba(48,51,54,.68);
    line-height: 1.8;
}

.pml-text-link {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    color: var(--pml-purple);
    text-decoration: none;
    font-weight: 700;
}

.pml-infrastructure-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 25px;
    border-radius: 10px;
    background: #f7f7f8;
}

.infra-step {
    min-width: 90px;
    text-align: center;
}

.infra-step span {
    display: block;
    margin-bottom: 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
    color: var(--pml-purple);
}

.infra-step strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: .9rem;
}

.infra-step small {
    display: block;
    margin-top: 5px;
    font-size: .65rem;
    color: rgba(48,51,54,.5);
}

.infra-line {
    width: 45px;
    height: 1px;
    background: rgba(114,0,185,.25);
}


/* ---------------------------------------------------------
   CAPABILITIES
--------------------------------------------------------- */

.pml-go-live-capabilities {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-capability {
    min-height: 90px;
    display: flex;
    align-items: center;
    padding: 25px;
    border: 1px solid var(--pml-border);
    border-radius: 6px;
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    transition: .3s ease;
}

.pml-capability:hover {
    color: #fff;
    background: var(--pml-purple);
    border-color: var(--pml-purple);
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   WHY
--------------------------------------------------------- */

.pml-go-live-why {
    padding: 130px 0;
    background: #fff;
}

.pml-why-item {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid var(--pml-border);
}

.pml-why-item > span {
    font-family: "Space Grotesk", sans-serif;
    font-size: .7rem;
    color: var(--pml-purple);
}

.pml-why-item h3 {
    margin-bottom: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
}

.pml-why-item p {
    margin: 0;
    color: rgba(48,51,54,.62);
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.pml-go-live-cta {
    padding: 100px 0;
    background: #fff;
}

.pml-go-live-cta-inner {
    position: relative;
    padding: 100px 40px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,.13),
            transparent 35%
        ),
        #7200B9;
}

.pml-go-live-cta .pml-section-eyebrow {
    color: rgba(255,255,255,.65);
}

.pml-go-live-cta h2 {
    position: relative;
    z-index: 2;
    margin: 20px auto;
    max-width: 800px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.06em;
    color: #fff;
}

.pml-go-live-cta h2 span {
    display: block;
    color: #fff;
    opacity: .65;
}

.pml-go-live-cta p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 25px auto 35px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.pml-btn-light {
    position: relative;
    z-index: 2;
    color: var(--pml-text);
    background: #fff;
}

.pml-btn-light:hover {
    color: var(--pml-purple);
    transform: translateY(-2px);
}

.pml-cta-decoration {
    position: absolute;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.cta-decoration-one {
    width: 450px;
    height: 450px;
    top: -270px;
    left: -100px;
}

.cta-decoration-two {
    width: 350px;
    height: 350px;
    right: -100px;
    bottom: -220px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-go-live-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .pml-server-visual {
        min-height: 420px;
    }

    .pml-section-heading {
        display: block;
    }

    .pml-section-heading p {
        margin-top: 25px;
    }

    .pml-infrastructure-flow {
        margin-top: 20px;
    }

}

@media (max-width: 767px) {

    .pml-go-live-hero {
        padding: 80px 0;
    }

    .pml-go-live-title {
        font-size: 3.5rem;
    }

    .pml-go-live-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pml-btn {
        justify-content: center;
    }

    .pml-server-visual {
        min-height: 380px;
    }

    .server-rack {
        width: 250px;
    }

    .server-floating-one {
        right: 0;
    }

    .server-floating-two {
        left: 0;
    }

    .server-floating-three {
        right: 0;
        bottom: 70px;
    }

    .pml-go-live-intro,
    .pml-go-live-services,
    .pml-infrastructure,
    .pml-go-live-capabilities,
    .pml-go-live-why {
        padding: 90px 0;
    }

    .pml-go-live-card {
        min-height: 300px;
    }

    .pml-infrastructure-flow {
        flex-wrap: wrap;
        gap: 20px;
    }

    .infra-line {
        width: 25px;
    }

    .pml-go-live-cta {
        padding: 70px 0;
    }

    .pml-go-live-cta-inner {
        padding: 80px 25px;
    }

}

/* =========================================================
   FIX SUPPORT PAGE
========================================================= */

.pml-fix-hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(114, 0, 185, .11),
            transparent 32%
        ),
        #f7f7f8;
    overflow: hidden;
}

.pml-fix-title {
    max-width: 780px;
    margin: 25px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 700;
    color: var(--pml-text);
}

.pml-fix-title span {
    display: block;
    color: var(--pml-purple);
}

.pml-fix-description {
    max-width: 650px;
    margin-bottom: 35px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(48,51,54,.72);
}

.pml-fix-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ---------------------------------------------------------
   FIX VISUAL
--------------------------------------------------------- */

.pml-fix-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fix-window {
    position: relative;
    width: min(430px, 100%);
    border-radius: 10px;
    overflow: hidden;
    background: #303336;
    box-shadow:
        0 35px 80px rgba(48,51,54,.22),
        0 0 80px rgba(114,0,185,.12);
    transform: rotate(2deg);
}

.fix-window-header {
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.fix-window-dots {
    display: flex;
    gap: 6px;
}

.fix-window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}

.fix-window-header small {
    margin-left: auto;
    font-family: monospace;
    font-size: .65rem;
    color: rgba(255,255,255,.35);
}

.fix-terminal {
    min-height: 330px;
    padding: 30px;
    font-family: monospace;
    font-size: .76rem;
    line-height: 2.4;
    color: rgba(255,255,255,.75);
}

.terminal-muted {
    color: rgba(255,255,255,.3);
}

.terminal-error {
    color: #fff;
}

.terminal-warning {
    color: rgba(255,255,255,.55);
}

.terminal-success {
    color: #fff;
    font-weight: 700;
}

.fix-orbit {
    position: absolute;
    padding: 10px 14px;
    border: 1px solid var(--pml-border);
    border-radius: 5px;
    background: #fff;
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .12em;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.fix-orbit-one {
    top: 80px;
    right: 5px;
}

.fix-orbit-two {
    left: 0;
    top: 210px;
}

.fix-orbit-three {
    right: 20px;
    bottom: 70px;
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.pml-fix-intro {
    padding: 130px 0;
    background: #fff;
}

.pml-fix-intro h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.pml-fix-intro h2 span {
    color: var(--pml-purple);
}

.pml-fix-intro p {
    max-width: 750px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(48,51,54,.68);
}


/* ---------------------------------------------------------
   SERVICES
--------------------------------------------------------- */

.pml-fix-services {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-fix-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 35px;
    overflow: hidden;
    border: 1px solid var(--pml-border);
    border-radius: 8px;
    background: #fff;
    transition: .35s ease;
}

.pml-fix-card:hover {
    transform: translateY(-7px);
    border-color: rgba(114,0,185,.35);
    box-shadow: 0 25px 60px rgba(48,51,54,.08);
}

.pml-fix-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(114,0,185,.05);
}

.pml-fix-icon {
    display: inline-flex;
    margin: 35px 0 20px;
    padding: 8px 11px;
    border-radius: 4px;
    background: rgba(114,0,185,.08);
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.pml-fix-card h3 {
    margin-bottom: 15px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
}

.pml-fix-card p {
    margin-bottom: 25px;
    color: rgba(48,51,54,.64);
    line-height: 1.7;
}

.pml-fix-card a {
    display: inline-flex;
    gap: 8px;
    color: var(--pml-purple);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
}

.pml-fix-card-dark {
    color: #fff;
    background: #303336;
    border-color: #303336;
}

.pml-fix-card-dark p {
    color: rgba(255,255,255,.62);
}

.pml-fix-card-dark .pml-card-number {
    color: rgba(255,255,255,.35);
}


/* ---------------------------------------------------------
   PROCESS
--------------------------------------------------------- */

.pml-fix-process {
    padding: 130px 0;
    background: #fff;
}

.pml-fix-process h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.pml-fix-process h2 span {
    display: block;
    color: var(--pml-purple);
}

.pml-fix-process > .container > .row > .col-lg-5 > p {
    max-width: 520px;
    color: rgba(48,51,54,.66);
    line-height: 1.8;
}

.pml-fix-process-list {
    border-top: 1px solid var(--pml-border);
}

.pml-fix-process-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--pml-border);
}

.process-number {
    min-width: 35px;
    font-family: "Space Grotesk", sans-serif;
    font-size: .68rem;
    color: var(--pml-purple);
}

.pml-fix-process-item h3 {
    margin-bottom: 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
}

.pml-fix-process-item p {
    margin: 0;
    color: rgba(48,51,54,.6);
    line-height: 1.6;
}


/* ---------------------------------------------------------
   TECHNOLOGY
--------------------------------------------------------- */

.pml-fix-tech {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-fix-tech h2 {
    margin-top: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.pml-fix-tech h2 span {
    color: var(--pml-purple);
}

.pml-fix-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--pml-border);
    border-left: 1px solid var(--pml-border);
}

.pml-fix-tech-item {
    padding: 25px;
    border-right: 1px solid var(--pml-border);
    border-bottom: 1px solid var(--pml-border);
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: .9rem;
    font-weight: 600;
    transition: .3s ease;
}

.pml-fix-tech-item:hover {
    color: #fff;
    background: var(--pml-purple);
}


/* ---------------------------------------------------------
   SUPPORT TYPES
--------------------------------------------------------- */

.pml-fix-support-types {
    padding: 120px 0;
    background: #fff;
}

.pml-support-box {
    height: 100%;
    min-height: 280px;
    padding: 35px;
    border: 1px solid var(--pml-border);
    border-radius: 8px;
}

.pml-support-box > span {
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--pml-purple);
}

.pml-support-box h3 {
    margin: 25px 0 15px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
}

.pml-support-box p {
    color: rgba(48,51,54,.62);
    line-height: 1.7;
}

.pml-support-box a {
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
    color: var(--pml-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
}

.pml-support-box-dark {
    color: #fff;
    background: #303336;
    border-color: #303336;
}

.pml-support-box-dark p {
    color: rgba(255,255,255,.62);
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.pml-fix-cta {
    padding: 100px 0;
    background: #fff;
}

.pml-fix-cta-inner {
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    background: var(--pml-purple);
}

.pml-fix-cta h2 {
    position: relative;
    z-index: 2;
    margin: 20px auto;
    max-width: 800px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.06em;
    color: #fff;
}

.pml-fix-cta h2 span {
    display: block;
    opacity: .65;
}

.pml-fix-cta p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 25px auto 35px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.pml-fix-cta .pml-section-eyebrow {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.65);
}

.fix-cta-circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.fix-cta-circle-one {
    width: 450px;
    height: 450px;
    left: -120px;
    top: -260px;
}

.fix-cta-circle-two {
    width: 350px;
    height: 350px;
    right: -100px;
    bottom: -220px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-fix-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .pml-fix-visual {
        min-height: 420px;
    }

    .pml-section-heading {
        display: block;
    }

    .pml-section-heading p {
        margin-top: 25px;
    }

    .pml-fix-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 767px) {

    .pml-fix-hero {
        padding: 80px 0;
    }

    .pml-fix-title {
        font-size: 3.5rem;
    }

    .pml-fix-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pml-btn {
        justify-content: center;
    }

    .pml-fix-visual {
        min-height: 380px;
    }

    .fix-window {
        width: 100%;
    }

    .fix-orbit-one {
        right: 0;
    }

    .fix-orbit-two {
        left: 0;
    }

    .fix-orbit-three {
        right: 0;
    }

    .pml-fix-intro,
    .pml-fix-services,
    .pml-fix-process,
    .pml-fix-tech,
    .pml-fix-support-types {
        padding: 90px 0;
    }

    .pml-fix-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pml-fix-cta {
        padding: 70px 0;
    }

    .pml-fix-cta-inner {
        padding: 80px 20px;
    }

}
/* =========================================================
   WORK / PORTFOLIO PAGE
========================================================= */

.pml-work-hero {
    padding: 150px 0 110px;
    background: #f7f7f8;
}

.pml-work-title {
    margin: 25px 0 0;
    max-width: 900px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.8rem, 7vw, 7rem);
    line-height: .9;
    letter-spacing: -.07em;
    font-weight: 700;
}

.pml-work-title span {
    display: block;
    color: var(--pml-purple);
}

.pml-work-description {
    max-width: 390px;
    margin: 0;
    color: rgba(48,51,54,.68);
    line-height: 1.8;
}


/* =========================================================
   PROJECTS
========================================================= */

.pml-work-projects {
    padding: 120px 0 40px;
    background: #fff;
}

.pml-work-project {
    padding: 80px 0;
}

.pml-work-project + .pml-work-project {
    border-top: 1px solid var(--pml-border);
}

.pml-project-visual {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
    border-radius: 10px;
    background: #f7f7f8;
}

.project-browser,
.email-window,
.crm-window {
    width: 100%;
    max-width: 620px;
    overflow: hidden;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(48,51,54,.14);
}

.project-browser {
    transform: rotate(-2deg);
}

.project-browser-top,
.email-header {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid var(--pml-border);
}

.project-dots {
    display: flex;
    gap: 5px;
}

.project-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(48,51,54,.2);
}

.project-url {
    margin-left: auto;
    margin-right: auto;
    padding: 6px 40px;
    border-radius: 100px;
    background: #f7f7f8;
    color: rgba(48,51,54,.35);
    font-size: .58rem;
}

.valet-dashboard {
    display: flex;
    min-height: 350px;
}

.valet-sidebar {
    width: 125px;
    padding: 20px 12px;
    background: #303336;
}

.valet-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 5px;
    background: var(--pml-purple);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
}

.valet-menu {
    padding: 10px 8px;
    margin-bottom: 5px;
    border-radius: 4px;
    color: rgba(255,255,255,.45);
    font-size: .58rem;
}

.valet-menu.active {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.valet-content {
    flex: 1;
    padding: 25px;
}

.valet-heading {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
}

.valet-heading span {
    color: rgba(48,51,54,.4);
    font-size: .6rem;
}

.valet-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 25px;
}

.valet-stats div {
    padding: 15px;
    border-radius: 5px;
    background: #f7f7f8;
}

.valet-stats small,
.crm-stat small {
    display: block;
    margin-bottom: 7px;
    font-size: .48rem;
    color: rgba(48,51,54,.4);
}

.valet-stats strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.valet-chart {
    height: 130px;
    display: flex;
    align-items: end;
    gap: 12px;
    margin-top: 25px;
    padding: 20px;
    border-radius: 5px;
    background: #f7f7f8;
}

.valet-chart span,
.crm-chart span {
    flex: 1;
    min-height: 15px;
    border-radius: 3px 3px 0 0;
    background: var(--pml-purple);
}


/* =========================================================
   EMAIL VISUAL
========================================================= */

.project-email {
    background: #eeeef0;
}

.email-window {
    transform: rotate(2deg);
}

.email-header {
    justify-content: space-between;
    font-size: .65rem;
}

.email-layout {
    display: flex;
    min-height: 350px;
}

.email-sidebar {
    width: 145px;
    padding: 20px 12px;
    background: #303336;
    color: #fff;
}

.email-sidebar > strong {
    display: block;
    margin-bottom: 25px;
    font-size: .7rem;
}

.email-folder {
    display: flex;
    justify-content: space-between;
    padding: 9px 8px;
    margin-bottom: 4px;
    border-radius: 4px;
    color: rgba(255,255,255,.45);
    font-size: .58rem;
}

.email-folder.active {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.email-folder span {
    color: rgba(255,255,255,.35);
}

.email-list {
    flex: 1;
    padding: 18px;
}

.email-search {
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 4px;
    background: #f7f7f8;
    color: rgba(48,51,54,.35);
    font-size: .58rem;
}

.email-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 8px;
    border-bottom: 1px solid var(--pml-border);
}

.email-row.active {
    border-radius: 5px;
    background: rgba(114,0,185,.05);
}

.email-avatar {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(114,0,185,.1);
    color: var(--pml-purple);
    font-size: .48rem;
    font-weight: 700;
}

.email-row strong {
    display: block;
    font-size: .62rem;
}

.email-row small {
    display: block;
    margin-top: 3px;
    color: rgba(48,51,54,.4);
    font-size: .48rem;
}

.email-row > span {
    margin-left: auto;
    color: rgba(48,51,54,.35);
    font-size: .48rem;
}


/* =========================================================
   CRM VISUAL
========================================================= */

.project-crm {
    background: #f7f7f8;
}

.crm-window {
    overflow: hidden;
}

.crm-topbar {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid var(--pml-border);
}

.crm-topbar strong {
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
}

.crm-topbar span {
    font-size: .58rem;
    color: rgba(48,51,54,.4);
}

.crm-body {
    padding: 25px;
}

.crm-stat-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.crm-stat {
    padding: 18px;
    border-radius: 5px;
    background: #f7f7f8;
}

.crm-stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
}

.crm-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.crm-chart-box,
.crm-list-box {
    padding: 20px;
    border-radius: 5px;
    background: #f7f7f8;
}

.crm-chart-box > small,
.crm-list-box > small {
    font-size: .48rem;
    color: rgba(48,51,54,.4);
}

.crm-chart {
    height: 150px;
    display: flex;
    align-items: end;
    gap: 10px;
    margin-top: 20px;
}

.crm-chart span {
    flex: 1;
    border-radius: 3px 3px 0 0;
}

.crm-lead {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: .55rem;
}

.crm-lead span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pml-purple);
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.pml-project-content {
    padding: 20px 10px;
}

.pml-project-number {
    margin-bottom: 30px;
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
    color: rgba(48,51,54,.35);
}

.pml-project-category {
    display: block;
    margin-bottom: 15px;
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pml-project-content h2 {
    margin-bottom: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.pml-project-content p {
    max-width: 470px;
    margin-bottom: 25px;
    color: rgba(48,51,54,.65);
    line-height: 1.75;
}

.pml-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 30px;
}

.pml-project-tags span {
    padding: 7px 10px;
    border: 1px solid var(--pml-border);
    border-radius: 4px;
    color: rgba(48,51,54,.6);
    font-size: .62rem;
}

.pml-project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pml-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
}

.pml-project-link span {
    transition: .25s ease;
}

.pml-project-link:hover span {
    transform: translate(3px,-3px);
}


/* =========================================================
   CAPABILITIES
========================================================= */

.pml-work-capabilities {
    padding: 130px 0;
    background: #f7f7f8;
}

.pml-work-capabilities h2 {
    margin: 20px 0 0;
    max-width: 700px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-work-capabilities h2 span {
    color: var(--pml-purple);
}

.pml-work-capabilities .row > .col-lg-5 > p {
    margin: 0;
    color: rgba(48,51,54,.65);
    line-height: 1.8;
}

.pml-work-capability {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid var(--pml-border);
    border-radius: 5px;
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    transition: .3s ease;
}

.pml-work-capability span {
    color: var(--pml-purple);
    font-size: .62rem;
}

.pml-work-capability:hover {
    color: #fff;
    background: var(--pml-purple);
    border-color: var(--pml-purple);
    transform: translateY(-3px);
}

.pml-work-capability:hover span {
    color: rgba(255,255,255,.65);
}


/* =========================================================
   CTA
========================================================= */

.pml-work-cta {
    padding: 100px 0;
    background: #fff;
}

.pml-work-cta-inner {
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    background: var(--pml-purple);
}

.pml-work-cta .pml-section-eyebrow {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.65);
}

.pml-work-cta h2 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 20px auto;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.06em;
    color: #fff;
}

.pml-work-cta h2 span {
    display: block;
    opacity: .65;
}

.pml-work-cta p {
    position: relative;
    z-index: 2;
    margin: 25px auto 35px;
    color: rgba(255,255,255,.7);
}

.work-cta-circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.work-cta-circle-one {
    width: 450px;
    height: 450px;
    left: -120px;
    top: -270px;
}

.work-cta-circle-two {
    width: 350px;
    height: 350px;
    right: -100px;
    bottom: -220px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-work-hero {
        padding: 110px 0 80px;
    }

    .pml-work-description {
        margin-top: 20px;
    }

    .pml-work-project {
        padding: 60px 0;
    }

    .pml-project-content {
        padding: 10px 0;
    }

}

@media (max-width: 767px) {

    .pml-work-title {
        font-size: 3.7rem;
    }

    .pml-project-visual {
        min-height: 360px;
        padding: 20px;
    }

    .valet-sidebar {
        width: 90px;
    }

    .valet-content {
        padding: 15px;
    }

    .valet-stats {
        gap: 5px;
    }

    .valet-stats div {
        padding: 10px;
    }

    .email-sidebar {
        width: 100px;
    }

    .email-row small {
        display: none;
    }

    .crm-body {
        padding: 15px;
    }

    .crm-main-grid {
        grid-template-columns: 1fr;
    }

    .pml-work-capabilities {
        padding: 90px 0;
    }

    .pml-work-cta {
        padding: 70px 0;
    }

    .pml-work-cta-inner {
        padding: 80px 20px;
    }

}
/* =========================================================
   INSIGHTS PAGE
========================================================= */

.pml-insights-hero {
    padding: 150px 0 110px;
    background: #f7f7f8;
}

.pml-insights-title {
    max-width: 850px;
    margin: 25px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.8rem, 7vw, 7rem);
    line-height: .9;
    letter-spacing: -.07em;
    font-weight: 700;
}

.pml-insights-title span {
    display: block;
    color: var(--pml-purple);
}

.pml-insights-description {
    max-width: 390px;
    margin: 0;
    color: rgba(48,51,54,.68);
    line-height: 1.8;
}


/* =========================================================
   FEATURED
========================================================= */

.pml-featured-insight {
    padding: 100px 0;
    background: #fff;
}

.pml-featured-card {
    padding: 45px;
    overflow: hidden;
    border-radius: 10px;
    background: #f7f7f8;
}

.pml-insight-feature-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-code {
    width: min(480px, 100%);
    overflow: hidden;
    border-radius: 9px;
    background: #303336;
    box-shadow: 0 30px 70px rgba(48,51,54,.18);
    transform: rotate(-2deg);
}

.feature-code-top {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.feature-code-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

.feature-code-body {
    min-height: 310px;
    padding: 28px;
    font-family: monospace;
    font-size: .72rem;
    line-height: 2.7;
    color: rgba(255,255,255,.7);
}

.code-purple {
    color: #fff;
}

.code-error {
    margin-top: 12px;
    color: rgba(255,255,255,.4);
}

.code-success {
    color: rgba(255,255,255,.5);
}

.feature-orbit {
    position: absolute;
    padding: 10px 14px;
    border-radius: 5px;
    border: 1px solid var(--pml-border);
    background: #fff;
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.feature-orbit-one {
    top: 55px;
    right: 5px;
}

.feature-orbit-two {
    bottom: 55px;
    left: 5px;
}

.pml-insight-label {
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.pml-featured-card h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.pml-featured-card h2 span {
    color: var(--pml-purple);
}

.pml-featured-card p {
    color: rgba(48,51,54,.65);
    line-height: 1.75;
}

.pml-insight-meta {
    margin: 25px 0;
    font-size: .65rem;
    color: rgba(48,51,54,.4);
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* =========================================================
   CATEGORIES
========================================================= */

.pml-insight-categories {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-insight-categories h2 {
    margin: 20px 0 50px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-insight-categories h2 span {
    color: var(--pml-purple);
}

.pml-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pml-category-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid var(--pml-border);
    border-radius: 7px;
    background: #fff;
    color: var(--pml-text);
    text-decoration: none;
    transition: .3s ease;
}

.pml-category-card span {
    color: var(--pml-purple);
    font-size: .65rem;
}

.pml-category-card strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
}

.pml-category-card small {
    color: rgba(48,51,54,.5);
    font-size: .68rem;
}

.pml-category-card:hover {
    color: #fff;
    background: var(--pml-purple);
    border-color: var(--pml-purple);
    transform: translateY(-5px);
}

.pml-category-card:hover span,
.pml-category-card:hover small {
    color: rgba(255,255,255,.65);
}


/* =========================================================
   ARTICLE GROUPS
========================================================= */

.pml-insight-articles {
    padding: 100px 0;
    background: #fff;
}

.pml-insight-group {
    padding: 70px 0;
}

.pml-insight-group + .pml-insight-group {
    border-top: 1px solid var(--pml-border);
}

.pml-insight-group-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.pml-insight-group-heading h2 {
    margin: 15px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -.05em;
}

.pml-insight-count {
    color: rgba(48,51,54,.3);
    font-family: "Space Grotesk", sans-serif;
    font-size: .7rem;
}

.pml-insight-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    padding: 30px;
    border: 1px solid var(--pml-border);
    border-radius: 7px;
    background: #fff;
    transition: .3s ease;
}

.pml-insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(114,0,185,.3);
    box-shadow: 0 20px 50px rgba(48,51,54,.07);
}

.pml-insight-card-number {
    margin-bottom: 35px;
    color: rgba(48,51,54,.3);
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
}

.pml-insight-card > span {
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pml-insight-card h3 {
    margin: 15px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    line-height: 1.15;
}

.pml-insight-card p {
    color: rgba(48,51,54,.6);
    font-size: .88rem;
    line-height: 1.7;
}

.pml-insight-card a {
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
    color: var(--pml-purple);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 700;
}


/* =========================================================
   CTA
========================================================= */

.pml-insights-cta {
    padding: 100px 0;
    background: #fff;
}

.pml-insights-cta-inner {
    padding: 100px 30px;
    border-radius: 10px;
    text-align: center;
    background: var(--pml-purple);
}

.pml-insights-cta-inner .pml-section-eyebrow {
    color: rgba(255,255,255,.65);
}

.pml-insights-cta h2 {
    max-width: 850px;
    margin: 20px auto;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.06em;
    color: #fff;
}

.pml-insights-cta h2 span {
    display: block;
    opacity: .65;
}

.pml-insights-cta p {
    margin: 25px auto 35px;
    color: rgba(255,255,255,.7);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-insights-hero {
        padding: 110px 0 80px;
    }

    .pml-insights-description {
        margin-top: 20px;
    }

    .pml-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .pml-insights-title {
        font-size: 3.7rem;
    }

    .pml-featured-card {
        padding: 20px;
    }

    .pml-insight-feature-visual {
        min-height: 350px;
    }

    .feature-code-body {
        min-height: 270px;
        padding: 20px;
        font-size: .63rem;
    }

    .pml-category-grid {
        grid-template-columns: 1fr;
    }

    .pml-insight-categories,
    .pml-insight-articles {
        padding: 90px 0;
    }

    .pml-insight-group {
        padding: 50px 0;
    }

    .pml-insight-group-heading {
        align-items: start;
    }

    .pml-insight-cta {
        padding: 70px 0;
    }

    .pml-insights-cta-inner {
        padding: 80px 20px;
    }

}
/* =========================================================
   LET'S DISCUSS PAGE
========================================================= */

.pml-discuss-hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(114, 0, 185, .12),
            transparent 32%
        ),
        #f7f7f8;
    overflow: hidden;
}

.pml-discuss-title {
    max-width: 850px;
    margin: 25px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: .88;
    letter-spacing: -.075em;
    font-weight: 700;
}

.pml-discuss-title span {
    display: block;
    color: var(--pml-purple);
}

.pml-discuss-description {
    max-width: 650px;
    margin-bottom: 35px;
    color: rgba(48,51,54,.68);
    font-size: 1.1rem;
    line-height: 1.8;
}

.pml-discuss-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    border-top: 1px solid var(--pml-border);
}

.pml-discuss-points div {
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid var(--pml-border);
    font-family: "Space Grotesk", sans-serif;
    font-size: .8rem;
    font-weight: 600;
}

.pml-discuss-points span {
    margin-right: 12px;
    color: var(--pml-purple);
    font-size: .62rem;
}


/* =========================================================
   DISCUSS VISUAL
========================================================= */

.pml-discuss-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discuss-circle {
    position: absolute;
    border: 1px solid rgba(114,0,185,.15);
    border-radius: 50%;
}

.discuss-circle-one {
    width: 380px;
    height: 380px;
}

.discuss-circle-two {
    width: 260px;
    height: 260px;
}

.discuss-center {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pml-purple);
    color: #fff;
    box-shadow: 0 30px 70px rgba(114,0,185,.25);
}

.discuss-center span {
    margin-bottom: 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: .55rem;
    letter-spacing: .15em;
    opacity: .6;
}

.discuss-center strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem;
    line-height: .85;
    letter-spacing: -.06em;
    text-align: center;
}

.discuss-node {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border: 1px solid var(--pml-border);
    border-radius: 5px;
    background: #fff;
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.discuss-node-one {
    top: 60px;
    right: 30px;
}

.discuss-node-two {
    top: 210px;
    left: 5px;
}

.discuss-node-three {
    bottom: 65px;
    right: 10px;
}

.discuss-node-four {
    bottom: 120px;
    left: 40px;
}


/* =========================================================
   FORM SECTION
========================================================= */

.pml-discuss-form-section {
    padding: 130px 0;
    background: #fff;
}

.pml-discuss-form-intro {
    position: sticky;
    top: 120px;
}

.pml-discuss-form-intro h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-discuss-form-intro h2 span {
    display: block;
    color: var(--pml-purple);
}

.pml-discuss-form-intro > p {
    max-width: 400px;
    color: rgba(48,51,54,.65);
    line-height: 1.8;
}

.pml-discuss-contact {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--pml-border);
}

.pml-discuss-contact span {
    display: block;
    margin-bottom: 10px;
    color: rgba(48,51,54,.4);
    font-family: "Space Grotesk", sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .13em;
}

.pml-discuss-contact a {
    color: var(--pml-text);
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
}

.pml-discuss-form-card {
    padding: 45px;
    border: 1px solid var(--pml-border);
    border-radius: 8px;
    background: #f7f7f8;
}

.pml-form-label {
    display: block;
    margin-bottom: 9px;
    font-family: "Space Grotesk", sans-serif;
    font-size: .72rem;
    font-weight: 600;
}

.pml-form-control {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(48,51,54,.13);
    border-radius: 5px;
    outline: none;
    background: #fff;
    color: var(--pml-text);
    font-family: "DM Sans", sans-serif;
    font-size: .9rem;
    transition: .25s ease;
}

.pml-form-control:focus {
    border-color: var(--pml-purple);
    box-shadow: 0 0 0 3px rgba(114,0,185,.08);
}

.pml-form-textarea {
    resize: vertical;
    min-height: 170px;
}

.pml-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 24px;
    border: 0;
    border-radius: 5px;
    background: var(--pml-purple);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.pml-form-submit:hover {
    background: var(--pml-purple-dark);
    transform: translateY(-2px);
}

.pml-form-note {
    margin: 15px 0 0;
    color: rgba(48,51,54,.4);
    font-size: .7rem;
}

.pml-form-message {
    margin-bottom: 30px;
    padding: 16px 18px;
    border-radius: 5px;
    font-size: .85rem;
    line-height: 1.5;
}

.pml-form-success {
    background: rgba(114,0,185,.08);
    color: var(--pml-purple);
    border: 1px solid rgba(114,0,185,.15);
}

.pml-form-error {
    background: rgba(180,30,30,.06);
    color: #8b1e1e;
    border: 1px solid rgba(180,30,30,.12);
}


/* =========================================================
   WHAT HAPPENS NEXT
========================================================= */

.pml-discuss-next {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-discuss-next h2 {
    margin: 20px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-discuss-next h2 span {
    color: var(--pml-purple);
}

.pml-next-card {
    min-height: 240px;
    padding: 30px;
    border: 1px solid var(--pml-border);
    border-radius: 7px;
    background: #fff;
}

.pml-next-card > span {
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
}

.pml-next-card h3 {
    margin: 35px 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
}

.pml-next-card p {
    margin: 0;
    color: rgba(48,51,54,.62);
    line-height: 1.7;
}

.pml-next-card-dark {
    color: #fff;
    background: #303336;
    border-color: #303336;
}

.pml-next-card-dark p {
    color: rgba(255,255,255,.6);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-discuss-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .pml-discuss-form-intro {
        position: static;
    }

    .pml-discuss-visual {
        min-height: 400px;
    }

}

@media (max-width: 767px) {

    .pml-discuss-title {
        font-size: 3.8rem;
    }

    .pml-discuss-points {
        grid-template-columns: 1fr;
    }

    .pml-discuss-visual {
        min-height: 350px;
    }

    .discuss-circle-one {
        width: 290px;
        height: 290px;
    }

    .discuss-circle-two {
        width: 200px;
        height: 200px;
    }

    .discuss-center {
        width: 130px;
        height: 130px;
    }

    .discuss-node-one {
        top: 30px;
        right: 0;
    }

    .discuss-node-two {
        left: 0;
        top: 150px;
    }

    .discuss-node-three {
        right: 0;
        bottom: 30px;
    }

    .discuss-node-four {
        left: 10px;
        bottom: 70px;
    }

    .pml-discuss-form-section,
    .pml-discuss-next {
        padding: 90px 0;
    }

    .pml-discuss-form-card {
        padding: 25px 20px;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */

.pml-about-hero {
    padding: 150px 0 110px;
    background:
        radial-gradient(
            circle at 85% 40%,
            rgba(114,0,185,.1),
            transparent 30%
        ),
        #f7f7f8;
}

.pml-about-title {
    max-width: 900px;
    margin: 25px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: .86;
    letter-spacing: -.075em;
    font-weight: 700;
}

.pml-about-title span {
    color: var(--pml-purple);
}

.pml-about-description {
    max-width: 390px;
    margin: 0;
    color: rgba(48,51,54,.68);
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.pml-about-intro {
    padding: 130px 0;
    background: #fff;
}

.pml-about-intro h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-about-intro h2 span {
    display: block;
    color: var(--pml-purple);
}

.pml-about-large-text {
    max-width: 720px;
    margin: 0 0 25px;
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(48,51,54,.68);
}


/* =========================================================
   PILLARS
========================================================= */

.pml-about-pillars {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-about-pillars h2 {
    margin: 20px 0 50px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-about-pillars h2 span {
    color: var(--pml-purple);
}

.pml-about-pillar {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border: 1px solid var(--pml-border);
    border-radius: 8px;
    background: #fff;
    color: var(--pml-text);
    text-decoration: none;
    transition: .35s ease;
    overflow: hidden;
}

.pml-about-pillar::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(114,0,185,.05);
    transition: .35s ease;
}

.pml-about-pillar:hover {
    color: var(--pml-text);
    border-color: rgba(114,0,185,.3);
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(48,51,54,.08);
}

.pml-about-pillar:hover::after {
    transform: scale(1.3);
}

.pillar-number {
    position: relative;
    z-index: 2;
    color: rgba(48,51,54,.3);
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
}

.pml-about-pillar small {
    position: relative;
    z-index: 2;
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
}

.pml-about-pillar h3 {
    position: relative;
    z-index: 2;
    margin: 18px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.04em;
}

.pml-about-pillar h3 span {
    display: block;
    color: var(--pml-purple);
}

.pml-about-pillar p {
    position: relative;
    z-index: 2;
    max-width: 330px;
    color: rgba(48,51,54,.62);
    line-height: 1.7;
}

.pillar-arrow {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    color: var(--pml-purple);
    font-size: 1.3rem;
}


/* =========================================================
   ENGINEERING
========================================================= */

.pml-about-engineering {
    padding: 130px 0;
    background: #fff;
}

.pml-about-code-visual {
    overflow: hidden;
    border-radius: 9px;
    background: #303336;
    box-shadow: 0 30px 70px rgba(48,51,54,.16);
}

.about-code-header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-code-header > div {
    display: flex;
    gap: 6px;
}

.about-code-header span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

.about-code-header small {
    color: rgba(255,255,255,.35);
    font-family: monospace;
    font-size: .6rem;
}

.about-code-body {
    padding: 30px;
}

.about-code-body div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.about-code-body span {
    width: 25px;
    color: rgba(255,255,255,.25);
    font-family: monospace;
    font-size: .65rem;
}

.about-code-body strong {
    color: rgba(255,255,255,.8);
    font-family: "Space Grotesk", sans-serif;
    font-size: .9rem;
}

.pml-about-engineering h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-about-engineering h2 span {
    display: block;
    color: var(--pml-purple);
}

.pml-about-engineering p {
    max-width: 580px;
    color: rgba(48,51,54,.65);
    line-height: 1.8;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.pml-about-capabilities {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-about-capabilities h2,
.pml-about-technology h2 {
    margin: 20px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-about-capabilities h2 span,
.pml-about-technology h2 span {
    color: var(--pml-purple);
}

.pml-about-capabilities .row > .col-lg-5 p {
    margin: 0;
    color: rgba(48,51,54,.65);
    line-height: 1.8;
}

.pml-about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--pml-border);
    border-left: 1px solid var(--pml-border);
}

.pml-about-capability-grid div {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-right: 1px solid var(--pml-border);
    border-bottom: 1px solid var(--pml-border);
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: .85rem;
    font-weight: 600;
    transition: .3s ease;
}

.pml-about-capability-grid span {
    color: var(--pml-purple);
    font-size: .62rem;
}

.pml-about-capability-grid div:hover {
    color: #fff;
    background: var(--pml-purple);
}

.pml-about-capability-grid div:hover span {
    color: rgba(255,255,255,.65);
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.pml-about-technology {
    padding: 130px 0;
    background: #fff;
}

.pml-about-technology p {
    max-width: 500px;
    color: rgba(48,51,54,.65);
    line-height: 1.8;
}

.pml-about-tech-list {
    border-top: 1px solid var(--pml-border);
}

.pml-about-tech-list div {
    display: flex;
    gap: 30px;
    padding: 22px 0;
    border-bottom: 1px solid var(--pml-border);
    color: rgba(48,51,54,.6);
    font-size: .85rem;
}

.pml-about-tech-list span {
    min-width: 110px;
    color: var(--pml-text);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}


/* =========================================================
   DIFFERENT
========================================================= */

.pml-about-different {
    padding: 120px 0;
    background: #f7f7f8;
}

.pml-about-different h2 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.pml-about-different h2 span {
    color: var(--pml-purple);
}

.pml-about-different > .container > .row:first-child p {
    max-width: 700px;
    margin: auto;
    color: rgba(48,51,54,.65);
    line-height: 1.8;
}

.pml-about-principle {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--pml-border);
    border-radius: 7px;
    background: #fff;
}

.pml-about-principle > span {
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: .65rem;
}

.pml-about-principle h3 {
    margin: 35px 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
}

.pml-about-principle p {
    margin: 0;
    color: rgba(48,51,54,.62);
    line-height: 1.7;
}

.pml-about-principle-dark {
    color: #fff;
    background: #303336;
    border-color: #303336;
}

.pml-about-principle-dark p {
    color: rgba(255,255,255,.6);
}


/* =========================================================
   CTA
========================================================= */

.pml-about-cta {
    padding: 100px 0;
    background: #fff;
}

.pml-about-cta-inner {
    padding: 100px 30px;
    border-radius: 10px;
    text-align: center;
    background: var(--pml-purple);
}

.pml-about-cta-inner .pml-section-eyebrow {
    color: rgba(255,255,255,.65);
}

.pml-about-cta-inner h2 {
    max-width: 850px;
    margin: 20px auto;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.06em;
    color: #fff;
}

.pml-about-cta-inner h2 span {
    display: block;
    opacity: .65;
}

.pml-about-cta-inner p {
    margin: 25px auto 35px;
    color: rgba(255,255,255,.7);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-about-hero {
        padding: 110px 0 80px;
    }

    .pml-about-description {
        margin-top: 20px;
    }

    .pml-about-capability-grid {
        grid-template-columns: repeat(3,1fr);
    }

}

@media (max-width: 767px) {

    .pml-about-title {
        font-size: 3.8rem;
    }

    .pml-about-intro,
    .pml-about-pillars,
    .pml-about-engineering,
    .pml-about-capabilities,
    .pml-about-technology,
    .pml-about-different {
        padding: 90px 0;
    }

    .pml-about-capability-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .pml-about-tech-list div {
        display: block;
    }

    .pml-about-tech-list span {
        display: block;
        margin-bottom: 7px;
    }

    .pml-about-cta {
        padding: 70px 0;
    }

    .pml-about-cta-inner {
        padding: 80px 20px;
    }

}

/* =========================================================
   TECHNOLOGIES PAGE
========================================================= */

.pml-tech-hero {
    padding: 150px 0 120px;
    background: #fff;
    overflow: hidden;
}

.pml-tech-hero h1 {
    margin: 20px 0 25px;
    max-width: 900px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(58px, 8vw, 105px);
    line-height: .92;
    letter-spacing: -5px;
    font-weight: 700;
    color: var(--pml-text);
}

.pml-tech-hero h1 span {
    display: block;
    color: var(--pml-purple);
}

.pml-tech-hero p {
    max-width: 650px;
    margin: 0;
    font-size: 21px;
    line-height: 1.65;
    color: rgba(48,51,54,.68);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.pml-tech-hero-mark {
    position: relative;
    width: 360px;
    height: 360px;
    margin: auto;
}

.pml-tech-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(114,0,185,.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.circle-one {
    width: 140px;
    height: 140px;
}

.circle-two {
    width: 240px;
    height: 240px;
}

.circle-three {
    width: 340px;
    height: 340px;
}

.pml-tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--pml-purple);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 20px 60px rgba(114,0,185,.25);
}


/* =========================================================
   INTRO
========================================================= */

.pml-tech-intro {
    padding: 120px 0;
    background: var(--pml-light);
}

.pml-tech-intro p {
    margin-bottom: 25px;
    max-width: 700px;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(48,51,54,.68);
}


/* =========================================================
   CATEGORY
========================================================= */

.pml-tech-category {
    padding: 110px 0;
    background: #fff;
}

.pml-tech-category-light {
    background: var(--pml-light);
}

.pml-tech-category-dark {
    background: var(--pml-dark);
}

.pml-tech-category-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 55px;
}

.pml-tech-category-header h2 {
    margin: 15px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
}

.pml-tech-category-header p {
    max-width: 500px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(48,51,54,.6);
}

.pml-tech-category-dark .pml-tech-category-header h2 {
    color: #fff;
}

.pml-tech-category-dark .pml-tech-category-header p {
    color: rgba(255,255,255,.6);
}

.pml-tech-category-dark .pml-eyebrow {
    color: rgba(255,255,255,.6);
}


/* =========================================================
   TECHNOLOGY CARDS
========================================================= */

.pml-tech-card {
    min-height: 180px;
    height: 100%;
    padding: 28px;
    border: 1px solid var(--pml-border);
    border-radius: 18px;
    background: #fff;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.pml-tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(114,0,185,.3);
    box-shadow: 0 18px 50px rgba(48,51,54,.08);
}

.pml-tech-category-dark .pml-tech-card {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.12);
    color: #fff;
}

.pml-tech-category-dark .pml-tech-card:hover {
    border-color: rgba(255,255,255,.3);
}

.pml-tech-card > span {
    display: block;
    margin-bottom: 30px;
    color: var(--pml-purple);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pml-tech-category-dark .pml-tech-card > span {
    color: #fff;
}

.pml-tech-card h3 {
    margin-bottom: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
}

.pml-tech-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(48,51,54,.58);
}

.pml-tech-category-dark .pml-tech-card p {
    color: rgba(255,255,255,.55);
}


/* =========================================================
   PRINCIPLES
========================================================= */

.pml-tech-principles {
    padding: 120px 0;
    background: #fff;
}

.pml-tech-principle {
    height: 100%;
    padding: 30px;
    border-top: 2px solid var(--pml-purple);
}

.pml-tech-principle strong {
    display: block;
    margin-bottom: 40px;
    color: var(--pml-purple);
    font-size: 14px;
}

.pml-tech-principle h3 {
    margin-bottom: 15px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
}

.pml-tech-principle p {
    margin: 0;
    color: rgba(48,51,54,.62);
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.pml-tech-cta {
    padding: 120px 0;
    background: var(--pml-purple);
}

.pml-tech-cta-inner {
    max-width: 850px;
}

.pml-tech-cta .pml-eyebrow {
    color: rgba(255,255,255,.7);
}

.pml-tech-cta h2 {
    margin: 20px 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -3px;
}

.pml-tech-cta h2 span {
    display: block;
    color: #fff;
}

.pml-tech-cta p {
    margin-bottom: 35px;
    color: rgba(255,255,255,.75);
    font-size: 18px;
}

.pml-tech-cta .pml-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    border-radius: 50px;
    background: #fff;
    color: var(--pml-purple);
    text-decoration: none;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-tech-hero {
        padding: 110px 0 80px;
    }

    .pml-tech-category-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pml-tech-hero-mark {
        width: 280px;
        height: 280px;
    }

    .circle-one {
        width: 110px;
        height: 110px;
    }

    .circle-two {
        width: 190px;
        height: 190px;
    }

    .circle-three {
        width: 270px;
        height: 270px;
    }

}

@media (max-width: 575px) {

    .pml-tech-hero h1 {
        letter-spacing: -3px;
    }

    .pml-tech-hero p {
        font-size: 17px;
    }

    .pml-tech-hero-mark {
        width: 240px;
        height: 240px;
    }

    .circle-one {
        width: 90px;
        height: 90px;
    }

    .circle-two {
        width: 160px;
        height: 160px;
    }

    .circle-three {
        width: 230px;
        height: 230px;
    }

    .pml-tech-category,
    .pml-tech-intro,
    .pml-tech-principles,
    .pml-tech-cta {
        padding: 85px 0;
    }

}
/* =========================================================
   TECHNOLOGY ICONS
========================================================= */

.pml-tech-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(114, 0, 185, .16);
    border-radius: 12px;

    background: rgba(114, 0, 185, .05);
    color: var(--pml-purple);

    font-size: 22px;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.pml-tech-card:hover .pml-tech-icon {
    transform: translateY(-3px);
    background: var(--pml-purple);
    color: #fff;
}

.pml-tech-category-dark .pml-tech-icon {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.pml-tech-category-dark .pml-tech-card:hover .pml-tech-icon {
    background: #fff;
    color: var(--pml-purple);
}

.pml-tech-card > span {
    margin-bottom: 12px;
}

/* =========================================================
   PRIVACY / LEGAL PAGES
========================================================= */

.pml-legal-hero {
    padding: 145px 0 100px;
    background: var(--pml-light);
}

.pml-legal-hero h1 {
    margin: 20px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(58px, 8vw, 105px);
    line-height: .92;
    letter-spacing: -5px;
    font-weight: 700;
    color: var(--pml-text);
}

.pml-legal-hero h1 span {
    display: block;
    color: var(--pml-purple);
}

.pml-legal-hero > .container > p {
    max-width: 700px;
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(48,51,54,.65);
}

.pml-legal-updated {
    margin-top: 30px;
    font-size: 15px;
    color: rgba(48,51,54,.5);
}


/* =========================================================
   LEGAL CONTENT
========================================================= */

.pml-legal-content {
    padding: 110px 0;
    background: #fff;
}

.pml-legal-nav {
    position: sticky;
    top: 110px;
    padding: 25px;
    border: 1px solid var(--pml-border);
    border-radius: 16px;
    background: var(--pml-light);
}

.pml-legal-nav > span {
    display: block;
    margin-bottom: 18px;
    color: var(--pml-purple);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pml-legal-nav a {
    display: block;
    padding: 9px 0;
    color: rgba(48,51,54,.65);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
}

.pml-legal-nav a:hover {
    color: var(--pml-purple);
}


/* =========================================================
   LEGAL BODY
========================================================= */

.pml-legal-body section {
    padding-bottom: 65px;
    margin-bottom: 65px;
    border-bottom: 1px solid var(--pml-border);
}

.pml-legal-body section:last-child {
    margin-bottom: 0;
}

.pml-legal-number {
    display: block;
    margin-bottom: 15px;
    color: var(--pml-purple);
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.pml-legal-body h2 {
    margin-bottom: 25px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--pml-text);
}

.pml-legal-body p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(48,51,54,.7);
}

.pml-legal-body ul {
    margin: 25px 0;
    padding-left: 22px;
}

.pml-legal-body li {
    margin-bottom: 12px;
    padding-left: 5px;
    color: rgba(48,51,54,.7);
    line-height: 1.7;
}


/* =========================================================
   CONTACT BOX
========================================================= */

.pml-legal-contact {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid var(--pml-border);
    border-radius: 16px;
    background: var(--pml-light);
}

.pml-legal-contact > div {
    padding: 15px 0;
    border-bottom: 1px solid var(--pml-border);
}

.pml-legal-contact > div:last-child {
    border-bottom: 0;
}

.pml-legal-contact span {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(48,51,54,.45);
}

.pml-legal-contact a {
    color: var(--pml-text);
    text-decoration: none;
    font-weight: 600;
}

.pml-legal-contact a:hover {
    color: var(--pml-purple);
}


/* =========================================================
   CTA
========================================================= */

.pml-legal-cta {
    padding: 110px 0;
    background: var(--pml-purple);
}

.pml-legal-cta-inner {
    max-width: 850px;
}

.pml-legal-cta .pml-eyebrow {
    color: rgba(255,255,255,.7);
}

.pml-legal-cta h2 {
    margin: 20px 0 35px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.pml-legal-cta h2 span {
    display: block;
    color: #fff;
}

.pml-legal-cta .pml-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    border-radius: 50px;
    background: #fff;
    color: var(--pml-purple);
    text-decoration: none;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .pml-legal-hero {
        padding: 110px 0 80px;
    }

    .pml-legal-content {
        padding: 80px 0;
    }

    .pml-legal-nav {
        position: static;
    }

}

@media (max-width: 575px) {

    .pml-legal-hero h1 {
        letter-spacing: -3px;
    }

    .pml-legal-hero > .container > p {
        font-size: 17px;
    }

    .pml-legal-content {
        padding: 65px 0;
    }

    .pml-legal-body section {
        padding-bottom: 45px;
        margin-bottom: 45px;
    }

    .pml-legal-body p {
        font-size: 15px;
    }

    .pml-legal-cta {
        padding: 80px 0;
    }

}
