/* ============================================================
   Vibe Plugin Single — Vanilla CSS
   Converted from Tailwind mockup
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* --- Design Tokens --- */
:root {
    --vp-primary: #5ce145;
    --vp-primary-container: #14a800;
    --vp-on-primary: #033900;
    --vp-surface: #041424;
    --vp-surface-container: #112131;
    --vp-surface-container-low: #0c1d2d;
    --vp-surface-container-high: #1c2b3c;
    --vp-surface-container-highest: #273647;
    --vp-surface-container-lowest: #010f1f;
    --vp-on-surface: #d4e4fa;
    --vp-on-surface-variant: #bdcbb3;
    --vp-outline: #87957f;
    --vp-outline-variant: #3e4a38;
    --vp-secondary: #b8c8dd;
    --vp-tertiary: #f7be00;
}

/* --- Material Symbols --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* --- Glass Card --- */
.vp-glass {
    background: rgba(17, 33, 49, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(92, 225, 69, 0.08);
    border-radius: 1.25rem;
}

/* --- Page Wrapper --- */
.vp-page {
    background: var(--vp-surface);
    color: var(--vp-on-surface);
    min-height: 100vh;
}

.vp-page ::selection {
    background: rgba(92, 225, 69, 0.3);
}

/* ============================================================
   HERO
   ============================================================ */
.vp-hero {
    position: relative;
    padding: 3rem 0 5rem;
    overflow: hidden;
}

.vp-hero__glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(92, 225, 69, 0.1);
    filter: blur(120px);
    transform: rotate(-12deg);
    pointer-events: none;
}

.vp-hero__divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(62, 74, 56, 0.3), transparent);
}

.vp-hero__inner {
    max-width: var(--global-content-width);
    margin: 0 auto;
    padding: 0 var(--global-content-edge-padding);
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.vp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vp-on-surface-variant);
    margin-bottom: 1.5rem;
}

.vp-breadcrumb a {
    color: var(--vp-on-surface-variant);
    text-decoration: none;
    transition: color 0.3s;
}

.vp-breadcrumb a:hover {
    color: var(--vp-primary);
}

.vp-breadcrumb .material-symbols-outlined {
    font-size: 14px;
}

/* Hero layout */
.vp-hero__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vp-hero__layout {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.vp-hero__content {
    max-width: 48rem;
}

.vp-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--vp-on-surface);
}

.vp-hero__tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--vp-on-surface-variant);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Chips */
.vp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.vp-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: var(--vp-surface-container-high);
    border: 1px solid rgba(62, 74, 56, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vp-on-surface);
}

.vp-chip__label {
    color: var(--vp-primary);
    font-weight: 700;
}

.vp-chip--status .vp-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vp-primary);
    animation: pulse 2s infinite;
}

.vp-chip--secondary {
    color: var(--vp-secondary);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* CTAs */
.vp-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.vp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.vp-btn--primary {
    background: linear-gradient(135deg, var(--vp-primary), var(--vp-primary-container));
    color: var(--vp-on-primary);
    box-shadow: 0 10px 30px rgba(92, 225, 69, 0.2);
}

.vp-btn--primary:hover {
    box-shadow: 0 10px 40px rgba(92, 225, 69, 0.4);
}

.vp-btn--outline {
    background: transparent;
    color: var(--vp-primary);
    border: 1px solid rgba(92, 225, 69, 0.3);
}

.vp-btn--outline:hover {
    background: rgba(92, 225, 69, 0.05);
}

/* Hero visual (abstract icon) */
.vp-hero__visual {
    display: none;
    width: 18rem;
    height: 18rem;
    position: relative;
    transform: rotate(3deg);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .vp-hero__visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.vp-hero__visual-bg {
    position: absolute;
    font-size: 120px;
    color: rgba(92, 225, 69, 0.15);
}

.vp-hero__visual-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.vp-hero__icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(62, 74, 56, 0.3);
}

.vp-hero__icon-box--from {
    background: var(--vp-surface-container-highest);
}

.vp-hero__icon-box--to {
    background: rgba(92, 225, 69, 0.1);
    border-color: rgba(92, 225, 69, 0.4);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.vp-main {
    max-width: var(--global-content-width);
    margin: 0 auto;
    padding: 3rem var(--global-content-edge-padding) 5rem;
}

.vp-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .vp-layout {
        flex-direction: row;
    }
}

.vp-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .vp-content {
        width: 65%;
    }
}

/* Section cards */
.vp-section {
    padding: 2.5rem;
}

