/* ============================================================================
   PayScrow Landing Design System v2
   Scope: public landing pages (marketing chrome + sections).
   Every class is prefixed .ps- so nothing collides with legacy style.css.
   Brand: #7bbc43 (primary) / #669f38 (dark accent).
   ========================================================================== */

:root {
    --ps-green: #7bbc43;
    --ps-green-bright: #9ade5b;
    --ps-green-dark: #669f38;
    --ps-green-deep: #35591c;
    --ps-green-rgb: 123, 188, 67;
    --ps-ink-0: #0e1a12;
    --ps-ink-1: #142519;
    --ps-ink-2: #1c3122;
    --ps-ink: #101b12;
    --ps-ink-soft: #1c2b1f;
    --ps-body: #47554a;
    --ps-muted: #5f6d63;
    --ps-surface: #ffffff;
    --ps-surface-alt: #f4f7ef;
    --ps-surface-warm: #f8f8f3;
    --ps-line: #e5ecdf;
    --ps-line-dark: rgba(255, 255, 255, 0.09);
    --ps-radius: 16px;
    --ps-radius-lg: 24px;
    --ps-shadow-sm: 0 1px 2px rgba(16, 27, 18, 0.05), 0 4px 12px rgba(16, 27, 18, 0.05);
    --ps-shadow-md: 0 2px 4px rgba(16, 27, 18, 0.05), 0 12px 32px rgba(16, 27, 18, 0.1);
    --ps-shadow-lg: 0 4px 8px rgba(16, 27, 18, 0.06), 0 24px 64px rgba(16, 27, 18, 0.16);
    --ps-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ps-font-display: 'Founders-Grotesk-Bold', 'montserrat-bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ps-font-medium: 'Founders-Grotesk-Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ps-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Grainy texture used on dark surfaces */
    --ps-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------------
   Base helpers
--------------------------------------------------------------------------- */

/* The off-canvas mobile menu sits at translateX(100%); clip stops it from
   widening the page. clip (not hidden) keeps position: sticky working. */
html,
body {
    overflow-x: clip;
}

::selection {
    background: rgba(var(--ps-green-rgb), 0.85);
    color: #07120a;
}

.ps-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.ps-section {
    padding: 104px 0;
    position: relative;
}

.ps-section--tight {
    padding: 64px 0;
}

.ps-section--alt {
    background: var(--ps-surface-alt);
}

.ps-section--dark {
    background: var(--ps-ink-1);
    color: rgba(255, 255, 255, 0.82);
}

.ps-section--dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--ps-noise);
    opacity: 0.05;
    pointer-events: none;
}

.ps-section--dark .ps-container {
    position: relative;
    z-index: 1;
}

/* Section headings */
.ps-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ps-font-medium);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4f7a28;
    margin-bottom: 16px;
}

.ps-kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ps-green), transparent);
}

.ps-section--dark .ps-kicker {
    color: var(--ps-green-bright);
}

.ps-h1 {
    font-family: var(--ps-font-display);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.99;
    letter-spacing: -0.025em;
    color: var(--ps-ink);
    margin: 0 0 22px;
}

.ps-h2 {
    font-family: var(--ps-font-display);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ps-ink);
    margin: 0 0 18px;
    text-wrap: balance;
}

.ps-section--dark .ps-h2 {
    color: #ffffff;
}

.ps-h3 {
    font-family: var(--ps-font-medium);
    font-size: 20px;
    line-height: 1.3;
    color: var(--ps-ink);
    margin: 0 0 10px;
}

.ps-section--dark .ps-h3 {
    color: #ffffff;
}

.ps-lead {
    font-family: var(--ps-font-body);
    font-size: clamp(16px, 1.6vw, 18.5px);
    line-height: 1.7;
    color: var(--ps-body);
    margin: 0;
    text-wrap: pretty;
}

/* Card-level lead variant (replaces ad-hoc inline sizes) */
.ps-sub {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ps-body);
    margin: 0;
    text-wrap: pretty;
}

.ps-section--dark .ps-lead {
    color: rgba(255, 255, 255, 0.74);
}

.ps-section-head {
    max-width: 760px;
    margin-bottom: 60px;
}

.ps-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ps-section-head--center .ps-lead {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.ps-section-head--center .ps-kicker {
    justify-content: center;
}

.ps-section-head--center .ps-kicker::before {
    background: linear-gradient(90deg, transparent, var(--ps-green));
}

.ps-section-head--center .ps-kicker::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ps-green), transparent);
}

/* Gradient highlight inside headings */
.ps-grad {
    background: linear-gradient(100deg, var(--ps-green-bright) 0%, var(--ps-green) 55%, var(--ps-green-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ---------------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------------- */

.ps-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--ps-font-medium);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 26px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
    overflow: hidden;
    transition: transform 0.2s var(--ps-ease), box-shadow 0.2s var(--ps-ease), background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.ps-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--ps-green-rgb), 0.4);
}

a:focus-visible {
    outline: 3px solid var(--ps-green-bright);
    outline-offset: 4px;
    border-radius: 4px;
}

.ps-btn--primary {
    background: linear-gradient(180deg, #6fae3c 0%, #5a8f31 100%);
    color: #ffffff !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 8px 18px rgba(var(--ps-green-rgb), 0.26);
}

.ps-btn--primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s var(--ps-ease);
}

.ps-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 12px 26px rgba(var(--ps-green-rgb), 0.38);
    color: #ffffff !important;
}

.ps-btn--primary:hover::before {
    left: 130%;
}

.ps-nav-cta {
    padding-left: 22px;
    padding-right: 22px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 0 18px rgba(var(--ps-green-rgb), 0.34);
}

.ps-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 0 28px rgba(var(--ps-green-rgb), 0.55);
}

.ps-btn--ghost {
    background: transparent;
    color: var(--ps-ink) !important;
    border-color: var(--ps-line);
}

.ps-btn--ghost:hover {
    border-color: var(--ps-green-dark);
    color: var(--ps-green-dark) !important;
    transform: translateY(-2px);
}

.ps-btn--glass {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.ps-btn--glass:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

.ps-btn--light {
    background: #ffffff;
    color: var(--ps-green-deep) !important;
}

.ps-btn--light:hover {
    background: #f2f8ec;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.ps-btn--outline-light {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35);
}

.ps-btn--outline-light:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.ps-btn--sm {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 11px;
}

.ps-btn .ps-btn-icon {
    display: inline-flex;
    transition: transform 0.2s var(--ps-ease);
}

.ps-btn:hover .ps-btn-icon {
    transform: translateX(4px);
}

/* Play chip used beside CTAs */
.ps-play {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(var(--ps-green-rgb), 0.2);
    color: var(--ps-green-bright);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: transform 0.2s var(--ps-ease), background-color 0.2s ease;
}

.ps-btn:hover .ps-play {
    background: rgba(var(--ps-green-rgb), 0.34);
    transform: scale(1.08);
}

/* ---------------------------------------------------------------------------
   Header / navigation  (overrides legacy element rules from style.css)
--------------------------------------------------------------------------- */

header.ps-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    box-shadow: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

header.ps-header.is-scrolled {
    border-bottom-color: var(--ps-line);
    box-shadow: 0 4px 24px rgba(16, 27, 18, 0.06);
}

/* Overlay variant: sits on the dark hero, goes dark-glass on scroll */
header.ps-header--overlay {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

header.ps-header--overlay.is-scrolled {
    background: rgba(9, 16, 11, 0.82);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    backdrop-filter: saturate(140%) blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.ps-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 78px;
}

.ps-nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.ps-nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.ps-nav-logo .ps-logo-white { display: none; }

header.ps-header--overlay .ps-logo-color { display: none; }
header.ps-header--overlay .ps-logo-white { display: block; }

.ps-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}

.ps-nav-menu > li {
    position: relative;
}

.ps-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ps-font-body);
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ps-ink) !important;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: color 0.15s ease, background-color 0.15s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.ps-nav-link:hover,
.ps-nav-link:focus-visible {
    color: var(--ps-green-dark) !important;
    background: rgba(var(--ps-green-rgb), 0.08);
}

header.ps-header--overlay .ps-nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

header.ps-header--overlay .ps-nav-link:hover,
header.ps-header--overlay .ps-nav-link:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
}

.ps-nav-link .ps-caret {
    font-size: 10px;
    transition: transform 0.2s var(--ps-ease);
}

/* Dropdown */
.ps-nav-drop {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 250px;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: 16px;
    box-shadow: var(--ps-shadow-md);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s var(--ps-ease), transform 0.18s var(--ps-ease), visibility 0.18s;
    z-index: 30;
}

.ps-nav-menu > li:hover > .ps-nav-drop,
.ps-nav-menu > li:focus-within > .ps-nav-drop,
.ps-nav-menu > li.is-open > .ps-nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.ps-nav-menu > li:hover > .ps-nav-link .ps-caret,
.ps-nav-menu > li.is-open > .ps-nav-link .ps-caret {
    transform: rotate(180deg);
}

.ps-nav-drop a {
    display: block;
    padding: 11px 14px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ps-ink) !important;
    text-decoration: none !important;
    transition: background-color 0.14s ease, color 0.14s ease;
}

.ps-nav-drop a:hover {
    background: rgba(var(--ps-green-rgb), 0.09);
    color: var(--ps-green-dark) !important;
}

.ps-nav-drop a span {
    display: block;
    font-size: 12.5px;
    font-weight: 400;
    color: var(--ps-muted);
    margin-top: 2px;
}

.ps-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

header.ps-header--overlay .ps-nav-actions .ps-btn--ghost {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.28);
}

header.ps-header--overlay .ps-nav-actions .ps-btn--ghost:hover {
    border-color: #ffffff;
    color: #ffffff !important;
}

