@charset "UTF-8";
/**
 * Prop Nexus — the three mobile app pages.
 *
 * Loaded after propnexus.css and uses its tokens; nothing here redefines the
 * design system. It is deliberately a different animal from module.css:
 *
 *   module pages   light document, one schematic per stage, scroll spine
 *   app pages      ink throughout, ONE phone carried down the page, and the
 *                  features are tabs you operate rather than sections you pass
 *
 * The phone is built once (.pn-ps) and used twice — in the hero showing the
 * app's opening screen, and in the feature showcase as a filmstrip that slides
 * to whichever feature is selected. `--tab` is set on the tab root by
 * initTabs() in propnexus.js, so the slide needs no extra script.
 */

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

/* An ink page needs its overscroll gutter painted, or the browser shows white.
   module.css declares the same thing; app pages do not load it. */
.pn-page {
    background: var(--pn-ink-900);
}
.pn--ink {
    background: var(--pn-ink-900);
    color: var(--pn-on-ink-soft);
}
.pn--ink h1,
.pn--ink h2,
.pn--ink h3 {
    color: #fff;
}
/* The eyebrow's brand-600 is tuned for paper and goes muddy on ink */
.pn__eyebrow--ink {
    color: var(--pn-brand-400);
}
.pn__eyebrow--ink::before {
    background: var(--pn-brand-400);
}

/* ==========================================================================
   Breadcrumbs
   --------------------------------------------------------------------------
   Same treatment as the other inner pages, restated here because app pages do
   not load module.css.
   ========================================================================== */

.pn-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--pn-3);
    list-style: none;
    margin: 0 0 var(--pn-5);
    padding: 0;
    font-size: var(--pn-fs-xs);
    letter-spacing: 0.02em;
}
.pn-crumbs li {
    color: var(--pn-on-ink-dim);
}
.pn-crumbs li + li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 1px;
    margin-right: var(--pn-3);
    vertical-align: middle;
    background: var(--pn-on-ink-line);
}
.pn-crumbs a {
    color: var(--pn-on-ink-soft);
}
.pn-crumbs a:hover {
    color: var(--pn-brand-400);
}

/* ==========================================================================
   The device
   ========================================================================== */

.pn-ps {
    position: relative;
    display: block;
    width: 100%;
    max-width: 288px;
    margin-inline: auto;
}
.pn-ps__frame {
    position: relative;
    display: block;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 38px;
    background: linear-gradient(160deg, #1b1f1e, #0a1211);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.pn-ps__notch {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 92px;
    height: 20px;
    margin-left: -46px;
    border-radius: 0 0 12px 12px;
    background: #0a1211;
    z-index: 2;
}
.pn-ps__viewport {
    position: relative;
    display: block;
    /* A phone-shaped window; everything inside is sized against this. Kept a
       little shorter than a real handset so the screens read as full rather
       than as a strip of UI floating above empty space. */
    aspect-ratio: 9 / 16.4;
    border-radius: 29px;
    background: var(--pn-paper);
    overflow: hidden;
}
/* The filmstrip: one strip per feature, laid side by side. */
.pn-ps__film {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    transform: translateX(calc(var(--tab, 0) * -100%));
    transition: transform 620ms var(--pn-ease-io);
}
.pn-ps__strip {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: block;
}
/* A hairline of brand along the bottom bezel, the one bit of shine allowed */
.pn-ps__glowline {
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: -1px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--pn-brand-500), transparent);
}

/* --- Screen furniture --------------------------------------------------- */

.pn-ps__screen {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 10px;
    padding: 26px 14px 14px;
    background: var(--pn-paper);
}
.pn-ps__status {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 2px;
}
.pn-ps__status em {
    flex: 1;
    font-style: normal;
    font-size: 9px;
    font-weight: 700;
    color: var(--pn-text-strong);
}
.pn-ps__status i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pn-line-strong);
}
.pn-ps__status b {
    width: 16px;
    height: 8px;
    border-radius: 2px;
    border: 1px solid var(--pn-line-strong);
}
.pn-ps__title {
    font-family: var(--pn-font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--pn-text-strong);
    padding: 0 2px;
}

