:root {
    --pl-forest-950: #052a22;
    --pl-forest-900: #07382e;
    --pl-forest-800: #0b4a3c;
    --pl-forest-700: #12634f;
    --pl-mint-500: #a8ec8f;
    --pl-lime-400: #c7f36b;
    --pl-lime-300: #daf899;
    --pl-paper: #f4f2e9;
    --pl-paper-deep: #ebe8dc;
    --pl-mint-wash: #edf7f0;
    --pl-white: #ffffff;
    --pl-ink: #10221d;
    --pl-muted: #5c6b66;
    --pl-line: rgba(11, 74, 60, 0.14);
    --pl-shadow-sm: 0 12px 30px rgba(5, 42, 34, 0.09);
    --pl-shadow-md: 0 28px 70px rgba(5, 42, 34, 0.14);
    --pl-shadow-lg: 0 42px 100px rgba(5, 42, 34, 0.2);
    --pl-radius-sm: 12px;
    --pl-radius-md: 22px;
    --pl-radius-lg: 34px;
    --pl-shell: min(1400px, calc(100vw - 64px));
    --pl-font-sans: "Manrope", "Segoe UI", sans-serif;
    --pl-font-serif: "Instrument Serif", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
    overflow-x: clip;
    background: var(--pl-forest-950);
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: clip;
    color: var(--pl-ink);
    background: var(--pl-white);
    font-family: var(--pl-font-sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--pl-forest-950);
    background: var(--pl-lime-300);
}

:focus-visible {
    outline: 3px solid var(--pl-lime-400);
    outline-offset: 4px;
}

.pl-shell {
    width: var(--pl-shell);
    margin-inline: auto;
}

.pl-section {
    position: relative;
    padding-block: clamp(96px, 10vw, 168px);
}

.pl-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.pl-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    border-radius: 8px;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.pl-skip-link:focus {
    transform: translateY(0);
}

.pl-scroll-progress {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
}

.pl-scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--pl-lime-400);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

/* Header */
.pl-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    color: var(--pl-white);
    background: rgba(5, 42, 34, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 240ms ease, background-color 240ms ease;
}

.pl-header.is-scrolled {
    background: rgba(5, 42, 34, 0.94);
    box-shadow: 0 16px 45px rgba(2, 25, 20, 0.24);
    backdrop-filter: blur(18px);
}

.pl-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    width: var(--pl-shell);
    min-height: 82px;
    margin-inline: auto;
}

.pl-logo {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    width: max-content;
    color: var(--pl-white);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pl-logo img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.pl-nav {
    display: flex;
    gap: clamp(18px, 2vw, 34px);
    align-items: center;
    justify-content: center;
}

.pl-nav a,
.pl-sign-in {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: color 180ms ease;
}

.pl-nav a::after,
.pl-sign-in::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--pl-lime-400);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pl-nav a:hover,
.pl-nav a:focus-visible,
.pl-sign-in:hover,
.pl-sign-in:focus-visible {
    color: var(--pl-white);
}

.pl-nav a:hover::after,
.pl-nav a:focus-visible::after,
.pl-sign-in:hover::after,
.pl-sign-in:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.pl-header-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.pl-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--pl-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    cursor: pointer;
}

.pl-menu-toggle > span:not(.pl-sr-only) {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform 220ms ease, top 220ms ease;
}

.pl-menu-toggle > span:nth-last-child(2) {
    top: 19px;
}

.pl-menu-toggle > span:last-child {
    top: 27px;
}

.pl-menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
    top: 23px;
    transform: rotate(45deg);
}

.pl-menu-toggle[aria-expanded="true"] > span:last-child {
    top: 23px;
    transform: rotate(-45deg);
}

.pl-mobile-menu {
    position: fixed;
    z-index: 999;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding: 34px 32px 42px;
    color: var(--pl-white);
    background: var(--pl-forest-950);
}

.pl-mobile-menu[hidden] {
    display: none;
}

.pl-mobile-menu nav {
    display: grid;
}

.pl-mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: clamp(26px, 7vw, 42px);
    font-weight: 600;
    letter-spacing: -0.05em;
}

.pl-mobile-menu nav a span {
    color: var(--pl-lime-400);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.pl-mobile-menu-actions {
    display: grid;
    gap: 16px;
    padding-top: 32px;
}

.pl-mobile-menu-actions > a:first-child {
    text-align: center;
    font-weight: 700;
}

/* Shared in-page module rail */
.pp-module-rail {
    position: sticky;
    z-index: 900;
    top: 82px;
    overflow-x: auto;
    color: var(--pl-forest-900);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--pl-line);
    box-shadow: 0 14px 34px rgba(5, 42, 34, 0.06);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
}

.pp-module-rail::-webkit-scrollbar {
    display: none;
}

.pp-module-rail .pl-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
}

.pp-module-rail a {
    position: relative;
    padding: 17px 22px;
    color: #5f6e69;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 180ms ease, background-color 180ms ease;
}

.pp-module-rail a::before {
    position: absolute;
    right: 22px;
    bottom: 9px;
    left: 22px;
    height: 2px;
    background: var(--pl-lime-400);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.pp-module-rail a:hover,
.pp-module-rail a:focus-visible,
.pp-module-rail a.is-active {
    color: var(--pl-forest-900);
    background: var(--pl-mint-wash);
}

.pp-module-rail a:hover::before,
.pp-module-rail a:focus-visible::before,
.pp-module-rail a.is-active::before {
    transform: scaleX(1);
}

.pp-module-rail ~ section[id] {
    scroll-margin-top: 156px;
}

/* Shared controls */
.pl-button {
    position: relative;
    display: inline-flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    isolation: isolate;
    transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 180ms ease, box-shadow 200ms ease;
}

.pl-button::before {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: -116px;
    width: 108px;
    height: 108px;
    content: "";
    background: radial-gradient(circle, rgba(255, 255, 255, 0.23) 0, rgba(255, 255, 255, 0.1) 42%, transparent 72%);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%);
    transition: left 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease-out;
    pointer-events: none;
}

.pl-button:hover::before,
.pl-button:focus-visible::before {
    left: calc(100% + 116px);
    opacity: 1;
}

.pl-button > * {
    position: relative;
    z-index: 1;
}

.pl-button:hover,
.pl-button:focus-visible {
    transform: translateY(-2px);
}

.pl-button:active {
    transform: translateY(0) scale(0.98);
}

.pl-button svg,
.pl-arrow-link svg,
.pl-integration-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.pl-button:hover svg,
.pl-button:focus-visible svg,
.pl-arrow-link:hover svg,
.pl-arrow-link:focus-visible svg,
.pl-integration-link:hover svg,
.pl-integration-link:focus-visible svg {
    transform: translateX(4px);
}

.pl-button--small {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 12px;
}

.pl-button--lime {
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    box-shadow: 0 12px 28px rgba(199, 243, 107, 0.12);
}

.pl-button--lime:hover,
.pl-button--lime:focus-visible {
    background: var(--pl-lime-300);
    box-shadow: 0 16px 34px rgba(199, 243, 107, 0.2);
}

.pl-button--forest {
    color: var(--pl-white);
    background: var(--pl-forest-900);
    box-shadow: 0 16px 34px rgba(5, 42, 34, 0.18);
}

.pl-button--forest:hover,
.pl-button--forest:focus-visible {
    background: var(--pl-forest-800);
    box-shadow: 0 20px 42px rgba(5, 42, 34, 0.23);
}

.pl-text-link,
.pl-arrow-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: max-content;
    color: var(--pl-forest-900);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pl-text-link-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--pl-line);
    border-radius: 50%;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.pl-text-link-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pl-text-link:hover .pl-text-link-icon,
