/* Propnal Lumen — light SaaS hub (Zentrixel-inspired) */
:root,
html[data-pl-mode="light"] {
    --pl-ink: var(--theme-text-on-primary, #0B1B33);
    --pl-muted: #5B6B82;
    --pl-paper: #ffffff;
    --pl-wash: #F4F7FC;
    --pl-card: #ffffff;
    --pl-accent: var(--theme-accent, #2563EB);
    --pl-navy: #0B1B33;
    --pl-line: rgba(15, 40, 80, 0.10);
    --pl-shadow: 0 18px 40px rgba(15, 40, 80, 0.08);
    --pl-nav-bg: rgba(255, 255, 255, 0.92);
    --pl-nav-link: #334155;
    --pl-hero-glow: rgba(37, 99, 235, .14);
    --pl-hero-glow-2: rgba(37, 99, 235, .07);
    --pl-stats-bg: rgba(255, 255, 255, .72);
    --pl-thumb: #e8eef8;
    --pl-chrome: #eef2f7;
    --pl-chrome-text: #64748b;
    --pl-pill-bg: #e2e8f0;
    --pl-brand-bg: #eaf3ff;
    --pl-radius: 16px;
    --pl-wrap: 1180px;
    --pl-sans: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}
html[data-pl-mode="dark"] {
    color-scheme: dark;
    --pl-ink: #E8EEF8;
    --pl-muted: #9AA8BD;
    --pl-paper: #0B1220;
    --pl-wash: #111827;
    --pl-card: #151C2B;
    --pl-accent: var(--theme-accent, #60A5FA);
    --pl-navy: #070B14;
    --pl-line: rgba(232, 238, 248, 0.12);
    --pl-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    --pl-nav-bg: rgba(11, 18, 32, 0.92);
    --pl-nav-link: #cbd5e1;
    --pl-hero-glow: rgba(96, 165, 250, .20);
    --pl-hero-glow-2: rgba(37, 99, 235, .12);
    --pl-stats-bg: rgba(21, 28, 43, .82);
    --pl-thumb: #1e293b;
    --pl-chrome: #1e293b;
    --pl-chrome-text: #94a3b8;
    --pl-pill-bg: #243044;
    --pl-brand-bg: #1e3a5f;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body.pl-body {
    margin: 0;
    font-family: var(--pl-sans);
    color: var(--pl-ink);
    background: var(--pl-paper);
    line-height: 1.6;
    color-scheme: inherit;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
.pl-wrap {
    width: min(100% - 2.4rem, var(--pl-wrap));
    margin-inline: auto;
}
.pl-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pl-accent);
    margin: 0 0 0.7rem;
}
.pl-muted { color: var(--pl-muted); }
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--pl-ink);
}
.pl-skip { position: absolute; left: -999px; }
.pl-skip:focus { left: 1rem; top: 1rem; z-index: 80; background: var(--pl-card); padding: .5rem 1rem; }

/* Language switcher on light chrome */
.pl-body .jl-lang-btn {
    border: 1px solid var(--pl-line);
    background: var(--pl-card);
    color: var(--pl-ink);
}
.pl-body .jl-lang-menu {
    background: var(--pl-card);
    color: var(--pl-ink);
    border: 1px solid var(--pl-line);
    box-shadow: var(--pl-shadow);
}
.pl-body .jl-lang-menu a { color: var(--pl-ink); }
.pl-body .jl-lang-menu a:hover,
.pl-body .jl-lang-menu a.is-active { background: var(--pl-wash); }