/* Bottom tab bar */
.pn-ps__bar {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 34px;
    border-radius: var(--pn-r-pill);
    background: var(--pn-paper-soft);
    border: 1px solid var(--pn-line);
    opacity: 0;
}
.pn-ps__bar i {
    width: 16px;
    height: 4px;
    border-radius: 2px;
    background: var(--pn-line-strong);
}
.pn-ps__bar i.on {
    width: 22px;
    background: var(--pn-brand-500);
}
.pn-ps__strip .pn-ps__bar {
    animation: pn-k-psin 620ms var(--pn-ease) backwards;
    animation-delay: calc(var(--d) * 70ms + 120ms);
    opacity: 1;
}

/* Shared entrance for everything on a screen */
@keyframes pn-k-psin {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* --- HOME --------------------------------------------------------------- */

.pn-ps__home {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 12px;
    align-content: start;
    min-height: 0;
}
.pn-ps__recent {
    display: grid;
    gap: 7px;
    align-content: start;
    padding-top: 10px;
    border-top: 1px solid var(--pn-line);
}
.pn-ps__rline {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
}
.pn-ps__rline b {
    width: 14px;
    height: 14px;
    flex: none;
    border-radius: 50%;
    background: var(--pn-paper-sunk);
}
.pn-ps__rline i {
    flex: 1;
    height: 5px;
    border-radius: 3px;
    background: var(--pn-paper-sunk);
}
.pn-ps__rline:nth-child(2) i {
    max-width: 74%;
}
.pn-ps__rline:nth-child(3) i {
    max-width: 52%;
}
.pn-ps__strip .pn-ps__rline {
    animation: pn-k-psin 560ms var(--pn-ease) backwards;
    animation-delay: calc(var(--d) * 60ms + 100ms);
    opacity: 1;
}

.pn-ps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-content: start;
}
.pn-ps__tile {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 9px 4px;
    border: 1px solid var(--pn-line);
    border-radius: 10px;
    background: var(--pn-paper-soft);
    opacity: 0;
}
.pn-ps__tile i {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--pn-brand-050);
    border: 1px solid var(--pn-brand-100);
}
.pn-ps__tile em {
    font-style: normal;
    font-size: 7px;
    font-weight: 600;
    color: var(--pn-text-muted);
    text-align: center;
    line-height: 1.2;
}
.pn-ps__strip .pn-ps__tile {
    animation: pn-k-psin 560ms var(--pn-ease) backwards;
    animation-delay: calc(var(--d) * 60ms + 100ms);
    opacity: 1;
}

/* --- LIST and MONEY rows ------------------------------------------------ */

.pn-ps__rows {
    display: grid;
    gap: 7px;
    align-content: start;
}
.pn-ps__row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 9px;
    border: 1px solid var(--pn-line);
    border-radius: 9px;
    background: var(--pn-paper-soft);
    opacity: 0;
}
.pn-ps__row b {
    width: 16px;
    height: 16px;
    flex: none;
    border-radius: 5px;
    background: var(--pn-brand-050);
    border: 1px solid var(--pn-brand-100);
}
.pn-ps__row em {
    flex: 1;
    font-style: normal;
    font-size: 9px;
    font-weight: 600;
    color: var(--pn-text-strong);
}
/* The rows sitting behind the form sheet carry no label, so they need a
   skeleton bar to read as records rather than as empty boxes. */
.pn-ps__row em:empty {
    height: 5px;
    border-radius: 3px;
    background: var(--pn-paper-sunk);
}
.pn-ps__rows .pn-ps__row:nth-child(2) em:empty {
    max-width: 72%;
}
.pn-ps__rows .pn-ps__row:nth-child(3) em:empty {
    max-width: 52%;
}
.pn-ps__row s {
    width: 14px;
    height: 6px;
    flex: none;
    border-radius: 3px;
    background: var(--pn-paper-sunk);
    text-decoration: none;
}
.pn-ps__row--money s[data-s="paid"] {
    background: var(--pn-brand-500);
}
.pn-ps__row--money s[data-s="due"] {
    background: var(--pn-amber-400);
}
.pn-ps__strip .pn-ps__row {
    animation: pn-k-psin 560ms var(--pn-ease) backwards;
    animation-delay: calc(var(--d) * 80ms + 140ms);
    opacity: 1;
}

