.demo-profiles-hub {
    --dph-section-y: clamp(2.5rem, 5vw, 4rem);
}

.dph-hero {
    padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3.5rem);
}

.dph-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: color-mix(in srgb, var(--pm-primary, #7c5cdb) 12%, #fff);
    color: var(--pm-primary, #7c5cdb);
    border: 1px solid color-mix(in srgb, var(--pm-primary, #7c5cdb) 22%, transparent);
    margin-bottom: 1rem;
}

.dph-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.dph-hero-lead {
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 36rem;
    color: var(--pm-text-muted, #64748b);
    margin-bottom: 1.25rem;
}

.dph-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.dph-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.dph-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dph-trust-list .fa-check-circle {
    color: var(--pm-success, #16a34a);
}

.dph-hero-visual {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.dph-hero-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 280px;
    width: 100%;
}

.dph-hero-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--dph-accent, #7c5cdb) 25%, #e2e8f0);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.dph-hero-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.dph-hero-card-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pm-text, #0f172a);
}

.dph-section {
    padding: var(--dph-section-y) 0;
    background: #fff;
}

.dph-section:nth-of-type(even) {
    background: #f8fafc;
}

.dph-section-header {
    margin-bottom: 2rem;
}

.dph-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--dph-accent, #7c5cdb) 18%, #e2e8f0);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dph-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.dph-card:focus-within {
    outline: 2px solid var(--dph-accent, #7c5cdb);
    outline-offset: 2px;
}

.dph-card-preview {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: #fef3c7;
    color: #92400e;
}

.dph-card-avatar-wrap {
    margin-bottom: 0.75rem;
}

.dph-card-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid color-mix(in srgb, var(--dph-accent, #7c5cdb) 35%, #fff);
}

.dph-card-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.15rem;
}

.dph-card-username {
    font-size: 0.875rem;
    color: var(--pm-text-muted, #64748b);
    margin: 0 0 0.75rem;
}

.dph-card-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.dph-chip {
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
}

.dph-chip-theme {
    background: color-mix(in srgb, var(--dph-accent, #7c5cdb) 12%, #f8fafc);
    color: color-mix(in srgb, var(--dph-accent, #7c5cdb) 70%, #0f172a);
}

.dph-card-actions {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
}

.dph-card-btn-primary {
    width: 100%;
    max-width: 16rem;
}

.dph-card-link-secondary {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dph-accent, #7c5cdb);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.dph-card-link-secondary:hover {
    text-decoration: underline;
}

.dph-disclaimer-section {
    padding: 2rem 0 3rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.dph-disclaimer {
    max-width: 42rem;
    margin: 0 auto 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    justify-content: center;
    text-align: left;
}

.dph-disclaimer-note {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}