/* Burger */
.ps-nav-burger {
    display: none;
    background: none;
    border: 1px solid var(--ps-line);
    border-radius: 11px;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.ps-nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ps-ink);
    transition: transform 0.22s var(--ps-ease), opacity 0.22s ease, background-color 0.22s ease;
}

header.ps-header--overlay .ps-nav-burger {
    border-color: rgba(255, 255, 255, 0.25);
}

header.ps-header--overlay .ps-nav-burger span {
    background: #ffffff;
}

header.ps-header--overlay .ps-nav-burger.is-active span {
    background: #ffffff;
}

.ps-nav-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ps-nav-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.ps-nav-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------------------------
   Hero (dark)
--------------------------------------------------------------------------- */

.ps-hero {
    position: relative;
    overflow: clip;
    background: radial-gradient(120% 90% at 50% 0%, var(--ps-ink-2) 0%, var(--ps-ink-1) 48%, var(--ps-ink-0) 100%);
    color: #ffffff;
    padding: 150px 0 0;
    /* pull the sticky header on top of it */
    margin-top: -78px;
}

/* Grain */
.ps-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--ps-noise);
    opacity: 0.06;
    pointer-events: none;
}

/* Perspective grid floor */
.ps-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--ps-green-rgb), 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--ps-green-rgb), 0.09) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(75% 55% at 50% 8%, #000 20%, transparent 100%);
    mask-image: radial-gradient(75% 55% at 50% 8%, #000 20%, transparent 100%);
    pointer-events: none;
}

/* Glow orbs */
.ps-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: ps-orb-drift 16s ease-in-out infinite alternate;
}

.ps-orb--1 {
    width: 560px;
    height: 560px;
    top: -220px;
    left: calc(50% - 280px);
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.32) 0%, transparent 65%);
}

.ps-orb--2 {
    width: 420px;
    height: 420px;
    top: 30%;
    left: -180px;
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.16) 0%, transparent 65%);
    animation-delay: 4s;
}

.ps-orb--3 {
    width: 460px;
    height: 460px;
    top: 22%;
    right: -200px;
    background: radial-gradient(circle, rgba(154, 222, 91, 0.14) 0%, transparent 65%);
    animation-delay: 8s;
}

@keyframes ps-orb-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(40px, 30px); }
}

.ps-orb--1 { animation-name: ps-orb-drift-c; }

@keyframes ps-orb-drift-c {
    from { transform: translateX(-50%); }
    to { transform: translateX(calc(-50% + 30px)) translateY(24px); }
}

.ps-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.ps-hero:not(.ps-hero--page) {
    padding-top: 180px;
}

/* Heartbeat: a breathing glow behind the dashboard, double-thump rhythm */
.ps-heartbeat {
    position: absolute;
    left: 50%;
    bottom: -8%;
    transform: translateX(-50%);
    width: 900px;
    height: 480px;
    max-width: 90vw;
    background: radial-gradient(50% 50% at 50% 50%, rgba(var(--ps-green-rgb), 0.22) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    animation: ps-heartbeat 3.8s ease-in-out infinite;
    z-index: 0;
}

@keyframes ps-heartbeat {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
    12% { opacity: 0.95; transform: translateX(-50%) scale(1.07); }
    24% { opacity: 0.65; transform: translateX(-50%) scale(1.01); }
    36% { opacity: 0.9; transform: translateX(-50%) scale(1.05); }
    55% { opacity: 0.55; transform: translateX(-50%) scale(1); }
}

/* Sonar rings expanding slowly from behind the dashboard */
.ps-sonar {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.ps-sonar span {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(var(--ps-green-rgb), 0.4);
    opacity: 0;
    animation: ps-sonar 6.5s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}

.ps-sonar span:nth-child(2) { animation-delay: 2.16s; }
.ps-sonar span:nth-child(3) { animation-delay: 4.33s; }

@keyframes ps-sonar {
    0% { transform: scale(0.35); opacity: 0; }
    12% { opacity: 0.55; }
    100% { transform: scale(2.4); opacity: 0; }
}

.ps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.ps-hero-badge .ps-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ps-green-bright);
    box-shadow: 0 0 0 4px rgba(var(--ps-green-rgb), 0.25);
    animation: ps-pulse 2.4s ease-in-out infinite;
}

@keyframes ps-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(var(--ps-green-rgb), 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(var(--ps-green-rgb), 0.06); }
}

.ps-hero .ps-h1 {
    color: #ffffff;
    text-wrap: balance;
}

/* Rotating word */
.ps-rotator {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.ps-rotator .ps-rotator-word {
    display: inline-block;
    background: linear-gradient(100deg, var(--ps-green-bright) 0%, var(--ps-green) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: ps-word-in 0.55s var(--ps-ease);
}

@keyframes ps-word-in {
    from { opacity: 0; transform: translateY(0.45em); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.ps-hero .ps-lead {
    max-width: 640px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.74);
}

.ps-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.ps-hero-cta .ps-btn {
    height: 48px;
    padding-top: 0;
    padding-bottom: 0;
}

.ps-hero-watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86) !important;
    font-family: var(--ps-font-medium);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
}

.ps-hero-watch .ps-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    font-size: 11px;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ps-ease);
}

.ps-hero-watch:hover {
    color: #ffffff !important;
}

.ps-hero-watch:hover .ps-play {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}



.ps-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 74px;
    padding: 0;
    list-style: none;
}

.ps-hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}

.ps-hero-trust li i {
    color: var(--ps-green-bright);
    font-size: 12px;
}

/* Hero visual: tilted browser frame + glass floating cards */
.ps-hero-stage {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto;
    perspective: 1600px;
}

.ps-hero-visual {
    position: relative;
    transform: rotateX(9deg);
    transform-style: preserve-3d;
    transition: transform 0.35s var(--ps-ease);
    will-change: transform;
}

.ps-browser {
    background: #101a13;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    box-shadow:
        0 -1px 0 rgba(255, 255, 255, 0.08) inset,
        0 40px 90px rgba(0, 0, 0, 0.55),
        0 0 120px rgba(var(--ps-green-rgb), 0.14);
    overflow: hidden;
}

.ps-browser--copy-safe {
    aspect-ratio: 1536 / 825;
}

.ps-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-browser-bar i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.ps-browser-bar i:nth-child(1) { background: #e0655a; }
.ps-browser-bar i:nth-child(2) { background: #e0a13f; }
.ps-browser-bar i:nth-child(3) { background: #63b04f; }

.ps-browser-bar .ps-browser-url {
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    padding: 5px 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ps-browser-url i.fa-lock {
    position: static;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none !important;
    color: var(--ps-green-bright);
    font-size: 10px;
}

.ps-browser img {
    display: block;
    width: 100%;
    height: auto;
}

/* Fade the bottom of the screenshot into the next section */
.ps-hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, var(--ps-ink-0) 92%);
    z-index: 3;
    pointer-events: none;
}

/* Floating glass chips */
.ps-float {
    position: absolute;
    z-index: 4; /* above .ps-hero-fade so bottom chips are not dimmed */
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 26, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    padding: 13px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    animation: ps-float 5.5s ease-in-out infinite;
    z-index: 4;
}

.ps-float small {
    display: block;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 1px;
}

.ps-float .ps-float-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: rgba(var(--ps-green-rgb), 0.22);
    color: var(--ps-green-bright);
}

.ps-float--one { top: 6%; left: -112px; }
.ps-float--two { top: 39%; right: -126px; animation-delay: 1.6s; }
.ps-float--three { bottom: 12%; left: -96px; animation-delay: 2.8s; }
.ps-float--four { top: 15%; right: -108px; animation-delay: 0.9s; }
.ps-float--five { bottom: 6%; right: -56px; animation-delay: 3.6s; }
.ps-float--six { top: 44%; left: -66px; animation-delay: 4.5s; }

/* Smaller secondary chips so six cards read as ambience, not clutter */
.ps-float--sm {
    padding: 11px 15px;
    font-size: 12.5px;
    border-radius: 13px;
}

.ps-float--sm .ps-float-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 9px;
    font-size: 13px;
}

.ps-float--sm small {
    font-size: 11px;
}

@keyframes ps-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---------------------------------------------------------------------------
   Inner-page editorial components (Why PayScrow and siblings)
   Deliberately different architecture from the homepage: left-aligned,
   ledger rows and numbered manifesto instead of centered card grids.
--------------------------------------------------------------------------- */

/* Compact dark page hero, left-aligned with a mission index */
.ps-hero--page {
    padding-bottom: 88px;
}

.ps-hero--page.ps-hero--no-eyebrow {
    padding-top: 170px;
}

.ps-hero--page.ps-hero--no-eyebrow .ps-h1 {
    margin-top: 0;
}

.ps-hero--page .ps-hero-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 72px;
    align-items: center;
    text-align: left;
}

.ps-hero--page .ps-h1 {
    font-size: clamp(36px, 4.8vw, 62px);
    color: #ffffff;
    margin: 0 0 22px;
    text-wrap: balance;
}

.ps-hero--page .ps-lead {
    color: rgba(255, 255, 255, 0.74);
    margin: 0 0 36px;
    max-width: 560px;
}

.ps-hero--page .ps-hero-cta {
    justify-content: flex-start;
    margin-bottom: 0;
}

.ps-hero--page .ps-hero-badge {
    margin-bottom: 26px;
}

/* Numbered in-page index beside the hero copy */
.ps-mission-index {
    list-style: none;
    margin: 0;
    padding: 6px 0 6px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-mission-index a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 13px 14px;
    border-radius: 11px;
    font-family: var(--ps-font-medium);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none !important;
    transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s var(--ps-ease);
}

.ps-mission-index a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(6px);
}

.ps-mission-index .ps-mi-num {
    font-family: var(--ps-font-display);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--ps-green-bright);
}

/* Product feature rows (Products page): alternating visual + copy */
.ps-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
    padding: 84px 0;
    border-bottom: 1px solid var(--ps-line);
    scroll-margin-top: 90px;
}