.pn-ps__total {
    display: grid;
    gap: 7px;
    padding: 10px;
    border: 1px solid var(--pn-brand-100);
    border-radius: 10px;
    background: var(--pn-brand-050);
}
.pn-ps__total em {
    font-style: normal;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pn-brand-700);
}
.pn-ps__track {
    display: block;
    height: 7px;
    border-radius: 4px;
    background: var(--pn-paper);
    overflow: hidden;
}
.pn-ps__track i {
    display: block;
    height: 100%;
    width: 68%;
    border-radius: inherit;
    background: var(--pn-brand-600);
    transform: scaleX(0);
    transform-origin: left center;
}
.pn-ps__strip .pn-ps__track i {
    animation: pn-k-pstrack 900ms var(--pn-ease-io) 260ms backwards;
    transform: scaleX(1);
}
@keyframes pn-k-pstrack {
    from {
        transform: scaleX(0);
    }
}

/* --- FORM: a sheet slides up and commits -------------------------------- */

.pn-ps__dim {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 16, 0.28);
    opacity: 0;
}
.pn-ps__strip .pn-ps__dim {
    animation: pn-k-psdim 9s var(--pn-ease) infinite;
}
@keyframes pn-k-psdim {
    0%,
    100% {
        opacity: 0;
    }
    10%,
    82% {
        opacity: 1;
    }
}
.pn-ps__sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 10px;
    padding: 12px 14px 18px;
    border-radius: 18px 18px 29px 29px;
    background: var(--pn-paper);
    box-shadow: 0 -10px 30px rgba(14, 14, 16, 0.16);
    transform: translateY(100%);
}
.pn-ps__strip .pn-ps__sheet {
    animation: pn-k-pssheet 9s var(--pn-ease-io) infinite;
}
@keyframes pn-k-pssheet {
    0%,
    100% {
        transform: translateY(100%);
    }
    12%,
    82% {
        transform: translateY(0);
    }
}
.pn-ps__grab {
    width: 34px;
    height: 4px;
    margin: 0 auto 2px;
    border-radius: 2px;
    background: var(--pn-line-strong);
}
.pn-ps__field {
    display: grid;
    gap: 5px;
}
.pn-ps__field em {
    font-style: normal;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pn-text-muted);
}
.pn-ps__field i {
    display: block;
    height: 26px;
    border: 1px solid var(--pn-line);
    border-radius: 8px;
    background: var(--pn-paper-soft);
}
/* Each field fills in turn, so the sheet reads as being completed */
.pn-ps__strip .pn-ps__field i {
    animation: pn-k-psfill 9s var(--pn-ease) infinite;
    animation-delay: calc(var(--d) * 900ms + 1.5s);
}
@keyframes pn-k-psfill {
    0%,
    100% {
        border-color: var(--pn-line);
        background: var(--pn-paper-soft);
    }
    6%,
    72% {
        border-color: var(--pn-brand-500);
        background: var(--pn-brand-050);
    }
}
.pn-ps__submit {
    display: grid;
    place-items: center;
    height: 30px;
    border-radius: 9px;
    background: var(--pn-brand-500);
    color: var(--pn-text-strong);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.pn-ps__strip .pn-ps__submit {
    animation: pn-k-pspress 9s var(--pn-ease) infinite;
}
@keyframes pn-k-pspress {
    0%,
    46%,
    58%,
    100% {
        transform: scale(1);
    }
    52% {
        transform: scale(0.94);
    }
}
.pn-ps__done {
    position: absolute;
    left: 50%;
    top: 44%;
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
    border-radius: 50%;
    background: var(--pn-brand-500);
    color: var(--pn-text-strong);
    display: grid;
    place-items: center;
    opacity: 0;
    z-index: 3;
}
.pn-ps__done svg {
    width: 22px;
    height: 22px;
}
.pn-ps__strip .pn-ps__done {
    animation: pn-k-psdone 9s var(--pn-ease) infinite;
}
@keyframes pn-k-psdone {
    0%,
    56% {
        opacity: 0;
        transform: scale(0.5);
    }
    62% {
        opacity: 1;
        transform: scale(1.12);
    }
    68%,
    80% {
        opacity: 1;
        transform: scale(1);
    }
    88%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* --- FEED --------------------------------------------------------------- */

.pn-ps__feed {
    display: grid;
    gap: 8px;
    align-content: start;
}
.pn-ps__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px;
    border: 1px solid var(--pn-line);
    border-radius: 9px;
    background: var(--pn-paper-soft);
    opacity: 0;
}
.pn-ps__note b {
    width: 8px;
    height: 8px;
    flex: none;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--pn-brand-500);
}
.pn-ps__note > span {
    display: grid;
    gap: 5px;
    flex: 1;
}
.pn-ps__note em {
    font-style: normal;
    font-size: 9px;
    font-weight: 600;
    color: var(--pn-text-strong);
}
.pn-ps__note s {
    height: 4px;
    width: 62%;
    border-radius: 2px;
    background: var(--pn-paper-sunk);
    text-decoration: none;
    display: block;
}
/* Notices keep arriving rather than appearing once and stopping */
.pn-ps__strip .pn-ps__note {
    animation: pn-k-psnote 9s var(--pn-ease) infinite;
    animation-delay: calc(var(--d) * 1.1s + 0.3s);
}
@keyframes pn-k-psnote {
    0% {
        opacity: 0;
        transform: translateY(-14px);
    }
    6%,
    86% {
        opacity: 1;
        transform: none;
    }
    100% {
        opacity: 0;
        transform: translateY(-14px);
    }
}
.pn-ps__pulse {
    position: absolute;
    right: 16px;
    top: 44px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pn-brand-500);
}
.pn-ps__strip .pn-ps__pulse {
    animation: pn-k-pspulse 2.4s var(--pn-ease) infinite;
}
@keyframes pn-k-pspulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55);
    }
    70%,
    100% {
        box-shadow: 0 0 0 10px rgba(201, 162, 39, 0);
    }
}

