/* PLATplus marketing — Shopify-inspired home + shared light chrome for pricing */

:root {
    --pp-primary: #7B61FF;
    --pp-blue: #00A3FF;
    --pp-indigo: #3300FF;
    --pp-dark: #0F172A;
    --pp-text: #334155;
    --pp-muted: #64748B;
    --pp-border: #E2E8F0;
    --pp-bg: #FFFFFF;
    --pp-bg-alt: #F8FAFC;
    --pp-gradient: linear-gradient(135deg, #00A3FF 0%, #7B61FF 50%, #6366F1 100%);
    --pp-gradient-dark: linear-gradient(135deg, #1E3A8A 0%, #312E81 50%, #4C1D95 100%);
    --pp-radius: 16px;
    --pp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --pp-shadow-lg: 0 20px 60px rgba(123, 97, 255, 0.15);
    --pp-shell: min(1180px, calc(100% - 2.5rem));
    --pp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: Vazirmatn, Tahoma, 'Segoe UI', sans-serif;
    color: var(--pp-text);
    background: var(--pp-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; }

.pp-shell {
    width: var(--pp-shell);
    margin-inline: auto;
}

/* ── Shared buttons (pricing + home) ── */
.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: transform 0.2s var(--pp-ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.pp-btn:hover { transform: translateY(-1px); }

.pp-btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.pp-btn-lg { padding: 0.9rem 1.55rem; font-size: 1rem; }

.pp-btn-primary {
    background: var(--pp-primary);
    color: #fff !important;
}
.pp-btn-primary:hover { background: #6a4fff; color: #fff !important; }

.pp-btn-gradient {
    background: var(--pp-gradient);
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.28);
}
.pp-btn-gradient:hover { color: #fff !important; filter: brightness(1.05); }

.pp-btn-outline {
    background: transparent;
    border-color: var(--pp-border);
    color: var(--pp-dark) !important;
}
.pp-btn-outline:hover { border-color: var(--pp-primary); color: var(--pp-primary) !important; }

.pp-btn-white {
    background: #fff;
    color: #0a0a0a !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.pp-btn-white:hover { background: #f4f4f5; color: #0a0a0a !important; }

.pp-btn-ghost {
    background: transparent;
    color: var(--pp-text) !important;
}
.pp-btn-ghost:hover { color: var(--pp-dark) !important; }

.pp-btn-ghost-light {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35);
}
.pp-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.pp-btn-outline-light {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45);
}
.pp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.pp-gradient-text,
.pp-accent-text {
    background: var(--pp-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Light nav / footer (pricing default) ── */
.pp-top-sticky { z-index: 1030; }

.pp-announce {
    background: linear-gradient(90deg, #5b4dff 0%, #7B61FF 45%, #00A3FF 100%);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.4;
}

.pp-announce-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1.25rem;
    flex-wrap: wrap;
    padding: 0.55rem 0;
    text-align: center;
}

.pp-announce-text {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 500;
}

.pp-announce-text strong { font-weight: 900; }
.pp-announce-short { display: none; }

.pp-announce-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    color: #5b4dff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.32rem 0.9rem;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.pp-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pp-border);
    z-index: 1000;
}

.pp-nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.pp-logo img { height: 36px; width: auto; }

.pp-nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--pp-dark);
    padding: 0.25rem;
}

.pp-nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Bootstrap .collapse hides the desktop menu unless we force it open ≥ lg */
@media (min-width: 992px) {
    .pp-nav-links.collapse {
        display: flex !important;
        visibility: visible !important;
        height: auto !important;
    }
}

.pp-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pp-menu a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.85rem;
    color: var(--pp-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
}

.pp-menu a:hover,
.pp-menu a.active { color: var(--pp-primary); }

.pp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pp-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(123, 97, 255, 0.1);
    color: var(--pp-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pp-hero {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pp-hero-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--pp-dark);
    line-height: 1.25;
    margin: 0 0 1rem;
}

.pp-hero-desc {
    font-size: 1.05rem;
    color: var(--pp-muted);
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.pp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pp-section { padding: 4.5rem 0; }
.pp-section.tight { padding: 2rem 0; }
.pp-section-alt { background: var(--pp-bg-alt); }

.pp-section-head { margin-bottom: 2.5rem; }
.pp-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: var(--pp-dark);
    margin: 0 0 0.75rem;
}
.pp-section-head p { color: var(--pp-muted); margin: 0; max-width: 40rem; }

.pp-promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.9rem 1.25rem;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(123, 97, 255, 0.1), rgba(0, 163, 255, 0.1));
    border: 1px solid rgba(123, 97, 255, 0.18);
    color: var(--pp-dark);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.pp-footer {
    background: #0b1220;
    color: #94a3b8;
    padding: 3.5rem 0 1.5rem;
}

.pp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.pp-footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 22rem; }

.pp-footer h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.pp-footer ul { list-style: none; margin: 0; padding: 0; }
.pp-footer li { margin-bottom: 0.55rem; }
.pp-footer a { color: #94a3b8; text-decoration: none; font-size: 0.88rem; }
.pp-footer a:hover { color: #fff; }

.pp-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 0.82rem;
}

.pp-enamad img { max-width: 90px; height: auto; background: #fff; border-radius: 8px; padding: 4px; }

.pp-scroll-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--pp-primary);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1050;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.35);
}
.pp-scroll-top.visible { opacity: 1; pointer-events: auto; }
.pp-scroll-top:hover { transform: translateY(-2px); }

/* =========================================================
   DARK SHOPIFY-STYLE HOME
   ========================================================= */
html:has(body.pp-home) {
    overflow-x: clip;
}

body.pp-home {
    overflow-x: clip;
    --pp-ink: #050505;
    --pp-ink-2: #0b0f0c;
    --pp-panel: #10261c;
    --pp-panel-2: #1a1430;
    --pp-line: rgba(255, 255, 255, 0.12);
    --pp-soft: rgba(255, 255, 255, 0.62);
    --pp-accent: #5eead4;
    --pp-accent-2: #38bdf8;
    background: var(--pp-ink);
    color: #f5f5f5;
}

body.pp-home .pp-announce {
    background: #0a0a0a;
    border-bottom: 1px solid var(--pp-line);
    font-size: 0.8rem;
}

body.pp-home .pp-announce-cta {
    background: #fff;
    color: #111;
}

body.pp-home .pp-nav {
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

body.pp-home .pp-nav-toggle { color: #fff; }

body.pp-home .pp-menu a {
    color: rgba(255, 255, 255, 0.78);
}
body.pp-home .pp-menu a:hover,
body.pp-home .pp-menu a.active { color: #fff; }

body.pp-home .pp-btn-ghost {
    color: rgba(255, 255, 255, 0.85) !important;
}
body.pp-home .pp-btn-ghost:hover { color: #fff !important; }

body.pp-home .pp-logo-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none !important;
    color: #fff !important;
}

body.pp-home .pp-logo-mark {
    height: 28px;
    width: auto;
    display: block;
}

body.pp-home .pp-logo-word {
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: #fff;
}

body.pp-home .pp-logo-word span {
    color: var(--pp-accent);
}

/* Reveal */
body.pp-home [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--pp-ease), transform 0.8s var(--pp-ease);
}
body.pp-home [data-reveal].is-in {
    opacity: 1;
    transform: none;
}

/* Hero — Shopify: full-bleed bg video + text-side veil highlight */
body.pp-home .pp-hero {
    position: relative;
    min-height: min(78vh, 720px);
    padding: 0;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.pp-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Video sits like Shopify: stronger on the free side, fades under copy */
.pp-hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #050505;
    transform: scale(1.04);
    opacity: 0;
    transition: opacity 0.7s ease;
}

/* Show as soon as a frame is ready — don't wait for play() (iOS often delays it) */
.pp-hero.has-video.is-ready .pp-hero-video,
.pp-hero.has-video.is-playing .pp-hero-video {
    opacity: 1;
}

.pp-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 50% at 75% 45%, rgba(94, 234, 212, 0.1), transparent 55%),
        linear-gradient(135deg, #0a1628 0%, #0b1220 45%, #050505 100%);
    transition: opacity 0.7s ease;
}

.pp-hero.has-video.is-ready .pp-hero-photo,
.pp-hero.has-video.is-playing .pp-hero-photo {
    opacity: 0;
}

/* Highlight veil: dark under copy, open window over cinematic video (Shopify) */
.pp-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            to left,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.55) 34%,
            rgba(0, 0, 0, 0.12) 58%,
            rgba(0, 0, 0, 0.05) 78%,
            rgba(0, 0, 0, 0.4) 100%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

