.psu-page {
    --psu-paper: #f7f4eb;
    --psu-paper-deep: #eee8dc;
    --psu-mint: #eaf5ef;
    --psu-ink-soft: #64716d;
    --psu-line-light: rgba(255, 255, 255, 0.13);
    background: var(--pl-white);
}

.psu-page main {
    overflow: clip;
}

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

.psu-gridlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(199, 243, 107, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199, 243, 107, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.75) 76%, transparent 100%);
}

.psu-hero {
    position: relative;
    min-height: calc(100svh - 82px);
    overflow: hidden;
    color: var(--pl-white);
    background:
        radial-gradient(circle at 78% 25%, rgba(41, 132, 99, 0.42), transparent 30%),
        radial-gradient(circle at 46% 110%, rgba(129, 186, 83, 0.14), transparent 32%),
        linear-gradient(130deg, #07362c 0%, var(--pl-forest-950) 54%, #031f1a 100%);
}

.psu-hero::after {
    position: absolute;
    right: -14vw;
    bottom: -26vw;
    width: 58vw;
    aspect-ratio: 1;
    border: 1px solid rgba(199, 243, 107, 0.18);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.psu-hero-orbit {
    position: absolute;
    border: 1px solid rgba(199, 243, 107, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.psu-hero-orbit--one {
    top: 15%;
    right: 4%;
    width: min(46vw, 720px);
    aspect-ratio: 1;
}

.psu-hero-orbit--two {
    top: 33%;
    right: 15%;
    width: min(24vw, 390px);
    aspect-ratio: 1;
    border-style: dashed;
}

.psu-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(600px, 1.2fr);
    align-items: center;
    gap: clamp(46px, 5vw, 90px);
    min-height: calc(100svh - 82px);
    padding-top: clamp(58px, 7vh, 94px);
    padding-bottom: clamp(58px, 7vh, 94px);
}

.psu-hero-copy {
    position: relative;
    z-index: 5;
    max-width: 690px;
}

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

.psu-eyebrow {
    color: var(--pl-lime-400);
}

.psu-eyebrow i {
    width: 26px;
    height: 1px;
    background: currentColor;
}

.psu-kicker span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    font-size: 10px;
    letter-spacing: 0;
}

.psu-hero h1 {
    max-width: 710px;
    margin: 26px 0 24px;
    color: var(--pl-white);
    font-size: clamp(58px, 5.8vw, 96px);
    font-weight: 650;
    letter-spacing: -0.066em;
    line-height: 0.91;
}

.psu-hero h1 em {
    display: block;
    margin-top: 5px;
    color: var(--pl-lime-400);
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 0.92;
}

.psu-hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.7;
}

.psu-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.psu-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--pl-white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.psu-text-link i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.psu-text-link svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.psu-text-link:hover i,
.psu-text-link:focus-visible i {
    border-color: var(--pl-lime-400);
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    transform: translateY(3px);
}

.psu-hero-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.psu-hero-principles span {
    display: inline-flex;
    align-items: center;
}

.psu-hero-principles span:not(:last-child)::after {
    width: 4px;
    height: 4px;
    margin: 0 14px;
    background: var(--pl-lime-400);
    content: "";
    transform: rotate(45deg);
}

.psu-hero-stage {
    position: relative;
    min-height: 590px;
    isolation: isolate;
}

.psu-stage-label {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 10%;
    display: flex;
    align-items: baseline;
    gap: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.psu-stage-label strong {
    color: var(--pl-white);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 29px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.psu-browser {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(7, 54, 44, 0.18);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(0, 30, 24, 0.17);
}

.psu-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 33px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(7, 54, 44, 0.12);
    color: #47625a;
    background: #f4f2ea;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.psu-browser-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9bb7ae;
}

.psu-browser-bar span {
    max-width: 70%;
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.psu-browser picture,
.psu-browser img {
    display: block;
    width: 100%;
}

.psu-browser img {
    height: auto;
}

.psu-hero-screen {
    position: absolute;
    z-index: 2;
    top: 56px;
    right: 0;
    width: 100%;
    transform: none;
    transform-origin: center;
    animation: psu-screen-arrive 900ms cubic-bezier(0.2, 0.75, 0.24, 1) both;
}

.psu-hero-phone {
    position: absolute;
    z-index: 4;
    right: -1%;
    bottom: -4%;
    width: min(26%, 188px);
    height: auto;
    filter: drop-shadow(0 28px 25px rgba(0, 22, 17, 0.35));
    animation: psu-phone-float 6s ease-in-out infinite;
}

.psu-order-signal {
    position: absolute;
    z-index: 6;
    top: 31%;
    left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 222px;
    padding: 14px 16px;
    border: 1px solid rgba(199, 243, 107, 0.45);
    color: var(--pl-forest-950);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(0, 26, 21, 0.22);
}

.psu-order-signal div {
    display: grid;
    gap: 4px;
}

.psu-order-signal span {
    color: var(--pl-forest-700);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.psu-order-signal strong {
    font-size: 11px;
}

.psu-order-signal i {
    position: relative;
    width: 9px;
    height: 9px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--pl-lime-400);
    box-shadow: 0 0 0 0 rgba(199, 243, 107, 0.6);
    animation: psu-signal-pulse 2.2s ease-out infinite;
}

.psu-hero-flow {
    position: absolute;
    z-index: 7;
    right: 7%;
    bottom: 5%;
    left: 7%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.46);
    background: rgba(3, 37, 30, 0.94);
    box-shadow: 0 20px 44px rgba(0, 22, 17, 0.28);
    backdrop-filter: blur(12px);
}

.psu-hero-flow span {
    position: relative;
    padding: 15px 10px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
    transition: color 260ms ease, background 260ms ease;
}

.psu-hero-flow span:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.psu-hero-flow span::after {
    position: absolute;
    right: -3px;
    top: 50%;
    z-index: 2;
    width: 6px;
    height: 6px;
    background: #456a5f;
    content: "";
    transform: translateY(-50%) rotate(45deg);
    transition: background 260ms ease, box-shadow 260ms ease;
}

.psu-hero-flow span:last-child::after {
    display: none;
}

.psu-hero-flow span.is-active {
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
}

.psu-hero-flow span.is-complete {
    color: var(--pl-lime-400);
}

.psu-hero-flow span.is-complete::after {
    background: var(--pl-lime-400);
    box-shadow: 0 0 12px rgba(199, 243, 107, 0.6);
}

@keyframes psu-screen-arrive {
    from { opacity: 0; transform: translate3d(0, 18px, 0); }
    to { opacity: 1; transform: none; }
}

@keyframes psu-phone-float {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-0.5deg); }
}