/* --- SECURE ------------------------------------------------------------- */

.pn-ps__lock {
    position: relative;
    display: block;
    width: 58px;
    height: 62px;
    margin: 18px auto 0;
}
.pn-ps__shackle {
    position: absolute;
    left: 50%;
    top: 0;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    border: 4px solid var(--pn-brand-500);
    border-bottom: 0;
    border-radius: 15px 15px 0 0;
    transform-origin: right bottom;
}
.pn-ps__strip .pn-ps__shackle {
    animation: pn-k-pslock 9s var(--pn-ease) infinite;
}
@keyframes pn-k-pslock {
    0%,
    18% {
        transform: rotate(0deg);
    }
    30%,
    86% {
        transform: rotate(-26deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.pn-ps__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38px;
    border-radius: 9px;
    background: var(--pn-brand-500);
    display: grid;
    place-items: center;
}
.pn-ps__body i {
    width: 6px;
    height: 12px;
    border-radius: 3px;
    background: rgba(14, 14, 16, 0.4);
}
.pn-ps__roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    align-content: start;
    margin-top: 16px;
}
.pn-ps__role {
    padding: 5px 10px;
    border: 1px solid var(--pn-brand-100);
    border-radius: var(--pn-r-pill);
    background: var(--pn-brand-050);
    color: var(--pn-brand-700);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
}
.pn-ps__strip .pn-ps__role {
    animation: pn-k-psrole 9s var(--pn-ease) infinite;
    animation-delay: calc(var(--d) * 220ms + 2.6s);
}
@keyframes pn-k-psrole {
    0%,
    100% {
        opacity: 0;
        transform: scale(0.7);
    }
    6%,
    72% {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.pn-ah {
    position: relative;
    background: var(--pn-ink-900);
    color: var(--pn-on-ink-soft);
    padding: calc(var(--pn-header-h) + var(--pn-8)) 0 var(--pn-9);
    overflow: hidden;
}
.pn-ah__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(120% 84% at 78% 34%, #000 0%, transparent 74%);
    mask-image: radial-gradient(120% 84% at 78% 34%, #000 0%, transparent 74%);
}
.pn-ah__inner {
    position: relative;
    display: grid;
    gap: var(--pn-8);
    align-items: center;
}
.pn-ah__copy {
    min-width: 0;
}
.pn-ah h1 {
    margin: 0 0 var(--pn-4);
}
/* `.pn h2` would win on both size and colour, and its near-black would be
   invisible here, so the sub-line restates both. */
.pn-ah h2.pn-ah__sub {
    font-family: var(--pn-font-head);
    font-size: var(--pn-fs-lead);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    color: var(--pn-brand-400);
    margin: 0 0 var(--pn-5);
}
.pn-ah__lead {
    color: var(--pn-on-ink-soft);
    line-height: 1.75;
    max-width: 58ch;
}
.pn-ah__stores {
    display: flex;
    flex-wrap: wrap;
    gap: var(--pn-3);
    margin-top: var(--pn-6);
}
/* `.pn-store` rests at opacity 0 because the homepage reveals it from inside
   the app panel. Nothing does that here, so the badges have to be shown. */
.pn-ah__stores .pn-store {
    opacity: 1;
    transform: none;
}
.pn-ah__stores .pn-store img {
    display: block;
    height: 38px;
    width: auto;
}
.pn-ah__device {
    min-width: 0;
    display: grid;
    place-items: center;
}

@media (min-width: 992px) {
    .pn-ah__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: var(--pn-9);
    }
}

/* ==========================================================================
   Features — tabs on the left, one device on the right
   ========================================================================== */

.pn-af {
    background: var(--pn-ink-800);
    padding: var(--pn-section) 0;
}
.pn-af__head {
    margin-bottom: var(--pn-7);
}
.pn-af__hint {
    margin: 0;
    color: var(--pn-on-ink-dim);
    font-size: var(--pn-fs-sm);
}

.pn-af__show {
    display: grid;
    gap: var(--pn-7);
    align-items: start;
}
.pn-af__tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--pn-3);
    min-width: 0;
}
.pn-af__tabitem {
    border: 1px solid var(--pn-on-ink-line);
    border-radius: var(--pn-r-3);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition:
        border-color var(--pn-t-2) var(--pn-ease),
        background-color var(--pn-t-2) var(--pn-ease);
}
.pn-af__tabitem:has([aria-selected="true"]) {
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(255, 255, 255, 0.05);
}
.pn-af__tab {
    display: flex;
    align-items: center;
    gap: var(--pn-4);
    width: 100%;
    padding: var(--pn-5);
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
}
.pn-af__no {
    font-family: var(--pn-font-head);
    font-size: var(--pn-fs-xs);
    font-weight: 700;
    color: var(--pn-brand-400);
    opacity: 0.7;
    flex: none;
}
.pn-af__name {
    flex: 1;
    font-family: var(--pn-font-head);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
}
.pn-af__go {
    width: 18px;
    height: 18px;
    flex: none;
    color: var(--pn-on-ink-dim);
    transition:
        transform var(--pn-t-2) var(--pn-ease),
        color var(--pn-t-2) var(--pn-ease);
}
.pn-af__tab:hover .pn-af__go {
    transform: translateX(3px);
    color: var(--pn-brand-400);
}
.pn-af__tab[aria-selected="true"] .pn-af__go {
    transform: rotate(90deg);
    color: var(--pn-brand-400);
}
.pn-af__tab:focus-visible {
    outline: 2px solid var(--pn-brand-400);
    outline-offset: -4px;
}

/* The panel is an accordion body under its own tab. Collapsed by grid rows
   rather than height, so it animates without a hard-coded measurement. */
.pn-af__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 420ms var(--pn-ease-io);
}
.pn-af__panel.is-active {
    grid-template-rows: 1fr;
}
/* The single child a 0fr row can actually collapse */
.pn-af__body {
    min-height: 0;
    overflow: hidden;
}
.pn-af__body p {
    margin: 0;
    padding: 0 var(--pn-5) var(--pn-4);
    color: var(--pn-on-ink-soft);
    line-height: 1.7;
    font-size: var(--pn-fs-sm);
}
.pn-af__pts {
    list-style: none;
    margin: 0;
    padding: 0 var(--pn-5) var(--pn-5);
    display: grid;
    gap: var(--pn-3);
}
.pn-af__pts li {
    display: flex;
    align-items: flex-start;
    gap: var(--pn-3);
    font-size: var(--pn-fs-sm);
    line-height: 1.5;
    color: var(--pn-on-ink-soft);
    opacity: 0;
    transform: translateX(-8px);
    transition:
        opacity var(--pn-t-3) var(--pn-ease),
        transform var(--pn-t-3) var(--pn-ease);
}
.pn-af__panel.is-active .pn-af__pts li {
    opacity: 1;
    transform: none;
    transition-delay: calc(var(--d) * 70ms + 220ms);
}
.pn-af__tick {
    width: 19px;
    height: 19px;
    flex: none;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.16);
    color: var(--pn-brand-400);
    display: grid;
    place-items: center;
}
.pn-af__tick svg {
    width: 11px;
    height: 11px;
}