.ps-products-list .ps-product:first-child {
    padding-top: 12px;
}

.ps-products-list .ps-product:last-child {
    border-bottom: none;
}

@media (min-width: 992px) {
    .ps-product--flip .ps-product-visual {
        order: 2;
    }
}

.ps-product-visual {
    position: relative;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(165deg, #f2f8ec 0%, #ffffff 100%);
    padding: 48px 44px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ps-product-visual::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.16) 0%, transparent 65%);
}

.ps-product-visual .ps-mini {
    margin-top: 0;
    width: 100%;
    flex: none;
}

.ps-product-num {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ps-font-display);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4f7a28;
    margin-bottom: 14px;
}

.ps-product-num::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ps-green), transparent);
}

.ps-product h2 {
    font-family: var(--ps-font-display);
    font-size: clamp(28px, 3.2vw, 40px);
    letter-spacing: -0.02em;
    color: var(--ps-ink);
    margin: 0 0 12px;
}

.ps-product .ps-product-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ps-body);
    margin: 0 0 26px;
    text-wrap: pretty;
}

/* Compact numbered how-it-works inside a product row */
.ps-howlist {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    counter-reset: ps-how;
}

.ps-howlist li {
    counter-increment: ps-how;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ps-ink-soft);
}

.ps-howlist li::before {
    content: counter(ps-how);
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: rgba(var(--ps-green-rgb), 0.14);
    color: var(--ps-green-deep);
    font-family: var(--ps-font-medium);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* "Perfect for" chip row */
.ps-fit {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}

.ps-fit span {
    display: inline-flex;
    align-items: center;
    background: var(--ps-surface-alt);
    border: 1px solid var(--ps-line);
    border-radius: 999px;
    padding: 7px 15px;
    font-family: var(--ps-font-medium);
    font-size: 13px;
    font-weight: 600;
    color: var(--ps-ink-soft);
}

.ps-product-note {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: var(--ps-muted);
}

/* ---------------------------------------------------------------------------
   Support directory rows (light ledger of help destinations)
--------------------------------------------------------------------------- */

.ps-dir {
    border-top: 1px solid var(--ps-line);
}

a.ps-dir-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 26px 10px;
    border-bottom: 1px solid var(--ps-line);
    text-decoration: none !important;
    transition: background-color 0.18s ease, padding-left 0.18s ease;
}

a.ps-dir-row:hover {
    background: rgba(var(--ps-green-rgb), 0.05);
    padding-left: 18px;
}

.ps-dir-row .ps-card-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.ps-dir-row h3 {
    font-family: var(--ps-font-medium);
    font-size: 18px;
    color: var(--ps-ink);
    margin: 0 0 4px;
}

.ps-dir-row p {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ps-body);
    margin: 0;
}

.ps-dir-row .ps-dir-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ps-line);
    color: var(--ps-green-dark);
    font-size: 13px;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s var(--ps-ease);
}

a.ps-dir-row:hover .ps-dir-arrow {
    background: var(--ps-green-dark);
    border-color: var(--ps-green-dark);
    color: #ffffff;
    transform: translateX(4px);
}

/* ---------------------------------------------------------------------------
   Document pages (FAQ, Policies, Terms, Privacy): sticky TOC + prose
--------------------------------------------------------------------------- */

.ps-doc {
    display: grid;
    grid-template-columns: 264px 1fr;
    gap: 72px;
    align-items: start;
}

.ps-doc-toc {
    position: sticky;
    top: 100px;
}

.ps-doc-toc .ps-kicker {
    margin-bottom: 14px;
}

.ps-doc-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid var(--ps-line);
}

.ps-doc-toc li a {
    display: block;
    padding: 7px 0 7px 18px;
    margin-left: -2px;
    border-left: 2px solid transparent;
    font-family: var(--ps-font-medium);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ps-muted);
    text-decoration: none !important;
    transition: color 0.16s ease, border-color 0.16s ease;
}

.ps-doc-toc li a:hover {
    color: var(--ps-ink);
}

.ps-doc-toc li a.is-active {
    color: var(--ps-green-deep);
    border-left-color: var(--ps-green);
}

.ps-doc-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--ps-muted);
}

.ps-doc-meta i { color: var(--ps-green-dark); }

/* Prose */
.ps-doc-prose {
    max-width: 760px;
    min-width: 0;
}

.ps-doc-prose section {
    scroll-margin-top: 100px;
    padding-bottom: 34px;
}

.ps-doc-prose h2 {
    font-family: var(--ps-font-display);
    font-size: 24px;
    letter-spacing: -0.01em;
    color: var(--ps-ink);
    margin: 0 0 14px;
    padding-top: 6px;
}

.ps-doc-prose h2 .ps-doc-num {
    color: var(--ps-green-dark);
    margin-right: 10px;
}

.ps-doc-prose h3 {
    font-family: var(--ps-font-medium);
    font-size: 17px;
    font-weight: 700;
    color: var(--ps-ink);
    margin: 22px 0 8px;
}

.ps-doc-prose p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ps-body);
    margin: 0 0 14px;
}

.ps-doc-prose ul,
.ps-doc-prose ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.ps-doc-prose ul li,
.ps-doc-prose ol li {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ps-body);
    margin-bottom: 8px;
}

.ps-doc-prose ul li::marker { color: var(--ps-green); }
.ps-doc-prose ol li::marker { color: var(--ps-green-deep); font-weight: 700; }

.ps-doc-prose strong { color: var(--ps-ink); }

/* Highlight card inside prose (key facts) */
.ps-doc-callout {
    background: var(--ps-surface-alt);
    border: 1px solid var(--ps-line);
    border-left: 3px solid var(--ps-green);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 0 0 18px;
}

.ps-doc-callout p:last-child { margin-bottom: 0; }

/* FAQ page: accordion groups inside the doc layout */
.ps-doc-prose .ps-faq-group {
    margin-bottom: 26px;
}

.ps-doc-prose .ps-faq-item {
    border: 1px solid var(--ps-line);
    border-radius: 14px;
    background: var(--ps-surface);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ps-doc-prose .ps-faq-item[open],
.ps-doc-prose .ps-faq-item:hover {
    border-color: rgba(var(--ps-green-rgb), 0.4);
}

.ps-doc-prose .ps-faq-item[open] {
    box-shadow: var(--ps-shadow-sm);
}

.ps-doc-prose .ps-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 17px 20px;
    font-family: var(--ps-font-medium);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ps-ink);
}

.ps-doc-prose .ps-faq-item summary::-webkit-details-marker { display: none; }

.ps-doc-prose .ps-faq-item summary i {
    color: var(--ps-green-dark);
    font-size: 13px;
    transition: transform 0.25s var(--ps-ease);
}

.ps-doc-prose .ps-faq-item[open] summary i {
    transform: rotate(180deg);
}

.ps-doc-prose .ps-faq-item .ps-faq-body {
    padding: 0 20px 18px;
}

.ps-doc-prose .ps-faq-item .ps-faq-body p:last-child { margin-bottom: 0; }

@media (max-width: 991px) {
    .ps-doc { grid-template-columns: 1fr; gap: 40px; }
    .ps-doc-toc { position: static; }
    .ps-doc-toc ul { display: flex; flex-wrap: wrap; gap: 4px 14px; border-left: none; }
    .ps-doc-toc li a { border-left: none; padding: 4px 0; margin-left: 0; }
}

/* ---------------------------------------------------------------------------
   Contact modal + form fields
--------------------------------------------------------------------------- */

.ps-contact-modal .modal-dialog {
    max-width: 560px;
}

.ps-contact-modal .modal-content {
    border: none;
    border-radius: 22px;
    box-shadow: 0 40px 90px rgba(10, 22, 12, 0.35);
}

.ps-contact-modal .modal-body {
    padding: 40px 40px 34px;
}

.ps-contact-modal .ps-h3 {
    margin: 6px 0 4px;
    font-size: 26px;
}

.ps-modal-sub {
    font-size: 14.5px;
    color: var(--ps-body);
    margin: 0 0 24px;
}

.ps-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 26px;
    color: var(--ps-muted);
    opacity: 1;
    text-shadow: none;
    z-index: 2;
}

.ps-modal-close:hover {
    color: var(--ps-ink);
}

.ps-field {
    margin-bottom: 16px;
}

.ps-field label {
    display: block;
    font-family: var(--ps-font-medium);
    font-size: 13px;
    font-weight: 600;
    color: var(--ps-ink-soft);
    margin-bottom: 7px;
}

.ps-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ps-input {
    width: 100%;
    border: 1.5px solid var(--ps-line);
    border-radius: 12px;
    background: var(--ps-surface-alt);
    padding: 12px 15px;
    font-family: var(--ps-font-body);
    font-size: 14.5px;
    color: var(--ps-ink);
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
    outline: none;
}

.ps-input:focus {
    border-color: var(--ps-green);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--ps-green-rgb), 0.14);
}

textarea.ps-input {
    resize: vertical;
    min-height: 110px;
}