html[dir="rtl"] .pp-hero-veil {
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.55) 34%,
            rgba(0, 0, 0, 0.12) 58%,
            rgba(0, 0, 0, 0.05) 78%,
            rgba(0, 0, 0, 0.4) 100%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.pp-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.pp-hero-glow {
    position: absolute;
    z-index: 3;
    width: min(52vw, 640px);
    height: min(52vw, 640px);
    inset-inline-end: -8%;
    top: 18%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.22), transparent 65%);
    filter: blur(8px);
}

.pp-hero-copy {
    position: relative;
    z-index: 4;
    padding: 3.25rem 0 4rem;
    max-width: 640px;
}

.pp-brand-mark {
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0 0 1.1rem;
    color: #fff;
}
.pp-brand-mark span {
    color: var(--pp-accent);
}

body.pp-home .pp-hero-title {
    color: #fff;
    font-size: clamp(2.4rem, 7vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 1.25rem;
}

.pp-hero-line { display: block; }

.pp-hero-rotator {
    display: block;
    position: relative;
    min-height: 1.15em;
    margin-top: 0.15em;
}

.pp-hero-rotate {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--pp-ease), transform 0.55s var(--pp-ease);
    color: var(--pp-accent);
    white-space: nowrap;
}

.pp-hero-rotate.is-active {
    opacity: 1;
    transform: none;
    position: relative;
}

body.pp-home .pp-hero-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 28rem;
    margin-bottom: 1.75rem;
}

body.pp-home .pp-hero-actions { margin-bottom: 0; }

.pp-hero-curve {
    position: absolute;
    inset-inline: 0;
    bottom: -1px;
    height: 48px;
    background: var(--pp-ink);
    border-radius: 28px 28px 0 0;
    z-index: 3;
}

/* Stages */
.pp-stage {
    padding: 5.5rem 0;
    background: var(--pp-ink);
    position: relative;
}

.pp-stage-ab { padding-top: 2.5rem; }

.pp-statement {
    font-size: clamp(1.7rem, 4.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    max-width: 16ch;
    margin: 0 auto 3rem;
    text-align: center;
}

.pp-statement .is-dim { color: rgba(255, 255, 255, 0.28); display: block; }
.pp-statement .is-lit { color: #fff; display: block; }

.pp-show-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 1fr;
    gap: 1rem;
    align-items: end;
}

.pp-show-card { min-width: 0; }

.pp-show-visual {
    border-radius: 22px;
    overflow: hidden;
    min-height: 280px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--pp-line);
    position: relative;
}

.pp-show-tall .pp-show-visual { min-height: 360px; }