.pn-af__device {
    min-width: 0;
    display: grid;
    place-items: center;
}

@media (min-width: 992px) {
    .pn-af__show {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
        gap: var(--pn-9);
    }
    /* Held in view while the features are worked through */
    .pn-af__device {
        position: sticky;
        top: calc(var(--pn-header-h) + var(--pn-6));
    }
}

/* ==========================================================================
   Closing sections
   ========================================================================== */

.pn-ac {
    background: var(--pn-ink-900);
    color: var(--pn-on-ink-soft);
    padding: var(--pn-section) 0 0;
}
.pn-ac__inner {
    max-width: 74ch;
}
.pn-ac__inner h2 {
    margin: 0 0 var(--pn-4);
}
.pn-ac__inner p {
    color: var(--pn-on-ink-soft);
    line-height: 1.75;
}

.pn-ad {
    background: var(--pn-ink-900);
    color: var(--pn-on-ink-soft);
    padding: var(--pn-section) 0;
}
.pn-ad__head {
    max-width: 74ch;
    margin: 0 auto var(--pn-8);
    text-align: center;
}
.pn-ad__head h2 {
    margin: 0 0 var(--pn-4);
}
.pn-ad__head p {
    color: var(--pn-on-ink-soft);
    line-height: 1.75;
    margin: 0 auto var(--pn-4);
}
.pn-ad__head p:last-child {
    margin-bottom: 0;
}
.pn-ad__cta {
    display: flex;
    justify-content: center;
    margin-top: var(--pn-7);
}