.ps-btn--block {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.ps-modal-note {
    display: block;
    text-align: center;
    font-size: 12.5px;
    color: var(--ps-muted);
    margin-top: 12px;
}

@media (max-width: 575px) {
    .ps-field-row { grid-template-columns: 1fr; gap: 0; }
    .ps-contact-modal .modal-body { padding: 30px 24px 26px; }
}

/* ---------------------------------------------------------------------------
   Developer page components: terminal, endpoint ledger, code tabs, go-live
--------------------------------------------------------------------------- */

/* Deeper dark band so an all-dark page can alternate tones */
.ps-section--deep {
    background: var(--ps-ink-0);
}

/* Shared syntax palette for any .ps-code scope */
.ps-code {
    min-width: 0;
    max-width: 100%;
}

.ps-code .c-k { color: #8fd44f; }
.ps-code .c-s { color: #e0c281; }
.ps-code .c-n { color: #7fb8e6; }
.ps-code .c-c { color: rgba(255, 255, 255, 0.35); }

/* Terminal window */
.ps-term {
    width: 100%;
    min-width: 0;
    max-width: 560px;
    background: #0a120c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 90px rgba(var(--ps-green-rgb), 0.1);
    overflow: hidden;
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 13px;
    line-height: 1.7;
}

.ps-term-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.56);
    font-size: 11.5px;
}

.ps-term-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.ps-term-bar i:nth-child(1) { background: #e0655a; }
.ps-term-bar i:nth-child(2) { background: #e0a13f; }
.ps-term-bar i:nth-child(3) { background: #63b04f; }

.ps-term-bar span { margin-left: 8px; }

.ps-term-body {
    padding: 18px 20px 22px;
    color: rgba(255, 255, 255, 0.84);
    min-height: 240px;
    overflow-x: auto;
}

.ps-term-cmd {
    color: #ffffff;
    word-break: normal;
    white-space: pre;
}

.ps-term-cmd::before {
    content: "$ ";
    color: var(--ps-green-bright);
}

.ps-term-caret {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--ps-green-bright);
    vertical-align: -2px;
    margin-left: 2px;
    animation: ps-caret 0.9s steps(1) infinite;
}

@keyframes ps-caret {
    50% { opacity: 0; }
}

.ps-term-res {
    display: block;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s var(--ps-ease), transform 0.5s var(--ps-ease);
    white-space: pre;
    overflow-x: auto;
}

.ps-term.is-done .ps-term-res {
    opacity: 1;
    transform: translateY(0);
}

.ps-term.is-done .ps-term-caret {
    display: none;
}

/* Endpoint ledger rows */
.ps-endpoints {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ps-endpoint {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px 22px;
    align-items: baseline;
    padding: 20px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.18s ease;
}

.ps-endpoint:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ps-method {
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    border-radius: 7px;
    padding: 5px 0;
}

.ps-method--post {
    background: rgba(var(--ps-green-rgb), 0.16);
    color: var(--ps-green-bright);
    border: 1px solid rgba(var(--ps-green-rgb), 0.35);
}

.ps-method--get {
    background: rgba(127, 184, 230, 0.12);
    color: #9ecbef;
    border: 1px solid rgba(127, 184, 230, 0.3);
}

.ps-endpoint code {
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 13.5px;
    color: #ffffff;
    background: none;
    padding: 0;
    word-break: break-all;
}

.ps-endpoint p {
    grid-column: 2;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

/* Code tabs */
.ps-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}

.ps-tab {
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.ps-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.ps-tab.is-active {
    color: var(--ps-green-bright);
    background: #0a120c;
}

.ps-tabpanes {
    background: #0a120c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 14px 14px 14px;
    overflow: hidden;
}

.ps-tabpane {
    display: none;
    margin: 0;
    padding: 22px 24px;
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
    overflow-x: auto;
    background: none;
    border: none;
}

.ps-tabpane.is-active {
    display: block;
}

/* Go-live path: numbered horizontal strip */
.ps-golive {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    counter-reset: ps-live;
}

.ps-golive-step {
    counter-increment: ps-live;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px 20px 20px;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ps-ease);
}

.ps-golive-step:hover {
    border-color: rgba(var(--ps-green-rgb), 0.45);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.ps-golive-step::before {
    content: "0" counter(ps-live);
    display: block;
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ps-green-bright);
    margin-bottom: 10px;
}

.ps-golive-step h3 {
    font-family: var(--ps-font-medium);
    font-size: 15.5px;
    color: #ffffff;
    margin: 0 0 6px;
}

.ps-golive-step p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

/* Dev hero: terminal replaces the index column */
.ps-hero--page .ps-hero-wrap--term {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
}

/* ---------------------------------------------------------------------------
   Animated product scenes (Products page): looping CSS illustrations
--------------------------------------------------------------------------- */

.ps-viz {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: 18px;
    box-shadow: var(--ps-shadow-md);
    padding: 26px 26px 24px;
}

.ps-viz-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.ps-viz-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ps-font-medium);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ps-ink);
}

.ps-viz-title i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: rgba(var(--ps-green-rgb), 0.14);
    color: var(--ps-green-dark);
}

.ps-viz-title small {
    display: block;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ps-muted);
    margin-top: 1px;
}

.ps-viz-price {
    font-family: var(--ps-font-display);
    font-size: 16px;
    color: var(--ps-green-deep);
    white-space: nowrap;
}

/* --- Invite scene: link pill + a 4-step lifecycle that loops --- */

.ps-viz--invite .ps-link-pill {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ps-viz-track {
    position: relative;
    height: 3px;
    background: #e9eee2;
    border-radius: 3px;
    margin: 0 6px 12px;
}

.ps-viz-track > span {
    position: absolute;
    inset: 0 auto 0 0;
    background: linear-gradient(90deg, var(--ps-green-bright), var(--ps-green-dark));
    border-radius: 3px;
    width: 0;
    animation: ps-inv-fill 9s var(--ps-ease) infinite;
}

.ps-viz-dot {
    position: absolute;
    top: 50%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #e0e6d8;
    border: 2px solid #ffffff;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ps-viz-dot:nth-child(2) { left: 0.5%; animation: ps-inv-dot1 9s infinite; }
.ps-viz-dot:nth-child(3) { left: 33.3%; animation: ps-inv-dot2 9s infinite; }
.ps-viz-dot:nth-child(4) { left: 66.6%; animation: ps-inv-dot3 9s infinite; }
.ps-viz-dot:nth-child(5) { left: 99.5%; animation: ps-inv-dot4 9s infinite; }

@keyframes ps-inv-fill {
    0%, 6% { width: 0; }
    24% { width: 33.3%; }
    30%, 40% { width: 33.3%; }
    58% { width: 66.6%; }
    64%, 72% { width: 66.6%; }
    86%, 100% { width: 100%; }
}

@keyframes ps-inv-dot1 { 0%, 4% { background: #e0e6d8; } 6%, 100% { background: var(--ps-green-dark); box-shadow: 0 0 0 4px rgba(var(--ps-green-rgb), 0.18); } }
@keyframes ps-inv-dot2 { 0%, 23% { background: #e0e6d8; box-shadow: none; } 25%, 100% { background: var(--ps-green-dark); box-shadow: 0 0 0 4px rgba(var(--ps-green-rgb), 0.18); } }
@keyframes ps-inv-dot3 { 0%, 57% { background: #e0e6d8; box-shadow: none; } 59%, 100% { background: var(--ps-green-dark); box-shadow: 0 0 0 4px rgba(var(--ps-green-rgb), 0.18); } }
@keyframes ps-inv-dot4 { 0%, 85% { background: #e0e6d8; box-shadow: none; } 87%, 100% { background: var(--ps-green-dark); box-shadow: 0 0 0 4px rgba(var(--ps-green-rgb), 0.18); } }

.ps-viz-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--ps-font-medium);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ps-muted);
}

/* Toast that pops when the funds land */
.ps-viz-toast {
    position: absolute;
    top: -16px;
    right: -18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ps-ink-1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 15px;
    font-family: var(--ps-font-medium);
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    opacity: 0;
    animation: ps-inv-toast 9s var(--ps-ease) infinite;
}

.ps-viz-toast i {
    color: var(--ps-green-bright);
}

@keyframes ps-inv-toast {
    0%, 24% { opacity: 0; transform: translateY(8px) scale(0.92); }
    28%, 52% { opacity: 1; transform: translateY(0) scale(1); }
    56%, 100% { opacity: 0; transform: translateY(-6px) scale(0.95); }
}

/* --- Milestone scene: contract card, bars fill in sequence --- */

.ps-viz-mrow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px dashed rgba(16, 27, 18, 0.08);
}

.ps-viz-mrow:first-of-type {
    border-top: none;
}

.ps-viz-mname {
    flex: 1;
    min-width: 0;
}

.ps-viz-mname strong {
    display: block;
    font-family: var(--ps-font-medium);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ps-ink-soft);
    line-height: 1.25;
}

.ps-viz-mname small {
    font-size: 11.5px;
    color: var(--ps-muted);
}

.ps-viz-mbar {
    width: 38%;
    height: 6px;
    border-radius: 6px;
    background: #e9eee2;
    overflow: hidden;
}

.ps-viz-mbar span {
    display: block;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--ps-green-bright), var(--ps-green-dark));
    width: 0;
}

.ps-viz-mcheck {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    background: #e9eee2;
    color: #a9b3a2;
}

.ps-viz-mrow:nth-child(2) .ps-viz-mbar span { animation: ps-mile-bar1 10s var(--ps-ease) infinite; }
.ps-viz-mrow:nth-child(3) .ps-viz-mbar span { animation: ps-mile-bar2 10s var(--ps-ease) infinite; }
.ps-viz-mrow:nth-child(4) .ps-viz-mbar span { animation: ps-mile-bar3 10s var(--ps-ease) infinite; }
.ps-viz-mrow:nth-child(2) .ps-viz-mcheck { animation: ps-mile-check1 10s infinite; }
.ps-viz-mrow:nth-child(3) .ps-viz-mcheck { animation: ps-mile-check2 10s infinite; }
.ps-viz-mrow:nth-child(4) .ps-viz-mcheck { animation: ps-mile-check3 10s infinite; }

@keyframes ps-mile-bar1 { 0%, 5% { width: 0; } 22%, 100% { width: 100%; } }
@keyframes ps-mile-bar2 { 0%, 30% { width: 0; } 52%, 100% { width: 100%; } }
@keyframes ps-mile-bar3 { 0%, 58% { width: 0; } 80%, 100% { width: 100%; } }
@keyframes ps-mile-check1 { 0%, 21% { background: #e9eee2; color: #a9b3a2; } 23%, 100% { background: var(--ps-green-dark); color: #ffffff; } }
@keyframes ps-mile-check2 { 0%, 51% { background: #e9eee2; color: #a9b3a2; } 53%, 100% { background: var(--ps-green-dark); color: #ffffff; } }
@keyframes ps-mile-check3 { 0%, 79% { background: #e9eee2; color: #a9b3a2; } 81%, 100% { background: var(--ps-green-dark); color: #ffffff; } }

/* Footer line: released total ticks up as milestones clear */
.ps-viz-mfoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--ps-line);
    font-family: var(--ps-font-medium);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ps-muted);
}

.ps-viz-mfoot .ps-viz-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(var(--ps-green-rgb), 0.13);
    color: var(--ps-green-deep);
    border-radius: 999px;
    padding: 6px 13px;
    animation: ps-mile-badge 10s infinite;
}

@keyframes ps-mile-badge {
    0%, 80% { background: rgba(var(--ps-green-rgb), 0.13); }
    84%, 96% { background: rgba(var(--ps-green-rgb), 0.28); }
    100% { background: rgba(var(--ps-green-rgb), 0.13); }
}

/* Mission: shield-shaped image beside the definition copy */
.ps-mission {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.ps-mission-img {
    position: relative;
}

.ps-mission-img img {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 30px 55px rgba(16, 27, 18, 0.22));
    animation: ps-float 7s ease-in-out infinite;
}

.ps-mission-img::before {
    content: "";
    position: absolute;
    inset: 8% 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.18) 0%, transparent 68%);
    filter: blur(24px);
    z-index: -1;
}

.ps-mission-copy p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ps-body);
    margin: 0 0 20px;
    text-wrap: pretty;
}

.ps-mission-copy p strong {
    color: var(--ps-ink);
    font-weight: 600;
}

.ps-mission-proof {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 26px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--ps-line);
}