.pp-tone-rose {
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
        radial-gradient(circle at 30% 20%, #fb7185, #9f1239 70%);
}
.pp-tone-cyan {
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
        radial-gradient(circle at 70% 30%, #67e8f9, #0e7490 70%);
}
.pp-tone-ink {
    background: linear-gradient(160deg, #111827, #020617);
}
.pp-tone-violet {
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55)),
        radial-gradient(circle at 40% 30%, #c4b5fd, #4c1d95 75%);
}

.pp-show-tag {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 0.55rem;
}

.pp-show-visual strong {
    font-size: 1.25rem;
    font-weight: 800;
}

.pp-mini-site {
    height: 100%;
    min-height: 240px;
    background: #f8fafc;
    border-radius: 14px;
    color: #0f172a;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pp-mini-bar { display: flex; gap: 0.35rem; }
.pp-mini-bar span {
    width: 8px; height: 8px; border-radius: 50%;
    background: #cbd5e1;
}
.pp-mini-hero {
    flex: 1;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f172a, #334155);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.05rem;
}
.pp-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}
.pp-mini-grid i {
    display: block;
    aspect-ratio: 1;
    border-radius: 8px;
    background: #e2e8f0;
}

/* Panels */
.pp-panel {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 420px;
}

.pp-panel-chat {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(16, 185, 129, 0.22), transparent 50%),
        linear-gradient(160deg, #0d1f18 0%, #07140f 55%, #050505 100%);
}

.pp-panel-copy {
    padding: clamp(1.75rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.pp-panel-copy h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.pp-panel-copy p {
    color: var(--pp-soft);
    margin: 0;
    max-width: 36rem;
}

.pp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 600;
}

.pp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pp-accent) !important;
    text-decoration: none !important;
    font-weight: 700;
    margin-top: 0.5rem;
}
.pp-text-link:hover { color: #99f6e4 !important; }

.pp-panel-visual {
    position: relative;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.pp-orb-product {
    width: min(260px, 70%);
    aspect-ratio: 1;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 25%, #5eead4, transparent 40%),
        radial-gradient(circle at 70% 70%, #38bdf8, transparent 45%),
        linear-gradient(145deg, #134e4a, #042f2e);
    box-shadow: 0 30px 80px rgba(45, 212, 191, 0.25);
    transform: rotate(-8deg);
    animation: ppFloat 5.5s ease-in-out infinite;
}

.pp-bubble {
    position: absolute;
    bottom: 18%;
    inset-inline-start: 12%;
    background: #fff;
    color: #111;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    animation: ppFloat 4.2s ease-in-out infinite reverse;
}

@keyframes ppFloat {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-10px) rotate(-6deg); }
}
.pp-bubble { animation-name: ppFloatSoft; }
@keyframes ppFloatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Split heads */
.pp-split-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem 2rem;
    align-items: end;
    margin-bottom: 2.25rem;
}

.pp-split-head h2,
.pp-mega-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0;
    color: #fff;
}

.pp-split-head p {
    margin: 0;
    color: var(--pp-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.pp-split-head a {
    color: #5eead4;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pp-mega-title { margin-bottom: 2rem; }

/* Builder — Shopify-style layered editor scene */
.pp-stage-builder {
    padding-top: 2rem;
    scroll-margin-top: 6.5rem;
}

.pp-builder-board {
    border-radius: 28px;
    padding: 1.75rem 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(94, 234, 212, 0.12);
    background:
        radial-gradient(ellipse 70% 55% at 55% 60%, rgba(20, 184, 166, 0.18), transparent 58%),
        linear-gradient(160deg, #0a1a15 0%, #071310 45%, #050d0b 100%);
}

.pp-builder-board .pp-split-head {
    margin-bottom: 1.75rem;
}

.pp-builder-stage {
    perspective: 1200px;
}

.pp-builder-scene {
    position: relative;
    min-height: 480px;
    padding: 1.5rem 1rem 2rem;
    transition: transform 0.25s var(--pp-ease);
    transform-style: preserve-3d;
}

.pp-mock-draft {
    position: absolute;
    z-index: 6;
    top: 0.85rem;
    inset-inline-start: clamp(0.5rem, 4vw, 2.5rem);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: #38bdf8;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
}

.pp-mock-editor {
    position: absolute;
    z-index: 5;
    top: 2.6rem;
    inset-inline-start: clamp(0.25rem, 2.5vw, 1.75rem);
    width: min(232px, 34%);
    background: #fff;
    color: #0f172a;
    border-radius: 16px;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
    padding: 0.7rem 0.65rem 0.85rem;
}

.pp-mock-editor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.4rem 0.65rem;
    border-bottom: 1px solid #e8eef3;
    margin-bottom: 0.45rem;
}

.pp-mock-editor-head b {
    font-size: 0.88rem;
}

.pp-mock-editor-head i {
    font-size: 0.75rem;
    color: #94a3b8;
}

.pp-mock-editor-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pp-mock-editor-row,
.pp-mock-editor-add,
.pp-mock-editor-child {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.4rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
}

.pp-mock-editor-row i,
.pp-mock-editor-add i {
    font-size: 0.9rem;
    color: #64748b;
    width: 1.1rem;
    text-align: center;
}

.pp-mock-editor-row img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    object-fit: cover;
}

.pp-mock-editor-row em {
    margin-inline-start: auto;
    font-style: normal;
    font-size: 0.7rem;
    color: #94a3b8;
}

.pp-mock-editor-row.is-active {
    background: #f1f5f9;
}

.pp-mock-editor-add {
    color: #0284c7;
    font-weight: 700;
}

.pp-mock-editor-add i { color: #0284c7; }

.pp-mock-editor-child {
    padding-inline-start: 1.65rem;
    color: #64748b;
    font-weight: 500;
}

.pp-mock-editor-child i {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    display: grid;
    place-items: center;
    font-size: 0.55rem;
    font-style: normal;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: #64748b;
}

.pp-mock-site {
    position: relative;
    z-index: 2;
    width: min(780px, 78%);
    margin-inline-end: clamp(0.5rem, 4vw, 3rem);
    margin-inline-start: auto;
    margin-top: 1.5rem;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.45);
    min-width: 0;
}

.pp-mock-site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.45rem, 1.5vw, 1rem);
    padding: clamp(0.55rem, 1.6vw, 0.85rem) clamp(0.65rem, 2vw, 1.25rem);
    background: #fff;
    border-bottom: 1px solid #eef2f6;
    color: #0f172a;
    min-width: 0;
}

.pp-mock-brand {
    width: clamp(28px, 4vw, 34px);
    height: clamp(28px, 4vw, 34px);
    border-radius: 10px;
    flex-shrink: 0;
    background:
        linear-gradient(145deg, #d6b89c 0%, #b8956e 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.pp-mock-site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.55rem, 1.8vw, 0.95rem);
    flex: 1;
    min-width: 0;
    justify-content: center;
    font-size: clamp(0.7rem, 1.35vw, 0.78rem);
    font-weight: 600;
    color: #475569;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pp-mock-site-nav ul::-webkit-scrollbar { display: none; }

.pp-mock-site-nav li {
    flex-shrink: 0;
    white-space: nowrap;
}

.pp-mock-site-nav li.is-on { color: #0f172a; }

.pp-mock-site-tools {
    display: flex;
    gap: clamp(0.4rem, 1.2vw, 0.65rem);
    color: #334155;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    flex-shrink: 0;
}

.pp-mock-hero {
    position: relative;
    min-height: clamp(220px, 38vw, 340px);
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.45) 100%),
        var(--hero) center / cover no-repeat;
}

.pp-mock-hero-copy {
    position: relative;
    z-index: 1;
    padding: clamp(1.15rem, 3.5vw, 2rem) clamp(0.85rem, 3vw, 1.5rem);
    max-width: min(26rem, 100%);
    width: 100%;
    box-sizing: border-box;
}

.pp-mock-hero-copy h3 {
    margin: 0 0 0.55rem;
    font-family: Amiri, Georgia, 'Times New Roman', serif;
    font-size: clamp(1.45rem, 4.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.pp-mock-hero-copy p {
    margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 500;
    opacity: 0.92;
    line-height: 1.45;
}

.pp-mock-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.45rem, 1.2vw, 0.55rem) clamp(0.9rem, 2.4vw, 1.15rem);
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    font-size: clamp(0.74rem, 1.8vw, 0.84rem);
    font-weight: 700;
    background: transparent;
    white-space: nowrap;
}

.pp-mock-tip {
    position: absolute;
    z-index: 4;
    bottom: 0.35rem;
    inset-inline-end: clamp(0.5rem, 3vw, 2rem);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem 0.55rem 0.55rem;
    border-radius: 14px;
    background: rgba(8, 18, 14, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none !important;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.pp-mock-tip i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #5eead4;
    color: #042f2e;
    font-size: 0.95rem;
}

/* Bento — icon-led feature cards */
.pp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pp-bento-card {
    position: relative;
    border-radius: 22px;
    padding: 1.45rem 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(ellipse 90% 70% at 100% 0%, rgba(94, 234, 212, 0.12), transparent 55%),
        linear-gradient(165deg, #122820 0%, #0a1410 48%, #050505 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.35s var(--pp-ease),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.pp-bento-card::before {
    content: "";
    position: absolute;
    inset-inline: 1.4rem;
    top: 0;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(90deg, transparent, var(--pp-accent), var(--pp-accent-2), transparent);
    opacity: 0.55;
    transition: opacity 0.35s ease;
}

.pp-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(94, 234, 212, 0.28);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.pp-bento-card:hover::before {
    opacity: 1;
}

.pp-bento-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    color: #042f2e;
    background: linear-gradient(145deg, var(--pp-accent), var(--pp-accent-2));
    box-shadow:
        0 10px 28px rgba(94, 234, 212, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.4s var(--pp-ease);
}

.pp-bento-card:nth-child(2) .pp-bento-icon {
    color: #e8f7ff;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    box-shadow:
        0 10px 28px rgba(56, 189, 248, 0.18),
        inset 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.pp-bento-card:nth-child(3) .pp-bento-icon {
    color: #041016;
    background: linear-gradient(145deg, #7dd3fc, #5eead4);
}

.pp-bento-card:hover .pp-bento-icon {
    transform: scale(1.06) rotate(-3deg);
}

.pp-bento-tag {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--pp-accent);
    text-transform: none;
}

.pp-bento-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.pp-bento-card p {
    color: var(--pp-soft);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.75;
}

/* Industry */
.pp-industry-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.pp-industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pp-industry-pill i { color: var(--chip, var(--pp-accent)); }
.pp-industry-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: color-mix(in srgb, var(--chip, #5eead4) 55%, transparent);
    transform: translateY(-2px);
}

.pp-sample-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pp-marquee-track {
    display: flex;
    gap: 0.65rem;
    width: max-content;
    animation: ppMarquee 32s linear infinite;
}

.pp-sample-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

@keyframes ppMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

/* Stories — tone-colored, no photo */
.pp-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pp-story-card {
    --story-a: #fda4af;
    --story-b: #9f1239;
    --story-ink: #fff1f2;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.35rem 1.3rem 1.35rem;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    background:
        radial-gradient(ellipse 85% 70% at 0% 0%, color-mix(in srgb, var(--story-a) 38%, transparent), transparent 58%),
        radial-gradient(ellipse 70% 55% at 100% 100%, color-mix(in srgb, var(--story-b) 42%, transparent), transparent 55%),
        linear-gradient(165deg, #121212 0%, #0a0a0a 100%);
    transition:
        transform 0.35s var(--pp-ease),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.pp-story-card::before {
    content: "";
    position: absolute;
    inset-inline: 1.3rem;
    top: 0;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(90deg, transparent, var(--story-a), var(--story-b), transparent);
    opacity: 0.75;
}

.pp-story-card.pp-tone-rose {
    --story-a: #fda4af;
    --story-b: #be123c;
    --story-ink: #fff1f2;
}

.pp-story-card.pp-tone-cyan {
    --story-a: #67e8f9;
    --story-b: #0e7490;
    --story-ink: #ecfeff;
}

.pp-story-card.pp-tone-violet {
    --story-a: #c4b5fd;
    --story-b: #6d28d9;
    --story-ink: #f5f3ff;
}

.pp-story-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--story-a) 45%, transparent);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.pp-story-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.pp-story-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    color: var(--story-ink);
    background: linear-gradient(145deg, var(--story-a), var(--story-b));
    box-shadow:
        0 12px 28px color-mix(in srgb, var(--story-b) 35%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.4s var(--pp-ease);
}

.pp-story-card:hover .pp-story-mark {
    transform: scale(1.06) rotate(-3deg);
}

.pp-story-quote {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 0.8;
    color: color-mix(in srgb, var(--story-a) 55%, transparent);
    user-select: none;
}

.pp-story-card h3 {
    font-size: 1.22rem;
    font-weight: 800;
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.pp-story-card p {
    color: var(--pp-soft);
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.75;
    flex: 1;
}

.pp-story-card footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pp-story-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--story-ink);
    background: linear-gradient(145deg, var(--story-a), var(--story-b));
}

.pp-story-card footer strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.3;
}

.pp-story-card footer span {
    display: block;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

.pp-center-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.pp-fineprint {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}

/* App wall — checkerboard opacity only (cheap, no page shake) */
#plugins {
    overflow-x: clip;
}

.pp-app-wall {
    display: grid;
    grid-template-columns: repeat(12, minmax(64px, 1fr));
    gap: 0.75rem;
    padding: 0.5rem 0 2rem;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 1rem;
    overflow: clip;
    contain: layout paint;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.pp-app-icon {
    aspect-ratio: 1;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--c, #7B61FF) 22%, #111);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.35rem;
    opacity: 0.38;
    /* desktop 12-col chess default = dark squares */
    animation: ppAppDim 9s ease-in-out infinite;
}

/* 12-col chess — light squares */
.pp-app-icon:nth-child(24n + 2),
.pp-app-icon:nth-child(24n + 4),
.pp-app-icon:nth-child(24n + 6),
.pp-app-icon:nth-child(24n + 8),
.pp-app-icon:nth-child(24n + 10),
.pp-app-icon:nth-child(24n + 12),
.pp-app-icon:nth-child(24n + 13),
.pp-app-icon:nth-child(24n + 15),
.pp-app-icon:nth-child(24n + 17),
.pp-app-icon:nth-child(24n + 19),
.pp-app-icon:nth-child(24n + 21),
.pp-app-icon:nth-child(24n + 23) {
    opacity: 0.78;
    animation-name: ppAppLit;
}

@keyframes ppAppDim {
    0%, 100% { opacity: 0.32; }
    50% { opacity: 0.48; }
}

@keyframes ppAppLit {
    0%, 100% { opacity: 0.78; }
    50% { opacity: 0.55; }
}

/* Desktop only: soft one-way lift on light squares */
@media (min-width: 992px) and (hover: hover) {
    .pp-app-icon:nth-child(24n + 2),
    .pp-app-icon:nth-child(24n + 4),
    .pp-app-icon:nth-child(24n + 6),
    .pp-app-icon:nth-child(24n + 8),
    .pp-app-icon:nth-child(24n + 10),
    .pp-app-icon:nth-child(24n + 12),
    .pp-app-icon:nth-child(24n + 13),
    .pp-app-icon:nth-child(24n + 15),
    .pp-app-icon:nth-child(24n + 17),
    .pp-app-icon:nth-child(24n + 19),
    .pp-app-icon:nth-child(24n + 21),
    .pp-app-icon:nth-child(24n + 23) {
        animation: ppAppLitLift 9s ease-in-out infinite;
    }
}

@keyframes ppAppLitLift {
    0%, 100% {
        opacity: 0.78;
        transform: translateY(0);
    }
    50% {
        opacity: 0.55;
        transform: translateY(-4px);
    }
}

.pp-price-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.pp-price-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}
.pp-price-pill i { font-size: 1.25rem; }
.pp-price-pill strong { display: block; font-size: 0.92rem; }
.pp-price-pill small { color: #94a3b8; font-size: 0.78rem; }

/* Checkout / conversion (Shopify-style) */
.pp-stage-stats {
    background:
        radial-gradient(ellipse 55% 70% at 85% 40%, rgba(94, 234, 212, 0.14), transparent 55%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(56, 189, 248, 0.08), transparent 50%),
        linear-gradient(180deg, #06201a 0%, #050505 70%, #050505 100%);
    overflow: hidden;
}

.pp-stats-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.75rem 3rem;
    align-items: center;
}

.pp-stats-copy h2 {
    font-size: clamp(1.95rem, 3.8vw, 3.05rem);
    font-weight: 900;
    margin: 0 0 1.6rem;
    letter-spacing: -0.03em;
    line-height: 1.18;
    max-width: 12ch;
    color: #fff;
}

.pp-stat-bigs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-stat-item {
    min-width: 0;
}

.pp-stat-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pp-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.45rem;
}

.pp-stat-bigs strong {
    display: block;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.pp-stats-footnote {
    margin: 0 0 0.65rem;
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: 500;
}

.pp-stats-footnote u {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(94, 234, 212, 0.55);
    color: #fff;
    font-weight: 700;
}

.pp-stats-study {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
    font-weight: 600;
}

.pp-stats-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: 1.5rem 0.5rem;
}

.pp-stats-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.pp-stats-glow.g1 {
    width: 240px;
    height: 240px;
    inset-inline-start: 0;
    top: 10%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.32), transparent 68%);
    animation: ppFloatSoft 6s ease-in-out infinite;
}

.pp-stats-glow.g2 {
    width: 200px;
    height: 200px;
    inset-inline-end: -2%;
    bottom: 4%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.26), transparent 70%);
    animation: ppFloatSoft 7s ease-in-out infinite reverse;
}

