/* ============================================================
   Plugins listing page — extends style.css design tokens
   ============================================================ */

/* Shared mock-UI skeleton utilities */
.plp-mock-bar {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: #e6e6ee;
}
.plp-mock-bar--sm     { height: 6px; background: #ededf2; }
.plp-mock-bar--teal   { background: #14b8a6; }
.plp-mock-bar--teal-lt { background: #e2f6f3; }

.plp-mock-chip {
    display: inline-block;
    height: 16px;
    width: 56px;
    border-radius: 5px;
    background: #fef3e2;
    flex-shrink: 0;
}
.plp-mock-chip--pill  { border-radius: 999px; }
.plp-mock-chip--amber { background: #fef3e2; }
.plp-mock-chip--teal  { background: #e2f6f3; }

/* ============================================================
   Page hero
   ============================================================ */
.plp-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.plp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border-strong) 1.1px, transparent 1.1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 80% 120% at 50% 0%, #000 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 120% at 50% 0%, #000 30%, transparent 100%);
}
.plp-hero__inner {
    position: relative;
    text-align: center;
    padding-top: 72px;
    padding-bottom: 44px;
}
.plp-hero__eyebrow {
    color: var(--text-muted);
}
.plp-hero__inner h1 {
    max-width: 740px;
    margin: 14px auto 0;
    font-size: clamp(2rem, 1.1rem + 3.5vw, 3.125rem);
    text-wrap: balance;
}
.plp-hero__inner > p {
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 560px;
    margin: 18px auto 0;
}

/* ============================================================
   Filter bar + plugin list
   ============================================================ */
.plp-lineup {
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
}

.plp-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.plp-filters__pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.plp-filter-btn {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease),
                color var(--duration-fast) var(--ease),
                border-color var(--duration-fast) var(--ease);
}
.plp-filter-btn:hover {
    border-color: var(--border-strong);
    color: var(--text);
}
.plp-filter-btn.is-active {
    background: var(--primary);
    color: var(--primary-ink);
    border-color: var(--primary);
}
.plp-filters__count {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    white-space: nowrap;
}

/* Plugin card list */
.plp-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.plp-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr;
    gap: 36px;
    align-items: stretch;
    transition: box-shadow var(--duration-base) var(--ease),
                border-color var(--duration-base) var(--ease);
}
.plp-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}
.plp-card[hidden] { display: none; }