@keyframes psu-signal-pulse {
    0% { box-shadow: 0 0 0 0 rgba(199, 243, 107, 0.6); }
    70%, 100% { box-shadow: 0 0 0 12px rgba(199, 243, 107, 0); }
}

.psu-pressure,
.psu-working-day,
.psu-industries,
.psu-questions {
    position: relative;
}

.psu-pressure {
    background: var(--pl-white);
}

.psu-heading {
    margin-bottom: clamp(48px, 6vw, 82px);
}

.psu-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.66fr);
    align-items: end;
    gap: clamp(46px, 7vw, 116px);
}

.psu-heading h2 {
    max-width: 850px;
    margin: 22px 0 0;
    color: var(--pl-forest-950);
    font-size: clamp(48px, 5vw, 79px);
    font-weight: 650;
    letter-spacing: -0.063em;
    line-height: 0.97;
}

.psu-heading > p {
    max-width: 560px;
    margin: 0 0 5px;
    color: var(--psu-ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

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

.psu-heading--light > p {
    color: rgba(255, 255, 255, 0.62);
}

.psu-heading--light .psu-kicker {
    color: var(--pl-lime-400);
}

.psu-context-ledger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px minmax(0, 1fr);
    min-height: 540px;
    border-top: 1px solid rgba(7, 54, 44, 0.15);
    border-bottom: 1px solid rgba(7, 54, 44, 0.15);
}

.psu-ledger-side {
    padding: 45px 0 30px;
}

.psu-ledger-side--arrives {
    padding-right: clamp(34px, 5vw, 76px);
}

.psu-ledger-side--stays {
    padding-left: clamp(34px, 5vw, 76px);
}

.psu-ledger-side > span {
    color: var(--pl-forest-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.psu-ledger-side ul {
    display: grid;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.psu-ledger-side li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 2px 16px;
    padding: 23px 0;
    border-top: 1px solid rgba(7, 54, 44, 0.12);
}

.psu-ledger-side li i {
    grid-row: 1 / 3;
    color: var(--pl-lime-700);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.psu-ledger-side li strong {
    color: var(--pl-forest-950);
    font-size: 15px;
}

.psu-ledger-side li small {
    color: var(--psu-ink-soft);
    font-size: 12px;
    line-height: 1.5;
}

.psu-ledger-core {
    position: relative;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(7, 54, 44, 0.14);
    border-left: 1px solid rgba(7, 54, 44, 0.14);
    background:
        linear-gradient(rgba(7, 54, 44, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 54, 44, 0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    overflow: hidden;
}

.psu-ledger-core::before,
.psu-ledger-core::after {
    position: absolute;
    width: 88%;
    aspect-ratio: 1;
    border: 1px solid rgba(7, 54, 44, 0.16);
    border-radius: 50%;
    content: "";
}

.psu-ledger-core::after {
    width: 63%;
    border-style: dashed;
}

.psu-ledger-core > div {
    position: relative;
    z-index: 2;
    display: grid;
    width: 174px;
    aspect-ratio: 1;
    place-items: center;
    align-content: center;
    gap: 5px;
    border: 9px solid #4e8154;
    border-radius: 50%;
    color: var(--pl-white);
    background: var(--pl-forest-950);
    box-shadow: 0 24px 45px rgba(2, 45, 35, 0.22);
    text-align: center;
}

.psu-ledger-core span,
.psu-ledger-core small {
    color: var(--pl-lime-400);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.psu-ledger-core strong {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 31px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.88;
}

.psu-ledger-core small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 7px;
}

.psu-ledger-core > i {
    position: absolute;
    z-index: 3;
    width: 7px;
    height: 7px;
    background: var(--pl-lime-400);
    box-shadow: 0 0 0 5px rgba(199, 243, 107, 0.11);
    transform: rotate(45deg);
}

.psu-ledger-core > i:nth-of-type(1) { top: 18%; left: 18%; }
.psu-ledger-core > i:nth-of-type(2) { top: 21%; right: 17%; }
.psu-ledger-core > i:nth-of-type(3) { right: 18%; bottom: 18%; }
.psu-ledger-core > i:nth-of-type(4) { bottom: 21%; left: 17%; }

.psu-pressure-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(7, 54, 44, 0.15);
}

.psu-pressure-lines article {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 36px clamp(22px, 3vw, 44px) 40px 0;
}

.psu-pressure-lines article:not(:last-child) {
    margin-right: clamp(22px, 3vw, 44px);
    border-right: 1px solid rgba(7, 54, 44, 0.15);
}

.psu-pressure-lines span {
    grid-row: 1 / 3;
    color: var(--pl-lime-700);
    font-size: 9px;
    font-weight: 800;
}

.psu-pressure-lines h3 {
    margin: 0;
    color: var(--pl-forest-950);
    font-size: 17px;
    letter-spacing: -0.02em;
}

.psu-pressure-lines p {
    margin: 0;
    color: var(--psu-ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.psu-customer-route {
    position: relative;
    overflow: hidden;
    color: var(--pl-white);
    background:
        radial-gradient(circle at 80% 40%, rgba(72, 151, 99, 0.24), transparent 28%),
        var(--pl-forest-950);
}

.psu-route-stage {
    position: relative;
    min-height: 680px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.psu-route-stage::before {
    position: absolute;
    top: 8%;
    right: 3%;
    width: min(46vw, 650px);
    aspect-ratio: 1;
    border: 1px solid rgba(199, 243, 107, 0.17);
    border-radius: 50%;
    content: "";
}

.psu-route-stage::after {
    position: absolute;
    top: 30%;
    right: 15%;
    width: min(22vw, 330px);
    aspect-ratio: 1;
    border: 1px dashed rgba(199, 243, 107, 0.2);
    border-radius: 50%;
    content: "";
}

.psu-route-web {
    position: absolute;
    z-index: 2;
    top: 60px;
    left: 0;
    width: 73%;
}

.psu-route-web > span,
.psu-route-phone-wrap > span {
    display: block;
    margin-bottom: 13px;
    color: var(--pl-lime-400);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.psu-route-phone-wrap {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 7%;
    width: min(23%, 270px);
}

.psu-route-phone-wrap > img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 38px 38px rgba(0, 20, 15, 0.42));
}

.psu-route-ownership {
    position: absolute;
    z-index: 7;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(460px, 43%);
    padding: 30px 32px;
    border: 1px solid rgba(199, 243, 107, 0.36);
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    box-shadow: 0 26px 50px rgba(0, 24, 18, 0.25);
}

.psu-route-ownership > span {
    margin-bottom: 14px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.psu-route-ownership > strong {
    padding: 8px 0;
    border-bottom: 1px solid rgba(7, 54, 44, 0.18);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(27px, 2.5vw, 38px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1;
}

.psu-route-ownership a,
.psu-day-copy a,
.psu-industry-panel a,
.psu-all-industries,
.psu-role-links a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.psu-route-ownership a:first-of-type {
    margin-top: 20px;
}

.psu-route-ownership a {
    padding: 8px 0 2px;
}

.psu-route-ownership svg,
.psu-day-copy svg,
.psu-industry-panel svg,
.psu-all-industries svg,
.psu-role-links svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 180ms ease;
}

.psu-route-ownership a:hover svg,
.psu-route-ownership a:focus-visible svg,
.psu-day-copy a:hover svg,
.psu-day-copy a:focus-visible svg,
.psu-industry-panel a:hover svg,
.psu-industry-panel a:focus-visible svg,
.psu-all-industries:hover svg,
.psu-all-industries:focus-visible svg,
.psu-role-links a:hover svg,
.psu-role-links a:focus-visible svg {
    transform: translateX(4px);
}

.psu-working-day {
    background: var(--psu-paper);
}

.psu-day-story {
    position: relative;
    border: 1px solid rgba(7, 54, 44, 0.18);
    background: #fff;
    box-shadow: 0 28px 70px rgba(7, 54, 44, 0.09);
}

.psu-day-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(7, 54, 44, 0.16);
    background: #f2f0e8;
}

.psu-day-tabs::after {
    position: absolute;
    right: 8%;
    bottom: -1px;
    left: 8%;
    height: 1px;
    background: rgba(7, 54, 44, 0.22);
    content: "";
}

.psu-day-tabs button {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 4px;
    min-height: 104px;
    padding: 22px 24px;
    border: 0;
    border-right: 1px solid rgba(7, 54, 44, 0.14);
    color: var(--psu-ink-soft);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.psu-day-tabs button:last-child {
    border-right: 0;
}

.psu-day-tabs button::after {
    position: absolute;
    right: 7%;
    bottom: -5px;
    width: 9px;
    height: 9px;
    border: 2px solid #f2f0e8;
    background: #8ca69e;
    content: "";
    transform: rotate(45deg);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.psu-day-tabs button span {
    color: var(--pl-forest-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.psu-day-tabs button strong {
    color: var(--pl-forest-950);
    font-size: 16px;
}

.psu-day-tabs button small {
    font-size: 10px;
}

.psu-day-tabs button.is-active {
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
}

.psu-day-tabs button.is-active::after {
    border-color: var(--pl-lime-400);
    background: var(--pl-forest-950);
    box-shadow: 0 0 0 5px rgba(7, 54, 44, 0.08);
}

.psu-day-tabs button:focus-visible {
    z-index: 4;
    outline: 2px solid var(--pl-forest-950);
    outline-offset: -4px;
}

.psu-day-panels {
    min-height: 540px;
}

.psu-day-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(36px, 5vw, 74px);
    min-height: 540px;
    padding: clamp(42px, 5vw, 72px);
    animation: psu-panel-in 520ms cubic-bezier(0.2, 0.75, 0.24, 1) both;
}

.psu-day-panel[hidden] {
    display: none;
}

.psu-day-copy > span,
.psu-industry-panel > div > span {
    color: var(--pl-forest-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.psu-day-copy h3 {
    margin: 22px 0 18px;
    color: var(--pl-forest-950);
    font-size: clamp(34px, 3.4vw, 54px);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1;
}

.psu-day-copy p {
    margin: 0;
    color: var(--psu-ink-soft);
    font-size: 14px;
    line-height: 1.72;
}

.psu-day-copy a {
    width: fit-content;
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(7, 54, 44, 0.25);
    color: var(--pl-forest-950);
}

.psu-day-panel .psu-browser {
    width: 100%;
}

.psu-day-order {
    position: absolute;
    z-index: 5;
    right: clamp(42px, 5vw, 72px);
    bottom: 26px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 4px 20px;
    min-width: 240px;
    padding: 13px 16px;
    color: var(--pl-white);
    background: rgba(5, 52, 43, 0.95);
    box-shadow: 0 15px 34px rgba(0, 35, 27, 0.18);
}

.psu-day-order span {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.psu-day-order strong {
    grid-row: 1 / 3;
    grid-column: 2;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.psu-day-order i {
    position: relative;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.psu-day-order i::after {
    position: absolute;
    inset: 0;
    width: var(--day-progress, 25%);
    background: var(--pl-lime-400);
    content: "";
    transition: width 420ms cubic-bezier(0.2, 0.75, 0.24, 1);
}

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

.psu-roles {
    position: relative;
    overflow: hidden;
    color: var(--pl-white);
    background: var(--pl-forest-950);
}

.psu-role-rows {
    border-top: 1px solid var(--psu-line-light);
}

.psu-role-rows article {
    display: grid;
    grid-template-columns: 46px minmax(190px, 0.56fr) minmax(0, 1.25fr) minmax(220px, 0.65fr);
    align-items: center;
    gap: clamp(20px, 3vw, 52px);
    min-height: 118px;
    border-bottom: 1px solid var(--psu-line-light);
}

.psu-role-rows article > span {
    color: var(--pl-lime-400);
    font-size: 9px;
    font-weight: 800;
}

.psu-role-rows h3 {
    margin: 0;
    color: var(--pl-white);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(27px, 2.5vw, 40px);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.psu-role-rows p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.65;
}

.psu-role-rows article > strong {
    color: var(--pl-lime-400);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
}

.psu-role-links {
    display: flex;
    justify-content: flex-end;
    gap: 38px;
    margin-top: 34px;
}

.psu-role-links a {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(199, 243, 107, 0.35);
    color: var(--pl-white);
}

.psu-industries {
    background: var(--pl-white);
}

.psu-industry-switcher {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    min-height: 530px;
    border: 1px solid rgba(7, 54, 44, 0.17);
    background: var(--psu-paper);
}

.psu-industry-tabs {
    display: grid;
    align-content: stretch;
    border-right: 1px solid rgba(7, 54, 44, 0.16);
}

.psu-industry-tabs button {
    position: relative;
    min-height: 82px;
    padding: 20px 26px;
    border: 0;
    border-bottom: 1px solid rgba(7, 54, 44, 0.13);
    color: var(--psu-ink-soft);
    background: transparent;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.psu-industry-tabs button:last-child {
    border-bottom: 0;
}

.psu-industry-tabs button::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pl-lime-400);
    content: "";
    transition: width 180ms ease;
}

.psu-industry-tabs button.is-active {
    padding-left: 38px;
    color: var(--pl-white);
    background: var(--pl-forest-950);
}

.psu-industry-tabs button.is-active::before {
    width: 23px;
}

.psu-industry-tabs button:focus-visible {
    z-index: 2;
    outline: 2px solid var(--pl-lime-400);
    outline-offset: -4px;
}

.psu-industry-panels {
    min-width: 0;
}

.psu-industry-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: clamp(50px, 8vw, 118px);
    min-height: 530px;
    padding: clamp(48px, 6vw, 88px);
    overflow: hidden;
    animation: psu-panel-in 520ms cubic-bezier(0.2, 0.75, 0.24, 1) both;
}

.psu-industry-panel[hidden] {
    display: none;
}

.psu-industry-panel::before,
.psu-industry-panel::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 430px;
    aspect-ratio: 1;
    border: 1px solid rgba(7, 54, 44, 0.12);
    border-radius: 50%;
    content: "";
}

.psu-industry-panel::after {
    right: -25px;
    bottom: -90px;
    width: 250px;
    border-style: dashed;
}

.psu-industry-panel > div,
.psu-industry-panel > ul {
    position: relative;
    z-index: 2;
}

.psu-industry-panel h3 {
    max-width: 690px;
    margin: 22px 0 19px;
    color: var(--pl-forest-950);
    font-size: clamp(39px, 4vw, 61px);
    font-weight: 650;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.psu-industry-panel p {
    max-width: 650px;
    margin: 0;
    color: var(--psu-ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.psu-industry-panel a {
    width: fit-content;
    margin-top: 26px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(7, 54, 44, 0.28);
    color: var(--pl-forest-950);
}

.psu-industry-panel ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: 0;
    padding: 1px;
    background: rgba(7, 54, 44, 0.16);
    list-style: none;
    transform: rotate(-2deg);
}

.psu-industry-panel li {
    display: grid;
    min-height: 120px;
    align-content: space-between;
    padding: 18px;
    color: var(--pl-forest-950);
    background: var(--pl-white);
    font-size: 11px;
    font-weight: 800;
}

.psu-industry-panel li span {
    color: var(--pl-lime-700);
    font-size: 8px;
}

.psu-all-industries {
    width: fit-content;
    margin: 28px 0 0 auto;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(7, 54, 44, 0.25);
    color: var(--pl-forest-950);
}

.psu-rollout {
    position: relative;
    overflow: hidden;
    color: var(--pl-white);
    background:
        radial-gradient(circle at 19% 34%, rgba(59, 143, 104, 0.25), transparent 28%),
        var(--pl-forest-950);
}

.psu-rollout-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1fr);
    align-items: center;
    gap: clamp(70px, 9vw, 150px);
}

.psu-rollout-copy {
    position: relative;
    z-index: 2;
}

.psu-rollout-copy .psu-kicker {
    color: var(--pl-lime-400);
}

.psu-rollout-copy h2 {
    margin: 24px 0 24px;
    color: var(--pl-white);
    font-size: clamp(50px, 5.2vw, 80px);
    font-weight: 650;
    letter-spacing: -0.064em;
    line-height: 0.95;
}

.psu-rollout-copy > p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.75;
}

.psu-rollout-actions {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 34px;
}

.psu-rollout-actions > a:not(.pl-button) {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    color: var(--pl-white);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.psu-rollout-steps {
    position: relative;
    z-index: 2;
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.psu-rollout-steps::before {
    position: absolute;
    top: 44px;
    bottom: 44px;
    left: 27px;
    width: 1px;
    background: rgba(199, 243, 107, 0.45);
    content: "";
}

.psu-rollout-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.psu-rollout-steps li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.psu-rollout-steps li > span {
    z-index: 2;
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border: 1px solid rgba(199, 243, 107, 0.48);
    border-radius: 50%;
    color: var(--pl-forest-950);
    background: var(--pl-lime-400);
    font-size: 9px;
    font-weight: 800;
}

.psu-rollout-steps div {
    align-self: center;
}

.psu-rollout-steps strong {
    display: block;
    margin-bottom: 7px;
    font-size: 15px;
}

.psu-rollout-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    line-height: 1.6;
}

.psu-questions {
    background: var(--psu-paper);
}

.psu-questions-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(70px, 10vw, 160px);
}

.psu-questions-intro {
    position: sticky;
    top: 190px;
}

.psu-questions-intro h2 {
    margin: 23px 0 21px;
    color: var(--pl-forest-950);
    font-size: clamp(46px, 4.5vw, 70px);
    font-weight: 650;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.psu-questions-intro > p {
    max-width: 500px;
    margin: 0;
    color: var(--psu-ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.psu-contact {
    display: grid;
    gap: 8px;
    margin-top: 33px;
    padding-top: 25px;
    border-top: 1px solid rgba(7, 54, 44, 0.16);
}

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

.psu-contact a {
    width: fit-content;
    color: var(--pl-forest-950);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.psu-faq {
    border-top: 1px solid rgba(7, 54, 44, 0.16);
}

.psu-faq .mk-faq-item {
    border-bottom: 1px solid rgba(7, 54, 44, 0.16);
    background: transparent;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.psu-faq .mk-faq-item[open] {
    margin-inline: -18px;
    padding-inline: 18px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 3px 0 0 var(--pl-lime-400);
}

.psu-faq summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 24px;
    min-height: 90px;
    padding: 22px 0;
    color: var(--pl-forest-950);
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    letter-spacing: -0.025em;
    list-style: none;
    cursor: pointer;
}

.psu-faq summary::-webkit-details-marker {
    display: none;
}

.psu-faq summary i {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ebe8dd;
}

.psu-faq summary i::before,
.psu-faq summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1px;
    background: var(--pl-forest-950);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.psu-faq summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

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

.psu-faq .mk-faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.psu-faq .mk-faq-item > p {
    max-width: 780px;
    margin: -2px 0 0;
    padding: 0 54px 27px 0;
    color: var(--psu-ink-soft);
    font-size: 13px;
    line-height: 1.72;
    animation: psu-faq-answer 240ms ease both;
}

@keyframes psu-faq-answer {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.psu-final {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    color: var(--pl-white);
    background: #063b30;
}

.psu-final-orbit {
    position: absolute;
    top: 50%;
    left: 49%;
    width: min(40vw, 560px);
    aspect-ratio: 1;
    border: 1px solid rgba(199, 243, 107, 0.19);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.psu-final-orbit::before,
.psu-final-orbit::after {
    position: absolute;
    inset: 20%;
    border: 1px dashed rgba(199, 243, 107, 0.15);
    border-radius: 50%;
    content: "";
}

.psu-final-orbit::after {
    inset: 41%;
    border-style: solid;
    background: rgba(199, 243, 107, 0.05);
}

.psu-final-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.64fr);
    align-items: center;
    gap: clamp(60px, 10vw, 170px);
    min-height: 540px;
    padding-top: 88px;
    padding-bottom: 88px;
}

.psu-final-layout > div:first-child > span {
    color: var(--pl-lime-400);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.psu-final h2 {
    max-width: 850px;
    margin: 24px 0 0;
    color: var(--pl-white);
    font-size: clamp(54px, 6.5vw, 100px);
    font-weight: 650;
    letter-spacing: -0.068em;
    line-height: 0.9;
}

.psu-final-layout > div:last-child {
    display: grid;
    justify-items: start;
}

.psu-final-layout > div:last-child > p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.75;
}

.psu-final-call {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
    text-decoration: none;
}

.psu-final-call strong {
    color: var(--pl-white);
}

@media (max-width: 1260px) {
    .psu-hero-layout {
        grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.05fr);
        gap: 36px;
    }

    .psu-hero-stage {
        min-height: 530px;
    }

    .psu-route-stage {
        min-height: 610px;
    }

    .psu-role-rows article {
        grid-template-columns: 40px minmax(170px, 0.55fr) minmax(0, 1.2fr) minmax(180px, 0.58fr);
    }

    .psu-industry-panel {
        gap: 50px;
    }
}

@media (max-width: 1080px) {
    .psu-hero {
        min-height: auto;
    }

    .psu-hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .psu-hero-copy {
        max-width: 780px;
    }

    .psu-hero h1 {
        max-width: 800px;
        font-size: clamp(62px, 8vw, 88px);
    }

    .psu-hero-copy > p {
        max-width: 700px;
    }

    .psu-hero-stage {
        width: min(900px, 100%);
        min-height: 600px;
        margin: 12px auto 0;
    }

    .psu-stage-label {
        left: 6%;
    }

    .psu-hero-screen {
        right: 0;
        width: 92%;
    }

    .psu-heading--split {
        grid-template-columns: minmax(0, 1.12fr) minmax(270px, 0.7fr);
        gap: 44px;
    }

    .psu-context-ledger {
        grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
    }

    .psu-ledger-core > div {
        width: 148px;
    }

    .psu-route-stage {
        min-height: 570px;
    }

    .psu-route-web {
        width: 76%;
    }

    .psu-route-phone-wrap {
        right: 4%;
    }

    .psu-day-panel {
        grid-template-columns: minmax(250px, 0.4fr) minmax(0, 0.8fr);
        padding: 46px;
    }

    .psu-day-order {
        right: 46px;
    }

    .psu-role-rows article {
        grid-template-columns: 36px minmax(150px, 0.5fr) minmax(0, 1fr);
        gap: 20px 30px;
        padding: 26px 0;
    }

    .psu-role-rows article > strong {
        grid-column: 2 / 4;
        text-align: left;
    }

    .psu-industry-switcher {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .psu-industry-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .psu-industry-panel ul {
        width: min(560px, 100%);
    }

    .psu-rollout-layout {
        grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
        gap: 65px;
    }
}

@media (max-width: 840px) {
    .psu-page .pp-module-rail ~ section[id] {
        scroll-margin-top: 118px;
    }

    .psu-hero-layout {
        padding-top: 64px;
    }

    .psu-hero h1 {
        font-size: clamp(54px, 10.5vw, 75px);
    }

    .psu-hero-stage {
        min-height: 480px;
    }

    .psu-hero-screen {
        top: 52px;
        width: 94%;
    }

    .psu-order-signal {
        top: 25%;
    }

    .psu-hero-phone {
        right: 0;
        width: min(23%, 150px);
    }

    .psu-hero-flow {
        right: 2%;
        bottom: 3%;
        left: 2%;
    }

    .psu-heading--split {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .psu-heading > p {
        max-width: 680px;
    }

    .psu-context-ledger {
        grid-template-columns: 1fr 180px 1fr;
    }

    .psu-ledger-side--arrives {
        padding-right: 24px;
    }

    .psu-ledger-side--stays {
        padding-left: 24px;
    }

    .psu-ledger-core > div {
        width: 126px;
        border-width: 7px;
    }

    .psu-ledger-core strong {
        font-size: 25px;
    }

    .psu-ledger-side li {
        grid-template-columns: 30px 1fr;
        gap: 3px 10px;
    }

    .psu-pressure-lines {
        grid-template-columns: 1fr;
    }

    .psu-pressure-lines article,
    .psu-pressure-lines article:not(:last-child) {
        margin: 0;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(7, 54, 44, 0.13);
    }

    .psu-route-stage {
        min-height: 720px;
    }

    .psu-route-web {
        top: 45px;
        width: 84%;
    }

    .psu-route-phone-wrap {
        top: 16%;
        right: 0;
        width: min(25%, 178px);
    }

    .psu-route-ownership {
        right: 0;
        bottom: 25px;
        width: min(520px, 78%);
    }

    .psu-day-tabs button {
        min-height: 92px;
        padding: 17px 14px;
    }

    .psu-day-panel {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 38px 38px 84px;
    }

    .psu-day-copy {
        max-width: 680px;
    }

    .psu-day-order {
        right: 38px;
        bottom: 26px;
    }

    .psu-role-rows article {
        grid-template-columns: 34px minmax(150px, 0.6fr) minmax(0, 1fr);
    }

    .psu-industry-switcher {
        grid-template-columns: 1fr;
    }

    .psu-industry-tabs {
        grid-template-columns: repeat(5, minmax(158px, 1fr));
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(7, 54, 44, 0.16);
        scrollbar-width: none;
    }

    .psu-industry-tabs::-webkit-scrollbar {
        display: none;
    }

    .psu-industry-tabs button,
    .psu-industry-tabs button:last-child {
        min-height: 68px;
        padding: 16px;
        border-right: 1px solid rgba(7, 54, 44, 0.13);
        border-bottom: 0;
        white-space: nowrap;
    }

    .psu-industry-tabs button.is-active {
        padding-left: 28px;
    }

    .psu-industry-tabs button.is-active::before {
        width: 16px;
    }

    .psu-industry-panel {
        min-height: 0;
    }

    .psu-rollout-layout,
    .psu-questions-layout,
    .psu-final-layout {
        grid-template-columns: 1fr;
    }

    .psu-rollout-layout {
        gap: 60px;
    }

    .psu-questions-layout {
        gap: 58px;
    }

    .psu-questions-intro {
        position: static;
    }

    .psu-final-layout {
        gap: 48px;
        min-height: 0;
    }

    .psu-final-layout > div:last-child {
        max-width: 600px;
    }

    .psu-final-orbit {
        left: 70%;
        width: 70vw;
    }
}

@media (max-width: 640px) {
    .psu-gridlines {
        background-size: 44px 44px;
    }

    .psu-hero-layout {
        gap: 38px;
        padding-top: 48px;
        padding-bottom: 45px;
    }

    .psu-eyebrow {
        font-size: 9px;
    }

    .psu-hero h1 {
        margin: 21px 0 18px;
        font-size: clamp(47px, 14vw, 64px);
        line-height: 0.91;
    }

    .psu-hero-copy > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .psu-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        margin-top: 27px;
    }

    .psu-hero-actions .pl-button {
        justify-content: space-between;
        width: 100%;
    }

    .psu-text-link {
        justify-content: space-between;
        width: 100%;
    }

    .psu-hero-principles {
        margin-top: 27px;
        font-size: 8px;
    }

    .psu-hero-principles span:not(:last-child)::after {
        margin-inline: 9px;
    }

    .psu-hero-stage {
        min-height: 360px;
        margin-top: 5px;
    }

    .psu-stage-label {
        left: 0;
    }

    .psu-stage-label strong {
        font-size: 22px;
    }

    .psu-hero-screen {
        top: 42px;
        right: 0;
        width: 100%;
        border-radius: 9px;
        transform: none;
    }

    .psu-browser {
        border-radius: 10px;
    }

    .psu-browser-bar {
        height: 25px;
        padding-inline: 9px;
    }

    .psu-browser-bar i {
        width: 5px;
        height: 5px;
    }

    .psu-hero-phone {
        right: -2%;
        bottom: 0;
        width: min(27%, 116px);
    }

    .psu-order-signal {
        top: 30%;
        left: -2%;
        min-width: 166px;
        padding: 10px;
    }

    .psu-order-signal strong {
        font-size: 9px;
    }

    .psu-hero-flow {
        right: 0;
        bottom: -2px;
        left: 0;
    }

    .psu-hero-flow span {
        padding: 11px 4px;
        font-size: 6px;
    }

    .psu-heading {
        margin-bottom: 39px;
    }

    .psu-heading h2,
    .psu-rollout-copy h2,
    .psu-questions-intro h2 {
        margin-top: 18px;
        font-size: clamp(39px, 12vw, 55px);
    }

    .psu-heading > p,
    .psu-rollout-copy > p,
    .psu-questions-intro > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .psu-context-ledger {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .psu-ledger-side,
    .psu-ledger-side--arrives,
    .psu-ledger-side--stays {
        padding: 31px 0 20px;
    }

    .psu-ledger-core {
        min-height: 250px;
        border: 1px solid rgba(7, 54, 44, 0.14);
    }

    .psu-ledger-core > div {
        width: 138px;
    }

    .psu-ledger-side li {
        padding: 19px 0;
    }

    .psu-route-stage {
        min-height: 680px;
    }

    .psu-route-web {
        top: 35px;
        width: 100%;
    }

    .psu-route-phone-wrap {
        top: 31%;
        right: -1%;
        width: 30%;
    }

    .psu-route-ownership {
        right: auto;
        bottom: 20px;
        left: 0;
        width: 87%;
        padding: 23px;
    }

    .psu-route-ownership > strong {
        font-size: 27px;
    }

    .psu-day-story {
        margin-inline: -1px;
    }

    .psu-day-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .psu-day-tabs::after,
    .psu-day-tabs button::after {
        display: none;
    }

    .psu-day-tabs button {
        min-height: 82px;
        border-bottom: 1px solid rgba(7, 54, 44, 0.14);
    }

    .psu-day-tabs button:nth-child(2) {
        border-right: 0;
    }

    .psu-day-panel {
        padding: 30px 22px 83px;
    }

    .psu-day-copy h3 {
        margin-top: 17px;
        font-size: clamp(32px, 10vw, 44px);
    }

    .psu-day-order {
        right: 22px;
        bottom: 20px;
        min-width: 210px;
    }

    .psu-role-rows article {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px 14px;
        padding: 24px 0;
    }

    .psu-role-rows h3 {
        font-size: 28px;
    }

    .psu-role-rows p,
    .psu-role-rows article > strong {
        grid-column: 2;
    }

    .psu-role-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .psu-industry-switcher {
        margin-inline: -1px;
    }

    .psu-industry-tabs {
        grid-template-columns: repeat(5, minmax(162px, 1fr));
    }

    .psu-industry-panel {
        gap: 34px;
        padding: 34px 23px;
    }

    .psu-industry-panel h3 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .psu-industry-panel ul {
        transform: none;
    }

    .psu-industry-panel li {
        min-height: 100px;
        padding: 14px;
        font-size: 10px;
    }

    .psu-all-industries {
        margin-left: 0;
    }

    .psu-rollout-layout {
        gap: 46px;
    }

    .psu-rollout-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .psu-rollout-actions .pl-button {
        justify-content: space-between;
        width: 100%;
    }

    .psu-rollout-actions > a:not(.pl-button) {
        width: fit-content;
    }

    .psu-rollout-steps::before {
        left: 22px;
    }

    .psu-rollout-steps li {
        grid-template-columns: 45px 1fr;
        gap: 17px;
    }

    .psu-rollout-steps li > span {
        width: 45px;
        height: 45px;
    }

    .psu-faq .mk-faq-item[open] {
        margin-inline: -9px;
        padding-inline: 9px;
    }

    .psu-faq summary {
        grid-template-columns: 1fr 32px;
        min-height: 78px;
        padding: 18px 0;
        font-size: 15px;
    }

    .psu-faq .mk-faq-item > p {
        padding: 0 43px 22px 0;
        font-size: 12px;
    }

    .psu-final {
        min-height: 0;
    }

    .psu-final-layout {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .psu-final h2 {
        font-size: clamp(48px, 14vw, 67px);
    }

    .psu-final-layout .pl-button {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .psu-hero h1 {
        font-size: 45px;
    }

    .psu-hero-principles span:last-child {
        width: 100%;
    }

    .psu-hero-principles span:nth-child(2)::after {
        display: none;
    }

    .psu-hero-stage {
        min-height: 330px;
    }

    .psu-order-signal {
        min-width: 145px;
    }

    .psu-route-stage {
        min-height: 625px;
    }

    .psu-route-ownership {
        width: 94%;
    }

    .psu-day-tabs button {
        padding-inline: 11px;
    }

    .psu-day-order {
        right: 13px;
        left: 13px;
        min-width: 0;
    }

    .psu-industry-panel li {
        min-height: 92px;
        padding: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .psu-hero-screen,
    .psu-hero-phone,
    .psu-order-signal i,
    .psu-day-panel,
    .psu-industry-panel,
    .psu-faq .mk-faq-item > p {
        animation: none !important;
    }

    .psu-hero-flow span,
    .psu-day-order i::after,
    .psu-route-ownership svg,
    .psu-day-copy svg,
    .psu-industry-panel svg,
    .psu-all-industries svg,
    .psu-role-links svg {
        transition: none !important;
    }
}