/* Floating product thumbs */
.pp-cko-float {
    position: absolute;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.85);
    animation: ppFloatSoft 5.5s ease-in-out infinite;
}

.pp-cko-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-cko-float.f1 { inset-inline-start: 2%; top: 6%; width: 64px; height: 64px; animation-delay: 0s; }
.pp-cko-float.f2 { inset-inline-end: 4%; top: 12%; width: 52px; height: 52px; animation-delay: -1.2s; }
.pp-cko-float.f3 { inset-inline-start: -1%; bottom: 22%; width: 56px; height: 56px; animation-delay: -2.1s; }
.pp-cko-float.f4 { inset-inline-end: 0; bottom: 28%; width: 48px; height: 48px; animation-delay: -0.6s; }
.pp-cko-float.f5 { inset-inline-end: 18%; bottom: 2%; width: 54px; height: 54px; animation-delay: -3s; }

/* Checkout window mock */
.pp-cko-window {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    width: min(560px, 100%);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(15, 23, 42, 0.04) inset;
    transform: translateY(18px) scale(0.98);
    opacity: 0.88;
    transition: transform 0.95s var(--pp-ease), opacity 0.95s var(--pp-ease);
}

.pp-stage-stats.is-in .pp-cko-window {
    transform: none;
    opacity: 1;
}

.pp-cko-main {
    padding: 1.15rem 1.2rem 1.25rem;
    border-inline-end: 1px solid #e8edf3;
    background: #fafbfc;
}

.pp-cko-express-label {
    display: block;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 0.55rem;
    letter-spacing: 0.02em;
}

.pp-cko-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
}

.pp-cko-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.55rem 0.25rem;
    border-radius: 10px;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: #0f172a;
    border: 1px solid transparent;
}

.pp-cko-method i {
    font-size: 0.95rem;
}