.ps-mission-proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ps-font-medium);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ps-ink-soft);
}

.ps-mission-proof li i {
    color: var(--ps-green-dark);
    font-size: 12px;
}

/* Old way / PayScrow way comparison panel */
.ps-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius-lg);
    overflow: hidden;
    background: #ffffff;
}

.ps-compare-col {
    padding: 46px 44px;
}

.ps-compare-col--old {
    background: #f5f3ef;
}

.ps-compare-col--new {
    background: linear-gradient(165deg, #eef7e4 0%, #f9fcf5 100%);
    border-left: 1px solid var(--ps-line);
}

.ps-compare-tag {
    display: inline-block;
    font-family: var(--ps-font-medium);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 22px;
}

.ps-compare-col--old .ps-compare-tag {
    background: rgba(122, 90, 74, 0.1);
    color: #7d5a49;
}

.ps-compare-col--new .ps-compare-tag {
    background: rgba(var(--ps-green-rgb), 0.16);
    color: var(--ps-green-deep);
}

.ps-compare-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 0;
    border-top: 1px dashed rgba(16, 27, 18, 0.1);
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ps-body);
}

.ps-compare-row:first-of-type {
    border-top: none;
}

.ps-compare-row i {
    margin-top: 3px;
    flex-shrink: 0;
}

.ps-compare-col--old .ps-compare-row i {
    color: #c26d5a;
}

.ps-compare-col--new .ps-compare-row i {
    color: var(--ps-green-dark);
}

.ps-compare-col--new .ps-compare-row {
    color: var(--ps-ink-soft);
    font-weight: 500;
}

/* Numbered manifesto rows with giant outline numerals */
.ps-manifesto {
    border-top: 1px solid var(--ps-line);
}

.ps-manifesto-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
    padding: 46px 0;
    border-bottom: 1px solid var(--ps-line);
    scroll-margin-top: 110px;
}

.ps-manifesto-num {
    font-family: var(--ps-font-display);
    font-size: clamp(56px, 6.5vw, 92px);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(var(--ps-green-rgb), 0.5);
    transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease, transform 0.3s var(--ps-ease);
}

.ps-manifesto-row:hover .ps-manifesto-num {
    color: var(--ps-green-dark);
    -webkit-text-stroke-color: transparent;
    transform: translateY(-4px);
}

.ps-manifesto-row h3 {
    font-family: var(--ps-font-medium);
    font-size: 21px;
    color: var(--ps-ink);
    margin: 6px 0 10px;
}

.ps-manifesto-row p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ps-body);
    max-width: 660px;
    margin: 0;
}

/* Giant pull-quote statement */
.ps-pull {
    font-family: var(--ps-font-display);
    font-size: clamp(32px, 4.6vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ps-ink);
    max-width: 900px;
    margin: 0 0 64px;
    text-wrap: balance;
}

/* Ledger lists (is / is not) */
.ps-ledger {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.ps-ledger h4 {
    font-family: var(--ps-font-medium);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ps-muted);
    margin: 0 0 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ps-ink);
}

.ps-ledger ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ps-ledger li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid var(--ps-line);
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ps-body);
}

.ps-ledger li i {
    margin-top: 3px;
    color: var(--ps-green-dark);
    flex-shrink: 0;
}

.ps-ledger--not li i {
    color: #c26d5a;
}

/* Sticky split: pinned heading left, scrolling rows right */
.ps-sticky-split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.ps-sticky-left {
    position: sticky;
    top: 120px;
}

.ps-standard-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ps-standard-row:first-child {
    padding-top: 6px;
}

.ps-standard-row .ps-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    background: rgba(var(--ps-green-rgb), 0.16);
    color: var(--ps-green-bright);
}

.ps-standard-row h3 {
    font-family: var(--ps-font-medium);
    font-size: 18px;
    color: #ffffff;
    margin: 3px 0 8px;
}

.ps-standard-row p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

/* "What we are not" list: neutral cross marks instead of brand checks */
.ps-checklist--not li i {
    color: #c26d5a;
}

/* Company / legal strip */
.ps-company {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px 44px;
    flex-wrap: wrap;
    text-align: center;
}

.ps-company span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--ps-body);
}

.ps-company span i {
    color: var(--ps-green-dark);
    font-size: 14px;
}

.ps-company a {
    color: var(--ps-green-dark) !important;
    text-decoration: none !important;
}

/* Partner marquee inside the dark hero */
.ps-hero-partners {
    position: relative;
    z-index: 2;
    background: var(--ps-ink-0);
    padding: 40px 0 56px;
}

.ps-hero-partners .ps-marquee-label {
    color: rgba(255, 255, 255, 0.38);
}

.ps-hero-partners .ps-marquee-track img {
    /* grayscale + lift keeps internal logo detail (brightness(0) would
       flatten solid-shape logos like GTBank into featureless blocks) */
    filter: grayscale(1) brightness(1.9) contrast(0.85);
    opacity: 0.82;
    height: 32px;
}

.ps-hero-partners .ps-marquee-track {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 24px;
    animation: none;
}

.ps-hero-partners .ps-marquee-track img:hover {
    opacity: 1;
    filter: grayscale(1) brightness(2.1) contrast(0.9);
}

/* ---------------------------------------------------------------------------
   Marquee (shared)
--------------------------------------------------------------------------- */

.ps-marquee-label {
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ps-muted);
    margin-bottom: 28px;
}

.ps-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ps-marquee-track {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: ps-marquee 32s linear infinite;
    padding-right: 72px;
}

.ps-marquee:hover .ps-marquee-track {
    animation-play-state: paused;
}

.ps-marquee-track img {
    height: 30px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.55;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.ps-marquee-track img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.06);
}

@keyframes ps-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Chip marquee (use cases) */
.ps-chip-marquee .ps-marquee-track {
    gap: 14px;
    padding-right: 14px;
    animation-duration: 38s;
}

.ps-chip-marquee + .ps-chip-marquee {
    margin-top: 14px;
}

.ps-chip-marquee--reverse .ps-marquee-track {
    animation-direction: reverse;
}

.ps-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: 999px;
    padding: 13px 22px;
    font-family: var(--ps-font-medium);
    font-size: 15px;
    font-weight: 600;
    color: var(--ps-ink-soft);
    white-space: nowrap;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ps-chip:hover {
    border-color: rgba(var(--ps-green-rgb), 0.6);
    box-shadow: var(--ps-shadow-sm);
    transform: translateY(-2px);
}

.ps-chip i {
    color: var(--ps-green-dark);
    font-size: 14px;
}

/* ---------------------------------------------------------------------------
   Value strip (fact tiles with count-up)
--------------------------------------------------------------------------- */

.ps-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ps-fact {
    position: relative;
    text-align: center;
    padding: 38px 20px;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    overflow: hidden;
    transition: transform 0.25s var(--ps-ease), box-shadow 0.25s var(--ps-ease), border-color 0.25s ease;
}

.ps-fact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--ps-green), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ps-fact:hover {
    transform: translateY(-5px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(var(--ps-green-rgb), 0.5);
}

.ps-fact:hover::before {
    opacity: 1;
}

.ps-fact strong {
    display: block;
    font-family: var(--ps-font-display);
    font-size: clamp(28px, 3.2vw, 40px);
    letter-spacing: -0.02em;
    color: var(--ps-ink);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.ps-fact strong .ps-grad {
    letter-spacing: inherit;
}

.ps-fact > span {
    font-size: 14.5px;
    color: var(--ps-body);
}

/* ---------------------------------------------------------------------------
   Grids / generic cards
--------------------------------------------------------------------------- */

.ps-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.ps-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.ps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ps-card {
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius-lg);
    padding: 36px 32px;
    transition: transform 0.25s var(--ps-ease), box-shadow 0.25s var(--ps-ease), border-color 0.25s ease;
    position: relative;
}

.ps-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(var(--ps-green-rgb), 0.55);
}