.vp-section__title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.vp-section__title .material-symbols-outlined {
    color: var(--vp-primary);
}

/* About */
.vp-about p {
    color: var(--vp-on-surface-variant);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.vp-about strong {
    color: var(--vp-on-surface);
}

/* Features grid */
.vp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .vp-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vp-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vp-feature__icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(92, 225, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.vp-feature:hover .vp-feature__icon {
    background: rgba(92, 225, 69, 0.1);
}

.vp-feature__icon .material-symbols-outlined {
    font-size: 14px;
    color: var(--vp-primary);
}

.vp-feature__text {
    color: var(--vp-on-surface-variant);
    font-weight: 500;
}

/* Installation steps */
.vp-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vp-step {
    display: flex;
    gap: 1.5rem;
}

.vp-step__num {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--vp-surface-container-high);
    border: 1px solid rgba(62, 74, 56, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--vp-primary);
}

.vp-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vp-step p {
    color: var(--vp-on-surface-variant);
    margin-bottom: 1rem;
}

.vp-code {
    background: var(--vp-surface-container-lowest);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(62, 74, 56, 0.1);
    font-family: 'Fira Code', monospace, Consolas;
    font-size: 0.875rem;
    color: var(--vp-primary);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--vp-primary-container) var(--vp-surface-container-lowest);
}

.vp-code .comment {
    color: rgba(184, 200, 221, 0.5);
}

/* Screenshots */
.vp-screenshots {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.vp-screenshots::-webkit-scrollbar {
    display: none;
}

.vp-screenshot {
    flex-shrink: 0;
    width: 400px;
    aspect-ratio: 16/9;
    background: var(--vp-surface-container-lowest);
    border-radius: 0.75rem;
    border: 1px solid rgba(62, 74, 56, 0.1);
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
}

.vp-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vp-screenshot:hover img {
    transform: scale(1.05);
}

/* Zoom overlay on hover */
.vp-screenshot__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 20, 36, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vp-screenshot__overlay .material-symbols-outlined {
    font-size: 2.5rem;
    color: #fff;
}

.vp-screenshot:hover .vp-screenshot__overlay {
    opacity: 1;
}

/* Gallery count badge */
.vp-gallery-count {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--vp-surface-container-highest);
    color: var(--vp-on-surface-variant);
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    margin-left: auto;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.vp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.vp-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.vp-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 15, 31, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.vp-lightbox__content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.vp-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(17, 33, 49, 0.8);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.vp-lightbox__close:hover {
    background: rgba(92, 225, 69, 0.2);
    border-color: var(--vp-primary);
}

.vp-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 33, 49, 0.7);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.vp-lightbox__nav:hover {
    background: rgba(92, 225, 69, 0.15);
    border-color: var(--vp-primary);
    transform: translateY(-50%) scale(1.1);
}

.vp-lightbox__nav .material-symbols-outlined {
    font-size: 2rem;
}

.vp-lightbox__prev {
    left: 1.5rem;
}

.vp-lightbox__next {
    right: 1.5rem;
}

.vp-lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(17, 33, 49, 0.7);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vp-about h2 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 12px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.vp-sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .vp-sidebar {
        width: 35%;
    }
}

.vp-sidebar__sticky {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Sidebar cards */
.vp-card {
    padding: 2rem;
}

.vp-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Tech stack bars */
.vp-stack-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vp-stack-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.vp-stack-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vp-on-surface-variant);
}

.vp-stack-pct {
    color: var(--vp-primary);
    font-weight: 700;
}

.vp-bar {
    height: 6px;
    width: 100%;
    background: var(--vp-surface-container-highest);
    border-radius: 9999px;
    overflow: hidden;
}

.vp-bar__fill {
    height: 100%;
    background: var(--vp-primary);
    border-radius: 9999px;
    transition: width 0.8s ease;
}

/* Built With card */
.vp-card--built {
    border-left: 4px solid var(--vp-primary);
}

.vp-vibe-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(39, 54, 71, 0.5);
    margin-bottom: 1.5rem;
}

.vp-vibe-badge__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vp-primary);
}

.vp-vibe-badge__sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    opacity: 0.6;
}

.vp-built-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vp-built-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--vp-on-surface-variant);
}

.vp-built-list .material-symbols-outlined {
    font-size: 1.125rem;
    color: var(--vp-secondary);
}