/* Nav */
.pl-nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--pl-nav-bg);
    backdrop-filter: blur(16px);
    color: var(--pl-ink);
    border-bottom: 1px solid transparent;
}
.pl-nav.is-scrolled {
    border-bottom-color: var(--pl-line);
    box-shadow: 0 8px 24px rgba(15, 40, 80, 0.06);
}
.pl-nav-inner {
    display: flex; align-items: center; gap: 1.2rem;
    min-height: 76px;
}
.pl-brand {
    display: flex; align-items: center; gap: .65rem;
    text-decoration: none; font-weight: 800; letter-spacing: -0.02em;
    font-size: 1.02rem;
    color: inherit;
}
.pl-brand img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--pl-brand-bg);
}
.pl-brand span,
.pl-brand-footer strong { display: none; }
.pl-brand-footer { margin-bottom: .35rem; }
.pl-brand-footer img { height: 64px; width: 64px; background: var(--pl-brand-bg); }
.pl-nav-links {
    display: flex; align-items: center; gap: 1.2rem;
    list-style: none; margin: 0; padding: 0;
    margin-left: 1rem;
}
.pl-nav-links a {
    text-decoration: none;
    font-size: .92rem;
    font-weight: 600;
    color: var(--pl-nav-link);
}
.pl-nav-links a:hover { color: var(--pl-accent); }
.pl-mode {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--pl-line);
    border-radius: 999px;
    background: var(--pl-card);
}
.pl-mode button {
    border: 0;
    background: transparent;
    color: var(--pl-muted);
    border-radius: 999px;
    padding: .38rem .85rem;
    font-weight: 700;
    font-size: .78rem;
    cursor: pointer;
    line-height: 1.2;
}
.pl-mode button.is-active,
.pl-mode button[aria-pressed="true"] {
    background: var(--pl-accent);
    color: #fff;
}
.pl-nav-actions { display: flex; align-items: center; gap: .7rem; }
.pl-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    text-decoration: none; border: 0; cursor: pointer;
    border-radius: 999px; padding: .62rem 1.15rem;
    font-weight: 700; font-size: .9rem;
}
.pl-btn-primary {
    background: var(--pl-accent);
    color: #fff;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}
.pl-btn-primary:hover { filter: brightness(1.06); }
.pl-btn-connect {
    background: var(--pl-accent);
    color: #fff;
    padding: .4rem .4rem .4rem 1rem;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}
.pl-btn-connect i {
    width: 28px; height: 28px; border-radius: 99px;
    background: #fff; color: var(--pl-accent);
    display: grid; place-items: center;
    font-style: normal; font-weight: 800; font-size: .85rem;
}
.pl-btn-ghost {
    background: transparent; color: var(--pl-ink);
    border: 1px solid var(--pl-line);
}
.pl-btn-ghost:hover { border-color: var(--pl-accent); color: var(--pl-accent); }
.pl-btn-wa { background: var(--theme-whatsapp, #22c55e); color: #052e16; }
.pl-toggle {
    display: none;
    width: 42px; height: 42px; border-radius: 10px;
    border: 1px solid var(--pl-line); background: var(--pl-card); color: var(--pl-ink);
}

/* Hero */
.pl-hero {
    position: relative;
    background:
        radial-gradient(820px 380px at 88% 8%, var(--pl-hero-glow), transparent 58%),
        radial-gradient(640px 320px at 8% 0%, var(--pl-hero-glow-2), transparent 52%),
        var(--pl-paper);
    color: var(--pl-ink);
    padding: 4.4rem 0 4.8rem;
    overflow: hidden;
}
.pl-hero-page { padding: 3.2rem 0 2.4rem; }
.pl-hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}
.pl-hero h1 {
    font-size: clamp(2.3rem, 4.6vw, 3.7rem);
    margin: 0 0 1rem;
    max-width: 16ch;
}
.pl-hero h1 .pl-mark { color: var(--pl-accent); display: block; }
.pl-hero h1 .pl-rest { color: var(--pl-ink); display: block; }
.pl-hero .pl-lead {
    font-size: 1.12rem; color: var(--pl-muted);
    max-width: 42ch; margin: 0 0 1rem;
}
.pl-punch {
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--pl-ink);
}
.pl-hero-ctas { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.8rem; }
.pl-stats {
    display: flex; flex-wrap: wrap; gap: 0;
    border: 1px solid var(--pl-line);
    border-radius: 14px;
    background: var(--pl-stats-bg);
    overflow: hidden;
}
.pl-stat {
    padding: .85rem 1.1rem;
    min-width: 7.5rem;
    border-right: 1px solid var(--pl-line);
}
.pl-stat:last-child { border-right: 0; }
.pl-stat b { display: block; font-size: 1.35rem; font-weight: 800; color: var(--pl-ink); }
.pl-stat span { font-size: .75rem; color: var(--pl-muted); font-weight: 600; }

.pl-hero-visual {
    position: relative;
}
.pl-hero-visual::before {
    content: "";
    position: absolute;
    inset: 12% -8% -8% 18%;
    background: radial-gradient(circle at 70% 40%, rgba(37,99,235,.28), transparent 62%);
    filter: blur(8px);
    pointer-events: none;
}
.pl-slider {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 340px;
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    box-shadow: 0 28px 70px rgba(15, 40, 80, .14);
    z-index: 1;
}
.pl-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .6s ease;
    display: flex; flex-direction: column;
    pointer-events: none;
    background: var(--pl-card);
}
.pl-slide.is-active { opacity: 1; position: relative; pointer-events: auto; }
.pl-slide img, .pl-slide-art {
    height: 240px; width: 100%; object-fit: cover;
    background: var(--pl-thumb);
}
.pl-slide-art {
    display: grid; place-items: center;
    background: linear-gradient(145deg, rgba(37,99,235,.16), var(--pl-wash));
    font-size: 1.5rem; font-weight: 800;
}
.pl-slide-body { padding: 1rem 1.15rem 1.2rem; }
.pl-slide-body h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.pl-slide-body p { margin: 0; color: var(--pl-muted); font-size: .9rem; }
.pl-dots {
    position: absolute; bottom: 12px; right: 14px; z-index: 2;
    display: flex; gap: 6px;
}
.pl-dots button {
    width: 8px; height: 8px; border-radius: 99px; border: 0;
    background: rgba(15, 40, 80, .22); padding: 0; cursor: pointer;
}
.pl-dots button.is-active { background: var(--pl-accent); width: 22px; }