/* Top accent stripe */
.plp-card__accent-bar {
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    border-radius: 0 0 3px 3px;
}
.plp-card--amber .plp-card__accent-bar { background: #f59e0b; }
.plp-card--teal  .plp-card__accent-bar { background: #14b8a6; }
.plp-card--indigo .plp-card__accent-bar { background: var(--primary); }

/* Identity column */
.plp-card__identity {
    display: flex;
    flex-direction: column;
}
.plp-card__identity-top {
    display: flex;
    align-items: center;
    gap: 13px;
}
.plp-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.plp-card--amber  .plp-card__icon-wrap { background: #fef3e2; }
.plp-card--teal   .plp-card__icon-wrap { background: #e2f6f3; }
.plp-card--indigo .plp-card__icon-wrap { background: #ebecf6; }

.plp-card__icon-shape {
    display: block;
    width: 18px;
    height: 18px;
    border-width: 3px;
    border-style: solid;
}
.plp-card--amber  .plp-card__icon-shape { border-color: #f59e0b; border-radius: 5px; }
.plp-card--teal   .plp-card__icon-shape { border-color: #14b8a6; border-radius: 50%; }
.plp-card--indigo .plp-card__icon-shape { border-color: var(--primary); border-radius: 4px; transform: rotate(45deg); }

.plp-card__cat-chip {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
}
.plp-card--amber  .plp-card__cat-chip { color: #b06f06; background: #fef3e2; }
.plp-card--teal   .plp-card__cat-chip { color: #0f766e; background: #e2f6f3; }
.plp-card--indigo .plp-card__cat-chip { color: var(--primary); background: #ebecf6; }

.plp-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 23px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--text);
    margin: 18px 0 0;
}
.plp-card__pitch {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 9px 0 0;
}
.plp-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #9aa0ad;
    font-family: var(--font-mono);
}
.plp-card__meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cfcfdb;
    flex-shrink: 0;
}

/* Features column */
.plp-card__features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    list-style: none;
    padding: 0 0 0 4px;
    margin: 0;
}
.plp-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.plp-card__tick {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.plp-card--amber  .plp-card__tick { background: #fef3e2; }
.plp-card--teal   .plp-card__tick { background: #e2f6f3; }
.plp-card--indigo .plp-card__tick { background: #ebecf6; }

.plp-card__tick-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.plp-card--amber  .plp-card__tick-dot { background: #f59e0b; }
.plp-card--teal   .plp-card__tick-dot { background: #14b8a6; }
.plp-card--indigo .plp-card__tick-dot { background: var(--primary); }

.plp-card__feature > span:last-child {
    font-size: 14px;
    line-height: 1.45;
    color: #3a414d;
}

/* Action column */
.plp-card__action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}
.plp-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.plp-card__price-amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.plp-card__price-period {
    font-size: 13.5px;
    color: #9aa0ad;
}
.plp-card__price-note {
    font-size: 12.5px;
    color: #9aa0ad;
    margin: 5px 0 0;
}
.plp-card__ctas {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.plp-card__buy-btn {
    width: 100%;
    font-size: 15px;
    justify-content: center;
}
.plp-card__details-link {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    padding: 9px;
    transition: color var(--duration-fast) var(--ease);
}
.plp-card__details-link:hover { color: var(--primary-hover); }

@media (max-width: 900px) {
    .plp-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================================
   Deep dive bands — shared
   ============================================================ */
.plp-deep {
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding-top: 84px;
    padding-bottom: 84px;
}
.plp-deep--amber  { background: #fffcf6; border-color: #f4ecdd; }
.plp-deep--teal   { background: #f4fbfa; border-color: #dcefea; }
.plp-deep--indigo { background: #f7f7fc; border-color: #e6e6f2; }

/* 2-col split */
.plp-deep__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.plp-deep__split--flip .plp-deep__visual { order: -1; }

/* Section badge */
.plp-deep__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: var(--radius-pill);
}
.plp-deep__badge--amber  { color: #b06f06; background: #fef3e2; }
.plp-deep__badge--teal   { color: #0f766e; background: #e2f6f3; }
.plp-deep__badge--indigo { color: var(--primary); background: #ebecf6; }

.plp-deep__badge-icon {
    display: block;
    width: 14px;
    height: 14px;
    border-width: 2.5px;
    border-style: solid;
    border-radius: 4px;
    flex-shrink: 0;
}
.plp-deep__badge--amber  .plp-deep__badge-icon { border-color: #f59e0b; }
.plp-deep__badge-icon--circle  { border-radius: 50%; border-color: #14b8a6; }
.plp-deep__badge-icon--diamond { border-radius: 3px; border-color: var(--primary); transform: rotate(45deg); }

.plp-deep__text h2 {
    margin: 20px 0 0;
    font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
    line-height: 1.1;
    text-wrap: balance;
}
.plp-deep__text > p {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 16px 0 0;
}

.plp-deep__bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.plp-deep__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #3a414d;
}
.plp-deep__bullets li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.plp-deep__bullets--amber li::before  { background: #f59e0b; }
.plp-deep__bullets--teal  li::before  { background: #14b8a6; }
.plp-deep__bullets--indigo li::before { background: var(--primary); }

/* "Explore" ghost links */
.plp-deep__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 700;
    background: var(--surface);
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid;
    margin-top: 32px;
    transition: border-color var(--duration-fast) var(--ease),
                gap var(--duration-fast) var(--ease);
}
.plp-deep__cta-link--amber  { color: #b06f06; border-color: #f0e1c4; }
.plp-deep__cta-link--amber:hover  { border-color: #f59e0b; gap: 12px; }
.plp-deep__cta-link--teal   { color: #0f766e; border-color: #c9ece5; }
.plp-deep__cta-link--teal:hover   { border-color: #14b8a6; gap: 12px; }
.plp-deep__cta-link--indigo { color: var(--primary); border-color: #d9d9e4; }
.plp-deep__cta-link--indigo:hover { border-color: var(--primary); gap: 12px; }

/* Intro block (AI importer — single col) */
.plp-deep__intro {
    max-width: 640px;
}
.plp-deep__intro h2 { margin: 20px 0 0; }
.plp-deep__intro > p {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 16px 0 0;
}

@media (max-width: 860px) {
    .plp-deep__split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .plp-deep__split--flip .plp-deep__visual { order: 0; }
    .plp-deep { padding-top: var(--space-8); padding-bottom: var(--space-8); }
}

/* ============================================================
   PPWR — deadline callout
   ============================================================ */
.plp-deadline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
    background: var(--surface);
    border: 1px solid #f4ecdd;
    border-left: 3px solid #f59e0b;
    border-radius: 12px;
    padding: 16px 18px;
}
.plp-deadline__date {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    color: #b06f06;
    line-height: 1;
    flex-shrink: 0;
}
.plp-deadline__year { font-size: 17px; }
.plp-deadline__label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    margin: 0;
}
.plp-deadline__body > p:last-child {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 4px 0 0;
}

/* ============================================================
   PPWR — declaration dashboard mockup
   ============================================================ */
.plp-decl-dash {
    background: var(--surface);
    border: 1px solid #f0e7d6;
    border-radius: 16px;
    box-shadow: 0 20px 48px -24px rgba(180, 111, 6, 0.28);
    overflow: hidden;
}
.plp-decl-dash__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f5f0e6;
    background: #fffaf1;
}
.plp-decl-dash__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}
.plp-decl-dash__compliant {
    font-size: 11.5px;
    font-weight: 600;
    color: #0f766e;
    background: #e2f6f3;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
}
.plp-decl-dash__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.plp-decl-dash__stats {
    display: flex;
    gap: 12px;
}
.plp-decl-dash__stat {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}
.plp-decl-dash__stat-label {
    display: block;
    font-size: 11px;
    color: #9aa0ad;
    margin-bottom: 8px;
}
.plp-decl-dash__stat-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--text);
}
.plp-decl-dash__stat-unit {
    font-size: 13px;
    color: #9aa0ad;
}
.plp-decl-dash__table {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.plp-decl-dash__tr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-bottom: 1px solid #f6f6fa;
}
.plp-decl-dash__tr:last-child { border-bottom: 0; }
.plp-decl-dash__tr--head {
    padding: 11px 14px;
    background: #fafafc;
    border-bottom: 1px solid var(--border);
}
.plp-decl-dash__tr--head .plp-mock-bar {
    background: #cfcfdb;
    height: 7px;
}

/* ============================================================
   PPWR — sub-feature cards
   ============================================================ */
.plp-sub-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.plp-sub-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 24px;
}
.plp-sub-card--amber { border: 1px solid #f0e7d6; }

.plp-sub-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fef3e2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.plp-sub-card__icon span {
    display: block;
    width: 15px;
    height: 15px;
    border-width: 3px;
    border-style: solid;
    border-color: #f59e0b;
    border-radius: 4px;
}
.plp-sub-card__icon--circle span  { border-radius: 50%; }
.plp-sub-card__icon--diamond span { border-radius: 3px; transform: rotate(45deg); }

.plp-sub-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    margin: 0;
    color: var(--text);
}
.plp-sub-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 8px 0 0;
}

@media (max-width: 720px) {
    .plp-sub-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   HPOS — before/after swap mockup
   ============================================================ */
.plp-swap__panels {
    display: flex;
    align-items: center;
    gap: 16px;
}
.plp-swap__panel {
    flex: 1;
    background: var(--surface);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.plp-swap__panel--from {
    border: 1px solid var(--border);
    opacity: 0.72;
}
.plp-swap__panel--to {
    border: 2px solid #14b8a6;
    box-shadow: 0 14px 30px -16px rgba(20, 184, 166, 0.5);
}
.plp-swap__logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.plp-swap__logo--gray { background: #ededf2; }
.plp-swap__logo--teal { background: #e2f6f3; }
.plp-swap__logo--teal::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2.5px solid #14b8a6;
}
.plp-swap__panel-body { flex: 1; }
.plp-swap__lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}
.plp-swap__badge {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.plp-swap__badge--gray { color: #9aa0ad; background: var(--surface-alt); }
.plp-swap__badge--teal { color: #0f766e; background: #e2f6f3; }

.plp-swap__arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #14b8a6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--surface);
}

.plp-swap__status {
    margin-top: 16px;
    background: var(--surface);
    border: 1px solid #dcefea;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.plp-swap__status-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2f6f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.plp-swap__status-icon span {
    width: 11px;
    height: 11px;
    border-radius: 3px;
    background: #14b8a6;
}
.plp-swap__status-info { flex: 1; }
.plp-swap__rollback {
    font-size: 11px;
    font-weight: 600;
    color: #0f766e;
    background: #e2f6f3;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

/* ============================================================
   HPOS — supported swaps grid
   ============================================================ */
.plp-swaps { margin-top: 44px; }

.plp-swaps__label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f766e;
    margin: 0 0 18px;
}
.plp-swaps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.plp-swap-card {
    background: var(--surface);
    border: 1px solid #dcefea;
    border-radius: 11px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.plp-swap-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #e2f6f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.plp-swap-card__icon span {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    border: 2.5px solid #14b8a6;
}
.plp-swap-card__name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}
.plp-swap-card__replaces {
    display: block;
    font-size: 12px;
    color: #9aa0ad;
    margin-top: 2px;
}

@media (max-width: 720px) {
    .plp-swaps__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   AI Importer — 3-stage pipeline
   ============================================================ */
.plp-pipeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 18px;
    margin-top: 40px;
}
.plp-pipeline__arrow {
    align-self: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 16px;
    flex-shrink: 0;
}
.plp-pipeline__stage {
    background: var(--surface);
    border: 1px solid #e6e6f2;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
}
.plp-pipeline__step {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.04em;
}
.plp-pipeline__stage h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    margin: 8px 0 14px;
    color: var(--text);
    line-height: 1.25;
}
.plp-pipeline__file {
    flex: 1;
    background: #fbfbfd;
    border: 1px dashed #d3d3e2;
    border-radius: 10px;
    padding: 14px;
}
.plp-pipeline__filename {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #9aa0ad;
    font-family: var(--font-mono);
    margin-bottom: 11px;
}
.plp-pipeline__file-rows {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.plp-pipeline__file-rows span {
    display: block;
    height: 8px;
    border-radius: 3px;
    background: #e0e0ea;
}
.plp-pipeline__mappings {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.plp-pipeline__map-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.plp-pipeline__map-row span:first-child {
    height: 22px;
    flex: 1;
    border-radius: 6px;
    background: #f1f1f6;
}
.plp-pipeline__map-row b {
    color: var(--primary);
    font-weight: 700;
}
.plp-pipeline__map-row span:last-child {
    height: 22px;
    flex: 1;
    border-radius: 6px;
    background: #ebecf6;
}
.plp-pipeline__drafts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.plp-pipeline__draft {
    background: #fbfbfd;
    border: 1px solid #f0f0f5;
    border-radius: 9px;
    padding: 9px;
    display: flex;
    gap: 9px;
    align-items: center;
}
.plp-pipeline__draft-thumb {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #ebecf6;
    flex-shrink: 0;
}
.plp-pipeline__draft > div { flex: 1; }
.plp-pipeline__draft-badge {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary);
    background: #ebecf6;
    padding: 3px 7px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.plp-importer-bullets {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.plp-importer-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 220px;
}
.plp-importer-bullet__dot {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #ebecf6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.plp-importer-bullet__dot span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}
.plp-importer-bullet > span:last-child {
    font-size: 14.5px;
    line-height: 1.5;
    color: #3a414d;
}

@media (max-width: 860px) {
    .plp-pipeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .plp-pipeline__arrow { display: none; }
}

/* ============================================================
   Help chooser
   ============================================================ */
.plp-chooser {
    padding-top: var(--space-7);
}
.plp-chooser__box {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.plp-chooser__text h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--text);
}
.plp-chooser__text p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 9px 0 0;
    max-width: 560px;
}

/* ============================================================
   CTA banner
   ============================================================ */
.plp-cta-band {
    padding-top: var(--space-7);
    padding-bottom: var(--space-8);
}
.plp-cta-band__box {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: 18px;
    padding: 60px 48px;
    text-align: center;
}
.plp-cta-band__texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1.1px, transparent 1.1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.plp-cta-band__inner { position: relative; }
.plp-cta-band__inner h2 {
    font-size: clamp(1.5rem, 1rem + 2vw, 2.125rem);
    letter-spacing: -0.02em;
    color: var(--primary-ink);
    margin: 0;
    text-wrap: balance;
}
.plp-cta-band__inner p {
    font-size: 16.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin: 16px auto 0;
}
.plp-cta-band__btn {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    background: var(--surface);
    padding: 14px 30px;
}
.plp-cta-band__btn:hover { background: var(--surface-alt); color: var(--primary); }