.ps-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(160deg, rgba(var(--ps-green-rgb), 0.2), rgba(var(--ps-green-rgb), 0.08));
    color: var(--ps-green-dark);
    margin-bottom: 22px;
    transition: transform 0.25s var(--ps-ease);
}

.ps-card:hover .ps-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.ps-card p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ps-body);
    margin: 0;
}

/* Audience cards (buyers / sellers) */
.ps-audience {
    position: relative;
    padding: 42px 38px;
    border-radius: var(--ps-radius-lg);
    border: 1px solid var(--ps-line);
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.25s var(--ps-ease), box-shadow 0.25s var(--ps-ease), border-color 0.25s ease;
}

.ps-audience::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.14) 0%, transparent 65%);
    transition: transform 0.4s var(--ps-ease);
}

.ps-audience:hover {
    transform: translateY(-6px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(var(--ps-green-rgb), 0.5);
}

.ps-audience:hover::before {
    transform: scale(1.4);
}

.ps-audience--accent {
    background: linear-gradient(160deg, #eef7e4 0%, #ffffff 60%);
}

.ps-checklist {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.ps-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ps-body);
    padding: 9px 0;
}

.ps-checklist li i {
    color: var(--ps-green-dark);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.ps-section--dark .ps-checklist li {
    color: rgba(255, 255, 255, 0.84);
}

/* ---------------------------------------------------------------------------
   How it works: animated timeline
--------------------------------------------------------------------------- */

.ps-steps-wrap {
    position: relative;
}

.ps-steps-line {
    position: absolute;
    top: 0;
    left: 4%;
    right: 4%;
    height: 2px;
    background: var(--ps-line);
    border-radius: 2px;
    overflow: hidden;
}

.ps-steps-line span {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--ps-green-bright), var(--ps-green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.6s var(--ps-ease) 0.2s;
}

.ps-steps-wrap.in-view .ps-steps-line span {
    transform: scaleX(1);
}

.ps-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    counter-reset: ps-step;
    padding-top: 46px;
}

.ps-step {
    position: relative;
    text-align: center;
    padding: 34px 16px 28px;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s var(--ps-ease),
        transform 0.6s var(--ps-ease),
        box-shadow 0.25s var(--ps-ease),
        border-color 0.25s ease;
}

.ps-steps-wrap.in-view .ps-step {
    opacity: 1;
    transform: translateY(0);
}

.ps-steps-wrap.in-view .ps-step:nth-child(1) { transition-delay: 0.05s; }
.ps-steps-wrap.in-view .ps-step:nth-child(2) { transition-delay: 0.25s; }
.ps-steps-wrap.in-view .ps-step:nth-child(3) { transition-delay: 0.45s; }
.ps-steps-wrap.in-view .ps-step:nth-child(4) { transition-delay: 0.65s; }
.ps-steps-wrap.in-view .ps-step:nth-child(5) { transition-delay: 0.85s; }

.ps-step:hover {
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(var(--ps-green-rgb), 0.55);
    transform: translateY(-6px) !important;
    transition-delay: 0s !important;
}

.ps-step-num {
    counter-increment: ps-step;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--ps-green), var(--ps-green-dark));
    color: #ffffff;
    font-family: var(--ps-font-medium);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px #ffffff, 0 6px 14px rgba(var(--ps-green-rgb), 0.4);
}

.ps-section--alt .ps-step-num {
    box-shadow: 0 0 0 5px var(--ps-surface-alt), 0 6px 14px rgba(var(--ps-green-rgb), 0.4);
}

.ps-step-num::before {
    content: counter(ps-step);
}

.ps-step img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    margin: 8px auto 16px;
    display: block;
}

.ps-step h3 {
    font-family: var(--ps-font-medium);
    font-size: 17px;
    color: var(--ps-ink);
    margin: 0 0 8px;
}

.ps-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ps-body);
    margin: 0;
}

/* ---------------------------------------------------------------------------
   Bento product grid
--------------------------------------------------------------------------- */

.ps-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.ps-bento-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius-lg);
    padding: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s var(--ps-ease), box-shadow 0.25s var(--ps-ease), border-color 0.25s ease;
}

/* Cursor-tracking glow (JS feeds --mx / --my) */
.ps-bento-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(var(--ps-green-rgb), 0.11), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ps-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ps-shadow-md);
    border-color: rgba(var(--ps-green-rgb), 0.55);
}

.ps-bento-card:hover::after {
    opacity: 1;
}

.ps-bento-card--wide { grid-column: span 4; }
.ps-bento-card--tall { grid-column: span 2; }

.ps-bento-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.ps-bento-card .ps-card-icon {
    margin-bottom: 20px;
}

.ps-bento-card p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ps-body);
    margin: 0;
}

.ps-card-tag {
    background: linear-gradient(120deg, rgba(var(--ps-green-rgb), 0.18), rgba(var(--ps-green-rgb), 0.08));
    color: var(--ps-green-deep);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 13px;
    border: 1px solid rgba(var(--ps-green-rgb), 0.3);
}

.ps-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-family: var(--ps-font-medium);
    font-size: 15px;
    font-weight: 600;
    color: var(--ps-green-dark) !important;
    text-decoration: none !important;
}

.ps-card-link i {
    transition: transform 0.2s var(--ps-ease);
    font-size: 12px;
}

.ps-card-link:hover i {
    transform: translateX(4px);
}

/* Mini visuals inside bento cards */
.ps-mini {
    margin-top: 28px;
    border-radius: 16px;
    flex: 1;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

/* 1. Payment link pill mock */
.ps-mini--invite {
    background: linear-gradient(160deg, #eef7e4, #f8fbf4);
    border: 1px solid rgba(var(--ps-green-rgb), 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 26px;
}

.ps-link-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: 999px;
    box-shadow: var(--ps-shadow-sm);
    padding: 12px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ps-ink-soft);
    max-width: 100%;
}

.ps-link-value {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ps-link-url {
    white-space: nowrap;
}

.ps-link-pill i.fa-link {
    color: var(--ps-green-dark);
}

.ps-link-pill .ps-copy {
    background: var(--ps-green-dark);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 5px 12px;
    letter-spacing: 0.04em;
}

.ps-mini--invite .ps-mini-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ps-green-deep);
}

.ps-mini--invite .ps-mini-status i {
    animation: ps-pulse 2.4s ease-in-out infinite;
    border-radius: 50%;
    color: var(--ps-green-dark);
}

/* 2. Milestone progress mock */
.ps-mini--milestone {
    background: linear-gradient(160deg, #f6f8f2, #ffffff);
    border: 1px solid var(--ps-line);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
}

.ps-mrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ps-ink-soft);
}

.ps-mrow .ps-mdot {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background: var(--ps-green-dark);
    color: #fff;
}

.ps-mrow--active .ps-mdot {
    background: #ffffff;
    border: 2px solid var(--ps-green-dark);
    color: var(--ps-green-dark);
}

.ps-mrow--pending {
    opacity: 0.5;
}

.ps-mrow--pending .ps-mdot {
    background: #e3e9dc;
    color: var(--ps-muted);
}

.ps-mbar {
    height: 5px;
    flex: 1;
    border-radius: 5px;
    background: #e7ecdf;
    overflow: hidden;
}

.ps-mbar span {
    display: block;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--ps-green-bright), var(--ps-green-dark));
    width: 0;
    transition: width 1.4s var(--ps-ease) 0.3s;
}

.in-view .ps-mbar--full span { width: 100%; }
.in-view .ps-mbar--half span { width: 55%; }
.in-view .ps-mbar--none span { width: 6%; }