/* Sections */
.pl-section { padding: 4.6rem 0; background: var(--pl-paper); }
.pl-section-wash { background: var(--pl-wash); }
.pl-section h2 { font-size: clamp(1.7rem, 3.2vw, 2.45rem); margin: 0 0 1.1rem; }
.pl-section-head { max-width: 40rem; margin-bottom: 2rem; }
.pl-section-head p { color: var(--pl-muted); margin: 0; }

.pl-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.pl-step {
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    padding: 1.25rem 1.15rem 1.35rem;
    box-shadow: 0 10px 28px rgba(15, 40, 80, .04);
}
.pl-step-num {
    width: 36px; height: 36px; border-radius: 99px;
    display: grid; place-items: center;
    background: var(--pl-accent); color: #fff;
    font-weight: 800; font-size: .82rem; margin-bottom: .85rem;
}
.pl-step h3 { margin: 0 0 .4rem; font-size: 1.12rem; }
.pl-step p { margin: 0; color: var(--pl-muted); font-size: .92rem; }

.pl-featured-track {
    display: flex; gap: 1rem; overflow-x: auto;
    scroll-snap-type: x mandatory; padding-bottom: .6rem;
    scrollbar-width: thin;
}
.pl-feature-card {
    flex: 0 0 min(78%, 360px);
    scroll-snap-align: start;
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 32px rgba(15, 40, 80, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pl-feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 40, 80, .1); }
.pl-feature-card > img { width: 100%; height: 190px; object-fit: cover; background: var(--pl-thumb); }
.pl-feature-card div { padding: 1rem 1.1rem 1.2rem; }
.pl-feature-card h3,
.pl-app-body h3 {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin: 0 0 .35rem;
}
.pl-feature-card h3 { font-size: 1.15rem; }
.pl-feature-card p { margin: 0 0 .8rem; color: var(--pl-muted); font-size: .9rem; }
.pl-open { font-weight: 700; font-size: .88rem; color: var(--pl-ink); }
.pl-open span { color: var(--pl-accent); }
.pl-feature-card .addon-name,
.pl-app .addon-name,
.pl-stack-col .addon-name {
    font: inherit;
    color: inherit;
    font-weight: inherit;
}