/* ==========================================================================
   Narrow screens
   ========================================================================== */

@media (max-width: 991px) {
    .pn-ah__device {
        order: -1;
    }
    .pn-ps {
        max-width: 250px;
    }
}
@media (max-width: 480px) {
    .pn-ps {
        max-width: 224px;
    }
    .pn-af__tab {
        padding: var(--pn-4);
        gap: var(--pn-3);
    }
    .pn-af__name {
        font-size: 1rem;
    }
    .pn-af__panel > p,
    .pn-af__pts {
        padding-inline: var(--pn-4);
    }
}

/* --------------------------------------------------------------------------
   Reduced motion.
   The global block collapses these to 1ms and runs them once; with no fill
   mode the elements would fall back to "invisible, waiting". The end state is
   written out here instead.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .pn-ps__film {
        transition: none !important;
    }
    .pn-ps__bar,
    .pn-ps__tile,
    .pn-ps__row,
    .pn-ps__note,
    .pn-ps__role {
        opacity: 1 !important;
        transform: none !important;
    }
    .pn-ps__track i {
        transform: scaleX(1) !important;
    }
    .pn-ps__dim {
        opacity: 1 !important;
    }
    .pn-ps__sheet {
        transform: translateY(0) !important;
    }
    .pn-ps__field i {
        border-color: var(--pn-brand-500) !important;
        background: var(--pn-brand-050) !important;
    }
    /* The confirmation tick is the end of a sequence; showing it on top of a
       filled-in form would read as two states at once. */
    .pn-ps__done {
        opacity: 0 !important;
    }
    .pn-ps__shackle {
        transform: rotate(-26deg) !important;
    }
    .pn-af__panel {
        grid-template-rows: 1fr !important;
    }
    .pn-af__pts li {
        opacity: 1 !important;
        transform: none !important;
    }
}