/* 3. Broker triangle mock */
.ps-mini--broker {
    background: linear-gradient(160deg, #f6f8f2, #ffffff);
    border: 1px solid var(--ps-line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.ps-broker-net {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ps-bnode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ps-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ps-bnode i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    box-shadow: var(--ps-shadow-sm);
    color: var(--ps-green-dark);
    font-size: 17px;
}

.ps-bnode--center i {
    background: linear-gradient(180deg, var(--ps-green), var(--ps-green-dark));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(var(--ps-green-rgb), 0.4);
}

.ps-blink {
    width: 34px;
    height: 2px;
    background-image: linear-gradient(90deg, var(--ps-green-dark) 55%, transparent 45%);
    background-size: 9px 2px;
    animation: ps-dash 1.2s linear infinite;
    margin-bottom: 22px;
}

@keyframes ps-dash {
    from { background-position: 0 0; }
    to { background-position: 9px 0; }
}

/* 4. API code snippet mock */
.ps-mini--code {
    background: var(--ps-ink-1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.ps-code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.62);
}

.ps-code-bar .ps-code-status {
    color: var(--ps-green-bright);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ps-mini--code pre {
    margin: 0;
    padding: 18px 20px;
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 12.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    overflow-x: auto;
    background: none;
    border: none;
    flex: 1;
}

.ps-mini--code .c-k { color: #8fd44f; }
.ps-mini--code .c-s { color: #e0c281; }
.ps-mini--code .c-n { color: #7fb8e6; }
.ps-mini--code .c-c { color: rgba(255, 255, 255, 0.35); }

/* Shared action wrappers */
.ps-head-actions {
    margin-top: 30px;
}

.ps-center-cta {
    text-align: center;
    margin-top: 36px;
}

/* ---------------------------------------------------------------------------
   Security band
--------------------------------------------------------------------------- */

.ps-security {
    position: relative;
    overflow: hidden;
}

.ps-security::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(42% 55% at 88% 8%, rgba(var(--ps-green-rgb), 0.15) 0%, transparent 100%),
        radial-gradient(36% 48% at 4% 92%, rgba(var(--ps-green-rgb), 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.ps-security-tile {
    position: relative;
    border-radius: var(--ps-radius-lg);
    padding: 34px 28px;
    height: 100%;
    background:
        linear-gradient(var(--ps-ink-2), var(--ps-ink-2)) padding-box,
        linear-gradient(160deg, rgba(var(--ps-green-rgb), 0.5), rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.06)) border-box;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ps-ease), background-color 0.2s ease;
}

.ps-security-tile:hover {
    transform: translateY(-6px);
}

.ps-security-tile .ps-card-icon {
    background: rgba(var(--ps-green-rgb), 0.16);
    color: var(--ps-green-bright);
}

.ps-security-tile p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* ---------------------------------------------------------------------------
   Testimonials slider
--------------------------------------------------------------------------- */

.ps-tslider {
    position: relative;
    overflow: hidden;
}

.ps-tslider-track {
    display: flex;
    transition: transform 0.6s var(--ps-ease);
}

.ps-tslide {
    flex: 0 0 100%;
    padding: 6px;
}

.ps-tcard {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius-lg);
    box-shadow: var(--ps-shadow-sm);
    padding: 52px 56px 46px;
    text-align: center;
    overflow: hidden;
}

.ps-tcard::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    left: 26px;
    font-family: Georgia, serif;
    font-size: 130px;
    line-height: 1;
    color: rgba(var(--ps-green-rgb), 0.16);
    pointer-events: none;
}

.ps-tcard .ps-stars {
    color: #e2b53e;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.ps-tcard blockquote {
    font-family: var(--ps-font-body);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.6;
    color: var(--ps-ink-soft);
    margin: 0 0 28px;
    border: none;
    padding: 0;
}

.ps-tcard .ps-tperson {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ps-tcard .ps-tperson img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(var(--ps-green-rgb), 0.4);
}

.ps-tcard .ps-tperson strong {
    display: block;
    font-family: var(--ps-font-medium);
    font-size: 15.5px;
    color: var(--ps-ink);
    text-align: left;
}

.ps-tcard .ps-tperson span {
    display: block;
    font-size: 13.5px;
    color: var(--ps-muted);
    text-align: left;
}

.ps-tslider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
}

.ps-tslider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: #cfdcc4;
    cursor: pointer;
    transition: width 0.3s var(--ps-ease), background-color 0.3s ease;
}

.ps-tslider-dots button.is-active {
    width: 28px;
    background: var(--ps-green-dark);
}

/* ---------------------------------------------------------------------------
   Pricing teaser
--------------------------------------------------------------------------- */

.ps-price-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius-lg);
    box-shadow: var(--ps-shadow-sm);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.ps-price-panel::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.13) 0%, transparent 65%);
    pointer-events: none;
}

.ps-price-figure {
    position: relative;
    text-align: center;
    padding: 46px 24px;
    background: radial-gradient(120% 120% at 50% 0%, var(--ps-ink-2) 0%, var(--ps-ink-1) 100%);
    border-radius: var(--ps-radius-lg);
    overflow: hidden;
}

.ps-price-figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--ps-noise);
    opacity: 0.06;
}

.ps-price-figure::after {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.35) 0%, transparent 70%);
    filter: blur(30px);
}

.ps-price-figure strong {
    position: relative;
    z-index: 1;
    display: block;
    font-family: var(--ps-font-display);
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: -0.02em;
    background: linear-gradient(100deg, #ffffff 20%, var(--ps-green-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.ps-price-figure span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------------------------------------------------------------------------
   FAQ accordion
--------------------------------------------------------------------------- */

.ps-faq {
    max-width: 780px;
    margin: 0 auto;
}

.ps-faq-item {
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ps-faq-item.is-open {
    border-color: rgba(var(--ps-green-rgb), 0.55);
    box-shadow: var(--ps-shadow-sm);
}

.ps-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 22px 26px;
    font-family: var(--ps-font-medium);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ps-ink);
    transition: color 0.15s ease;
}

.ps-faq-q:hover {
    color: var(--ps-green-dark);
}

.ps-faq-q .ps-faq-chev {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(var(--ps-green-rgb), 0.12);
    color: var(--ps-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s var(--ps-ease), background-color 0.25s ease;
}

.ps-faq-item.is-open .ps-faq-chev {
    transform: rotate(180deg);
    background: var(--ps-green-dark);
    color: #ffffff;
}

.ps-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ps-ease);
}

.ps-faq-a > div {
    padding: 0 26px 24px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ps-body);
}

/* ---------------------------------------------------------------------------
   CTA band
--------------------------------------------------------------------------- */

.ps-cta {
    position: relative;
    overflow: hidden;
    background: radial-gradient(130% 140% at 50% 0%, var(--ps-ink-2) 0%, var(--ps-ink-0) 100%);
    border-radius: 28px;
    padding: 84px 40px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 380px;
    background: radial-gradient(circle, rgba(var(--ps-green-rgb), 0.32) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.ps-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--ps-noise);
    opacity: 0.06;
    pointer-events: none;
}

.ps-cta > * {
    position: relative;
    z-index: 1;
}

.ps-cta h2 {
    font-family: var(--ps-font-display);
    font-size: clamp(30px, 4.4vw, 50px);
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 16px;
    text-wrap: balance;
}

.ps-cta p {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
    max-width: 560px;
    margin: 0 auto 36px;
}

.ps-cta .ps-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   Footer  (overrides legacy footer element rules)
--------------------------------------------------------------------------- */

footer.ps-footer {
    background: var(--ps-ink-0);
    color: rgba(255, 255, 255, 0.72);
    padding: 0;
    margin-top: 0;
    position: relative;
}

footer.ps-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--ps-noise);
    opacity: 0.04;
    pointer-events: none;
}

footer.ps-footer .ps-container {
    position: relative;
}

.ps-footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    padding: 76px 0 56px;
}

.ps-footer-brand img {
    height: 42px;
    width: auto;
    margin-bottom: 20px;
}

.ps-footer-brand p {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 320px;
    margin: 0 0 18px;
}

.ps-footer-reg {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 22px;
}

.ps-footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ps-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ps-line-dark);
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ps-ease), border-color 0.2s ease;
    text-decoration: none !important;
}

.ps-footer-social a:hover {
    background: var(--ps-green-dark);
    border-color: var(--ps-green-dark);
    color: #ffffff !important;
    transform: translateY(-3px);
}

.ps-footer h6 {
    font-family: var(--ps-font-medium);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 4px 0 20px;
}

footer.ps-footer .ps-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer.ps-footer .ps-footer-links li {
    margin-bottom: 12px;
}

footer.ps-footer .ps-footer-links a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.66) !important;
    text-decoration: none !important;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

footer.ps-footer .ps-footer-links a:hover {
    color: var(--ps-green-bright) !important;
    padding-left: 4px;
}

.ps-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 12px;
}

.ps-footer-contact li i {
    color: var(--ps-green-bright);
    margin-top: 4px;
    font-size: 13px;
    width: 16px;
}

.ps-footer-contact a {
    color: rgba(255, 255, 255, 0.66) !important;
    text-decoration: none !important;
}

.ps-footer-contact a:hover {
    color: var(--ps-green-bright) !important;
}

.ps-footer-bottom {
    border-top: 1px solid var(--ps-line-dark);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.46);
}

.ps-footer-bottom ul {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ps-footer-bottom a {
    color: rgba(255, 255, 255, 0.48) !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
}

.ps-footer-bottom a:hover {
    color: var(--ps-green-bright) !important;
}

/* ---------------------------------------------------------------------------
   Cookie banner
--------------------------------------------------------------------------- */

.ps-cookie {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ps-body);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.45s var(--ps-ease), opacity 0.45s ease;
}

.ps-cookie.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.ps-cookie a {
    color: var(--ps-green-dark) !important;
    text-decoration: underline !important;
}

.ps-cookie button {
    flex-shrink: 0;
    background: var(--ps-green-dark);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: var(--ps-font-medium);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 22px;
    cursor: pointer;
    transition: background-color 0.18s ease;
}

.ps-cookie button:hover {
    background: var(--ps-green-deep);
}

/* ---------------------------------------------------------------------------
   Video modal tweaks (Bootstrap modal shell)
--------------------------------------------------------------------------- */

.ps-video-modal .modal-dialog {
    max-width: 920px;
}

.ps-video-modal .modal-content {
    border: none;
    border-radius: var(--ps-radius);
    overflow: hidden;
    background: #000;
}

.ps-video-modal .modal-body {
    padding: 0;
    line-height: 0;
}

.ps-video-modal video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    background: #000;
}

.ps-video-modal .close {
    position: absolute;
    top: 10px;
    right: 16px;
    z-index: 5;
    color: #ffffff;
    opacity: 0.85;
    text-shadow: none;
    font-size: 30px;
}

/* ---------------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------------- */

@media (max-width: 1240px) {
    .ps-float--one { left: 8px; }
    .ps-float--two { right: 8px; }
    .ps-float--three { left: 8px; }
}