.pp-cko-method:nth-child(1) {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.pp-cko-method:nth-child(2) {
    background: #111827;
}

.pp-cko-method:nth-child(3) {
    background: #1e293b;
    color: #f8fafc;
}

.pp-cko-method.is-on {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(20, 184, 166, 0.85);
    animation: ppCkoPulse 2.4s ease-in-out infinite;
}

.pp-cko-or {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0.9rem 0 0.85rem;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 700;
}

.pp-cko-or::before,
.pp-cko-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.pp-cko-block {
    margin-bottom: 0.75rem;
}

.pp-cko-block b {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.pp-cko-field {
    background: #fff;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

.pp-cko-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
}

.pp-cko-grid .pp-cko-field {
    margin: 0;
}

.pp-cko-span {
    grid-column: 1 / -1;
}

.pp-cko-summary {
    padding: 1.15rem 1rem 1.2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pp-cko-line {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 0.55rem;
    align-items: center;
}

.pp-cko-line img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.pp-cko-line b {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.25;
}

.pp-cko-line small {
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 600;
}

.pp-cko-line em {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
}

.pp-cko-discount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
}

.pp-cko-discount i {
    font-style: normal;
    color: #0f766e;
    font-weight: 800;
}

.pp-cko-totals {
    display: grid;
    gap: 0.4rem;
    padding-top: 0.15rem;
    border-top: 1px solid #eef2f6;
}

.pp-cko-totals > div {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
}

.pp-cko-totals strong {
    font-weight: 800;
    color: #0f172a;
    text-align: end;
}

.pp-cko-total {
    margin-top: 0.25rem;
    padding-top: 0.45rem;
    border-top: 1px solid #eef2f6;
    font-size: 0.82rem !important;
    color: #0f172a !important;
    font-weight: 800 !important;
}

.pp-cko-pay-cta {
    margin-top: auto;
    text-align: center;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #041016;
    background: linear-gradient(135deg, #5eead4, #38bdf8);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.28);
}

@keyframes ppCkoPulse {
    0%, 100% { box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(20, 184, 166, 0.75); }
    50% { box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(20, 184, 166, 0.35); }
}

/* Iran pay map — Shopify globe style, stuck under checkout */
.pp-stage-iranpay {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 55% at 22% 48%, rgba(45, 212, 191, 0.12), transparent 58%),
        radial-gradient(ellipse 35% 40% at 78% 30%, rgba(56, 189, 248, 0.06), transparent 50%),
        linear-gradient(180deg, #050505 0%, #061612 42%, #050505 100%);
}

.pp-iranpay-layout {
    direction: ltr;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem 3rem;
    align-items: center;
}

.pp-iranpay-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.pp-iranpay-stars {
    position: absolute;
    inset: 8% 6%;
    border-radius: 50%;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 22%, rgba(255, 255, 255, 0.45), transparent),
        radial-gradient(1px 1px at 28% 68%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1.5px 1.5px at 55% 18%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 72% 42%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 88% 70%, rgba(255, 255, 255, 0.38), transparent),
        radial-gradient(1px 1px at 40% 88%, rgba(255, 255, 255, 0.28), transparent),
        radial-gradient(1px 1px at 8% 50%, rgba(94, 234, 212, 0.4), transparent);
    opacity: 0.7;
    pointer-events: none;
    animation: ppIranTwinkle 6s ease-in-out infinite;
}

.pp-iranpay-glow {
    position: absolute;
    width: min(420px, 88%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2), transparent 68%);
    filter: blur(6px);
    pointer-events: none;
    animation: ppFloatSoft 7s ease-in-out infinite;
}

.pp-iran-stage {
    position: relative;
    z-index: 2;
    width: min(540px, 100%);
    aspect-ratio: 1000 / 907;
    filter: drop-shadow(0 18px 40px rgba(20, 184, 166, 0.22));
}

.pp-iran-sil-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.95;
}

.pp-iran-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.pp-iran-node {
    fill: #fbbf24;
    filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.85));
}

.pp-iran-node.is-hub {
    fill: #fff;
    filter: drop-shadow(0 0 5px rgba(94, 234, 212, 0.9));
    transform-origin: center;
    transform-box: fill-box;
    animation: ppIranHub 2.2s ease-in-out infinite;
}

.pp-iran-arc {
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 2.4;
    stroke-dasharray: 22 280;
    animation: ppIranArc 3.4s linear infinite;
}

.pp-iran-arc.a2 { animation-duration: 3.9s; animation-delay: -0.8s; stroke: rgba(167, 243, 208, 0.65); }
.pp-iran-arc.a3 { animation-duration: 4.2s; animation-delay: -1.6s; }
.pp-iran-arc.a4 { animation-duration: 3.6s; animation-delay: -0.4s; stroke: rgba(125, 211, 252, 0.6); }
.pp-iran-arc.a5 { animation-duration: 4.5s; animation-delay: -2.1s; }
.pp-iran-arc.a6 { animation-duration: 3.7s; animation-delay: -2.8s; stroke: rgba(167, 243, 208, 0.55); }

.pp-iran-head {
    fill: #fff;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.95));
}

.pp-iran-head.h2,
.pp-iran-head.h4 { fill: #a7f3d0; }

.pp-iranpay-chip {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(8, 18, 14, 0.82);
    border: 1px solid rgba(94, 234, 212, 0.35);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    min-width: min(280px, 86%);
    direction: rtl;
}

.pp-iranpay-chip i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #042f2e;
    background: linear-gradient(135deg, #5eead4, #34d399);
    font-size: 1.05rem;
}

.pp-iranpay-chip strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.pp-iranpay-chip span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #6ee7b7;
}

.pp-iranpay-copy {
    direction: rtl;
    text-align: right;
}

.pp-iranpay-copy h2 {
    margin: 0 0 1.1rem;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: #fff;
}

.pp-iranpay-copy p {
    margin: 0;
    max-width: 34ch;
    margin-inline-start: auto;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.02rem;
    line-height: 1.85;
    font-weight: 500;
}

.pp-stage-iranpay.is-in .pp-iran-stage {
    animation: ppIranEnter 1s var(--pp-ease) both;
}

@keyframes ppIranArc {
    to { stroke-dashoffset: -234; }
}

@keyframes ppIranHub {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.35); }
}

@keyframes ppIranTwinkle {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.85; }
}