.pl-text-link:focus-visible .pl-text-link-icon {
    color: var(--pl-white);
    background: var(--pl-forest-900);
    transform: translateY(3px);
}

.pl-text-link--light {
    color: rgba(255, 255, 255, 0.84);
}

.pl-text-link--light .pl-text-link-icon {
    color: var(--pl-lime-400);
    border-color: rgba(255, 255, 255, 0.28);
}

.pl-text-link--light:hover,
.pl-text-link--light:focus-visible {
    color: var(--pl-white);
}

.pl-text-link--light:hover .pl-text-link-icon,
.pl-text-link--light:focus-visible .pl-text-link-icon {
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    border-color: var(--pl-lime-400);
}

.pl-arrow-link {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(7, 56, 46, 0.28);
    transition: border-color 180ms ease, color 180ms ease;
}

.pl-arrow-link:hover,
.pl-arrow-link:focus-visible {
    color: var(--pl-forest-700);
    border-color: var(--pl-forest-700);
}

.pl-eyebrow,
.pl-section-label {
    display: flex;
    gap: 11px;
    align-items: center;
    color: var(--pl-forest-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pl-eyebrow-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--pl-lime-400);
    border: 2px solid var(--pl-forest-900);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 243, 107, 0.28);
}

.pl-section-label span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--pl-forest-900);
    background: var(--pl-lime-400);
    border-radius: 50%;
    font-size: 9px;
    letter-spacing: 0;
}

.pl-section-label--light,
.pl-eyebrow--light {
    color: rgba(255, 255, 255, 0.66);
}

.pl-section-label--light span {
    color: var(--pl-forest-950);
}

.pl-live-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--pl-lime-400);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(199, 243, 107, 0.5);
    animation: pl-pulse 2.4s ease-out infinite;
}

/* Hero */
.pl-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(7, 56, 46, 0.036) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 56, 46, 0.036) 1px, transparent 1px),
        var(--pl-white);
    background-size: 52px 52px;
}

.pl-hero::before {
    position: absolute;
    top: -160px;
    left: -230px;
    width: 560px;
    height: 560px;
    content: "";
    background: radial-gradient(circle, rgba(199, 243, 107, 0.19) 0, rgba(199, 243, 107, 0) 67%);
    pointer-events: none;
}

.pl-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(560px, 1fr);
    gap: clamp(38px, 4vw, 70px);
    align-items: center;
    min-height: calc(100vh - 82px);
    padding-block: clamp(58px, 6vw, 92px) 55px;
}

.pl-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 670px;
}

.pl-hero-copy h1 {
    max-width: 660px;
    margin: 22px 0 22px;
    color: var(--pl-forest-950);
    font-size: clamp(56px, 5.55vw, 94px);
    font-weight: 600;
    letter-spacing: -0.072em;
    line-height: 0.91;
}

.pl-hero-copy h1 em {
    display: block;
    color: var(--pl-forest-700);
    font-family: var(--pl-font-serif);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.pl-hero-lead {
    max-width: 620px;
    margin: 0;
    color: var(--pl-muted);
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.65;
}

.pl-hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 30px;
}

.pl-hero-assurance {
    display: flex;
    gap: 20px 28px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--pl-line);
}