@media (max-width: 991px) {
    .ps-section { padding: 76px 0; }

    .ps-nav { min-height: 68px; gap: 16px; }

    .ps-hero { margin-top: -68px; padding-top: 120px; }

    .ps-nav-burger { display: inline-flex; }

    .ps-nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        /* the header's backdrop-filter makes it the containing block for
           fixed descendants, so size against the viewport explicitly */
        height: calc(100vh - 68px);
        height: calc(100dvh - 68px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 18px 22px 40px;
        margin: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s var(--ps-ease);
        border-top: 1px solid var(--ps-line);
        z-index: 1040;
    }

    .ps-nav-menu.is-open { transform: translateX(0); }

    .ps-nav-link {
        width: 100%;
        justify-content: space-between;
        font-size: 17px;
        padding: 15px 12px;
    }

    /* Panel is always white, keep links dark even under the overlay header */
    header.ps-header--overlay .ps-nav-menu .ps-nav-link {
        color: var(--ps-ink) !important;
    }

    .ps-nav-drop {
        position: static;
        transform: none;
        opacity: 1;
        visibility: hidden;
        display: none;
        box-shadow: none;
        border: none;
        background: var(--ps-surface-alt);
        border-radius: 12px;
        margin: 2px 0 8px;
    }

    .ps-nav-menu > li.is-open > .ps-nav-drop {
        display: block;
        visibility: visible;
        transform: none;
    }

    .ps-nav-actions .ps-btn--ghost { display: none; }

    .ps-nav-menu .ps-nav-mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid var(--ps-line);
    }

    .ps-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .ps-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .ps-facts { grid-template-columns: repeat(2, 1fr); }

    .ps-steps { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
    .ps-steps-line { display: none; }
    .ps-step { opacity: 1; transform: none; }

    .ps-bento { grid-template-columns: 1fr 1fr; }
    .ps-bento-card--wide,
    .ps-bento-card--tall { grid-column: span 2; }

    .ps-price-panel { grid-template-columns: 1fr; padding: 44px 32px; gap: 32px; }

    .ps-hero--page .ps-hero-wrap { grid-template-columns: 1fr; gap: 44px; }
    .ps-mission { grid-template-columns: 1fr; gap: 48px; }
    .ps-product { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .ps-golive { grid-template-columns: 1fr 1fr; }
    .ps-hero--page .ps-hero-wrap--term { grid-template-columns: 1fr; }
    .ps-compare { grid-template-columns: 1fr; }
    .ps-compare-col--new { border-left: none; border-top: 1px solid var(--ps-line); }
    .ps-manifesto-row { grid-template-columns: 92px 1fr; gap: 26px; padding: 36px 0; }
    .ps-ledger { grid-template-columns: 1fr; gap: 44px; }
    .ps-sticky-split { grid-template-columns: 1fr; gap: 40px; }
    .ps-sticky-left { position: static; }

    .ps-footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 0 40px; }

    .ps-float { display: none; }

    .ps-hero-visual { transform: none; }
}

@media (min-width: 992px) {
    .ps-nav-mobile-auth { display: none; }
}

@media (max-width: 575px) {
    .ps-section { padding: 60px 0; }

    .ps-hero { padding-top: 108px; }

    .ps-hero-cta .ps-btn { width: 100%; }

    .ps-grid-2,
    .ps-grid-3,
    .ps-grid-4,
    .ps-facts,
    .ps-steps { grid-template-columns: 1fr; }

    .ps-steps { gap: 32px; }
    .ps-golive { grid-template-columns: 1fr; }

    .ps-tcard { padding: 40px 24px 34px; }

    .ps-footer-main { grid-template-columns: 1fr; gap: 36px; }

    .ps-cta { padding: 56px 24px; }

    .ps-cookie { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ---------------------------------------------------------------------------
   Motion layer: split-text reveals, parallax, kinetic type, progress bar
--------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

/* Scroll progress bar */
.ps-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1060;
    pointer-events: none;
}

.ps-progress span {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--ps-green-dark), var(--ps-green-bright));
    transform: scaleX(0);
    transform-origin: left;
}

/* Word-by-word masked reveal (JS wraps words in .ps-w > .ps-wi) */
.ps-w {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

.ps-wi {
    display: inline-block;
    transform: translateY(118%);
    transition: transform 0.9s var(--ps-ease);
    transition-delay: var(--wd, 0s);
    will-change: transform;
}

.ps-split.in-view .ps-wi {
    transform: translateY(0);
}

/* Nav link underline sweep */
@media (min-width: 992px) {
    .ps-nav-menu > li > .ps-nav-link {
        position: relative;
    }

    .ps-nav-menu > li > .ps-nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 6px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.28s var(--ps-ease);
    }

    .ps-nav-menu > li > .ps-nav-link:hover::after,
    .ps-nav-menu > li > .ps-nav-link:focus-visible::after {
        transform: scaleX(1);
    }
}

/* Kinetic outline-text marquee */
.ps-txt-marquee {
    overflow: hidden;
    padding: 44px 0;
    -webkit-user-select: none;
    user-select: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ps-txt-marquee .ps-txt-track {
    display: flex;
    align-items: baseline;
    gap: 0.6em;
    width: max-content;
    animation: ps-marquee 36s linear infinite;
    font-family: var(--ps-font-display);
    font-size: clamp(56px, 8.5vw, 118px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.ps-txt-marquee .ps-txt-track > span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(var(--ps-green-rgb), 0.45);
}

.ps-txt-marquee .ps-txt-track > span.is-fill {
    -webkit-text-stroke: 0;
    background: linear-gradient(100deg, var(--ps-green-bright) 0%, var(--ps-green-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ps-txt-marquee .ps-txt-track > i {
    font-style: normal;
    font-size: 0.32em;
    color: var(--ps-green);
    transform: translateY(-0.55em);
}

@media (max-width: 480px) {
    .ps-link-pill {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
    }

    .ps-link-value {
        width: 100%;
    }

    .ps-link-url {
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .ps-link-pill .ps-copy {
        width: 100%;
        text-align: center;
    }

    .ps-broker-net {
        flex-direction: column;
        gap: 10px;
    }

    .ps-blink {
        width: 2px;
        height: 28px;
        margin-bottom: 0;
        background-image: linear-gradient(180deg, var(--ps-green-dark) 55%, transparent 45%);
        background-size: 2px 9px;
        animation-name: ps-dash-vertical;
    }
}

@keyframes ps-dash-vertical {
    from { background-position: 0 0; }
    to { background-position: 0 9px; }
}

@media (max-width: 767px) {
    .ps-hero--page.ps-hero--no-eyebrow {
        padding-top: 112px;
    }
}

.ps-signoff {
    padding: 34px 24px 0;
    color: var(--ps-green-deep);
    font-family: var(--ps-font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
}

/* Testimonial slide depth: non-current slides recede */
.ps-tslide {
    transition: opacity 0.6s var(--ps-ease), transform 0.6s var(--ps-ease);
    opacity: 0.35;
    transform: scale(0.94);
}

.ps-tslide.is-current {
    opacity: 1;
    transform: scale(1);
}

/* Parallax elements get GPU hints; scroll owns their transform, so the
   idle drift keyframes must not compete */
[data-plx] {
    will-change: transform;
    animation: none !important;
}

/* ---------------------------------------------------------------------------
   Circuit thread: a continuous line weaving through sections, drawn on
   scroll, with a light pulse traveling along it (JS builds the SVGs)
--------------------------------------------------------------------------- */

.ps-circuit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

/* Keep section content above the thread */
.ps-section > .ps-container {
    position: relative;
    z-index: 1;
}

.ps-circuit path {
    fill: none;
    stroke-linecap: round;
}

/* The faint parallel echo line, slightly offset (cantor-style double rail) */
.ps-circuit-echo {
    stroke: rgba(var(--ps-green-rgb), 0.1);
    stroke-width: 1.5;
}

/* The main rail: drawn in by the scroll engine via stroke-dashoffset */
.ps-circuit-base {
    stroke: rgba(var(--ps-green-rgb), 0.3);
    stroke-width: 1.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* The traveling light pulse */
.ps-circuit-beam {
    stroke: var(--ps-green-bright);
    stroke-width: 2.25;
    stroke-dasharray: 55 945;
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 0 5px rgba(var(--ps-green-rgb), 0.9));
    animation: ps-beam 11s linear infinite;
}

@keyframes ps-beam {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: -1000; }
}

/* Boundary nodes pin the thread to each section edge */
.ps-circuit-node {
    fill: rgba(var(--ps-green-rgb), 0.55);
    stroke: none;
}

/* Dark sections: rail turns white-glass, beam stays green */
.ps-section--dark .ps-circuit-base {
    stroke: rgba(255, 255, 255, 0.16);
}

.ps-section--dark .ps-circuit-echo {
    stroke: rgba(255, 255, 255, 0.06);
}

.ps-section--dark .ps-circuit-node {
    fill: rgba(var(--ps-green-rgb), 0.7);
}

/* ---------------------------------------------------------------------------
   WhatsApp floating chat button
--------------------------------------------------------------------------- */

.ps-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1045;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.5);
    transition: transform 0.2s var(--ps-ease), box-shadow 0.2s ease;
    animation: ps-wa-pulse 2.6s ease-out infinite;
}

.ps-wa:hover,
.ps-wa:focus-visible {
    transform: translateY(-3px) scale(1.06);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    animation: none;
}

@keyframes ps-wa-pulse {
    0% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 767px) {
    .ps-wa {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ps-marquee-track { animation: none; }
    .ps-float { animation: none; }
    .ps-orb { animation: none; }
    .ps-hero-badge .ps-dot { animation: none; }
    .ps-rotator .ps-rotator-word { animation: none; }
    .ps-blink { animation: none; }
    .ps-step { opacity: 1; transform: none; transition: none; }
    .ps-steps-line span { transform: scaleX(1); transition: none; }
    .ps-mbar span { transition: none; }
    .in-view .ps-mbar--full span { width: 100%; }
    .ps-hero-visual { transform: none; transition: none; }
    .ps-wi { transform: none; transition: none; }
    .ps-txt-marquee .ps-txt-track { animation: none; }
    .ps-tslide { opacity: 1; transform: none; transition: none; }
    .ps-circuit-base { stroke-dashoffset: 0 !important; }
    .ps-circuit-beam { display: none; }
    .ps-heartbeat { animation: none; opacity: 0.6; }
    .ps-sonar { display: none; }
    .ps-viz-track > span { animation: none; width: 100%; }
    .ps-viz-dot { animation: none !important; background: var(--ps-green-dark) !important; }
    .ps-viz-toast { animation: none; opacity: 0; }
    .ps-viz-mbar span { animation: none !important; width: 100% !important; }
    .ps-viz-mcheck { animation: none !important; background: var(--ps-green-dark) !important; color: #fff !important; }
}