@keyframes ppIranEnter {
    from { opacity: 0.6; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 991.98px) {
    .pp-iranpay-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .pp-iranpay-copy {
        order: -1;
        text-align: center;
    }

    .pp-iranpay-copy p {
        margin-inline: auto;
    }

    .pp-iranpay-visual {
        min-height: 340px;
    }

    .pp-iranpay-chip {
        bottom: 2%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pp-iran-arc,
    .pp-iran-node.is-hub,
    .pp-iranpay-stars,
    .pp-iranpay-glow {
        animation: none !important;
    }

    .pp-iran-heads {
        display: none;
    }
}

/* Build fast */
.pp-buildfast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.pp-photo-stack {
    position: relative;
    min-height: 420px;
}

.pp-photo {
    position: absolute;
    width: min(280px, 74%);
    aspect-ratio: 3/4.1;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.85rem;
    color: #fff;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
}

.pp-photo.p1 {
    inset-inline-start: 0;
    top: 0;
    z-index: 1;
    background:
        linear-gradient(165deg, rgba(15, 15, 15, 0.55), rgba(15, 15, 15, 0.82)),
        radial-gradient(circle at 30% 20%, #fb923c, #7c2d12 68%);
}

.pp-photo.p2 {
    inset-inline-end: 0;
    bottom: 0;
    z-index: 2;
    background:
        linear-gradient(165deg, rgba(8, 18, 14, 0.5), rgba(5, 12, 10, 0.88)),
        radial-gradient(circle at 70% 18%, #34d399, #064e3b 70%);
}

.pp-bf-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.pp-bf-bar b {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.92;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pp-bf-dots {
    display: flex;
    gap: 4px;
}

.pp-bf-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    display: block;
}

.pp-bf-dots i:nth-child(1) { background: #f87171; }
.pp-bf-dots i:nth-child(2) { background: #fbbf24; }
.pp-bf-dots i:nth-child(3) { background: #4ade80; }

.pp-bf-live {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 800;
    color: #99f6e4;
}

.pp-bf-live i {
    font-size: 0.45rem;
    color: #34d399;
}

.pp-bf-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    min-height: 0;
}

.pp-bf-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 0.4rem;
    text-align: center;
}

.pp-bf-tile i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    background: rgba(0, 0, 0, 0.28);
}

.pp-bf-tile span {
    font-size: 0.75rem;
    font-weight: 800;
}

.pp-bf-tile em {
    display: none;
}

.pp-bf-tile.is-on {
    background: #fff;
    color: #9a3412;
    border-color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.pp-bf-tile.is-on i {
    background: rgba(154, 52, 18, 0.12);
    color: #9a3412;
}

.pp-bf-tile.is-on em {
    display: grid;
    place-items: center;
    position: absolute;
    top: 8px;
    inset-inline-end: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 0.65rem;
    font-style: normal;
}

.pp-bf-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-bf-foot span {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
}

.pp-bf-foot strong {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    color: #9a3412;
}

.pp-bf-store {
    flex: 1;
    min-height: 0;
    border-radius: 16px;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pp-bf-hero-line {
    height: 42%;
    min-height: 72px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 55%),
        linear-gradient(160deg, #134e4a, #042f2e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.pp-bf-hero-line::after {
    content: '';
    position: absolute;
    inset-inline-start: 12px;
    bottom: 12px;
    width: 42%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 -14px 0 -2px rgba(255, 255, 255, 0.25);
}

.pp-bf-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    align-content: stretch;
}

.pp-bf-products i {
    display: block;
    border-radius: 10px;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-bf-products i:nth-child(1) { background: linear-gradient(145deg, #fdba74, #c2410c); }
.pp-bf-products i:nth-child(2) { background: linear-gradient(145deg, #c4b5fd, #6d28d9); }
.pp-bf-products i:nth-child(3) { background: linear-gradient(145deg, #93c5fd, #1d4ed8); }
.pp-bf-products i:nth-child(4) { background: linear-gradient(145deg, #f9a8d4, #be185d); }

.pp-bf-toggles {
    list-style: none;
    margin: 0;
    padding: 0.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-bf-toggles li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.45rem;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
}

.pp-bf-toggles li i { opacity: 0.9; font-size: 0.9rem; }
.pp-bf-toggles li span { flex: 1; }

.pp-bf-toggles li b {
    width: 28px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    position: relative;
    flex-shrink: 0;
}

.pp-bf-toggles li b::after {
    content: '';
    position: absolute;
    top: 2px;
    inset-inline-start: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    transition: inset-inline-start 0.2s ease;
}

.pp-bf-toggles li.is-on b {
    background: #5eead4;
}

.pp-bf-toggles li.is-on b::after {
    inset-inline-start: auto;
    inset-inline-end: 2px;
}

.pp-bf-toggles li:not(.is-on) {
    opacity: 0.55;
}

.pp-buildfast-copy h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.pp-steps {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.pp-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-step-n {
    color: var(--pp-accent);
    font-weight: 900;
    font-size: 1.05rem;
    min-width: 2.2rem;
}

.pp-step-t {
    font-size: 1.1rem;
    font-weight: 700;
}

/* CTA */
body.pp-home .pp-cta {
    padding: 2rem 0 5rem;
    background: #050505;
}

body.pp-home .pp-cta-inner {
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3.5rem);
    background:
        radial-gradient(ellipse at 10% 0%, rgba(56, 189, 248, 0.2), transparent 45%),
        radial-gradient(ellipse at 90% 100%, rgba(123, 97, 255, 0.22), transparent 45%),
        linear-gradient(135deg, #0b1220, #111827);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

body.pp-home .pp-cta-inner h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin: 0 0 0.85rem;
    color: #fff;
}

body.pp-home .pp-cta-inner p {
    color: var(--pp-soft);
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

.pp-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Contact */
.pp-stage-contact { padding-top: 2rem; }

.pp-contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

body.pp-home .pp-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none !important;
    color: #fff !important;
    min-height: 150px;
    transition: background 0.2s ease, transform 0.2s ease;
}
body.pp-home .pp-contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}
body.pp-home .pp-contact-card i {
    font-size: 1.35rem;
    color: var(--pp-accent);
}
body.pp-home .pp-contact-card span {
    color: #94a3b8;
    font-size: 0.88rem;
}

body.pp-home .pp-footer {
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.pp-home .pp-scroll-top {
    /* Left side — opposite the AI support FAB on the right */
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    background: #fff;
    color: #111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Pricing hero is defined in pricing.css (dark, matches pp-home) */

/* ── Sellboard — panel → store (composition) ── */
.pp-stage-markets {
    padding-top: 1.5rem;
    scroll-margin-top: 6.5rem;
}

.pp-sellboard-head {
    max-width: 36rem;
    margin: 0 0 1.85rem;
}

.pp-sellboard-head h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #fff;
}

.pp-sellboard-head p {
    margin: 0;
    color: var(--pp-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.pp-sellboard-head a {
    color: #5eead4;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pp-sellboard-head a:hover {
    color: #99f6e4;
}

.pp-sellboard {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(94, 234, 212, 0.14);
    background:
        radial-gradient(ellipse 70% 55% at 72% 48%, rgba(20, 184, 166, 0.28), transparent 58%),
        radial-gradient(ellipse 45% 50% at 18% 70%, rgba(13, 148, 136, 0.18), transparent 55%),
        linear-gradient(145deg, #050d0b 0%, #0b1a15 42%, #071310 100%);
}

.pp-sellboard-canvas {
    position: relative;
    min-height: 500px;
    padding: 1.25rem 1rem 1.35rem;
    overflow: hidden;
}

.pp-sellboard-haze {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(94, 234, 212, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 234, 212, 0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 70% 65% at 55% 50%, #000 10%, transparent 72%);
    opacity: 0.7;
}

/* Admin — bottom start (right in RTL), pulled toward center */
.pp-sellboard-admin {
    position: absolute;
    z-index: 6;
    inset-inline-start: clamp(2rem, 9vw, 7.5rem);
    bottom: 1.65rem;
    width: min(286px, 32%);
    background: #fff;
    color: #0f172a;
    border-radius: 18px;
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    padding: 0.7rem;
}

.pp-sell-admin-head {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.15rem 0.25rem 0.6rem;
    border-bottom: 1px solid #e8eef3;
    margin-bottom: 0.45rem;
}

.pp-sell-admin-head b {
    display: block;
    font-size: 0.84rem;
    line-height: 1.25;
}

.pp-sell-admin-head small {
    display: block;
    margin-top: 0.15rem;
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 700;
}

.pp-sell-dot {
    width: 9px;
    height: 9px;
    margin-top: 0.3rem;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
    flex-shrink: 0;
    animation: ppSellDotPulse 2s ease-in-out infinite;
}

.pp-sell-admin-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    overflow: hidden;
}

.pp-sell-admin-list > li {
    margin: 0;
    padding: 0;
}

.pp-sell-admin-row {
    display: grid;
    grid-template-columns: 14px 30px 1fr;
    gap: 0.42rem;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0.3rem 0.35rem;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: inherit;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--pp-ease);
}

.pp-sell-admin-row:hover {
    background: #f8fafc;
}

.pp-sell-admin-row img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.pp-sell-admin-meta b {
    display: block;
    font-size: 0.74rem;
    line-height: 1.25;
}

.pp-sell-admin-meta small {
    color: #64748b;
    font-size: 0.62rem;
    font-weight: 700;
}

.pp-sell-admin-row.is-on {
    background: #ecfdf5;
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.28);
}

.pp-sell-admin-row.is-pick {
    animation: ppSellPick 0.45s var(--pp-ease);
}

.pp-sell-check {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1.5px solid #94a3b8;
    display: block;
    position: relative;
}

.pp-sell-check.is-checked {
    border-color: #0d9488;
    background: #0d9488;
}

.pp-sell-check.is-checked::after {
    content: '';
    position: absolute;
    inset-inline-start: 3px;
    top: 1px;
    width: 4px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Beam — short bridge between panels */
.pp-sell-beam {
    position: absolute;
    z-index: 4;
    inset-inline-start: 40%;
    inset-inline-end: 40%;
    bottom: 28%;
    height: 120px;
    pointer-events: none;
}

.pp-sell-beam::before {
    content: '';
    position: absolute;
    inset: 5% -20% 15%;
    background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.28), transparent 68%);
    filter: blur(10px);
}

.pp-sell-beam-svg {
    width: 100%;
    height: 78%;
    display: block;
    overflow: visible;
}

/* RTL: admin is on the right → curve should flow right → left */
[dir="rtl"] .pp-sell-beam-svg {
    transform: scaleX(-1);
}

.pp-sell-beam-path {
    stroke-dasharray: 7 9;
    animation: ppSellDash 1.6s linear infinite;
    filter: drop-shadow(0 0 6px rgba(94, 234, 212, 0.5));
}

.pp-sellboard.is-syncing .pp-sell-beam-path {
    stroke-dasharray: none;
    filter: drop-shadow(0 0 14px rgba(94, 234, 212, 0.9));
}

.pp-sell-beam-node,
.pp-sell-beam-orb {
    filter: drop-shadow(0 0 7px rgba(94, 234, 212, 0.95));
}

.pp-sellboard.is-syncing .pp-sell-beam-orb {
    r: 6.5;
}

.pp-sell-beam-tag {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #99f6e4;
    background: rgba(6, 20, 16, 0.78);
    border: 1px solid rgba(94, 234, 212, 0.3);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.pp-sell-beam-tag i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: ppSellDotPulse 1.4s ease-in-out infinite;
}

/* Store stage — pulled toward center */
.pp-sellboard-stage {
    position: absolute;
    z-index: 5;
    inset-inline-end: clamp(2rem, 8vw, 6.5rem);
    top: 52%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.pp-sellboard-rail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.pp-sell-thumb {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.42;
    transition: opacity 0.25s ease, transform 0.25s var(--pp-ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.pp-sell-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-sell-thumb:hover {
    opacity: 0.85;
    transform: scale(1.08);
}

.pp-sell-thumb.is-active,
.pp-sell-thumb.is-glow {
    opacity: 1;
    border-color: #5eead4;
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.28), 0 0 22px rgba(94, 234, 212, 0.4);
    transform: scale(1.1);
}

.pp-sellboard-deck {
    position: relative;
    width: min(292px, 46vw);
    height: 410px;
    perspective: 1400px;
    flex-shrink: 0;
}

.pp-sell-cart {
    position: absolute;
    z-index: 12;
    top: -0.3rem;
    inset-inline-end: -0.3rem;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff;
    color: #0f766e;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    font-size: 1.05rem;
}

.pp-sell-cart em {
    position: absolute;
    top: -4px;
    inset-inline-start: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #0d9488;
    color: #fff;
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 800;
    display: grid;
    place-items: center;
    padding: 0 4px;
}

.pp-sell-cart.is-bounce {
    animation: ppSellPop 0.55s var(--pp-ease);
}

.pp-sell-card {
    position: absolute;
    inset: 0;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
    transition: transform 0.7s var(--pp-ease), opacity 0.55s var(--pp-ease), filter 0.55s ease;
    transform-origin: center center;
    will-change: transform, opacity;
}

.pp-sell-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-sell-badge {
    position: absolute;
    top: 0.75rem;
    inset-inline-start: 0.75rem;
    background: rgba(15, 23, 42, 0.82);
    color: #99f6e4;
    border: 1px solid rgba(94, 234, 212, 0.35);
    font-size: 0.68rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: 0.35s ease;
}

.pp-sell-card .pp-sell-buy {
    position: absolute;
    inset-inline: 0.85rem;
    bottom: 0.85rem;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #0e3b33;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: inherit;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.pp-sell-card.is-active {
    z-index: 5;
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
}

.pp-sell-card.is-active .pp-sell-buy,
.pp-sell-card.is-active .pp-sell-badge {
    opacity: 1;
    transform: none;
}

.pp-sell-card.is-landing {
    animation: ppSellLand 0.6s var(--pp-ease);
}

.pp-sell-buy.is-pulse {
    animation: ppSellPulse 0.8s var(--pp-ease);
}

.pp-sell-card.is-back-1 {
    z-index: 4;
    opacity: 0.72;
    filter: brightness(0.9);
    transform: translate3d(-14px, 10px, 0) scale(0.95);
}

.pp-sell-card.is-back-2 {
    z-index: 3;
    opacity: 0.35;
    filter: brightness(0.82);
    transform: translate3d(-26px, 20px, 0) scale(0.9);
}

.pp-sell-card.is-back-3,
.pp-sell-card.is-hidden {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-12px, 28px, 0) scale(0.86);
}

.pp-sell-price {
    position: absolute;
    top: 12%;
    inset-inline-start: calc(100% - 14px);
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 0.4rem 0.8rem 0.4rem 0.35rem;
    font-size: 0.76rem;
    font-weight: 800;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
    white-space: nowrap;
    max-width: 190px;
}

.pp-sell-price.is-pop {
    animation: ppSellPop 0.55s var(--pp-ease);
}

.pp-sell-price img {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
}

.pp-sell-price span {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Fly chip — transform driven via WAAPI */
.pp-sell-fly {
    position: absolute;
    z-index: 30;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: #0f172a;
    border-radius: 999px;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(94, 234, 212, 0.4),
        0 0 28px rgba(94, 234, 212, 0.35);
    pointer-events: none;
    white-space: nowrap;
    will-change: transform, opacity;
}

.pp-sell-fly img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
}

@keyframes ppSellPop {
    0% { transform: scale(0.9); }
    45% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes ppSellPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.55); }
    45% { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(94, 234, 212, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(94, 234, 212, 0); }
}

@keyframes ppSellLand {
    0% { transform: translate3d(0, 16px, 0) scale(0.93); filter: brightness(1.2); }
    100% { transform: translate3d(0, 0, 0) scale(1); filter: none; }
}

@keyframes ppSellPick {
    0% { transform: scale(1); }
    40% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes ppSellDotPulse {
    0%, 100% { opacity: 0.55; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes ppSellDash {
    to { stroke-dashoffset: -32; }
}

/* Responsive */
@media (max-width: 991.98px) {
    .pp-show-grid,
    .pp-bento,
    .pp-story-grid,
    .pp-price-strip,
    .pp-stats-layout,
    .pp-buildfast,
    .pp-panel,
    .pp-split-head,
    .pp-contact-row {
        grid-template-columns: 1fr;
    }

    .pp-app-wall {
        grid-template-columns: repeat(6, minmax(56px, 1fr));
        mask-image: none;
        contain: layout paint;
    }

    /* reset desktop chess, apply 6-col chess */
    .pp-app-icon {
        animation: ppAppDim 10s ease-in-out infinite;
        transform: none !important;
    }

    .pp-app-icon:nth-child(24n + 2),
    .pp-app-icon:nth-child(24n + 4),
    .pp-app-icon:nth-child(24n + 6),
    .pp-app-icon:nth-child(24n + 8),
    .pp-app-icon:nth-child(24n + 10),
    .pp-app-icon:nth-child(24n + 12),
    .pp-app-icon:nth-child(24n + 13),
    .pp-app-icon:nth-child(24n + 15),
    .pp-app-icon:nth-child(24n + 17),
    .pp-app-icon:nth-child(24n + 19),
    .pp-app-icon:nth-child(24n + 21),
    .pp-app-icon:nth-child(24n + 23) {
        animation-name: ppAppDim;
    }

    .pp-app-icon:nth-child(12n + 1),
    .pp-app-icon:nth-child(12n + 3),
    .pp-app-icon:nth-child(12n + 5),
    .pp-app-icon:nth-child(12n + 8),
    .pp-app-icon:nth-child(12n + 10),
    .pp-app-icon:nth-child(12n + 12) {
        opacity: 0.78;
        animation-name: ppAppLit;
    }

    .pp-builder-board { padding: 1.25rem 1rem 1.5rem; }

    .pp-builder-scene {
        min-height: 0;
        padding: 0.5rem 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    .pp-mock-draft {
        position: static;
        display: inline-flex;
        align-self: flex-start;
        order: 0;
    }

    .pp-mock-site {
        width: 100%;
        margin: 0;
        order: 1;
    }

    .pp-mock-editor {
        position: relative;
        inset: auto;
        top: auto;
        width: 100%;
        max-width: 360px;
        margin: 0;
        order: 3;
    }

    .pp-mock-tip {
        position: static;
        margin: 0;
        width: fit-content;
        max-width: 100%;
        order: 2;
    }

    .pp-mock-site-nav ul {
        justify-content: flex-start;
    }

    .pp-mock-hero {
        min-height: clamp(240px, 58vw, 300px);
    }

    .pp-nav-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0 1rem;
        gap: 0.75rem;
    }

    body.pp-home .pp-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .pp-nav-actions {
        justify-content: stretch;
    }
    .pp-nav-actions .pp-btn { flex: 1; }

    body.pp-home .pp-hero {
        min-height: min(70vh, 640px);
        align-items: flex-end;
    }

    .pp-hero-copy {
        padding: 2.5rem 0 3.25rem;
        max-width: none;
    }

    .pp-hero-veil,
    html[dir="rtl"] .pp-hero-veil {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.88) 100%);
    }

    .pp-hero-video {
        object-position: center 30%;
    }

    .pp-statement { max-width: none; text-align: right; margin-inline: 0; }

    .pp-photo-stack { min-height: 320px; }
    .pp-photo { width: min(240px, 78%); padding: 0.7rem; gap: 0.55rem; }
    .pp-bf-tile i { width: 32px; height: 32px; font-size: 1rem; }
    .pp-bf-products i { min-height: 36px; }

    .pp-sellboard-canvas {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
        padding: 0.75rem 1rem 1.25rem;
    }

    .pp-sellboard-haze { opacity: 0.4; }

    .pp-sellboard-admin {
        position: relative;
        inset: auto;
        width: 100%;
        order: 2;
    }

    .pp-sell-admin-list { max-height: none; }

    .pp-sell-beam {
        position: relative;
        inset: auto;
        order: 3;
        height: 64px;
        margin: 0.15rem 0;
    }

    .pp-sellboard-stage {
        position: relative;
        inset: auto;
        transform: none;
        order: 1;
        flex-direction: column;
        justify-content: center;
        gap: 0.75rem;
    }

    .pp-sellboard-rail {
        flex-direction: row;
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pp-sellboard-deck {
        order: 1;
        margin-inline: auto;
        height: 340px;
        width: min(250px, 70vw);
    }

    .pp-sell-price {
        inset-inline: auto;
        left: 50%;
        top: auto;
        bottom: -0.4rem;
        transform: translateX(-50%);
        max-width: 92%;
    }


    .pp-sell-card.is-back-1,
    .pp-sell-card.is-back-2 {
        transform: translate3d(0, 10px, 0) scale(0.94);
        filter: brightness(0.9);
    }

    .pp-sell-beam-orb { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .pp-sell-beam-path,
    .pp-sell-beam-orb,
    .pp-sell-dot,
    .pp-sell-beam-tag i {
        animation: none !important;
    }
}

@media (max-width: 575.98px) {
    :root { --pp-shell: min(100% - 1.5rem, 1180px); }

    .pp-announce-full { display: none; }
    .pp-announce-short { display: inline; }

    .pp-hero-rotate { white-space: normal; }

    .pp-app-wall {
        grid-template-columns: repeat(4, minmax(56px, 1fr));
        padding: 0.5rem 0 1.5rem;
    }

    /* 4-col chess: light / dark */
    .pp-app-icon {
        animation: ppAppDim 11s ease-in-out infinite;
        transform: none !important;
    }

    .pp-app-icon:nth-child(12n + 1),
    .pp-app-icon:nth-child(12n + 3),
    .pp-app-icon:nth-child(12n + 5),
    .pp-app-icon:nth-child(12n + 8),
    .pp-app-icon:nth-child(12n + 10),
    .pp-app-icon:nth-child(12n + 12) {
        animation-name: ppAppDim;
        opacity: 0.38;
    }

    .pp-app-icon:nth-child(8n + 1),
    .pp-app-icon:nth-child(8n + 3),
    .pp-app-icon:nth-child(8n + 6),
    .pp-app-icon:nth-child(8n + 8) {
        opacity: 0.78;
        animation-name: ppAppLit;
    }

    .pp-stats-layout { gap: 2rem; }
    .pp-stats-copy h2 { max-width: none; }
    .pp-stat-bigs { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
    .pp-stats-visual { min-height: 0; padding: 0.5rem 0 0; }
    .pp-cko-window {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .pp-cko-main { border-inline-end: 0; border-bottom: 1px solid #e8edf3; }
    .pp-cko-float.f3,
    .pp-cko-float.f5 { display: none; }
    .pp-cko-float.f1 { inset-inline-start: 0; top: 0; }
    .pp-cko-float.f2 { inset-inline-end: 0; top: 4%; }
    .pp-cko-float.f4 { inset-inline-end: 6%; bottom: 8%; }

    .pp-sellboard-deck { height: 320px; }
    .pp-sell-thumb { width: 44px; height: 44px; }
    .pp-sell-fly { display: none !important; }

    .pp-mock-site {
        border-radius: 14px;
    }

    .pp-mock-site-nav {
        gap: 0.4rem;
        padding: 0.55rem 0.65rem;
    }

    .pp-mock-site-tools {
        gap: 0.35rem;
    }

    .pp-mock-site-tools i:nth-child(2) {
        display: none;
    }

    .pp-mock-site-nav ul {
        font-size: 0.72rem;
        gap: 0.7rem;
        padding-inline-end: 0.35rem;
    }

    .pp-mock-hero {
        min-height: 220px;
        background-position: center 30%;
    }

    .pp-mock-hero-copy {
        padding: 1.1rem 0.9rem 1.25rem;
    }

    .pp-mock-hero-copy h3 {
        font-size: 1.55rem;
    }

    .pp-mock-hero-copy p {
        font-size: 0.82rem;
        margin-bottom: 0.9rem;
    }

    .pp-mock-hero-cta {
        font-size: 0.76rem;
        padding: 0.48rem 0.95rem;
    }

    .pp-mock-editor {
        max-width: none;
    }

    .pp-mock-tip {
        font-size: 0.72rem;
        padding: 0.45rem 0.7rem 0.45rem 0.45rem;
    }
}

/* Narrow desktop: keep store preview readable beside editor */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .pp-mock-editor {
        width: min(210px, 30%);
    }

    .pp-mock-site {
        width: min(720px, 72%);
    }

    .pp-mock-site-nav ul {
        justify-content: flex-start;
    }

    .pp-mock-hero {
        min-height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    body.pp-home [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .pp-app-icon {
        animation: none !important;
        transform: none !important;
    }

    /* Keep muted hero video; only kill decorative motion */
    .pp-hero-video {
        transform: none;
        transition: none;
    }
}