.pl-tour {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center;
}
.pl-tour-frame {
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--pl-line);
    background: var(--pl-card); min-height: 320px;
    box-shadow: var(--pl-shadow);
}
.pl-tour-frame iframe, .pl-tour-frame video { width: 100%; height: 360px; border: 0; display: block; }
.pl-mock { padding: 1rem 1rem 1.2rem; color: var(--pl-ink); font-size: .82rem; background: var(--pl-card); }
.pl-mock-bar { display: flex; gap: 6px; margin-bottom: .9rem; }
.pl-mock-bar i { width: 9px; height: 9px; border-radius: 99px; background: #cbd5e1; display: block; }
.pl-mock-bar i:nth-child(1) { background: #f87171; }
.pl-mock-bar i:nth-child(2) { background: #fbbf24; }
.pl-mock-bar i:nth-child(3) { background: #34d399; }
.pl-mock-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .6rem; }
.pl-mock-col {
    background: var(--pl-wash);
    border: 1px solid var(--pl-line);
    border-radius: 12px; padding: .7rem;
    min-height: 220px;
}
.pl-mock-col strong {
    display: block; margin-bottom: .55rem;
    font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--pl-muted);
}
.pl-pill {
    height: 28px; border-radius: 8px; margin-bottom: .4rem;
    background: var(--pl-pill-bg);
    animation: plPulse 2.8s ease-in-out infinite;
}
.pl-pill:nth-child(2) { width: 86%; animation-delay: .2s; }
.pl-pill:nth-child(3) { width: 72%; animation-delay: .4s; }
.pl-pill:nth-child(4) { width: 90%; animation-delay: .6s; }
.pl-pill.accent { background: linear-gradient(90deg, rgba(37,99,235,.55), rgba(37,99,235,.12)); }
@keyframes plPulse {
    0%, 100% { opacity: .55; }
    50% { opacity: 1; }
}

.pl-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.pl-chip {
    border: 1px solid var(--pl-line); background: var(--pl-card); color: var(--pl-ink);
    border-radius: 999px; padding: .4rem .9rem; font-weight: 650; font-size: .85rem; cursor: pointer;
}
.pl-chip.is-active { background: var(--pl-accent); color: #fff; border-color: var(--pl-accent); }
.pl-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.pl-app {
    display: flex; flex-direction: column;
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}
.pl-app:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(15, 40, 80, .08); }
.pl-app > img { width: 100%; height: 168px; object-fit: cover; background: var(--pl-thumb); }
.pl-app-body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.pl-cat {
    font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
    font-weight: 700; color: var(--pl-accent); margin: 0 0 .35rem;
}
.pl-app h3 { margin: 0 0 .4rem; font-size: 1.12rem; }
.pl-app p { margin: 0 0 1rem; color: var(--pl-muted); font-size: .9rem; flex: 1; }

.pl-portals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}
.pl-portal {
    display: flex;
    flex-direction: column;
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 32px rgba(15, 40, 80, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pl-portal:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 40, 80, .1); }
.pl-portal-preview { background: var(--pl-wash); }
.pl-portal-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    background: var(--pl-chrome);
}
.pl-portal-chrome i {
    width: 8px; height: 8px; border-radius: 99px; display: block;
    background: #cbd5e1;
}
.pl-portal-chrome i:nth-child(1) { background: #f87171; }
.pl-portal-chrome i:nth-child(2) { background: #fbbf24; }
.pl-portal-chrome i:nth-child(3) { background: #34d399; }
.pl-portal-chrome span {
    margin-left: .35rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--pl-chrome-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pl-portal-thumb {
    height: 168px;
    overflow: hidden;
    background: var(--pl-thumb);
}
.pl-portal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.pl-portal-thumb.is-logo {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--pl-card), var(--pl-wash));
    padding: 1.4rem 1.6rem;
}
.pl-portal-thumb.is-logo img {
    object-fit: contain;
    max-height: 96px;
    width: auto;
    max-width: 80%;
}
.pl-portal-thumb.is-fallback {
    display: grid;
    place-items: center;
    align-content: center;
    gap: .55rem;
    background: linear-gradient(160deg, #eff6ff, #dbeafe);
    color: var(--pl-ink);
    height: 168px;
}
.pl-portal-thumb.is-fallback span {
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--pl-accent); color: #fff;
    font-weight: 800; font-size: 1.2rem;
}
.pl-portal-thumb.is-fallback strong { font-size: .95rem; font-weight: 650; }
.pl-portal-body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.pl-portal-body h3 { margin: 0 0 .25rem; font-size: 1.12rem; }
.pl-portal-host {
    margin: 0 0 1rem;
    color: var(--pl-muted);
    font-size: .82rem;
    font-weight: 600;
}

.pl-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pl-stack-col {
    background: var(--pl-card); border: 1px solid var(--pl-line); border-radius: var(--pl-radius);
    padding: 1.3rem 1.2rem;
    box-shadow: 0 10px 28px rgba(15, 40, 80, .04);
}
.pl-stack-col h3 { margin: 0 0 .9rem; }
.pl-stack-col ul { list-style: none; margin: 0; padding: 0; }
.pl-stack-col li {
    padding: .55rem .7rem; margin-bottom: .4rem;
    background: var(--pl-wash); border-radius: 10px; font-weight: 600; font-size: .92rem;
    display: flex;
    align-items: center;
}

.pl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.pl-panel {
    background: var(--pl-card); border: 1px solid var(--pl-line); border-radius: var(--pl-radius);
    padding: 1.5rem;
    box-shadow: var(--pl-shadow);
}
.pl-form { display: grid; gap: .75rem; }
.pl-form .pl-btn { justify-self: start; }
.pl-form label span { display: block; font-size: .8rem; font-weight: 700; margin-bottom: .3rem; }
.pl-form input, .pl-form select, .pl-form textarea {
    width: 100%; padding: .7rem .8rem; border-radius: 10px;
    border: 1px solid var(--pl-line); background: var(--pl-card); font-size: .95rem; color: var(--pl-ink);
}
.pl-form input:focus, .pl-form select:focus, .pl-form textarea:focus {
    outline: 2px solid rgba(37, 99, 235, .25);
    border-color: var(--pl-accent);
}
.pl-alert { padding: .8rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.pl-alert-ok { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.pl-alert-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.pl-footer {
    background: var(--pl-navy); color: rgba(255,255,255,.78);
    padding: 3rem 0 1.5rem;
}
.pl-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.pl-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.pl-footer a:hover { color: #fff; }
.pl-footer h6 { margin: 0 0 .8rem; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; color: #93c5fd; }
.pl-footer p { margin: .55rem 0 0; max-width: 38ch; }
.pl-footer .ep-footer-gst { border-color: rgba(255,255,255,.14) !important; }
.pl-social { display: flex; flex-wrap: wrap; gap: .65rem 1rem; margin-top: 1rem; }
.pl-social a { font-size: .88rem; font-weight: 600; }
.pl-copy { margin-top: 1.6rem; font-size: .82rem; opacity: .7; }

.pl-fab-wa {
    position: fixed; right: 18px; bottom: 18px; z-index: 40;
    width: 56px; height: 56px; border-radius: 99px;
    background: #22c55e; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 28px rgba(34, 197, 94, .35);
    text-decoration: none;
}

@media (max-width: 960px) {
    .pl-hero-grid, .pl-tour, .pl-split, .pl-stack, .pl-footer-grid { grid-template-columns: 1fr; }
    .pl-steps { grid-template-columns: 1fr 1fr; }
    .pl-grid, .pl-portals { grid-template-columns: 1fr 1fr; }
    .pl-toggle { display: grid; place-items: center; }
    .pl-nav-links, .pl-nav-actions { display: none; }
    .pl-nav.is-open .pl-nav-links,
    .pl-nav.is-open .pl-nav-actions {
        display: flex; flex-direction: column; align-items: flex-start;
        width: 100%; padding: 0 0 1rem;
    }
    .pl-nav-inner { flex-wrap: wrap; }
    .pl-hero h1 { max-width: none; }
}
@media (max-width: 640px) {
    .pl-grid, .pl-portals, .pl-steps { grid-template-columns: 1fr; }
    .pl-hero { padding: 3rem 0 3.2rem; }
    .pl-mock-cols { grid-template-columns: 1fr; }
    .pl-stat { border-right: 0; border-bottom: 1px solid var(--pl-line); width: 100%; }
    .pl-stat:last-child { border-bottom: 0; }
}