/* Requirements list */
.vp-req-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vp-req {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vp-req__dot {
    margin-top: 0.375rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vp-req__dot--required {
    background: var(--vp-tertiary);
}

.vp-req__dot--optional {
    background: var(--vp-outline-variant);
}

.vp-req__name {
    font-weight: 700;
}

.vp-req__note {
    font-size: 0.875rem;
    color: var(--vp-on-surface-variant);
    font-style: italic;
}

.vp-req--optional .vp-req__name {
    opacity: 0.6;
}

/* Download Stats */
.vp-download-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.vp-download-stat__count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--vp-on-surface);
    line-height: 1;
}

.vp-download-stat__label {
    font-size: 0.875rem;
    color: var(--vp-on-surface-variant);
    margin-top: 0.25rem;
}

/* Links nav */
.vp-links-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vp-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--vp-on-surface-variant);
    text-decoration: none;
    transition: all 0.3s;
}

.vp-link-item:hover {
    background: rgba(92, 225, 69, 0.1);
    color: var(--vp-primary);
}

.vp-link-item__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vp-link-item__arrow {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.vp-link-item:hover .vp-link-item__arrow {
    opacity: 1;
}

/* ============================================================
   MORE PLUGINS
   ============================================================ */
.vp-more {
    background: var(--vp-surface-container-low);
    padding: 6rem 0;
    border-top: 1px solid rgba(62, 74, 56, 0.1);
}

.vp-more__inner {
    max-width: var(--global-content-width);
    margin: 0 auto;
    padding: 0 var(--global-content-edge-padding);
}

.vp-more__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vp-more__title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #fff;
}

.vp-more__subtitle {
    color: var(--vp-on-surface-variant);
}

.vp-more__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--vp-primary);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s;
}

.vp-more__link:hover {
    gap: 1rem;
}

.vp-more__grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}

.vp-more__grid::-webkit-scrollbar {
    display: none;
}

.vp-plugin-card {
    flex-shrink: 0;
    width: 20rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.vp-plugin-card:hover {
    border-color: rgba(92, 225, 69, 0.2);
    transform: translateY(-8px);
}

.vp-plugin-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--vp-surface-container-highest);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(62, 74, 56, 0.2);
}

.vp-plugin-card__icon .material-symbols-outlined {
    font-size: 1.875rem;
}

.vp-plugin-card__icon--primary .material-symbols-outlined {
    color: var(--vp-primary);
}

.vp-plugin-card__icon--tertiary .material-symbols-outlined {
    color: var(--vp-tertiary);
}

.vp-plugin-card__icon--secondary .material-symbols-outlined {
    color: var(--vp-secondary);
}

.vp-plugin-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    color: #fff;
}

.vp-plugin-card:hover .vp-plugin-card__name {
    color: var(--vp-primary);
}

.vp-plugin-card__desc {
    font-size: 0.875rem;
    color: var(--vp-on-surface-variant);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vp-plugin-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vp-outline);
}

/* ============================================================
   FAQ SECTION (AEO)
   ============================================================ */
.vp-faq-section {
    padding: 4rem 0;
    background: var(--vp-bg, #041424);
    border-top: 1px solid rgba(62, 74, 56, 0.15);
}

.vp-faq-inner {
    max-width: var(--global-content-width);
    margin: 0 auto;
    padding: 0 var(--global-content-edge-padding);
}

.vp-faq-inner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vp-on-surface);
    margin: 0 0 2rem;
}

.vp-faq-section .pfa-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vp-faq-section .pfa-faq-item {
    background: rgba(28, 43, 60, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(92, 225, 69, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.vp-faq-section .pfa-faq-item:hover {
    border-color: rgba(92, 225, 69, 0.2);
}

.vp-faq-section .pfa-faq-item[open] {
    border-color: rgba(92, 225, 69, 0.15);
}

.vp-faq-section .pfa-faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vp-on-surface);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
}

.vp-faq-section .pfa-faq-item summary::-webkit-details-marker {
    display: none;
}

.vp-faq-section .pfa-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vp-primary);
    flex-shrink: 0;
    margin-left: 1rem;
}

.vp-faq-section .pfa-faq-item[open] summary::after {
    content: '−';
}

.vp-faq-section .pfa-faq-item summary:hover {
    color: var(--vp-primary);
}

.vp-faq-section .pfa-faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.vp-faq-section .pfa-faq-answer p {
    color: var(--vp-on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.vp-faq-section .pfa-faq-answer a {
    color: var(--vp-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .vp-screenshot {
        width: 280px;
    }

    .vp-section {
        padding: 1.5rem;
    }

    .vp-card {
        padding: 1.5rem;
    }

    .vp-hero__title {
        font-size: 2.25rem;
    }

    .vp-plugin-card {
        width: 16rem;
    }
}