.pl-hero-assurance div {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #486059;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pl-hero-assurance svg {
    width: 17px;
    height: 17px;
    color: var(--pl-forest-700);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pl-hero-visual {
    position: relative;
    z-index: 2;
    min-height: 640px;
    perspective: 1600px;
}

.pl-hero-stage {
    position: absolute;
    inset: 0;
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.pl-hero-shape {
    position: absolute;
    pointer-events: none;
}

.pl-hero-shape--one {
    top: 34px;
    right: 2%;
    width: 88%;
    height: 86%;
    background: var(--pl-forest-900);
    border-radius: 31% 69% 66% 34% / 35% 35% 65% 65%;
    box-shadow: var(--pl-shadow-lg);
    animation: pl-morph 18s ease-in-out infinite alternate;
}

.pl-hero-shape--one::after {
    position: absolute;
    inset: 1px;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 38px 38px;
    border-radius: inherit;
    mask-image: linear-gradient(135deg, #000 30%, transparent 82%);
}

.pl-hero-shape--two {
    right: -7%;
    bottom: 2%;
    width: 230px;
    height: 230px;
    background: var(--pl-lime-400);
    border-radius: 62% 38% 54% 46% / 50% 60% 40% 50%;
    animation: pl-morph-small 14s ease-in-out infinite alternate-reverse;
}

.pl-orbit {
    position: absolute;
    border: 1px solid rgba(11, 74, 60, 0.19);
    border-radius: 50%;
    pointer-events: none;
}

.pl-orbit::before {
    position: absolute;
    width: 11px;
    height: 11px;
    content: "";
    background: var(--pl-lime-400);
    border: 3px solid var(--pl-white);
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(5, 42, 34, 0.28);
}

.pl-orbit--one {
    top: -34px;
    right: -78px;
    width: 390px;
    height: 390px;
    animation: pl-spin 34s linear infinite;
}

.pl-orbit--one::before {
    top: 75px;
    left: 31px;
}

.pl-orbit--two {
    bottom: -64px;
    left: -70px;
    width: 310px;
    height: 310px;
    animation: pl-spin 40s linear infinite reverse;
}

.pl-orbit--two::before {
    right: 18px;
    bottom: 74px;
}

.pl-browser-frame {
    overflow: hidden;
    background: var(--pl-white);
    border: 1px solid rgba(5, 42, 34, 0.13);
    border-radius: 13px;
    box-shadow: var(--pl-shadow-md);
}

.pl-browser-frame img {
    display: block;
    width: 100%;
    height: auto;
    background: #f6f7f7;
}

.pl-browser-bar {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 30px;
    padding: 0 11px;
    color: #7a8783;
    background: #f5f6f5;
    border-bottom: 1px solid rgba(5, 42, 34, 0.08);
    font-size: 8px;
    font-weight: 700;
}

.pl-browser-bar > span {
    width: 6px;
    height: 6px;
    background: #cdd3d0;
    border-radius: 50%;
}

.pl-browser-bar > span:first-child {
    background: #f2b9a7;
}

.pl-browser-bar > span:nth-child(2) {
    background: #f2d982;
}

.pl-browser-bar > span:nth-child(3) {
    background: #a9d3ae;
}

.pl-browser-bar div {
    min-width: 130px;
    margin-left: 8px;
    padding: 4px 12px;
    background: var(--pl-white);
    border-radius: 999px;
    text-align: center;
}

.pl-browser-frame--dashboard {
    position: absolute;
    z-index: 2;
    top: 150px;
    left: 2%;
    width: 89%;
    transform: translateZ(22px) rotate(-1.4deg);
}

.pl-browser-frame--customer {
    position: absolute;
    z-index: 4;
    top: 46px;
    left: -3%;
    width: 62%;
    border-color: rgba(199, 243, 107, 0.45);
    transform: translateZ(54px) rotate(-4.5deg);
    box-shadow: 0 28px 66px rgba(2, 25, 20, 0.26);
    animation: pl-float-soft 8s ease-in-out infinite;
}

.pl-phone-frame {
    position: absolute;
    z-index: 6;
    right: -1%;
    bottom: 9px;
    width: 22%;
    padding: 6px;
    overflow: hidden;
    background: #10211d;
    border: 2px solid rgba(255, 255, 255, 0.56);
    border-radius: 24px;
    box-shadow: 0 28px 64px rgba(2, 25, 20, 0.35);
    transform: translateZ(78px) rotate(4deg);
    animation: pl-float-phone 9s ease-in-out infinite;
}

.pl-phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.pl-phone-speaker {
    position: absolute;
    z-index: 3;
    top: 9px;
    left: 50%;
    width: 28%;
    height: 7px;
    background: #10211d;
    border-radius: 999px;
    transform: translateX(-50%);
}

.pl-live-chip {
    position: absolute;
    z-index: 8;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    color: var(--pl-forest-950);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    box-shadow: 0 18px 42px rgba(2, 25, 20, 0.22);
    backdrop-filter: blur(14px);
}

.pl-live-chip small,
.pl-live-chip strong {
    display: block;
}

.pl-live-chip small {
    color: var(--pl-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-live-chip strong {
    font-size: 11px;
    letter-spacing: -0.02em;
}

.pl-live-chip svg {
    width: 20px;
    height: 20px;
    margin-left: 4px;
    color: var(--pl-forest-700);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pl-live-chip--order {
    top: 111px;
    right: 3%;
    transform: translateZ(90px) rotate(2deg);
}

.pl-live-chip--sync {
    bottom: 37px;
    left: 9%;
    color: var(--pl-white);
    background: rgba(5, 42, 34, 0.93);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateZ(70px) rotate(-2deg);
}

.pl-live-chip--sync svg {
    color: var(--pl-lime-400);
}

.pl-live-chip--sync span {
    font-size: 10px;
    font-weight: 800;
}

.pl-hero-bottom {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: center;
    padding-block: 24px 34px;
    border-top: 1px solid var(--pl-line);
}

.pl-hero-bottom > p {
    margin: 0;
    color: var(--pl-forest-900);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.pl-sector-rail {
    display: flex;
    gap: 13px;
    align-items: center;
    justify-content: flex-end;
    color: #64736e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pl-sector-rail i {
    width: 3px;
    height: 3px;
    background: var(--pl-mint-500);
    border-radius: 50%;
}

/* Problem */
.pl-problem {
    overflow: hidden;
    background: var(--pl-paper);
}

.pl-problem::after {
    position: absolute;
    right: -170px;
    bottom: -230px;
    width: 530px;
    height: 530px;
    content: "";
    border: 1px solid rgba(7, 56, 46, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 56px rgba(7, 56, 46, 0.025), 0 0 0 112px rgba(7, 56, 46, 0.018);
}

.pl-problem-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(68px, 9vw, 150px);
    align-items: start;
}

.pl-sticky-copy {
    position: sticky;
    top: 142px;
    padding-top: 42px;
}

.pl-sticky-copy h2,
.pl-platform-heading h2,
.pl-centred-heading h2,
.pl-outcomes-heading h2,
.pl-enterprise-heading h2,
.pl-rollout-grid h2,
.pl-faq-grid h2,
.pl-final-cta h2 {
    margin: 28px 0 24px;
    font-size: clamp(48px, 5.6vw, 86px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.pl-sticky-copy > p,
.pl-outcomes-heading > p,
.pl-rollout-grid > div > p,
.pl-faq-grid > div > p {
    max-width: 600px;
    margin: 0;
    color: var(--pl-muted);
    font-size: clamp(16px, 1.3vw, 19px);
    letter-spacing: -0.02em;
    line-height: 1.75;
}

.pl-sticky-copy .pl-arrow-link {
    margin-top: 34px;
}

.pl-order-transformation {
    position: relative;
    z-index: 2;
    min-height: 680px;
    overflow: hidden;
    background: var(--pl-white);
    border: 1px solid rgba(7, 56, 46, 0.1);
    border-radius: var(--pl-radius-lg);
    box-shadow: var(--pl-shadow-sm);
}

.pl-order-transformation::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(7, 56, 46, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 56, 46, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, #000 20%, transparent 78%);
}

.pl-scatter-label,
.pl-after-label {
    position: absolute;
    z-index: 3;
    left: 26px;
    padding: 7px 11px;
    color: #7a8783;
    background: var(--pl-paper);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-scatter-label {
    top: 24px;
}

.pl-after-label {
    bottom: 24px;
    color: var(--pl-white);
    background: var(--pl-forest-900);
}

.pl-channel {
    position: absolute;
    z-index: 4;
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 10px 13px;
    color: #485853;
    background: var(--pl-white);
    border: 1px solid rgba(7, 56, 46, 0.13);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(5, 42, 34, 0.08);
    font-size: 10px;
    font-weight: 800;
    animation: pl-channel-drift 7s ease-in-out infinite;
}

.pl-channel span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: var(--pl-forest-700);
    background: var(--pl-mint-wash);
    border-radius: 6px;
    font-size: 10px;
}

.pl-channel--phone {
    top: 80px;
    left: 7%;
}

.pl-channel--mail {
    top: 115px;
    right: 6%;
    animation-delay: -2.3s;
}

.pl-channel--message {
    bottom: 130px;
    left: 7%;
    animation-delay: -4.1s;
}

.pl-channel--sheet {
    right: 6%;
    bottom: 100px;
    animation-delay: -1.1s;
}

.pl-flow-lines {
    position: absolute;
    z-index: 1;
    inset: 45px 0 20px;
    width: 100%;
    height: calc(100% - 65px);
    fill: var(--pl-lime-400);
}

.pl-flow-lines path {
    fill: none;
    stroke: rgba(18, 99, 79, 0.3);
    stroke-width: 1.5;
    stroke-dasharray: 4 8;
    vector-effect: non-scaling-stroke;
    animation: pl-dash 12s linear infinite;
}

.pl-morph-wrap {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 350px;
    transform: translate(-50%, -50%);
}

.pl-morph-shape {
    position: absolute;
    inset: -38px;
    background: var(--pl-lime-400);
    border-radius: 40% 60% 54% 46% / 52% 38% 62% 48%;
    animation: pl-morph-ticket 13s ease-in-out infinite alternate;
}

.pl-morph-shape::before {
    position: absolute;
    inset: 20px;
    content: "";
    border: 1px solid rgba(5, 42, 34, 0.25);
    border-radius: inherit;
}

.pl-order-ticket {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px;
    color: var(--pl-forest-950);
    background: var(--pl-white);
    border: 1px solid rgba(7, 56, 46, 0.15);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(5, 42, 34, 0.2);
    transform: rotate(-2deg);
}

.pl-order-ticket-top,
.pl-order-ticket-customer,
.pl-order-line {
    display: flex;
    justify-content: space-between;
}

.pl-order-ticket-top {
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(7, 56, 46, 0.2);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.pl-order-ticket-customer {
    display: grid;
    gap: 4px;
    padding-block: 19px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-order-ticket-customer span,
.pl-order-ticket-status,
.pl-order-line {
    color: var(--pl-muted);
    font-size: 10px;
}

.pl-order-ticket-customer strong {
    font-size: 13px;
}

.pl-order-line {
    gap: 14px;
    padding-block: 12px;
    border-bottom: 1px solid rgba(7, 56, 46, 0.08);
}

.pl-order-line strong {
    color: var(--pl-forest-900);
}

.pl-order-ticket-status {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: 20px;
    padding: 11px 13px;
    color: var(--pl-forest-900);
    background: var(--pl-mint-wash);
    border-radius: 8px;
    font-weight: 800;
}

.pl-flow-result {
    position: absolute;
    z-index: 7;
    right: 22%;
    bottom: 29px;
    left: 22%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--pl-forest-700);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-flow-result i {
    position: relative;
    width: 38px;
    height: 1px;
    overflow: hidden;
    background: rgba(7, 56, 46, 0.18);
}

.pl-flow-result i::after {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--pl-forest-700);
    transform: translateX(-100%);
    animation: pl-line-travel 3s ease-in-out infinite;
}

/* Interactive platform */
.pl-platform {
    overflow: hidden;
    color: var(--pl-white);
    background: var(--pl-forest-950);
}

.pl-platform::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

.pl-platform-glow {
    position: absolute;
    top: -260px;
    left: 58%;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(199, 243, 107, 0.18), rgba(199, 243, 107, 0) 68%);
    pointer-events: none;
}

.pl-platform > .pl-shell {
    position: relative;
    z-index: 2;
}

.pl-platform-heading,
.pl-outcomes-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    gap: 90px;
    align-items: end;
}

.pl-platform-heading h2 {
    max-width: 830px;
    margin-bottom: 0;
    color: var(--pl-white);
}

.pl-platform-heading > p {
    max-width: 530px;
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 16px;
    letter-spacing: -0.02em;
}

.pl-workflow {
    margin-top: clamp(54px, 7vw, 92px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--pl-radius-lg);
    box-shadow: 0 40px 90px rgba(2, 25, 20, 0.38);
    backdrop-filter: blur(12px);
}

.pl-workflow-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px;
    background: rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    scrollbar-width: none;
}

.pl-workflow-tabs::-webkit-scrollbar {
    display: none;
}

.pl-workflow-tabs button {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 60px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.pl-workflow-tabs button::after {
    position: absolute;
    right: 16px;
    bottom: 9px;
    left: 16px;
    height: 2px;
    content: "";
    background: var(--pl-lime-400);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pl-workflow-tabs button:hover,
.pl-workflow-tabs button:focus-visible {
    color: var(--pl-white);
    background: rgba(255, 255, 255, 0.04);
}

.pl-workflow-tabs button[aria-selected="true"] {
    color: var(--pl-white);
    background: rgba(255, 255, 255, 0.075);
}

.pl-workflow-tabs button[aria-selected="true"]::after {
    transform: scaleX(1);
}

.pl-workflow-tabs button span {
    color: var(--pl-lime-400);
    font-size: 9px;
}

.pl-workflow-panels {
    min-height: 610px;
}

.pl-workflow-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(45px, 6vw, 90px);
    align-items: center;
    min-height: 610px;
    padding: clamp(42px, 5vw, 74px);
}

.pl-workflow-panel[hidden] {
    display: none;
}

.pl-workflow-panel.is-entering .pl-workflow-copy,
.pl-workflow-panel.is-entering .pl-workflow-visual {
    animation: pl-panel-enter 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pl-workflow-panel.is-entering .pl-workflow-visual {
    animation-delay: 70ms;
}

.pl-workflow-status {
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--pl-lime-300);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-workflow-status span {
    width: 6px;
    height: 6px;
    background: var(--pl-lime-400);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 243, 107, 0.12);
}

.pl-workflow-copy h3 {
    max-width: 520px;
    margin: 20px 0 20px;
    color: var(--pl-white);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1.01;
}

.pl-workflow-copy > p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.59);
    font-size: 15px;
}

.pl-workflow-copy ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.pl-workflow-copy li {
    position: relative;
    padding-left: 23px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
}

.pl-workflow-copy li::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 9px;
    height: 1px;
    content: "";
    background: var(--pl-lime-400);
}

.pl-workflow-visual {
    position: relative;
    padding: 24px 0 0;
}

.pl-workflow-visual::before {
    position: absolute;
    z-index: -1;
    top: -24px;
    right: -26px;
    width: 74%;
    height: 92%;
    content: "";
    background: var(--pl-lime-400);
    border-radius: 56% 44% 35% 65% / 44% 55% 45% 56%;
    opacity: 0.9;
    animation: pl-morph-small 15s ease-in-out infinite alternate;
}

.pl-workflow-visual .pl-browser-frame {
    border-color: rgba(255, 255, 255, 0.26);
    border-radius: 16px;
    box-shadow: 0 38px 78px rgba(0, 0, 0, 0.28);
}

.pl-workflow-float {
    position: absolute;
    right: -15px;
    bottom: -23px;
    min-width: 190px;
    padding: 15px 17px;
    color: var(--pl-forest-950);
    background: var(--pl-white);
    border-radius: 13px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.pl-workflow-float small,
.pl-workflow-float strong,
.pl-workflow-float span {
    display: block;
}

.pl-workflow-float small {
    color: var(--pl-forest-700);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-workflow-float strong {
    margin-top: 3px;
    font-size: 12px;
}

.pl-workflow-float span {
    margin-top: 2px;
    color: var(--pl-muted);
    font-size: 9px;
}

/* Two-sided story */
.pl-two-sided {
    background: var(--pl-white);
}

.pl-centred-heading {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

.pl-centred-heading .pl-section-label {
    justify-content: center;
}

.pl-centred-heading h2 {
    margin-inline: auto;
}

.pl-centred-heading > p {
    max-width: 670px;
    margin: 0 auto;
    color: var(--pl-muted);
    font-size: clamp(16px, 1.4vw, 19px);
}

.pl-story {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(70px, 10vw, 160px);
    align-items: center;
    margin-top: clamp(100px, 12vw, 180px);
}

.pl-story + .pl-story {
    margin-top: clamp(130px, 16vw, 230px);
}

.pl-story-visual {
    position: relative;
    min-height: 690px;
}

.pl-story-shape {
    position: absolute;
    inset: 4% 3% 2%;
    background: var(--pl-paper);
    border-radius: 58% 42% 38% 62% / 49% 57% 43% 51%;
    animation: pl-morph 20s ease-in-out infinite alternate-reverse;
}

.pl-story-shape::before,
.pl-story-shape::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.pl-story-shape::before {
    top: -38px;
    right: -32px;
    width: 150px;
    height: 150px;
    background: var(--pl-lime-400);
}

.pl-story-shape::after {
    bottom: 25px;
    left: -35px;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(7, 56, 46, 0.25);
    box-shadow: 0 0 0 24px rgba(7, 56, 46, 0.03), 0 0 0 48px rgba(7, 56, 46, 0.02);
}

.pl-phone-frame--large {
    right: auto;
    bottom: 13px;
    left: 50%;
    width: min(300px, 48%);
    padding: 8px;
    border-radius: 39px;
    transform: translateX(-50%) rotate(-3deg);
    animation: pl-float-phone-large 10s ease-in-out infinite;
}

.pl-phone-frame--large img {
    border-radius: 30px;
}

.pl-phone-frame--large .pl-phone-speaker {
    top: 12px;
    height: 9px;
}

.pl-mini-order-card {
    position: absolute;
    z-index: 7;
    min-width: 166px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(7, 56, 46, 0.11);
    border-radius: 14px;
    box-shadow: var(--pl-shadow-sm);
    backdrop-filter: blur(10px);
}

.pl-mini-order-card span,
.pl-mini-order-card strong,
.pl-mini-order-card small {
    display: block;
}

.pl-mini-order-card span {
    color: var(--pl-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-mini-order-card strong {
    margin-top: 4px;
    color: var(--pl-forest-900);
    font-size: 15px;
}

.pl-mini-order-card small {
    margin-top: 2px;
    color: #788781;
    font-size: 9px;
}

.pl-mini-order-card--top {
    top: 22%;
    right: 3%;
    transform: rotate(4deg);
}

.pl-mini-order-card--bottom {
    bottom: 14%;
    left: 0;
    transform: rotate(-4deg);
}

.pl-story-number {
    color: var(--pl-forest-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-story-copy h3 {
    max-width: 680px;
    margin: 19px 0 24px;
    color: var(--pl-forest-950);
    font-size: clamp(46px, 5.3vw, 78px);
    font-weight: 600;
    letter-spacing: -0.064em;
    line-height: 0.98;
}

.pl-story-copy > p {
    max-width: 590px;
    margin: 0;
    color: var(--pl-muted);
    font-size: clamp(16px, 1.3vw, 18px);
}

.pl-feature-lines {
    margin-block: 38px 32px;
    border-top: 1px solid var(--pl-line);
}

.pl-feature-lines > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-block: 20px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-feature-lines > div > span {
    color: var(--pl-forest-700);
    font-size: 9px;
    font-weight: 800;
}

.pl-feature-lines strong,
.pl-feature-lines p {
    display: block;
}

.pl-feature-lines strong {
    color: var(--pl-forest-950);
    font-size: 13px;
    letter-spacing: -0.02em;
}

.pl-feature-lines p {
    max-width: 520px;
    margin: 5px 0 0;
    color: var(--pl-muted);
    font-size: 12px;
}

.pl-story-dashboard {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    perspective: 1400px;
}

.pl-dashboard-geometry {
    position: absolute;
    inset: 0 -6% 0 10%;
    background: var(--pl-mint-wash);
    border-radius: 34% 66% 60% 40% / 55% 38% 62% 45%;
    animation: pl-morph 18s ease-in-out infinite alternate;
}

.pl-dashboard-geometry::after {
    position: absolute;
    top: -42px;
    left: 13%;
    width: 120px;
    height: 120px;
    content: "";
    background: var(--pl-lime-400);
    clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
    animation: pl-rotate-polygon 22s linear infinite;
}

.pl-story-dashboard .pl-browser-frame {
    position: relative;
    z-index: 3;
    width: 105%;
    margin-left: -8%;
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) rotate(2deg);
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pl-dashboard-stat {
    position: absolute;
    z-index: 5;
    padding: 14px 16px;
    background: var(--pl-white);
    border: 1px solid rgba(7, 56, 46, 0.12);
    border-radius: 13px;
    box-shadow: var(--pl-shadow-sm);
}

.pl-dashboard-stat small,
.pl-dashboard-stat strong {
    display: block;
}

.pl-dashboard-stat small {
    color: #73817d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.pl-dashboard-stat strong {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 4px;
    color: var(--pl-forest-900);
    font-size: 11px;
}

.pl-dashboard-stat strong span {
    width: 7px;
    height: 7px;
    background: #f0af68;
    border-radius: 50%;
}

.pl-dashboard-stat--one {
    top: 7%;
    right: -4%;
    transform: rotate(-3deg);
}

.pl-dashboard-stat--two {
    bottom: 8%;
    left: -10%;
    transform: rotate(2deg);
}

/* Outcomes */
.pl-outcomes {
    background: #f7f8f4;
    border-top: 1px solid rgba(7, 56, 46, 0.08);
}

.pl-outcomes-heading {
    align-items: end;
}

.pl-outcomes-heading h2 {
    max-width: 880px;
    margin-bottom: 0;
}

.pl-outcomes-heading > p {
    margin-bottom: 4px;
}

.pl-outcome-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(270px, auto)) minmax(230px, auto);
    gap: 18px;
    margin-top: clamp(62px, 8vw, 100px);
}

.pl-outcome {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 56px);
    border: 1px solid rgba(7, 56, 46, 0.1);
    border-radius: var(--pl-radius-md);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.pl-outcome:hover {
    transform: translateY(-5px);
    box-shadow: var(--pl-shadow-md);
}

.pl-outcome h3 {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 70px 0 18px;
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 600;
    letter-spacing: -0.058em;
    line-height: 1;
}

.pl-outcome p {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0;
    color: inherit;
    font-size: 14px;
    opacity: 0.7;
}

.pl-outcome-index {
    position: relative;
    z-index: 2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.pl-outcome--hero {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 600px;
    color: var(--pl-white);
    background: var(--pl-forest-900);
    border-color: var(--pl-forest-900);
}

.pl-outcome--hero h3 {
    max-width: 660px;
    margin-top: 150px;
}

.pl-outcome-orbit {
    position: absolute;
    top: -110px;
    right: -80px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: pl-spin 38s linear infinite;
}

.pl-outcome-orbit::before,
.pl-outcome-orbit::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.pl-outcome-orbit::before {
    inset: 58px;
}

.pl-outcome-orbit::after {
    inset: 125px;
    background: var(--pl-lime-400);
    border: 0;
    border-radius: 40% 60% 54% 46% / 52% 38% 62% 48%;
    animation: pl-morph-small 10s ease-in-out infinite alternate;
}

.pl-outcome-orbit span {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    background: var(--pl-white);
    border-radius: 50%;
}

.pl-outcome-orbit span:first-child {
    top: 26.5%;
    left: 5.85%;
    transform: translate(-50%, -50%);
}

.pl-outcome-orbit span:nth-child(2) {
    top: 70.35%;
    left: 95.68%;
    transform: translate(-50%, -50%);
}

.pl-outcome-orbit span:last-child {
    top: 92.4%;
    left: 23.5%;
    transform: translate(-50%, -50%);
}

.pl-outcome-flow {
    position: absolute;
    right: 52px;
    bottom: 48px;
    left: 52px;
    display: flex;
    gap: 14px;
    align-items: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-outcome-flow i {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.17);
}

.pl-outcome--lime,
.pl-outcome--paper {
    grid-column: span 5;
}

.pl-outcome--lime {
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    border-color: var(--pl-lime-400);
}

.pl-outcome--lime h3,
.pl-outcome--paper h3 {
    margin-top: 38px;
    font-size: clamp(32px, 3.2vw, 50px);
}

.pl-outcome--lime img {
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 170px;
    height: 160px;
    object-fit: contain;
    opacity: 0.16;
    transform: rotate(-18deg);
}

.pl-outcome--paper {
    color: var(--pl-forest-950);
    background: var(--pl-paper);
}

.pl-account-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.pl-account-stack span {
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(7, 56, 46, 0.1);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
}

.pl-outcome--white {
    grid-column: span 12;
    min-height: 250px;
    color: var(--pl-forest-950);
    background: var(--pl-white);
}

.pl-outcome--white h3 {
    max-width: 750px;
    margin-top: 28px;
}

.pl-outcome--white p {
    max-width: 650px;
}

.pl-visibility-bars {
    position: absolute;
    top: 48px;
    right: 50px;
    bottom: 48px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
    width: 280px;
}

.pl-visibility-bars span {
    width: 25%;
    height: var(--bar);
    background: linear-gradient(to top, var(--pl-forest-900), var(--pl-lime-400));
    border-radius: 8px 8px 3px 3px;
    transform: scaleY(0.12);
    transform-origin: bottom;
    transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .pl-visibility-bars span,
.pl-outcome--white.is-visible .pl-visibility-bars span {
    transform: scaleY(1);
}

.pl-visibility-bars span:nth-child(2) { transition-delay: 100ms; }
.pl-visibility-bars span:nth-child(3) { transition-delay: 180ms; }
.pl-visibility-bars span:nth-child(4) { transition-delay: 250ms; }

/* Enterprise */
.pl-enterprise {
    overflow: hidden;
    color: var(--pl-white);
    background: var(--pl-forest-900);
}

.pl-enterprise::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 10% 40%, rgba(199, 243, 107, 0.1), transparent 34%);
    pointer-events: none;
}

.pl-enterprise-shape {
    position: absolute;
    top: -220px;
    right: -160px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
    animation: pl-spin 50s linear infinite;
}

.pl-enterprise-shape::after {
    position: absolute;
    right: 60px;
    bottom: 60px;
    width: 180px;
    height: 180px;
    content: "";
    background: var(--pl-lime-400);
    border-radius: 58% 42% 38% 62% / 49% 57% 43% 51%;
    animation: pl-morph-small 13s ease-in-out infinite alternate;
}

.pl-enterprise > .pl-shell {
    position: relative;
    z-index: 2;
}

.pl-enterprise-heading {
    max-width: 980px;
}

.pl-enterprise-heading h2 {
    color: var(--pl-white);
}

.pl-enterprise-heading > p {
    max-width: 710px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
}

.pl-enterprise-list {
    margin-top: clamp(60px, 8vw, 100px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pl-enterprise-list article {
    display: grid;
    grid-template-columns: 70px minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 34px;
    align-items: center;
    min-height: 150px;
    padding: 25px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 240ms ease, padding-inline 240ms ease;
}

.pl-enterprise-list article:hover {
    padding-inline: 28px;
    background: rgba(255, 255, 255, 0.045);
}

.pl-enterprise-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    border-radius: 18px;
    transition: border-radius 300ms ease, transform 300ms ease;
}

.pl-enterprise-list article:hover .pl-enterprise-icon {
    border-radius: 50%;
    transform: rotate(4deg);
}

.pl-enterprise-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pl-enterprise-list small {
    color: var(--pl-lime-300);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-enterprise-list h3 {
    margin: 8px 0 0;
    color: var(--pl-white);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.pl-enterprise-list article > p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.pl-integration-strip {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 58px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
}

.pl-integration-strip > p {
    margin: 0 auto 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-integration-strip > a:not(.pl-integration-link) {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    transition: color 180ms ease, background-color 180ms ease;
}

.pl-integration-strip > a:not(.pl-integration-link):hover,
.pl-integration-strip > a:not(.pl-integration-link):focus-visible {
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
}

.pl-integration-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-left: 12px;
    color: var(--pl-lime-300);
    font-size: 10px;
    font-weight: 800;
}

.pl-integration-link svg {
    width: 16px;
    height: 16px;
}

/* Rollout */
.pl-rollout {
    background: var(--pl-paper);
}

.pl-rollout-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(75px, 10vw, 160px);
    align-items: start;
}

.pl-rollout-grid > div:first-child {
    position: sticky;
    top: 140px;
}

.pl-rollout-grid h2 {
    max-width: 650px;
}

.pl-rollout-grid .pl-button {
    margin-top: 36px;
}

.pl-rollout-steps {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--pl-line);
    list-style: none;
}

.pl-rollout-steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 28px;
    padding-block: 36px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-rollout-steps li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    transition: border-radius 260ms ease, transform 260ms ease;
}

.pl-rollout-steps li:hover > span {
    border-radius: 14px;
    transform: rotate(-5deg);
}

.pl-rollout-steps small {
    color: var(--pl-forest-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pl-rollout-steps h3 {
    margin: 6px 0 8px;
    color: var(--pl-forest-950);
    font-size: clamp(24px, 2.4vw, 35px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.pl-rollout-steps p {
    max-width: 570px;
    margin: 0;
    color: var(--pl-muted);
    font-size: 13px;
}

/* FAQ */
.pl-faq {
    background: var(--pl-white);
}

.pl-faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
    gap: clamp(75px, 10vw, 160px);
    align-items: start;
}

.pl-faq-grid > div:first-child {
    position: sticky;
    top: 140px;
}

.pl-contact-mini {
    display: grid;
    gap: 6px;
    margin-top: 40px;
    padding: 22px;
    background: var(--pl-mint-wash);
    border: 1px solid rgba(7, 56, 46, 0.09);
    border-radius: 15px;
}

.pl-contact-mini span {
    margin-bottom: 4px;
    color: var(--pl-forest-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-contact-mini a {
    width: max-content;
    color: var(--pl-forest-900);
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid transparent;
}

.pl-contact-mini a:hover,
.pl-contact-mini a:focus-visible {
    border-bottom-color: currentColor;
}

.pl-faq-list {
    border-top: 1px solid var(--pl-line);
}

.pl-faq .mk-faq-item {
    border-bottom: 1px solid var(--pl-line);
}

.pl-faq .mk-faq-item summary {
    display: grid;
    grid-template-columns: 1fr 36px;
    gap: 22px;
    align-items: center;
    min-height: 98px;
    padding: 20px 0;
    color: var(--pl-forest-950);
    cursor: pointer;
    font-size: clamp(17px, 1.7vw, 23px);
    font-weight: 700;
    letter-spacing: -0.035em;
    list-style: none;
}

.pl-faq .mk-faq-item summary::-webkit-details-marker {
    display: none;
}

.pl-faq .mk-faq-item summary i {
    position: relative;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    background: var(--pl-paper);
    border-radius: 50%;
    transition: background-color 180ms ease, transform 260ms ease;
}

.pl-faq .mk-faq-item summary i::before,
.pl-faq .mk-faq-item summary i::after {
    position: absolute;
    width: 12px;
    height: 1.5px;
    content: "";
    background: var(--pl-forest-900);
    border-radius: 999px;
    transition: transform 260ms ease;
}

.pl-faq .mk-faq-item summary i::after {
    transform: rotate(90deg);
}

.pl-faq .mk-faq-item[open] summary i {
    background: var(--pl-lime-400);
    transform: rotate(90deg);
}

.pl-faq .mk-faq-item[open] summary i::after {
    transform: rotate(0);
}

.pl-faq .mk-faq-item > p {
    max-width: 710px;
    margin: -6px 60px 0 0;
    padding: 0 0 28px;
    color: var(--pl-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* Final CTA */
.pl-final-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(90px, 10vw, 150px);
    color: var(--pl-white);
    background: var(--pl-forest-950);
}

.pl-final-cta::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
}

.pl-final-shape {
    position: absolute;
    pointer-events: none;
}

.pl-final-shape--one {
    top: -170px;
    right: -90px;
    width: 480px;
    height: 480px;
    background: var(--pl-lime-400);
    border-radius: 58% 42% 38% 62% / 49% 57% 43% 51%;
    opacity: 0.92;
    animation: pl-morph 18s ease-in-out infinite alternate;
}

.pl-final-shape--two {
    bottom: -240px;
    left: -150px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.018), 0 0 0 120px rgba(255, 255, 255, 0.012);
}

.pl-final-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
    gap: clamp(70px, 11vw, 170px);
    align-items: end;
}

.pl-final-cta h2 {
    max-width: 900px;
    margin-bottom: 0;
    color: var(--pl-white);
}

.pl-final-cta-action > p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
}

.pl-final-cta-action > span {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.pl-final-cta-action > span a {
    color: var(--pl-white);
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

/* Footer */
.pl-footer {
    color: var(--pl-white);
    background: #031f19;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.pl-footer-top {
    display: grid;
    grid-template-columns: minmax(270px, 0.85fr) minmax(650px, 1.55fr);
    gap: clamp(70px, 10vw, 150px);
    padding-block: 88px 70px;
}

.pl-footer-brand > p {
    max-width: 380px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.pl-footer-contact {
    display: grid;
    gap: 5px;
    margin-top: 28px;
}

.pl-footer-contact a {
    width: max-content;
    color: var(--pl-white);
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid transparent;
}

.pl-footer-contact a:hover,
.pl-footer-contact a:focus-visible {
    border-bottom-color: var(--pl-lime-400);
}

.pl-footer-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.pl-footer-nav > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.pl-footer-nav p {
    margin: 0 0 10px;
    color: var(--pl-lime-300);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-footer-nav a {
    width: max-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.pl-footer-nav a:hover,
.pl-footer-nav a:focus-visible {
    color: var(--pl-white);
    transform: translateX(3px);
}

.pl-footer-middle {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding-block: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pl-footer-middle > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--pl-font-serif);
    font-size: 28px;
    font-style: italic;
}

.pl-footer-middle .mk-listing-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.pl-footer-middle .mk-listing-badge {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    min-height: 34px;
    padding: 6px 9px;
    color: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    transition: color 180ms ease, border-color 180ms ease;
}

.pl-footer-middle .mk-listing-badge:hover,
.pl-footer-middle .mk-listing-badge:focus-visible {
    color: var(--pl-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.pl-footer-middle .mk-listing-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--pl-lime-400);
    border-radius: 50%;
}

.pl-footer-middle .mk-listing-badge-image {
    padding: 4px 7px;
}

.pl-footer-middle .mk-listing-badge-image img {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.pl-footer-middle .mk-listing-badge-image span {
    color: inherit;
}

.pl-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    padding-block: 26px 34px;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 9px;
}

.pl-footer-bottom p {
    margin: 0;
}

.pl-footer-bottom p:last-child {
    text-align: right;
}

.pl-footer-bottom div {
    display: flex;
    gap: 18px;
}

.pl-footer-bottom a:hover,
.pl-footer-bottom a:focus-visible {
    color: var(--pl-white);
}

/* Reveal and motion */
html.pl-js [data-pl-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--pl-delay, 0ms);
}

html.pl-js [data-pl-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pl-pulse {
    0% { box-shadow: 0 0 0 0 rgba(199, 243, 107, 0.52); }
    70% { box-shadow: 0 0 0 9px rgba(199, 243, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(199, 243, 107, 0); }
}

@keyframes pl-morph {
    0% { border-radius: 31% 69% 66% 34% / 35% 35% 65% 65%; transform: rotate(0deg) scale(1); }
    50% { border-radius: 58% 42% 38% 62% / 49% 57% 43% 51%; transform: rotate(2deg) scale(1.018); }
    100% { border-radius: 44% 56% 63% 37% / 61% 42% 58% 39%; transform: rotate(-1.5deg) scale(0.99); }
}

@keyframes pl-morph-small {
    0% { border-radius: 62% 38% 54% 46% / 50% 60% 40% 50%; transform: rotate(0deg); }
    100% { border-radius: 38% 62% 43% 57% / 61% 40% 60% 39%; transform: rotate(12deg); }
}

@keyframes pl-morph-ticket {
    0% { border-radius: 40% 60% 54% 46% / 52% 38% 62% 48%; transform: rotate(-3deg) scale(0.98); }
    100% { border-radius: 61% 39% 37% 63% / 44% 58% 42% 56%; transform: rotate(3deg) scale(1.03); }
}

@keyframes pl-spin {
    to { transform: rotate(360deg); }
}

@keyframes pl-float-soft {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -9px; }
}

@keyframes pl-float-phone {
    0%, 100% { translate: 0 0; rotate: 0deg; }
    50% { translate: 0 -11px; rotate: 1deg; }
}

@keyframes pl-float-phone-large {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-3deg); }
    50% { transform: translateX(-50%) translateY(-11px) rotate(-1.8deg); }
}

@keyframes pl-channel-drift {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -6px; }
}

@keyframes pl-dash {
    to { stroke-dashoffset: -120; }
}

@keyframes pl-line-travel {
    0%, 15% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}

@keyframes pl-panel-enter {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pl-rotate-polygon {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1240px) {
    :root { --pl-shell: min(1400px, calc(100vw - 48px)); }

    .pl-nav { gap: 18px; }
    .pl-header-actions { gap: 16px; }
    .pl-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr); gap: 36px; }
    .pl-hero-copy h1 { font-size: clamp(54px, 5.7vw, 74px); }
    .pl-live-chip--order { right: -2%; }
    .pl-story { gap: 70px; }
    .pl-footer-top { grid-template-columns: minmax(240px, 0.7fr) minmax(600px, 1.5fr); gap: 60px; }
    .pl-footer-nav { gap: 18px; }
}

@media (max-width: 1100px) {
    .pl-header-inner { grid-template-columns: auto 1fr auto; }
    .pl-nav,
    .pl-header-actions { display: none; }
    .pl-menu-toggle { position: relative; display: block; justify-self: end; }
    .pp-module-rail { top: 72px; }
    .pp-module-rail .pl-shell { justify-content: flex-start; }

    .pl-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 88px;
    }

    .pl-hero-copy { max-width: 820px; }
    .pl-hero-copy h1 { max-width: 820px; font-size: clamp(66px, 10vw, 102px); }
    .pl-hero-lead { max-width: 720px; }
    .pl-hero-visual { min-height: 720px; }
    .pl-hero-shape--one { width: 82%; right: 7%; }
    .pl-browser-frame--dashboard { left: 7%; width: 79%; }
    .pl-browser-frame--customer { left: 2%; width: 56%; }
    .pl-phone-frame { right: 7%; width: 20%; }
    .pl-live-chip--order { right: 9%; }
    .pl-live-chip--sync { left: 12%; }
    .pl-hero-bottom { grid-template-columns: 1fr; }
    .pl-sector-rail { justify-content: flex-start; flex-wrap: wrap; }

    .pl-problem-grid,
    .pl-rollout-grid,
    .pl-faq-grid { grid-template-columns: 1fr; gap: 65px; }
    .pl-sticky-copy,
    .pl-rollout-grid > div:first-child,
    .pl-faq-grid > div:first-child { position: static; padding-top: 0; }
    .pl-sticky-copy { max-width: 760px; }
    .pl-order-transformation { min-height: 720px; }

    .pl-platform-heading,
    .pl-outcomes-heading,
    .pl-final-cta-inner { grid-template-columns: 1fr; gap: 30px; }
    .pl-platform-heading > p,
    .pl-outcomes-heading > p { max-width: 680px; }
    .pl-workflow-panel { grid-template-columns: 1fr; min-height: 0; }
    .pl-workflow-copy { max-width: 730px; }
    .pl-workflow-copy h3 { max-width: 730px; }

    .pl-story { gap: 55px; }
    .pl-story-visual { min-height: 610px; }
    .pl-story-dashboard { min-height: 480px; }

    .pl-outcome--hero h3 { margin-top: 120px; }
    .pl-enterprise-list article { grid-template-columns: 64px minmax(250px, 0.85fr) minmax(260px, 1.15fr); gap: 22px; }

    .pl-footer-top { grid-template-columns: 1fr; gap: 58px; }
}

@media (max-width: 840px) {
    :root { --pl-shell: min(1400px, calc(100vw - 36px)); }
    .pl-section { padding-block: 92px; }

    .pl-hero-grid { padding-block: 72px 50px; }
    .pl-hero-copy h1 { margin-top: 24px; font-size: clamp(54px, 12vw, 86px); }
    .pl-hero-visual { min-height: 610px; }
    .pl-hero-shape--one { top: 45px; right: 3%; width: 94%; height: 83%; }
    .pl-browser-frame--dashboard { top: 180px; left: 1%; width: 90%; }
    .pl-browser-frame--customer { top: 70px; left: 0; width: 68%; }
    .pl-browser-frame--dashboard,
    .pl-browser-frame--customer {
        transform: none;
    }
    .pl-phone-frame { right: 1%; bottom: 8px; width: 24%; }
    .pl-live-chip--order { top: 125px; right: 3%; }
    .pl-live-chip--sync { bottom: 15px; left: 5%; }

    .pl-workflow-tabs { grid-template-columns: repeat(4, minmax(170px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
    .pl-workflow-tabs button { scroll-snap-align: start; }
    .pl-workflow-panel { padding: 38px 28px 55px; }
    .pl-workflow-panels { min-height: 0; }
    .pl-workflow-float { right: 10px; }

    .pl-story { grid-template-columns: 1fr; gap: 58px; }
    .pl-story--customer .pl-story-visual { order: 2; }
    .pl-story--customer .pl-story-copy { order: 1; }
    .pl-story--team .pl-story-copy { order: 1; }
    .pl-story--team .pl-story-dashboard { order: 2; }
    .pl-story-visual { min-height: 650px; }
    .pl-phone-frame--large { width: min(300px, 45%); }
    .pl-story-dashboard { min-height: 560px; }
    .pl-story-dashboard .pl-browser-frame { width: 96%; margin-left: 2%; }
    .pl-dashboard-stat--one { right: 0; }
    .pl-dashboard-stat--two { left: 0; }

    .pl-outcome-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .pl-outcome--hero,
    .pl-outcome--lime,
    .pl-outcome--paper,
    .pl-outcome--white { grid-column: 1; grid-row: auto; }
    .pl-outcome--hero { min-height: 560px; }
    .pl-outcome--lime,
    .pl-outcome--paper { min-height: 300px; }
    .pl-outcome--white { min-height: 410px; }
    .pl-visibility-bars { top: auto; right: 34px; bottom: 30px; left: 34px; width: auto; height: 120px; }

    .pl-enterprise-list article { grid-template-columns: 60px 1fr; gap: 18px 22px; padding-block: 30px; }
    .pl-enterprise-list article > p { grid-column: 2; }
    .pl-integration-strip { align-items: flex-start; flex-wrap: wrap; }
    .pl-integration-strip > p { width: 100%; margin-bottom: 8px; }
    .pl-integration-link { width: 100%; margin: 8px 0 0; }

    .pl-footer-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px 28px; }
    .pl-footer-bottom { grid-template-columns: 1fr; gap: 12px; }
    .pl-footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 760px) {
    .pp-hero-actions .pl-text-link,
    .ps-hero-actions .pl-text-link,
    .wp-hero-actions .pl-text-link {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    :root { --pl-shell: min(1400px, calc(100vw - 28px)); }
    .pl-header-inner { min-height: 72px; }
    .pl-mobile-menu { top: 72px; padding-inline: 20px; }
    .pl-logo { font-size: 21px; }
    .pl-logo img { width: 31px; height: 31px; }
    .pp-module-rail a { padding-inline: 17px; }

    .pl-hero-grid { padding-top: 56px; }
    .pl-hero-copy h1 { font-size: clamp(50px, 15vw, 72px); line-height: 0.93; }
    .pl-hero-lead { font-size: 16px; }
    .pl-hero-actions { display: grid; gap: 16px; margin-top: 30px; }
    .pl-hero-actions .pl-button { width: 100%; }
    .pl-text-link { justify-self: center; }
    .pl-hero-assurance { display: grid; grid-template-columns: 1fr; gap: 10px; }
    .pl-hero-visual { min-height: 465px; margin-top: 10px; }
    .pl-hero-shape--one { top: 46px; right: -3%; width: 102%; height: 78%; }
    .pl-hero-shape--two { width: 120px; height: 120px; }
    .pl-orbit--one { width: 220px; height: 220px; right: -90px; }
    .pl-orbit--two { width: 180px; height: 180px; bottom: -20px; }
    .pl-browser-frame--dashboard { top: 150px; left: 0; width: 95%; }
    .pl-browser-frame--customer { top: 72px; left: 0; width: 76%; }
    .pl-phone-frame { right: 0; bottom: 5px; width: 25%; padding: 3px; border-radius: 14px; }
    .pl-phone-frame img { border-radius: 10px; }
    .pl-phone-speaker { top: 5px; height: 4px; }
    .pl-live-chip { display: none; }
    .pl-browser-bar { height: 21px; padding-inline: 7px; }
    .pl-browser-bar div { min-width: 80px; padding-block: 2px; }
    .pl-hero-bottom { padding-bottom: 26px; }
    .pl-sector-rail { gap: 8px 10px; }
    .pl-sector-rail span { padding: 4px 7px; background: var(--pl-paper); border-radius: 999px; }
    .pl-sector-rail i { display: none; }

    .pl-sticky-copy h2,
    .pl-platform-heading h2,
    .pl-centred-heading h2,
    .pl-outcomes-heading h2,
    .pl-enterprise-heading h2,
    .pl-rollout-grid h2,
    .pl-faq-grid h2,
    .pl-final-cta h2 { font-size: clamp(43px, 12.5vw, 60px); }

    .pl-order-transformation { min-height: 620px; border-radius: 22px; }
    .pl-channel { padding: 8px 9px; font-size: 8px; }
    .pl-channel span { width: 17px; height: 17px; }
    .pl-channel--phone { top: 68px; left: 4%; }
    .pl-channel--mail { top: 112px; right: 3%; }
    .pl-channel--message { bottom: 122px; left: 3%; }
    .pl-channel--sheet { right: 3%; bottom: 80px; }
    .pl-morph-wrap { width: 250px; height: 315px; }
    .pl-order-ticket { padding: 21px; }
    .pl-flow-result { right: 10%; left: 10%; }

    .pl-workflow { border-radius: 21px; }
    .pl-workflow-panel { padding: 32px 18px 48px; }
    .pl-workflow-copy h3 { font-size: clamp(34px, 10vw, 47px); }
    .pl-workflow-visual::before { right: -8px; }
    .pl-workflow-float { right: 4px; bottom: -28px; min-width: 155px; padding: 11px 13px; }

    .pl-story + .pl-story { margin-top: 130px; }
    .pl-story-copy h3 { font-size: clamp(42px, 12vw, 58px); }
    .pl-story-visual { min-height: 550px; }
    .pl-phone-frame--large { width: 52%; border-radius: 28px; }
    .pl-phone-frame--large img { border-radius: 22px; }
    .pl-mini-order-card { min-width: 132px; padding: 12px; }
    .pl-mini-order-card--top { right: -2%; }
    .pl-mini-order-card--bottom { left: -1%; }
    .pl-story-dashboard { min-height: 410px; }
    .pl-dashboard-stat { padding: 10px 12px; }

    .pl-outcome { padding: 28px; }
    .pl-outcome h3 { font-size: 37px; }
    .pl-outcome--hero { min-height: 520px; }
    .pl-outcome--hero h3 { margin-top: 170px; }
    .pl-outcome-orbit { width: 330px; height: 330px; }
    .pl-outcome--white { min-height: 440px; }

    .pl-enterprise-list article { grid-template-columns: 48px 1fr; gap: 14px 17px; }
    .pl-enterprise-icon { width: 46px; height: 46px; border-radius: 14px; }
    .pl-enterprise-list article > p { grid-column: 1 / -1; }
    .pl-integration-strip { padding: 17px; }

    .pl-rollout-steps li { grid-template-columns: 46px 1fr; gap: 18px; }
    .pl-rollout-steps li > span { width: 40px; height: 40px; }
    .pl-faq .mk-faq-item summary { grid-template-columns: 1fr 32px; min-height: 86px; font-size: 17px; }
    .pl-faq .mk-faq-item summary i { width: 32px; height: 32px; }
    .pl-faq .mk-faq-item > p { margin-right: 0; font-size: 13px; }

    .pl-final-cta-action .pl-button { width: 100%; }
    .pl-final-shape--one { width: 300px; height: 300px; opacity: 0.3; }

    .pl-footer-top { padding-block: 65px 55px; }
    .pl-footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 24px; }
    .pl-footer-middle { align-items: flex-start; flex-direction: column; }
    .pl-footer-middle .mk-listing-badges { justify-content: flex-start; }
}

@media (max-width: 380px) {
    .pl-phone-frame { width: 27%; }
    .pl-hero-visual { min-height: 430px; }
    .pl-morph-wrap { width: 226px; }
    .pl-flow-result { gap: 7px; }
    .pl-flow-result i { width: 20px; }
    .pl-footer-nav { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
    html.pl-js [data-pl-reveal] {
        opacity: 1;
        transform: none;
    }
    .pl-hero-stage,
    .pl-story-dashboard .pl-browser-frame {
        transform: none !important;
    }
}
